@bigbinary/neetoui 5.2.18 → 5.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/formik.cjs.js +6842 -5912
- package/formik.cjs.js.map +1 -1
- package/formik.js +6843 -5913
- package/formik.js.map +1 -1
- package/index.cjs.js +6852 -5919
- package/index.cjs.js.map +1 -1
- package/index.d.ts +4 -3
- package/index.js +6853 -5920
- package/index.js.map +1 -1
- package/layouts.cjs.js +0 -1
- package/layouts.cjs.js.map +1 -1
- package/layouts.js +0 -1
- package/layouts.js.map +1 -1
- package/package.json +2 -10
package/index.d.ts
CHANGED
|
@@ -446,6 +446,7 @@ export type TimePickerProps = {
|
|
|
446
446
|
value?: any;
|
|
447
447
|
id?: string;
|
|
448
448
|
labelProps?: LabelProps;
|
|
449
|
+
required: boolean;
|
|
449
450
|
[key: string]: any;
|
|
450
451
|
};
|
|
451
452
|
|
|
@@ -605,9 +606,9 @@ export type TreeSelectProps = {
|
|
|
605
606
|
allowClear?: Boolean;
|
|
606
607
|
className?: string;
|
|
607
608
|
disabled?: Boolean;
|
|
608
|
-
error?: string
|
|
609
|
-
fieldNames?: { label?: string
|
|
610
|
-
label?: string
|
|
609
|
+
error?: string;
|
|
610
|
+
fieldNames?: { label?: string; value?: string };
|
|
611
|
+
label?: string;
|
|
611
612
|
onChange: (value: string) => void;
|
|
612
613
|
onSearch?: (searchValue: string) => void;
|
|
613
614
|
placeholder?: string;
|