The framework includes a set of widgets to enter numbers. We distinguish between natural numbers, integer numbers and real numbers. For each type of number there is a directive and a component.
The directives are responsible for:
The directives are designed to be applied to HTML <input> elements of type text.
The components use the directives internally.
The framework provides a TypeScript type for each of the number types: natural, integer, real. They are defined in numbers.module.ts. They are only used as a way of documenting. [ Is it possible to implement the correct restrictions on these types in TypeScript ? ]
The directives implement ControlValueAccessor. They implement the … is the conversion