@bigbinary/neetoui 5.2.16 → 5.2.18
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 +276 -99
- package/formik.cjs.js.map +1 -1
- package/formik.d.ts +2 -0
- package/formik.js +275 -100
- package/formik.js.map +1 -1
- package/index.cjs.js +303 -176
- package/index.cjs.js.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +40 -0
- package/index.js +302 -177
- package/index.js.map +1 -1
- package/layouts.cjs.js.map +1 -1
- package/layouts.js.map +1 -1
- package/package.json +1 -1
package/formik.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
Checkbox as PlainCheckbox,
|
|
9
9
|
Select as PlainSelect,
|
|
10
10
|
MultiEmailInput as PlainMultiEmailInput,
|
|
11
|
+
TreeSelect as PlainTreeSelect,
|
|
11
12
|
Slider as PlainSlider,
|
|
12
13
|
Button as PlainButton,
|
|
13
14
|
ButtonProps,
|
|
@@ -44,6 +45,7 @@ export const Checkbox: typeof PlainCheckbox;
|
|
|
44
45
|
export const Select: typeof PlainSelect;
|
|
45
46
|
export const MultiEmailInput: typeof PlainMultiEmailInput;
|
|
46
47
|
export const Button: typeof PlainButton;
|
|
48
|
+
export const TreeSelect: typeof PlainTreeSelect;
|
|
47
49
|
export const Slider: typeof PlainSlider;
|
|
48
50
|
|
|
49
51
|
export const Form: React.FC<Form>;
|