@bigbinary/neetoui 4.4.16 → 4.4.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/CHANGELOG.md +8 -8
- package/README.md +1 -1
- package/formik.cjs.js +1 -1
- package/formik.js +1 -1
- package/index.cjs.js +3 -3
- package/index.js +1 -1
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,14 @@ 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.18 - 2023-03-24
|
|
27
|
+
|
|
28
|
+
- Changed: -the default row size to 30 and hidden the page size changer in the *Table* component.
|
|
29
|
+
|
|
30
|
+
## 4.4.17 - 2023-03-22
|
|
31
|
+
|
|
32
|
+
- Fixed: weird behavior or create new option in *MultiEmailInput*.
|
|
33
|
+
|
|
26
34
|
## 4.4.16 - 2023-03-20
|
|
27
35
|
|
|
28
36
|
- Added: keyboard accessibility to color picker.
|
|
@@ -77,9 +85,7 @@ This PR adds the following changes to the *Switch* component.
|
|
|
77
85
|
## 4.4.7 - 2023-03-10
|
|
78
86
|
- Added: entry points for TypeScript resolutions in package.json
|
|
79
87
|
## 4.4.6 - 2023-03-09
|
|
80
|
-
|
|
81
88
|
- Added: new fallback avatars in the *Avatar* component using `boringavatars`.
|
|
82
|
-
|
|
83
89
|
## 4.4.4 - 2023-03-07
|
|
84
90
|
|
|
85
91
|
- Added: the ability to add a custom separator text between the primary and secondary buttons using the `buttonSeparatorText` prop for the *NoData* component.
|
|
@@ -177,9 +183,7 @@ After
|
|
|
177
183
|
## 4.2.1 - 2023-01-24
|
|
178
184
|
- Changed: product descriptions as per the [list](https://docs.google.com/spreadsheets/d/1xFWMyXJkUCf1YBRhrokLdlQvyBn0X3uK2M2JUZClGgw).
|
|
179
185
|
- Changed: product name from **Review** to **Deploy** in the app switcher.
|
|
180
|
-
|
|
181
186
|
## 4.2.0 - 2023-01-19
|
|
182
|
-
|
|
183
187
|
Fixed getToastrMessage in Toastr to accept object with the placeholder value for the translations.
|
|
184
188
|
|
|
185
189
|
## 4.1.44 - 2023-01-17
|
|
@@ -228,10 +232,8 @@ Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
|
|
|
228
232
|
## 4.1.28 - 2022-12-20
|
|
229
233
|
- Fixed: **Form** `validateOnChange` and `validateOnBlur` is not being triggered after the form is submitted by pressing enter key and there are validation errors.
|
|
230
234
|
## 4.1.27 - 2022-12-19
|
|
231
|
-
|
|
232
235
|
- Updated: *Product switcher* component in neetoUI
|
|
233
236
|
- Updated: the icon Tooltip content from "App switcher" to "Product switcher"
|
|
234
|
-
|
|
235
237
|
## 4.1.26 - 2022-12-19
|
|
236
238
|
|
|
237
239
|
- Added: support for `neeto-ui-shadow-sm`, `neeto-ui-shadow-md` and `neeto-ui-shadow-lg`.
|
|
@@ -301,9 +303,7 @@ Fixed: Form validation triggered with incorrect values from MultiEmailInput.
|
|
|
301
303
|
- Fixed:`ValidateDOMNesting` warning in *DatePicker* component.
|
|
302
304
|
- Fixed: the issue with date items looking disabled in normal state
|
|
303
305
|
## 4.0.16 - 2022-10-28
|
|
304
|
-
|
|
305
306
|
Changes documentations to sentence case from title casing.
|
|
306
|
-
|
|
307
307
|
## 4.0.15 - 2022-10-28
|
|
308
308
|
|
|
309
309
|
- Added: Border for menubar block and item active states.
|
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.
|