@bigbinary/neetoui 5.2.13 → 5.2.15
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 +227 -77
- package/formik.cjs.js.map +1 -1
- package/formik.d.ts +6 -1
- package/formik.js +226 -79
- package/formik.js.map +1 -1
- package/index.cjs.js +212 -88
- package/index.cjs.js.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +9 -0
- package/index.js +211 -90
- package/index.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
|
+
Slider as PlainSlider,
|
|
11
12
|
Button as PlainButton,
|
|
12
13
|
ButtonProps,
|
|
13
14
|
AlertProps,
|
|
@@ -31,7 +32,9 @@ export interface Form {
|
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
export const ActionBlock: React.FC<ActionBlockProps>;
|
|
34
|
-
export const BlockNavigation: React.FC<
|
|
35
|
+
export const BlockNavigation: React.FC<
|
|
36
|
+
BlockNavigationProps & Partial<AlertProps>
|
|
37
|
+
>;
|
|
35
38
|
|
|
36
39
|
export const Input: typeof PlainInput;
|
|
37
40
|
export const Radio: typeof PlainRadio;
|
|
@@ -41,4 +44,6 @@ export const Checkbox: typeof PlainCheckbox;
|
|
|
41
44
|
export const Select: typeof PlainSelect;
|
|
42
45
|
export const MultiEmailInput: typeof PlainMultiEmailInput;
|
|
43
46
|
export const Button: typeof PlainButton;
|
|
47
|
+
export const Slider: typeof PlainSlider;
|
|
48
|
+
|
|
44
49
|
export const Form: React.FC<Form>;
|