@bigbinary/neetoui 4.4.16 → 4.4.17
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 +4 -4
- package/README.md +1 -1
- package/formik.cjs.js +1 -1
- package/formik.js +1 -1
- package/index.cjs.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,10 @@ 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.4.17 - 2023-03-22
|
|
27
|
+
|
|
28
|
+
- Fixed: weird behavior or create new option in *MultiEmailInput*.
|
|
29
|
+
|
|
26
30
|
## 4.4.16 - 2023-03-20
|
|
27
31
|
|
|
28
32
|
- Added: keyboard accessibility to color picker.
|
|
@@ -77,7 +81,6 @@ This PR adds the following changes to the *Switch* component.
|
|
|
77
81
|
## 4.4.7 - 2023-03-10
|
|
78
82
|
- Added: entry points for TypeScript resolutions in package.json
|
|
79
83
|
## 4.4.6 - 2023-03-09
|
|
80
|
-
|
|
81
84
|
- Added: new fallback avatars in the *Avatar* component using `boringavatars`.
|
|
82
85
|
|
|
83
86
|
## 4.4.4 - 2023-03-07
|
|
@@ -177,7 +180,6 @@ After
|
|
|
177
180
|
## 4.2.1 - 2023-01-24
|
|
178
181
|
- Changed: product descriptions as per the [list](https://docs.google.com/spreadsheets/d/1xFWMyXJkUCf1YBRhrokLdlQvyBn0X3uK2M2JUZClGgw).
|
|
179
182
|
- Changed: product name from **Review** to **Deploy** in the app switcher.
|
|
180
|
-
|
|
181
183
|
## 4.2.0 - 2023-01-19
|
|
182
184
|
|
|
183
185
|
Fixed getToastrMessage in Toastr to accept object with the placeholder value for the translations.
|
|
@@ -228,7 +230,6 @@ Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
|
|
|
228
230
|
## 4.1.28 - 2022-12-20
|
|
229
231
|
- Fixed: **Form** `validateOnChange` and `validateOnBlur` is not being triggered after the form is submitted by pressing enter key and there are validation errors.
|
|
230
232
|
## 4.1.27 - 2022-12-19
|
|
231
|
-
|
|
232
233
|
- Updated: *Product switcher* component in neetoUI
|
|
233
234
|
- Updated: the icon Tooltip content from "App switcher" to "Product switcher"
|
|
234
235
|
|
|
@@ -301,7 +302,6 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
|
|
|
301
302
|
- Fixed:`ValidateDOMNesting` warning in *DatePicker* component.
|
|
302
303
|
- Fixed: the issue with date items looking disabled in normal state
|
|
303
304
|
## 4.0.16 - 2022-10-28
|
|
304
|
-
|
|
305
305
|
Changes documentations to sentence case from title casing.
|
|
306
306
|
|
|
307
307
|
## 4.0.15 - 2022-10-28
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Starting `3.0.x`, neetoUI stylesheet has been separated from the bundle. To get
|
|
|
18
18
|
**neetoUI** has few peer dependencies which are required to use neetoUI properly. Install the peer dependencies using the below command:
|
|
19
19
|
|
|
20
20
|
```
|
|
21
|
-
yarn add react-toastify@9.0.1 formik@2.2.0 react-router-dom@5.2.0
|
|
21
|
+
yarn add react-toastify@9.0.1 formik@2.2.0 react-router-dom@5.2.0
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
**neetoUI** depends on `react-toastify` for Toasters, so the styles for toaster must be imported to your main `scss` entry point.
|