diff --git a/package.json b/package.json index 926a7a1..6e9a1bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hipo/react-ui-toolkit", - "version": "1.0.0", + "version": "1.0.1", "description": "React based UI toolkit.", "main": "dist/index.js", "scripts": { diff --git a/src/index.ts b/src/index.ts index 0e4672b..cecd478 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,8 @@ import {InputProps as InputComponentProps} from "./form/input/util/inputTypes"; import PasswordInput, { PasswordInputProps as PasswordInputComponentProps } from "./form/password-input/PasswordInput"; +import NumberInput from "./form/input/number/NumberInput"; +import {NumberInputProps as NumberInputComponentProps} from "./form/input/number/util/numberInputTypes"; import FileInput, { FileInputProps as FileInputComponentProps } from "./form/input/file/FileInput"; @@ -73,6 +75,7 @@ export { // Components FormField, Input, + NumberInput, FileInput, PasswordInput, CheckboxInput, @@ -110,6 +113,7 @@ export { // Types export type FormFieldProps = FormFieldComponentProps; export type InputProps = InputComponentProps; +export type NumberInputProps = NumberInputComponentProps; export type FileInputProps = FileInputComponentProps; export type PasswordInputProps = PasswordInputComponentProps; export type CheckboxInputProps = CheckboxInputComponentProps;