@bigbinary/neetoui 4.0.16 → 4.1.0
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/CHANGELOG.md +9 -0
- package/formik.d.ts +2 -2
- package/formik.js +1 -1
- package/index.css +1 -1
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,15 @@ Prefix the change with one of these keywords:
|
|
|
23
23
|
- *Fixed*: for any bug fixes.
|
|
24
24
|
- *Security*: in case of vulnerabilities.
|
|
25
25
|
|
|
26
|
+
## 4.1.0 - 2022-11-03
|
|
27
|
+
|
|
28
|
+
- Changed: **BREAKING** Name of the *EmailInput* component to *MultiEmailInput* in both components and Formik components.
|
|
29
|
+
|
|
30
|
+
## 4.0.17 - 2022-10-28
|
|
31
|
+
|
|
32
|
+
- Fixed:`ValidateDOMNesting` warning in *DatePicker* component.
|
|
33
|
+
- Fixed: the issue with date items looking disabled in normal state
|
|
34
|
+
|
|
26
35
|
## 4.0.16 - 2022-10-28
|
|
27
36
|
|
|
28
37
|
Changes documentations to sentence case from title casing.
|
package/formik.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
Textarea as PlainTextarea,
|
|
7
7
|
Checkbox as PlainCheckbox,
|
|
8
8
|
Select as PlainSelect,
|
|
9
|
-
|
|
9
|
+
MultiEmailInput as PlainMultiEmailInput,
|
|
10
10
|
Button as PlainButton,
|
|
11
11
|
ButtonProps,
|
|
12
12
|
} from "./index";
|
|
@@ -29,5 +29,5 @@ export const Switch: typeof PlainSwitch;
|
|
|
29
29
|
export const Textarea: typeof PlainTextarea;
|
|
30
30
|
export const Checkbox: typeof PlainCheckbox;
|
|
31
31
|
export const Select: typeof PlainSelect;
|
|
32
|
-
export const
|
|
32
|
+
export const MultiEmailInput: typeof PlainMultiEmailInput;
|
|
33
33
|
export const Button: typeof PlainButton;
|