@bigbinary/neetoui 4.4.15 → 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 +10 -8
- package/README.md +1 -1
- package/formik.cjs.js +1 -1
- package/formik.js +1 -1
- package/index.cjs.js +1 -1
- package/index.css +1 -1
- package/index.js +1 -1
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,16 @@ 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
|
+
|
|
30
|
+
## 4.4.16 - 2023-03-20
|
|
31
|
+
|
|
32
|
+
- Added: keyboard accessibility to color picker.
|
|
33
|
+
|
|
34
|
+

|
|
35
|
+
|
|
26
36
|
## 4.4.15 - 2023-03-17
|
|
27
37
|
|
|
28
38
|
Added terser plugin to rollup config to minimise bundle size.
|
|
@@ -70,9 +80,7 @@ This PR adds the following changes to the *Switch* component.
|
|
|
70
80
|
- Fixed: Issue with overriding components in *Select* component
|
|
71
81
|
## 4.4.7 - 2023-03-10
|
|
72
82
|
- Added: entry points for TypeScript resolutions in package.json
|
|
73
|
-
|
|
74
83
|
## 4.4.6 - 2023-03-09
|
|
75
|
-
|
|
76
84
|
- Added: new fallback avatars in the *Avatar* component using `boringavatars`.
|
|
77
85
|
|
|
78
86
|
## 4.4.4 - 2023-03-07
|
|
@@ -170,10 +178,8 @@ After
|
|
|
170
178
|
## 4.2.2 - 2023-01-29
|
|
171
179
|
- Fixed: respecting the prop `isCreatable` if `loadOptions` prop is provided in *Select* component
|
|
172
180
|
## 4.2.1 - 2023-01-24
|
|
173
|
-
|
|
174
181
|
- Changed: product descriptions as per the [list](https://docs.google.com/spreadsheets/d/1xFWMyXJkUCf1YBRhrokLdlQvyBn0X3uK2M2JUZClGgw).
|
|
175
182
|
- Changed: product name from **Review** to **Deploy** in the app switcher.
|
|
176
|
-
|
|
177
183
|
## 4.2.0 - 2023-01-19
|
|
178
184
|
|
|
179
185
|
Fixed getToastrMessage in Toastr to accept object with the placeholder value for the translations.
|
|
@@ -223,9 +229,7 @@ Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
|
|
|
223
229
|
- Fixed: pressing `enter` key in *Select* to select an option submitting the *Form*.
|
|
224
230
|
## 4.1.28 - 2022-12-20
|
|
225
231
|
- Fixed: **Form** `validateOnChange` and `validateOnBlur` is not being triggered after the form is submitted by pressing enter key and there are validation errors.
|
|
226
|
-
|
|
227
232
|
## 4.1.27 - 2022-12-19
|
|
228
|
-
|
|
229
233
|
- Updated: *Product switcher* component in neetoUI
|
|
230
234
|
- Updated: the icon Tooltip content from "App switcher" to "Product switcher"
|
|
231
235
|
|
|
@@ -297,9 +301,7 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
|
|
|
297
301
|
## 4.0.17 - 2022-10-28
|
|
298
302
|
- Fixed:`ValidateDOMNesting` warning in *DatePicker* component.
|
|
299
303
|
- Fixed: the issue with date items looking disabled in normal state
|
|
300
|
-
|
|
301
304
|
## 4.0.16 - 2022-10-28
|
|
302
|
-
|
|
303
305
|
Changes documentations to sentence case from title casing.
|
|
304
306
|
|
|
305
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.
|