File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @hipo/react-ui-toolkit" ,
3- "version" : " 1.0.0 " ,
3+ "version" : " 1.0.1 " ,
44 "description" : " React based UI toolkit." ,
55 "main" : " dist/index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ import {InputProps as InputComponentProps} from "./form/input/util/inputTypes";
99import PasswordInput , {
1010 PasswordInputProps as PasswordInputComponentProps
1111} from "./form/password-input/PasswordInput" ;
12+ import NumberInput from "./form/input/number/NumberInput" ;
13+ import { NumberInputProps as NumberInputComponentProps } from "./form/input/number/util/numberInputTypes" ;
1214import FileInput , {
1315 FileInputProps as FileInputComponentProps
1416} from "./form/input/file/FileInput" ;
@@ -73,6 +75,7 @@ export {
7375 // Components
7476 FormField ,
7577 Input ,
78+ NumberInput ,
7679 FileInput ,
7780 PasswordInput ,
7881 CheckboxInput ,
@@ -110,6 +113,7 @@ export {
110113// Types
111114export type FormFieldProps = FormFieldComponentProps ;
112115export type InputProps = InputComponentProps ;
116+ export type NumberInputProps = NumberInputComponentProps ;
113117export type FileInputProps = FileInputComponentProps ;
114118export type PasswordInputProps = PasswordInputComponentProps ;
115119export type CheckboxInputProps = CheckboxInputComponentProps ;
You can’t perform that action at this time.
0 commit comments