@bigbinary/neetoui 8.3.10 → 8.3.11
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 +1488 -0
- package/dist/Input.js +5 -1
- package/dist/Input.js.map +1 -1
- package/dist/cjs/Input.js +5 -1
- package/dist/cjs/Input.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1488 @@
|
|
|
1
|
+
<!---
|
|
2
|
+
|
|
3
|
+
------ FOLLOW THESE WHILE ADDING AN ENTRY ------
|
|
4
|
+
|
|
5
|
+
** Add BREAKING keyword in bold for changes which could potentially break the component, eg: **BREAKING**
|
|
6
|
+
** Represent a component name in italics, eg: _Modal_
|
|
7
|
+
** Enclose a prop name in double backticks, eg: `isLoading`
|
|
8
|
+
** Represent a version as second level heading and write the version number inside a square bracket, eg: ## [3.3.2]
|
|
9
|
+
|
|
10
|
+
--->
|
|
11
|
+
# Changelog
|
|
12
|
+
|
|
13
|
+
All notable changes to this project will be documented in this file.
|
|
14
|
+
|
|
15
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
16
|
+
|
|
17
|
+
Each change is prefixed with one of these keywords::
|
|
18
|
+
|
|
19
|
+
- *Added*: Describes new features.
|
|
20
|
+
- *Changed*: Highlights modifications to existing functionality.
|
|
21
|
+
- *Deprecated*: Marks features that will be removed in the future.
|
|
22
|
+
- *Removed*: Indicates features that have been taken out.
|
|
23
|
+
- *Fixed*: Denotes bug fixes.
|
|
24
|
+
- *Security*: Pertains to actions taken in response to vulnerabilities.
|
|
25
|
+
|
|
26
|
+
## 8.3.10 - 2025-06-23
|
|
27
|
+
|
|
28
|
+
Adds support to display a tooltip over the options in Select dropdown.
|
|
29
|
+
|
|
30
|
+
## 8.3.9 - 2025-06-18
|
|
31
|
+
|
|
32
|
+
- Fixed: TypeError in *Toastr* component
|
|
33
|
+
|
|
34
|
+
## 8.3.8 - 2025-06-18
|
|
35
|
+
|
|
36
|
+
This PR makes changes to handle the case when the options passed to the Select component are grouped.
|
|
37
|
+
The `buildValueObj` method has been modified to get the deeply nested options after checking for grouping.
|
|
38
|
+
This change fixes issues with initial values not being displayed in the dropdown when using formik.
|
|
39
|
+
|
|
40
|
+
## 8.3.7 - 2025-06-06
|
|
41
|
+
|
|
42
|
+
- Added: `ref` support in *Radio.Item*.
|
|
43
|
+
|
|
44
|
+
## 8.3.6 - 2025-06-04
|
|
45
|
+
|
|
46
|
+
- Removed: Unused container and wrapper classes
|
|
47
|
+
|
|
48
|
+
## 8.3.5 - 2025-06-03
|
|
49
|
+
|
|
50
|
+
- Fixed: pane width on iPad viewport
|
|
51
|
+
|
|
52
|
+
Ensures the pane maintains a minimum width for better usability on iPad devices.
|
|
53
|
+
|
|
54
|
+
small
|
|
55
|
+

|
|
56
|
+
|
|
57
|
+
large
|
|
58
|
+

|
|
59
|
+
|
|
60
|
+
extraLarge
|
|
61
|
+

|
|
62
|
+
|
|
63
|
+
## 8.3.4 - 2025-06-02
|
|
64
|
+
|
|
65
|
+
- Replaced `100vh` with `100dvh` to fix layout issues on mobile browsers and iPads caused by dynamic browser UI elements.
|
|
66
|
+
|
|
67
|
+
## 8.3.3 - 2025-05-28
|
|
68
|
+
|
|
69
|
+
- Added: support for `precision` prop for *Input* component
|
|
70
|
+
|
|
71
|
+
## 8.3.2 - 2025-05-26
|
|
72
|
+
|
|
73
|
+
- Updated: the column resizing handle styles.
|
|
74
|
+
|
|
75
|
+
## 8.3.1 - 2025-05-20
|
|
76
|
+
|
|
77
|
+
- Updated: the duplicate email error message and style.
|
|
78
|
+
|
|
79
|
+
## 8.3.0 - 2025-05-09
|
|
80
|
+
|
|
81
|
+
Migrated to new SASS module system.
|
|
82
|
+
|
|
83
|
+
The auto-migration worked successfully and effectively transitioned the files to the new Sass module system.
|
|
84
|
+
|
|
85
|
+
## 8.2.78 - 2025-04-15
|
|
86
|
+
|
|
87
|
+
- Added: `dataCy` prop to *Select* component.
|
|
88
|
+
|
|
89
|
+
## 8.2.77 - 2025-04-11
|
|
90
|
+
|
|
91
|
+
- Added: Dark mode support for `divide-y` utility class.
|
|
92
|
+
|
|
93
|
+
## 8.2.76 - 2025-04-11
|
|
94
|
+
|
|
95
|
+
- Fixed: icon visibility issue in the Tree component.
|
|
96
|
+
|
|
97
|
+
## 8.2.75 - 2025-04-07
|
|
98
|
+
|
|
99
|
+
- Added size `extraLarge` prop to *Pane* component.
|
|
100
|
+
|
|
101
|
+
## 8.2.73 - 2025-03-26
|
|
102
|
+
|
|
103
|
+
- Fixed height computation issue in nested panes.
|
|
104
|
+
|
|
105
|
+
## 8.2.72 - 2025-03-26
|
|
106
|
+
|
|
107
|
+
- Fixed height computation issue in *Pane* component.
|
|
108
|
+
|
|
109
|
+
## 8.2.71 - 2025-03-25
|
|
110
|
+
|
|
111
|
+
- Fixed issue with Select dropdown not opening in pane when custom styles are passed.
|
|
112
|
+
|
|
113
|
+
## 8.2.70 - 2025-03-21
|
|
114
|
+
|
|
115
|
+
- Added info icon to table columns with tooltips.
|
|
116
|
+
|
|
117
|
+
## 8.2.69 - 2025-03-21
|
|
118
|
+
|
|
119
|
+
- Fixed table sorting when array is passed to dataIndex.
|
|
120
|
+
|
|
121
|
+
## 8.2.68 - 2025-03-18
|
|
122
|
+
|
|
123
|
+
- Updated: dark mode primary color palette.
|
|
124
|
+
- Updated: dark mode pastel color palette.
|
|
125
|
+
- Updated: dark mode accent color palette.
|
|
126
|
+
- Updated: dark mode status color palette.
|
|
127
|
+
- Added: CSS `[color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme)`.
|
|
128
|
+
- Added: `font-smoothing` in dark mode.
|
|
129
|
+
- Updated: Modal footer background color.
|
|
130
|
+
|
|
131
|
+
### Before
|
|
132
|
+
|
|
133
|
+
<img width="1440" alt="Screenshot 2025-03-18 at 5 18 43 PM" src="https://github.com/user-attachments/assets/596c5757-144d-483b-8857-98c8b723b3ec" />
|
|
134
|
+
### After
|
|
135
|
+
<img width="1440" alt="Screenshot 2025-03-18 at 5 19 03 PM" src="https://github.com/user-attachments/assets/9819091d-0d3f-458e-8bf6-f95a6835b7c2" />
|
|
136
|
+
## 8.2.67 - 2025-03-18
|
|
137
|
+
- Fixed issue with *Table* column reordering
|
|
138
|
+
## 8.2.65 - 2025-03-10
|
|
139
|
+
Added: `data-cy` labels for *HeaderCellMenu* and *CellContent*.
|
|
140
|
+
## 8.2.62 - 2025-02-19
|
|
141
|
+
- Fixed: Pane footer cut-off issue in iOS Safari.
|
|
142
|
+
iPad Pro (11-inch) - Tested using Xcode
|
|
143
|
+

|
|
144
|
+
## 8.2.60 - 2025-02-11
|
|
145
|
+
Fixed data-cy label for *Input*.
|
|
146
|
+
## 8.2.59 - 2025-02-07
|
|
147
|
+
- Fixed TypeError in `useOverlay` hook.
|
|
148
|
+
## 8.2.58 - 2025-02-07
|
|
149
|
+
- Wrapped all localStorage operations in try-catch blocks to handle potential failures in private browsing mode or due to storage restrictions.
|
|
150
|
+
## 8.2.57 - 2025-02-07
|
|
151
|
+
- Fixed: Hex color input field auto-population issue in *ColorPicker*.
|
|
152
|
+
## 8.2.56 - 2025-02-06
|
|
153
|
+
- Added logic to show clear selection callout when all table rows are selected
|
|
154
|
+
## 8.2.53 - 2025-01-23
|
|
155
|
+
- Added: `data-cy` label for *ProgressBar*
|
|
156
|
+
## 8.2.52 - 2025-01-22
|
|
157
|
+
|
|
158
|
+
- Fixed TypeError in Pane component.
|
|
159
|
+
|
|
160
|
+
## 8.2.51 - 2025-01-21
|
|
161
|
+
|
|
162
|
+
- Fixed height computation issue in Pane component.
|
|
163
|
+
|
|
164
|
+
## 8.2.50 - 2025-01-21
|
|
165
|
+
|
|
166
|
+
- Fixed issue with table height computation when reorder column is enabled.
|
|
167
|
+
|
|
168
|
+
## 8.2.49 - 2025-01-10
|
|
169
|
+
|
|
170
|
+
- Added: Click functionality to the *Switch* component
|
|
171
|
+
|
|
172
|
+
## 8.2.48 - 2024-12-10
|
|
173
|
+
|
|
174
|
+
- Changed: *Table* font size unit from px to rem.
|
|
175
|
+
|
|
176
|
+
## 8.2.47 - 2024-12-10
|
|
177
|
+
|
|
178
|
+
- Shows the color palette in the color picker by default.
|
|
179
|
+
- Updates the color list and the onChange handler to align with the color and onChange handler of the picker.
|
|
180
|
+
- Refactors and cleans up the onChange handlers and the associated functions.
|
|
181
|
+
|
|
182
|
+
## 8.2.46 - 2024-12-10
|
|
183
|
+
|
|
184
|
+
- Skips over writing the saved email details with the duplicate email entered by the user.
|
|
185
|
+
|
|
186
|
+
## 8.2.45 - 2024-12-06
|
|
187
|
+
|
|
188
|
+
Changed the `data-cy` prop for *Toast* message component.
|
|
189
|
+
|
|
190
|
+
## 8.2.44 - 2024-12-06
|
|
191
|
+
|
|
192
|
+
- The MouseTrap lib by default will not fire callbacks for events inside fields like input, textarea etc.. We have to use `bindGlobal` if we want the key bindings for work for form fields as well.
|
|
193
|
+
|
|
194
|
+
> By default all keyboard events will not fire if you are inside of a textarea, input, or select to prevent undesirable things from happening.
|
|
195
|
+
|
|
196
|
+
> This means that a keyboard event bound using Mousetrap.bind will only work outside of form input fields, but using Mousetrap.bindGlobal will work in both places.
|
|
197
|
+
|
|
198
|
+
Documentation - https://craig.is/killing/mice
|
|
199
|
+
|
|
200
|
+
## 8.2.43 - 2024-12-05
|
|
201
|
+
|
|
202
|
+
- Updates the color palette to support hex values and removes the tailwind dependency.
|
|
203
|
+
|
|
204
|
+
## 8.2.41 - 2024-11-28
|
|
205
|
+
|
|
206
|
+
- Removed the logic to sanitize the value of the datepicker.
|
|
207
|
+
- The values are already sanitized in the onChange handler.
|
|
208
|
+
|
|
209
|
+
## 8.2.40 - 2024-11-27
|
|
210
|
+
|
|
211
|
+
- The false value of the prop `icon` was ignored in the implementations before v9.0.2.
|
|
212
|
+
|
|
213
|
+
- After 9.0.2, the [implementation](https://github.com/fkhadra/react-toastify/blob/main/src/components/Toast.tsx#L108-L117) is such that the icon is rendered as passed in the config.
|
|
214
|
+
|
|
215
|
+
- Since the `false` value was used to show the default icon set internally, replaced it with a function that returns null
|
|
216
|
+
which solved the problem.
|
|
217
|
+
|
|
218
|
+
- Code ref: https://github.com/fkhadra/react-toastify/blob/v8.0.1/src/components/Toast.tsx#L65-L75.
|
|
219
|
+
- The `if (icon === false)` statement was never success for some reason.
|
|
220
|
+
|
|
221
|
+
- PR which addressed this issue: https://github.com/fkhadra/react-toastify/pull/758
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
## 8.2.39 - 2024-11-27
|
|
225
|
+
|
|
226
|
+
- Updates the value and default value fixed to the allowed range only if the user has touched the fields. This will fix the values outside the allowed ranges until not properly rendered initially.
|
|
227
|
+
|
|
228
|
+
## 8.2.36 - 2024-11-12
|
|
229
|
+
|
|
230
|
+
- Removed the toastr icon by default.
|
|
231
|
+
|
|
232
|
+
## 8.2.35 - 2024-11-01
|
|
233
|
+
|
|
234
|
+
- Fixed: Added `@bigbinary/neeto-datepicker` to peer dependencies.
|
|
235
|
+
|
|
236
|
+
## 8.2.34 - 2024-11-01
|
|
237
|
+
|
|
238
|
+
- Updated NeetoDatePicker to accept `getNow` as an optional prop and replaces the `generateConfig.getNow` with the external `getNow` when availabel.
|
|
239
|
+
- set the `getNow` prop with value `dayjs` which will return the current time in the set timezone.
|
|
240
|
+
|
|
241
|
+
Demo: https://deepak-jose.neetorecord.com/watch/ace8d14e-ca06-42ac-aaa9-affe51287990
|
|
242
|
+
|
|
243
|
+
## 8.2.32 - 2024-10-24
|
|
244
|
+
|
|
245
|
+
- The `async` `handleSubmit` will always return a `Promise`, even if the submit handler inside doesn’t return one. This leads to unexpected bugs, as the `Promise` resolves immediately when using the `mutate` function of `useMutation` while the API call might still be in progress.
|
|
246
|
+
- In Formik, if a Promise is returned, it waits for it to resolve before setting isSubmitting to false. In our case, this happens immediately after the button click.
|
|
247
|
+
- Since we weren’t returning the result of the submit handler, it consistently returned a Promise once the handler executed, which caused this behavior.
|
|
248
|
+
|
|
249
|
+
## 8.2.31 - 2024-10-17
|
|
250
|
+
|
|
251
|
+
- Removed: Tailwind utility classes from components.
|
|
252
|
+
- Added: Utility classes for `text-transform`.
|
|
253
|
+
- Added: Utility classes for `max-width` and `min-width`.
|
|
254
|
+
- Added: Utility classes for `cursor`.
|
|
255
|
+
- Added: Utility classes for `font-size: inherit`.
|
|
256
|
+
|
|
257
|
+
## 8.2.30 - 2024-10-17
|
|
258
|
+
|
|
259
|
+
- Fixed issues with the *MultiEmailInput* component when `isCreatable` option is enabled.
|
|
260
|
+
|
|
261
|
+
## 8.2.29 - 2024-10-17
|
|
262
|
+
|
|
263
|
+
- Added: Text truncation for table column titles.
|
|
264
|
+
|
|
265
|
+
https://github.com/user-attachments/assets/f8eda9f5-56c9-46eb-90f2-96718e5137f8
|
|
266
|
+
|
|
267
|
+
@praveen-murali-ind _a
|
|
268
|
+
|
|
269
|
+
## 8.2.28 - 2024-10-16
|
|
270
|
+
|
|
271
|
+
- Changed: default vertical alignment of checkbox and radio buttons from `center` to `top`.
|
|
272
|
+
|
|
273
|
+
@praveen-murali-ind _a
|
|
274
|
+
|
|
275
|
+
## 8.2.27 - 2024-10-14
|
|
276
|
+
|
|
277
|
+
- Added caching logic in days util function.
|
|
278
|
+
|
|
279
|
+
## 8.2.26 - 2024-10-10
|
|
280
|
+
|
|
281
|
+
- Prevents calling hide tooltip if already destroyed, calling hide on a destroyed instance was throwing a warning in jest test.
|
|
282
|
+
- The removed props from the Dropdown component is no longer supported by Tippy, using those in the molecules was throwing warnings in the console.
|
|
283
|
+
|
|
284
|
+
## 8.2.25 - 2024-10-09
|
|
285
|
+
|
|
286
|
+
- Fixes existing jest warnings.
|
|
287
|
+
- Adds [`jest-fail-on-console`](https://www.npmjs.com/package/jest-fail-on-console) package to prevent checking in changes with warnings and errors in console.
|
|
288
|
+
|
|
289
|
+
## 8.2.24 - 2024-10-09
|
|
290
|
+
|
|
291
|
+
Upgraded the Rollup package to latest version(4.24.1), and its plugins as well!
|
|
292
|
+
|
|
293
|
+
## 8.2.23 - 2024-10-08
|
|
294
|
+
|
|
295
|
+
Added: `data-cy` prop to *Check* and *Close* icons in *Switch* component.
|
|
296
|
+
|
|
297
|
+
## 8.2.22 - 2024-10-07
|
|
298
|
+
|
|
299
|
+
This PR contains the following changes:
|
|
300
|
+
|
|
301
|
+
Added following improvements to the live playground:
|
|
302
|
+
|
|
303
|
+
- Added Syntax highlighting
|
|
304
|
+
- Changed the Editor to use light theme
|
|
305
|
+
- Added Default code to the Editor and removed the example code snippet
|
|
306
|
+
|
|
307
|
+
## 8.2.21 - 2024-10-07
|
|
308
|
+
|
|
309
|
+
- Fixed dayjs timezone issue with *DatePicker* and *TimePicker* components.
|
|
310
|
+
|
|
311
|
+
## 8.2.19 - 2024-10-04
|
|
312
|
+
|
|
313
|
+
- Removes the save and continue navigation functionality and replaces it with stay on the page.
|
|
314
|
+
|
|
315
|
+
## 8.2.18 - 2024-09-25
|
|
316
|
+
|
|
317
|
+
The menu was not visible in the overlay components like Pane. To fix that increased the zIndex from the 9999 which was the default value of Tippy to 99999.
|
|
318
|
+
|
|
319
|
+
## 8.2.17 - 2024-09-24
|
|
320
|
+
|
|
321
|
+
The existing implementation was ignoring the already set fixed columns. This will merge the frozen columns with the fixed columns in the columnData in the initial render.
|
|
322
|
+
|
|
323
|
+
## 8.2.16 - 2024-09-20
|
|
324
|
+
|
|
325
|
+
- Updated the handleSubmit function on the Form component from Formik to be asynchronous.
|
|
326
|
+
|
|
327
|
+
## 8.2.15 - 2024-09-19
|
|
328
|
+
|
|
329
|
+
- Implements freeze/unfreeze column feature in the Table.
|
|
330
|
+
|
|
331
|
+
## 8.2.14 - 2024-09-17
|
|
332
|
+
|
|
333
|
+
- Replaced AntdTable loader with NeetoUI Spinner.
|
|
334
|
+
|
|
335
|
+
### Before
|
|
336
|
+
|
|
337
|
+
<img width="1103" alt="Screenshot 2024-09-13 at 12 03 35 PM" src="https://github.com/user-attachments/assets/24602fa3-9cb9-487e-bcaa-e88ea73276c3">
|
|
338
|
+
### After
|
|
339
|
+
<img width="1438" alt="Screenshot 2024-09-13 at 12 58 28 PM" src="https://github.com/user-attachments/assets/ab934456-c014-4bdb-b03b-709333e98d6a">
|
|
340
|
+
<img width="1159" alt="Screenshot 2024-09-13 at 12 26 11 PM" src="https://github.com/user-attachments/assets/73317b59-15f5-429b-8458-359934b216de">
|
|
341
|
+
## 8.2.13 - 2024-09-10
|
|
342
|
+
Added: `data-cy` prop to *Radio* input
|
|
343
|
+
## 8.2.11 - 2024-09-05
|
|
344
|
+
https://deepak-jose.neetorecord.com/watch/ab0a7044-22de-4564-a015-0002ed390736
|
|
345
|
+
## 8.2.7 - 2024-08-26
|
|
346
|
+
Handles the case where `BlockNavigation` is used without formik.
|
|
347
|
+
## 8.2.6 - 2024-08-26
|
|
348
|
+
- Fixed: disabled prop of Dropdown not working when a customTarget is used
|
|
349
|
+
## 8.2.5 - 2024-08-14
|
|
350
|
+

|
|
351
|
+
## 8.2.3 - 2024-08-13
|
|
352
|
+
<img width="1137" alt="Screenshot 2024-08-13 at 11 49 23 AM" src="https://github.com/user-attachments/assets/957cdb75-b0da-4470-8e33-d7c21b04ba23">
|
|
353
|
+
<img width="1114" alt="Screenshot 2024-08-13 at 11 51 50 AM" src="https://github.com/user-attachments/assets/ea574af4-3804-4aa2-8a8b-f0eb85bbd988">
|
|
354
|
+
## 8.2.1 - 2024-07-29
|
|
355
|
+
- Fixed: Fixed the scrollTo property of tables from being undefined.
|
|
356
|
+
## 8.2.0 - 2024-07-27
|
|
357
|
+
- Added: Persist scroll position of the table during navigation.
|
|
358
|
+
## 8.1.6 - 2024-07-26
|
|
359
|
+
<img width="1020" alt="image" src="https://github.com/user-attachments/assets/298408c6-60dc-4e29-a0c7-efb1c3350a29">
|
|
360
|
+
Main story UI
|
|
361
|
+
Before
|
|
362
|
+
<img width="914" alt="image" src="https://github.com/user-attachments/assets/d7121a93-ad2d-4ac7-9353-6c5706ab1752">
|
|
363
|
+
After
|
|
364
|
+
<img width="1010" alt="image" src="https://github.com/user-attachments/assets/a322fb68-023c-4a3c-9ec1-d3a02238b5a6">
|
|
365
|
+
## 8.1.4 - 2024-07-24
|
|
366
|
+
- Changed: default font family to Inter on Windows.
|
|
367
|
+
- Removed: font family overrides in Storybook.
|
|
368
|
+
- Fixed: the usage of CSS font variable.
|
|
369
|
+
@praveen-murali-ind _a
|
|
370
|
+
## 8.1.0 - 2024-07-22
|
|
371
|
+
Updates all formik components in neetoUI to use status to show server error and reset the status when the value changes.
|
|
372
|
+
## 8.0.0 - 2024-07-19
|
|
373
|
+
- Removed: **BREAKING** *TimePickerInput* and *DateTimePicker* components.
|
|
374
|
+
## 7.1.0 - 2024-07-16
|
|
375
|
+
- Added a new TranslationProvider for initializing translations for external use of NeetoUI
|
|
376
|
+
## 7.0.5 - 2024-07-15
|
|
377
|
+
- Added support for displaying tooltips for disabled buttons in NoData component
|
|
378
|
+
## 7.0.4 - 2024-07-11
|
|
379
|
+
- Updated framer-motion to 11.2.14
|
|
380
|
+
## 7.0.3 - 2024-07-11
|
|
381
|
+
- Disabled mask format in DatePicker and TimePicker
|
|
382
|
+
## 7.0.2 - 2024-07-03
|
|
383
|
+
- Added: placeholder for TimePicker and DateTimePicker
|
|
384
|
+
- Added: enabled masked format
|
|
385
|
+
## 7.0.1 - 2024-07-01
|
|
386
|
+
- Fixed the scrollbar visibility issue in Tables
|
|
387
|
+
## 7.0.0 - 2024-06-27
|
|
388
|
+
### Color palette
|
|
389
|
+
- Updated: `--neeto-ui-black` from `#121212` to `#0c111d`.
|
|
390
|
+
- Updated: `--neeto-ui-gray-800` from `#1f1f1f` to `#101828`.
|
|
391
|
+
- Updated: `--neeto-ui-gray-700` from `#2f3941` to `#1d2939`.
|
|
392
|
+
- Updated: `--neeto-ui-gray-600` from `#68737d` to `#344054`.
|
|
393
|
+
- Updated: `--neeto-ui-gray-100` from `#f8f9f9` to `#f6f7f8`.
|
|
394
|
+
- Added: `--neeto-ui-gray-50` - `#fafafa`.
|
|
395
|
+
- Updated: `--neeto-ui-primary-800` from `#2d36d4` to `#006653`.
|
|
396
|
+
- Updated: `--neeto-ui-primary-600` from `#3642df` to `#007a64`.
|
|
397
|
+
- Updated: `--neeto-ui-primary-500` from `#4558f9` to `#008068`.
|
|
398
|
+
- Updated: `--neeto-ui-primary-100` from `#ebecfe` to `#e1f3ee`.
|
|
399
|
+
- Added: `--neeto-ui-primary-50` - `#f0f9f7`.
|
|
400
|
+
- Added: `--neeto-ui-accent-800` - `#095aba`.
|
|
401
|
+
- Added: `--neeto-ui-accent-600` - `#0d66d0`.
|
|
402
|
+
- Added: `--neeto-ui-accent-500` - `#1473e6`.
|
|
403
|
+
- Added: `--neeto-ui-accent-100` - `#e6f4ff`.
|
|
404
|
+
- Added: `--neeto-ui-accent-50` - `#eff8ff`.
|
|
405
|
+
- Updated: `--neeto-ui-success-800` from `#107154` to `#01795d`.
|
|
406
|
+
- Updated: `--neeto-ui-success-600` from `#12805c` to `#018d6d`.
|
|
407
|
+
- Updated: `--neeto-ui-success-500` from `#268e6c` to `#02a27c`.
|
|
408
|
+
- Updated: `--neeto-ui-success-100` from `#e1f3ee` to `#ebfffa`.
|
|
409
|
+
### Dark mode
|
|
410
|
+
- Added: `--neeto-ui-gray-50` - `#0a0a0a`.
|
|
411
|
+
- Updated: `--neeto-ui-primary-800` from `#39b990` to `#00f5c8`.
|
|
412
|
+
- Updated: `--neeto-ui-primary-600` from `#33ab84` to `#00e0b7`.
|
|
413
|
+
- Updated: `--neeto-ui-primary-500` from `#2d9d78` to `#00cca7`.
|
|
414
|
+
- Updated: `--neeto-ui-primary-100` from `#175541` to `#003d31`.
|
|
415
|
+
- Added: `--neeto-ui-primary-50` - `#002921`.
|
|
416
|
+
- Added: `--neeto-ui-accent-800` - `#8ebdf5`.
|
|
417
|
+
- Added: `--neeto-ui-accent-600` - `#69a7f2`.
|
|
418
|
+
- Added: `--neeto-ui-accent-500` - `#4390ef`.
|
|
419
|
+
- Added: `--neeto-ui-accent-100` - `#0a3871`.
|
|
420
|
+
- Added: `--neeto-ui-accent-50` - `#07254b`.
|
|
421
|
+
- Updated: `--neeto-ui-success-800` from `#39b990` to `#00f5c8`.
|
|
422
|
+
- Updated: `--neeto-ui-success-600` from `#33ab84` to `#00e0b7`.
|
|
423
|
+
- Updated: `--neeto-ui-success-500` from `#2d9d78` to `#00cca7`.
|
|
424
|
+
- Updated: `--neeto-ui-success-100` from `#175541` to `#003d31`.
|
|
425
|
+
- Updated: `--neeto-ui-info-800` from `#4b9cf5` to `#8ebdf5`.
|
|
426
|
+
- Updated: `--neeto-ui-info-600` from `#378ef0` to `#69a7f2`.
|
|
427
|
+
- Updated: `--neeto-ui-info-500` from `#2680eb` to `#4390ef`.
|
|
428
|
+
- Updated: `--neeto-ui-info-100` from `#0b4589` to `#0a3871`.
|
|
429
|
+
### Utility classes
|
|
430
|
+
- Added: Utility classes for the newly added colors.
|
|
431
|
+
### Box shadows
|
|
432
|
+
- Updated: `--neeto-ui-shadow-xs` to `rgba(0, 0, 0, 0.1) 0px 2px 1px -1px, rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.05) 0px 1px 3px 0px`.
|
|
433
|
+
- Updated: `--neeto-ui-shadow-sm` to `rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px`.
|
|
434
|
+
- Updated: `--neeto-ui-shadow-md` to `rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px`.
|
|
435
|
+
- Updated: `--neeto-ui-shadow-lg` to `rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px`.
|
|
436
|
+
### Component updates
|
|
437
|
+
- Updated: Button hover/focus states.
|
|
438
|
+
- Improved: Callout styles.
|
|
439
|
+
- Improved: Table styles.
|
|
440
|
+
- Improved: Toast bg.
|
|
441
|
+
- Updated: Toast button style to tertiary.
|
|
442
|
+
- Updated: Tab border color.
|
|
443
|
+
### Storybook updates
|
|
444
|
+
- Updated: Storybook theme to match the branding.
|
|
445
|
+
- Improved: Documentation readability.
|
|
446
|
+
## 6.8.3 - 2024-06-24
|
|
447
|
+
- Added option to pass data-cy to accordion
|
|
448
|
+
|
|
449
|
+
## 6.8.2 - 2024-06-19
|
|
450
|
+
|
|
451
|
+
https://navaneeth-d.neetorecord.com/watch/f777bc32-f8f1-4dd0-85bb-04be9c369c7b
|
|
452
|
+
|
|
453
|
+
## 6.8.1 - 2024-06-06
|
|
454
|
+
|
|
455
|
+
- Added: Autoscroll and autoformatting features in the *MultiEmailInput* component.
|
|
456
|
+
|
|
457
|
+
## 6.8.0 - 2024-06-04
|
|
458
|
+
|
|
459
|
+
- Changed: **BREAKING**: Added @babel/runtime, @bigbinary/neeto-hotkeys, @tippyjs/react, classnames, dayjs, linkify-react, and qs and peer dependencies.
|
|
460
|
+
|
|
461
|
+
## 6.7.5 - 2024-06-04
|
|
462
|
+
|
|
463
|
+
Adds logic to prevent multiple submissions when enter is pressed
|
|
464
|
+
Video: https://navaneeth-d.neetorecord.com/watch/91e0358f-dbaf-468a-a615-09bf4cfc90dc
|
|
465
|
+
|
|
466
|
+
## 6.7.4 - 2024-05-30
|
|
467
|
+
|
|
468
|
+
- Changed: status position to the bottom right.
|
|
469
|
+
- Changed: status size.
|
|
470
|
+
|
|
471
|
+
@praveen-murali-ind _a
|
|
472
|
+
|
|
473
|
+
## 6.7.3 - 2024-05-30
|
|
474
|
+
|
|
475
|
+
- Fixed: mobile responsiveness of the Stepper component.
|
|
476
|
+
|
|
477
|
+
## 6.7.2 - 2024-05-30
|
|
478
|
+
|
|
479
|
+
Repositions color palette to top
|
|
480
|
+
|
|
481
|
+
## 6.7.1 - 2024-05-28
|
|
482
|
+
|
|
483
|
+
- Changed: Removed react-select and framer-motion from peer dependencies.
|
|
484
|
+
|
|
485
|
+
## 6.7.0 - 2024-05-28
|
|
486
|
+
|
|
487
|
+
- Changed: Moved some dependencies to peerDependencies
|
|
488
|
+
|
|
489
|
+
## 6.6.1 - 2024-05-28
|
|
490
|
+
|
|
491
|
+
Before
|
|
492
|
+
<img width="724" alt="image" src="https://github.com/bigbinary/neeto-ui/assets/8749438/f9139e23-11fe-4b11-8144-464dd9077424">
|
|
493
|
+
|
|
494
|
+
After
|
|
495
|
+
<img width="719" alt="image" src="https://github.com/bigbinary/neeto-ui/assets/8749438/ad364385-9818-47c4-9c63-9d8ea5a0418c">
|
|
496
|
+
|
|
497
|
+
## 6.6.0 - 2024-05-24
|
|
498
|
+
|
|
499
|
+
- Added: a new component `ProgressBar`
|
|
500
|
+
|
|
501
|
+
## 6.5.20 - 2024-05-16
|
|
502
|
+
|
|
503
|
+
- Fixed: color picker dropdown height.
|
|
504
|
+
|
|
505
|
+
Before
|
|
506
|
+
<img width="267" alt="Screenshot 2024-05-16 at 7 56 51 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/2c2e0a4e-6113-40cc-9b92-281bf35639e3">
|
|
507
|
+
|
|
508
|
+
After
|
|
509
|
+
<img width="249" alt="Screenshot 2024-05-16 at 7 55 58 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/2c841c91-06e8-4c78-b9b1-614b2676cf6a">
|
|
510
|
+
|
|
511
|
+
## 6.5.18 - 2024-05-10
|
|
512
|
+
|
|
513
|
+
- Updated: onChange handler types of ColorPicker
|
|
514
|
+
|
|
515
|
+
## 6.5.17 - 2024-05-09
|
|
516
|
+
|
|
517
|
+
- Added: ability to reset timestamp value to null using value prop
|
|
518
|
+
|
|
519
|
+
## 6.5.16 - 2024-05-08
|
|
520
|
+
|
|
521
|
+
- Added: onBlur handler for textarea to trim leading and trailing spaces
|
|
522
|
+
|
|
523
|
+
## 6.5.15 - 2024-05-07
|
|
524
|
+
|
|
525
|
+
- Fixed: `toastId` returning `undefined` when using **Toastr.error**
|
|
526
|
+
|
|
527
|
+
## 6.5.14 - 2024-05-07
|
|
528
|
+
|
|
529
|
+
Added: Logic to return `toastId` when calling **Toastr**.
|
|
530
|
+
|
|
531
|
+
## 6.5.13 - 2024-04-16
|
|
532
|
+
|
|
533
|
+
Fixes the occasional scrollbar that appears when the input height is calculated
|
|
534
|
+
based on the content in the value change handler.
|
|
535
|
+
|
|
536
|
+
## 6.5.12 - 2024-04-15
|
|
537
|
+
|
|
538
|
+
- Added: Customizable border to Popover arrow.
|
|
539
|
+
|
|
540
|
+
<img width="469" alt="Screenshot 2024-04-15 at 7 25 08 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/70358c5b-6376-476c-a366-6171f4461e0d">
|
|
541
|
+
<img width="567" alt="Screenshot 2024-04-15 at 7 24 56 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/2a179dd2-0dbe-4583-9e96-c12dddb3480b">
|
|
542
|
+
<img width="496" alt="Screenshot 2024-04-15 at 7 27 10 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/35a20f00-13f2-469a-b00f-5848a4c100e2">
|
|
543
|
+
<img width="479" alt="Screenshot 2024-04-15 at 7 25 54 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/1c1505de-be74-4253-8721-774e33737917">
|
|
544
|
+
Darkmode
|
|
545
|
+
<img width="527" alt="Screenshot 2024-04-15 at 7 40 37 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/297a9cd4-e56c-4582-82a3-c104a254afc0">
|
|
546
|
+
## 6.5.11 - 2024-04-11
|
|
547
|
+
Fixed: `antd` Datepicker not validating minDate and maxDate on input date changes.
|
|
548
|
+
## 6.5.10 - 2024-04-11
|
|
549
|
+
Fixed: Remove unnecessary onBlur trigger on amPm change in TimePickerInput
|
|
550
|
+
## 6.5.7 - 2024-03-29
|
|
551
|
+
Fixed: Clearing all rows by directly changing `selectedRowKeys` not working when
|
|
552
|
+
`bulkSelectedAllRowsProps` is passed.
|
|
553
|
+
## 6.5.5 - 2024-03-27
|
|
554
|
+
- Fixed: Table sort state persisting when the query param is removed
|
|
555
|
+
## 6.5.4 - 2024-03-27
|
|
556
|
+
Fixed: DatePicker unable to switch to different month or year.
|
|
557
|
+
## 6.5.3 - 2024-03-27
|
|
558
|
+
Added: Styles for *ActionBlock* wrapper
|
|
559
|
+
## 6.5.2 - 2024-03-27
|
|
560
|
+
- Added: tertiary variant Button.
|
|
561
|
+
<img width="104" alt="Screenshot 2024-03-27 at 5 44 48 PM" src="https://github.com/bigbinary/neeto-ui/assets/48869249/e02cb5cc-3633-444f-b0ce-71004dda55bb">
|
|
562
|
+
## 6.5.1 - 2024-03-26
|
|
563
|
+
- Added: `isSubmitting` prop for *ActionBlock*
|
|
564
|
+
## 6.5.0 - 2024-03-22
|
|
565
|
+
Added: `bulkSelectAllRowsProps` for tables to allow selecting all rows for multipage tables
|
|
566
|
+
## 6.4.0 - 2024-03-21
|
|
567
|
+
Added: minDateTime and maxDateTime prop.
|
|
568
|
+
## 6.3.10 - 2024-03-20
|
|
569
|
+
While changing the page for multi-paged table, the selected rows will not be
|
|
570
|
+
deselected.
|
|
571
|
+
## 6.3.9 - 2024-03-20
|
|
572
|
+
- Added: Support for overriding the dropdown props in the *ColorPicker*
|
|
573
|
+
component so that it can be further customised.
|
|
574
|
+
## 6.3.8 - 2024-03-13
|
|
575
|
+
- Added: data attribute to table triple dots.
|
|
576
|
+
## 6.3.7 - 2024-03-11
|
|
577
|
+
- Added: Additional dropdown triggers
|
|
578
|
+
## 6.3.6 - 2024-03-06
|
|
579
|
+
- Added: support for resize, suffix, prefix and sizing for textarea.
|
|
580
|
+
@ajmaln _a Please review.
|
|
581
|
+
## 6.3.5 - 2024-03-06
|
|
582
|
+
Fixed: Select strategy="fixed"` not scrolling to selected
|
|
583
|
+
## 6.3.4 - 2024-03-05
|
|
584
|
+
Fixed: TimpickerInput firefox ui issue
|
|
585
|
+
## 6.3.3 - 2024-03-05
|
|
586
|
+
Fixed: update sortedInfo from queryParams in table on refresh.
|
|
587
|
+
## 6.3.2 - 2024-02-28
|
|
588
|
+
Before
|
|
589
|
+

|
|
590
|
+
After
|
|
591
|
+

|
|
592
|
+
|
|
593
|
+
---
|
|
594
|
+
|
|
595
|
+
Before
|
|
596
|
+
|
|
597
|
+

|
|
598
|
+
|
|
599
|
+
After
|
|
600
|
+
|
|
601
|
+

|
|
602
|
+
|
|
603
|
+
## 6.3.0 - 2024-02-27
|
|
604
|
+
|
|
605
|
+
- Added: `range` prop to allow time range picking.
|
|
606
|
+
- Added: Selected values will be available on `onBlur`.
|
|
607
|
+
- Fixed: Error while string value is passed.
|
|
608
|
+
|
|
609
|
+
## 6.2.6 - 2024-02-22
|
|
610
|
+
|
|
611
|
+
- Removed sort_by query param from URL when it takes no value
|
|
612
|
+
|
|
613
|
+
## 6.2.5 - 2024-02-12
|
|
614
|
+
|
|
615
|
+
Added: `data-cy` to Tag container div.
|
|
616
|
+
|
|
617
|
+
## 6.2.4 - 2024-02-12
|
|
618
|
+
|
|
619
|
+
- Updated: Avatar theme.
|
|
620
|
+
|
|
621
|
+
<img width="1440" alt="Theme 3" src="https://github.com/bigbinary/neeto-ui/assets/48869249/b2fb1559-2e34-492d-b839-57ec32f3061d">
|
|
622
|
+
## 6.2.3 - 2024-02-06
|
|
623
|
+
Added: Support for `allowClear` prop in *DatePicker* to be `false`
|
|
624
|
+
## 6.2.2 - 2024-02-05
|
|
625
|
+
If the value prop is invalid date or date string, the value is converted to null.
|
|
626
|
+
## 6.2.1 - 2024-01-30
|
|
627
|
+
- Fixed: Icon button shrinking issue in table cell.
|
|
628
|
+
- Fixed: Updated table cell [link button](https://neeto-ui.neeto.com/?path=/story/components-button--styles&hash=710ee799a61abebfaa6923e81c35d2d46aa793ef) text alignment to left.
|
|
629
|
+
- Added: `white-space: normal` to table cell [link button](https://neeto-ui.neeto.com/?path=/story/components-button--styles&hash=710ee799a61abebfaa6923e81c35d2d46aa793ef).
|
|
630
|
+
## 6.2.0 - 2024-01-25
|
|
631
|
+
- Add ability to add more actions to the table header.
|
|
632
|
+
## 6.1.3 - 2024-01-17
|
|
633
|
+
### After
|
|
634
|
+
<img width="691" alt="Screenshot 2024-01-05 at 6 41 38 PM" src="https://github.com/bigbinary/neeto-ui/assets/16187886/7b1f3e2d-5f35-4089-908f-44c0db4d5601">
|
|
635
|
+
<img width="600" alt="Screenshot 2024-01-05 at 6 59 07 PM" src="https://github.com/bigbinary/neeto-ui/assets/16187886/0f47e403-83cc-42b2-9637-44dbe2ee5fe7">
|
|
636
|
+
## 6.1.2 - 2024-01-05
|
|
637
|
+
- Added support for disabling the create option for MultiEmailInput from the host application
|
|
638
|
+
## 6.1.1 - 2024-01-04
|
|
639
|
+
Added missing props to the DateTimePicker component.
|
|
640
|
+
Some of the events were not accessible within the parent component required to do some async operations.
|
|
641
|
+
## 6.1.0 - 2024-01-02
|
|
642
|
+
Added: Ability to see info about a table column
|
|
643
|
+
## 6.0.5 - 2023-12-22
|
|
644
|
+
- Fixed: Pane scroll issue.
|
|
645
|
+
## 6.0.3 - 2023-12-15
|
|
646
|
+
Added: data-cy to *Spinner*
|
|
647
|
+
**Reviewers**
|
|
648
|
+
<!---
|
|
649
|
+
------------- FORMAT FOR DESCRIPTION -------------
|
|
650
|
+
Prefix the change with one of these keywords:
|
|
651
|
+
- Added: for new features.
|
|
652
|
+
- Changed: for changes in existing functionality.
|
|
653
|
+
- Deprecated: for soon-to-be removed features.
|
|
654
|
+
- Removed: for now removed features.
|
|
655
|
+
- Fixed: for any bug fixes.
|
|
656
|
+
- Security: in case of vulnerabilities.
|
|
657
|
+
Points to note:
|
|
658
|
+
- The description shall be represented in bullet points
|
|
659
|
+
- Add the keyword BREAKING in bold style for changes that could potentially break the component, eg: **BREAKING**
|
|
660
|
+
- Represent a component name in italics, eg: *Modal*
|
|
661
|
+
- Enclose a prop name in double backticks, eg: `isLoading`
|
|
662
|
+
Example:
|
|
663
|
+
- Changed: **BREAKING** `isLoading` prop of *Table* to `loading`.
|
|
664
|
+
- Added: `hideOnTargetExit` prop to *Tooltip* component.
|
|
665
|
+
- Deprecated: **BREAKING** `loading` prop of *Pane*, *Modal* and *Alert* components.
|
|
666
|
+
- Removed: **BREAKING** `placement` prop from *Tooltip* (Use position instead).
|
|
667
|
+
--->
|
|
668
|
+
## 6.0.2 - 2023-12-14
|
|
669
|
+
Enhanced the responsiveness of the following components
|
|
670
|
+
- Alert
|
|
671
|
+
- Modal
|
|
672
|
+
- Pane
|
|
673
|
+
- Toastr
|
|
674
|
+
- NoData
|
|
675
|
+
- DatePicker
|
|
676
|
+
- Stepper
|
|
677
|
+
**Screenshots**
|
|
678
|
+
<img width="339" alt="Screenshot 2023-12-12 at 3 22 21 AM" src="https://github.com/bigbinary/neeto-ui/assets/24496302/fb641a39-ad0d-4ae9-8dd7-400a86d1229d">
|
|
679
|
+
<img width="339" alt="Screenshot 2023-12-12 at 3 23 48 AM" src="https://github.com/bigbinary/neeto-ui/assets/24496302/572b57f6-7c45-4405-afc6-d3ab9b47a844">
|
|
680
|
+
<img width="343" alt="Screenshot 2023-12-12 at 3 26 02 AM" src="https://github.com/bigbinary/neeto-ui/assets/24496302/e5c47a01-d26e-4b50-a6db-7bdbf42849fd">
|
|
681
|
+
<img width="341" alt="Screenshot 2023-12-12 at 3 26 22 AM" src="https://github.com/bigbinary/neeto-ui/assets/24496302/7db5d9f5-8e4f-4aa8-91a5-5f0981d3c52b">
|
|
682
|
+
## 6.0.0 - 2023-12-04
|
|
683
|
+
- Changed: Enhanced the customizability of all the components by allowing users
|
|
684
|
+
to easily override the default styles.
|
|
685
|
+
- Added: Added CSS customization storybook example for all the components.
|
|
686
|
+
- Changed: Updated *Typography* component to be responsive using
|
|
687
|
+
[RFS](https://github.com/twbs/rfs/tree/v9.0.3).
|
|
688
|
+
- Changed: Updated components using Ant Design to CSS-in-JS approach with
|
|
689
|
+
improved dark mode support.
|
|
690
|
+
- Removed: Removed Ant Design vendor styles in favor of CSS-in-JS approach.
|
|
691
|
+
- Removed: Removed unused components and styles.
|
|
692
|
+
- Fixed: Fixed *TimePicker* component dark mode issue.
|
|
693
|
+
## 5.2.46 - 2023-12-04
|
|
694
|
+
- Added: Logic to handle pagination when the last item from the last page is
|
|
695
|
+
deleted and when applying filters.
|
|
696
|
+
## 5.2.45 - 2023-12-01
|
|
697
|
+
Fixed: Loading indicator with icon issue in `Button`
|
|
698
|
+
## 5.2.42 - 2023-11-30
|
|
699
|
+
Added: DateTimePicker component
|
|
700
|
+
## 5.2.41 - 2023-11-24
|
|
701
|
+
Previously onBlur was causing a redundant onChange call. Now onChange will be
|
|
702
|
+
called only if the value contains leading or trailing whitespaces.
|
|
703
|
+
## 5.2.40 - 2023-11-23
|
|
704
|
+
- Updated the multi select component to not show the `Add` button when no
|
|
705
|
+
options are selected.
|
|
706
|
+
- Changed the type of the `Add` button from `primary` to `secondary`.
|
|
707
|
+
## 5.2.38 - 2023-11-23
|
|
708
|
+
- Updates the logic to calculate table height without considering the pagination
|
|
709
|
+
height when pagination is set to false
|
|
710
|
+
## 5.2.37 - 2023-11-22
|
|
711
|
+
Added: `hideCancelButton` prop to **Alert** component.
|
|
712
|
+
## 5.2.36 - 2023-11-22
|
|
713
|
+
- Fixed: `undefined` options issue in *Select*
|
|
714
|
+
## 5.2.35 - 2023-11-22
|
|
715
|
+
Added: data cy to close select/multiSelect icon
|
|
716
|
+
## 5.2.34 - 2023-11-21
|
|
717
|
+
This PR will migrate the package from `react-linkify` to `linkify-react`
|
|
718
|
+
## 5.2.33 - 2023-11-20
|
|
719
|
+
- Fixed: Grouped select `defaultValue` not being set issue
|
|
720
|
+
## 5.2.32 - 2023-11-15
|
|
721
|
+
- Updated pagination URL param handling in the *Table*.
|
|
722
|
+
- Implemented pagination URL param handling in the *Pagination* component.
|
|
723
|
+
## 5.2.31 - 2023-11-15
|
|
724
|
+
- Allowed the component to use its internal state even when the `onChange` prop
|
|
725
|
+
is passed.
|
|
726
|
+
## 5.2.29 - 2023-11-13
|
|
727
|
+
Added: `Add` button in *Select*
|
|
728
|
+
## 5.2.28 - 2023-11-08
|
|
729
|
+
Added: *Stepper* component.
|
|
730
|
+
## 5.2.27 - 2023-11-08
|
|
731
|
+
Changed: Updated instances of `@reach/autoid` with React `useId`
|
|
732
|
+
## 5.2.26 - 2023-11-08
|
|
733
|
+
- Changed: pagination button size from `32px` to `28px`.
|
|
734
|
+
- Changed: reduced pagination margin top and margin bottom values to make it
|
|
735
|
+
more compact.
|
|
736
|
+
## 5.2.24 - 2023-11-07
|
|
737
|
+
Added: data-cy attribute to TextArea
|
|
738
|
+
## 5.2.23 - 2023-11-06
|
|
739
|
+
Added: data-cy attributes to Select, DatePicker and Tags
|
|
740
|
+
## 5.2.21 - 2023-10-27
|
|
741
|
+
Added: `TimePickerInput` component
|
|
742
|
+
## 5.2.20 - 2023-10-26
|
|
743
|
+
Changed: Upgraded `framer-motion` and removed some unused packages. Added:
|
|
744
|
+
neetoCI config for CI checks
|
|
745
|
+
## 5.2.19 - 2023-10-25
|
|
746
|
+
Fixed: Trim issue in number inputs
|
|
747
|
+
## 5.2.18 - 2023-10-25
|
|
748
|
+
Added: Support for lazy loading for the `Select` component
|
|
749
|
+
## 5.2.17 - 2023-10-24
|
|
750
|
+
Added: New *TreeSelect* component.
|
|
751
|
+
## 5.2.15 - 2023-10-23
|
|
752
|
+
Add onBlur handler to `Input` component to trim leading and trailing spaces
|
|
753
|
+
## 5.2.13 - 2023-10-20
|
|
754
|
+
Fixed: scrollToErrorField not working for Select component.
|
|
755
|
+
## 5.2.11 - 2023-10-20
|
|
756
|
+
- Fixed: Memory leaks in overlay manager
|
|
757
|
+
## 5.2.10 - 2023-10-20
|
|
758
|
+
- Added: Tooltip to `Kbd` component
|
|
759
|
+
## 5.2.8 - 2023-10-19
|
|
760
|
+
- Fixed: Button click-ability when disabled
|
|
761
|
+
## 5.2.2 - 2023-10-05
|
|
762
|
+
- The bug was due to a layout shift that happens when the formik error message
|
|
763
|
+
is rendered. Details in
|
|
764
|
+
https://github.com/bigbinary/neeto-ui/issues/1810#issuecomment-1745953703.
|
|
765
|
+
- The issue is fixed when we prevent the default behavior on mouseDown events
|
|
766
|
+
for the cancel button, as suggesed by Sreerag in
|
|
767
|
+
https://github.com/bigbinary/neeto-ui/issues/1810#issuecomment-1746360449
|
|
768
|
+
## 5.2.0 - 2023-09-24
|
|
769
|
+
- Updated: `antd` and `dayjs` version.
|
|
770
|
+
## 5.1.19 - 2023-09-22
|
|
771
|
+
- Added: Support for overriding props to `Alert` in `BlockNavigation`
|
|
772
|
+
## 5.1.18 - 2023-09-21
|
|
773
|
+
- Added: Support for showing only the palette in `ColorPicker`
|
|
774
|
+
## 5.1.17 - 2023-09-19
|
|
775
|
+
- Fixed: Short hex code filling up the input in `ColorPicker`
|
|
776
|
+
## 5.1.16 - 2023-09-12
|
|
777
|
+
- Changed: onChange function of `ColorPicker` to output hex-alpha value if the
|
|
778
|
+
transparency option is turned on
|
|
779
|
+
## 5.1.15 - 2023-09-06
|
|
780
|
+
- Fixed: bug with sortable columns trying to access a `null` `headerRef ` in the
|
|
781
|
+
`handleHeaderClasses` function.
|
|
782
|
+
- Achieved the same behavior of center aligning table header content for
|
|
783
|
+
sortable columns, without depending on `headerRef` to do so.
|
|
784
|
+
## 5.1.14 - 2023-09-05
|
|
785
|
+
- Added: forwardRef to `Tag` component.
|
|
786
|
+
## 5.1.13 - 2023-09-01
|
|
787
|
+
- Updated the delay for calculating the height of the table header. This is to
|
|
788
|
+
ensure that the height of the table is not affected by the flaky animation
|
|
789
|
+
within the header during render process.
|
|
790
|
+
## 5.1.11 - 2023-08-31
|
|
791
|
+
Added truncating feature when more than 3 emails are shown on the MultiEmail
|
|
792
|
+
input.
|
|
793
|
+
## 5.1.9 - 2023-08-25
|
|
794
|
+
Fixed: scroll to error is not triggered on submitting form with enter key.
|
|
795
|
+
## 5.1.8 - 2023-08-24
|
|
796
|
+
Added `type = "button"` attribute to *Tab.Item* component
|
|
797
|
+
## 5.1.7 - 2023-08-21
|
|
798
|
+
Added: `rejectCharsRegex` prop to *Input* component.
|
|
799
|
+
## 5.1.6 - 2023-08-17
|
|
800
|
+
- Added: Mechanism to set the pagination and sorting config in URL query
|
|
801
|
+
parameters for `Table`.
|
|
802
|
+
## 5.1.5 - 2023-08-08
|
|
803
|
+
- Added: `initialFocusRef` prop to *Alert*
|
|
804
|
+
## 5.1.4 - 2023-08-04
|
|
805
|
+
- Fixed: Handled dot paths in *ScrollToErrorField*.
|
|
806
|
+
## 5.1.3 - 2023-08-02
|
|
807
|
+
- Fixed: Disabled click in selected option close button if select is disabled.
|
|
808
|
+
## 5.1.2 - 2023-08-02
|
|
809
|
+
- FIxed: Updated deprecated CSS property `color-adjust`
|
|
810
|
+
## 5.1.1 - 2023-08-02
|
|
811
|
+
- Fixed: issue with onClose in *Dropdown* not getting called on trigger click.
|
|
812
|
+
## 5.1.0 - 2023-08-02
|
|
813
|
+
Fixed: Duplicate onSubmit call bug while repeatedly clicking on submit button.
|
|
814
|
+
## 5.0.18 - 2023-08-01
|
|
815
|
+
- Fixed: error value output in color picker when the initial value is undefined
|
|
816
|
+
## 5.0.17 - 2023-07-31
|
|
817
|
+
Changed: Disabled auto close for error toasters.
|
|
818
|
+
## 5.0.15 - 2023-07-18
|
|
819
|
+
- Removed: default empty box image from NoData component.
|
|
820
|
+
## 5.0.14 - 2023-07-12
|
|
821
|
+
Fixed warnings in jest tests.
|
|
822
|
+
## 5.0.13 - 2023-06-30
|
|
823
|
+
- Added `neeto-commons-frontend` and `neeto-icons` to peer dependencies.
|
|
824
|
+
## 5.0.12 - 2023-06-29
|
|
825
|
+
- Changed: Default value of`scrollToErrorField` prop of formik *Form* to false.
|
|
826
|
+
## 5.0.11 - 2023-06-27
|
|
827
|
+
- Added: `hasScrollToErrorField` prop to formik *Form* component.
|
|
828
|
+
## 5.0.10 - 2023-06-20
|
|
829
|
+
- Removed: condition to disable *FormikButton* when the form is invalid.
|
|
830
|
+
## 5.0.9 - 2023-06-17
|
|
831
|
+
- Updated `ramda` version to `^0.29.0` in devDependencies.
|
|
832
|
+
- Updated `eslint-plugin-neeto` version to `^1.0.54` in devDependencies.
|
|
833
|
+
- Updated `neeto-commons-frontend` version to `^2.0.87` in devDependencies.
|
|
834
|
+
- Disabled `no-missing-localization` rule.
|
|
835
|
+
## 5.0.8 - 2023-06-16
|
|
836
|
+
- Removed: CSS font smoothing.
|
|
837
|
+
- Updated: neeto language page - added rule for "Archive vs. deactivate"
|
|
838
|
+
## 5.0.7 - 2023-06-11
|
|
839
|
+
- Fixed: Misalignment between input and prefix for large screens. Line break in
|
|
840
|
+
prefix when hyphens are added.
|
|
841
|
+
## 5.0.6 - 2023-06-06
|
|
842
|
+
- Fixes janky animation in *Pane* when form fields have the `autoFocus` prop.
|
|
843
|
+
## 5.0.5 - 2023-06-05
|
|
844
|
+
Added: `optionRemapping` prop to map the label and value properties of `options`
|
|
845
|
+
prop in *Select* component.
|
|
846
|
+
## 5.0.4 - 2023-05-29
|
|
847
|
+
- Fixed: Overrided `onChange` function to output empty array if value is null in
|
|
848
|
+
*DatePicker*
|
|
849
|
+
## 5.0.3 - 2023-05-29
|
|
850
|
+
- Fixed: the issue of filter invalid emails link for valid emails in
|
|
851
|
+
*MultiEmailInput* component
|
|
852
|
+
## 5.0.2 - 2023-05-23
|
|
853
|
+
- Added: `required` prop to *MultiEmailInput*.
|
|
854
|
+
## 5.0.1 - 2023-05-07
|
|
855
|
+
- Added: resize and reorder columns functionality to *Table* component.
|
|
856
|
+
## 5.0.0 - 2023-04-28
|
|
857
|
+
Removed following components from `neetoui`:
|
|
858
|
+
- `Header`
|
|
859
|
+
- `SubHeader`
|
|
860
|
+
- `MenuBar`
|
|
861
|
+
- `SideBar`
|
|
862
|
+
- `PageLoader`
|
|
863
|
+
- `AppSwitcher`
|
|
864
|
+
- `Container`
|
|
865
|
+
- `Scrollable`
|
|
866
|
+
- `Page`
|
|
867
|
+
|
|
868
|
+
## 4.4.27 - 2023-04-24
|
|
869
|
+
|
|
870
|
+
- Added: `unlmitedChars` prop to *Input* and *Textarea* and reverted the
|
|
871
|
+
behaviour of maxlength prop to the native one.
|
|
872
|
+
|
|
873
|
+
## 4.4.26 - 2023-04-14
|
|
874
|
+
|
|
875
|
+
- Fixed: Dropdown menu scroll issues.
|
|
876
|
+
|
|
877
|
+
## 4.4.25 - 2023-04-14
|
|
878
|
+
|
|
879
|
+
- Fixed: multi dropdown position in Safari.
|
|
880
|
+
|
|
881
|
+
## 4.4.24 - 2023-04-13
|
|
882
|
+
|
|
883
|
+
- Fixed: promise rejection in formik.
|
|
884
|
+
|
|
885
|
+
## 4.4.23 - 2023-04-05
|
|
886
|
+
|
|
887
|
+
- Removed: `@rollup/terser-plugin` from bundling.
|
|
888
|
+
- Added: sourcemaps for each bundle.
|
|
889
|
+
|
|
890
|
+
## 4.4.22 - 2023-04-04
|
|
891
|
+
|
|
892
|
+
Added: Support for children array in *Tooltip* component.
|
|
893
|
+
|
|
894
|
+
## 4.4.21 - 2023-03-28
|
|
895
|
+
|
|
896
|
+
- Fixed: defaulted buttons inside color picker to type `button`
|
|
897
|
+
|
|
898
|
+
## 4.4.20 - 2023-03-28
|
|
899
|
+
|
|
900
|
+
- Fixed: issue with content overflow and overlap in table cells
|
|
901
|
+
|
|
902
|
+
## 4.4.19 - 2023-03-27
|
|
903
|
+
|
|
904
|
+
Added: `children` prop for button and tag components
|
|
905
|
+
|
|
906
|
+
## 4.4.18 - 2023-03-24
|
|
907
|
+
|
|
908
|
+
- Changed: -the default row size to 30 and hidden the page size changer in the
|
|
909
|
+
*Table* component.
|
|
910
|
+
|
|
911
|
+
## 4.4.17 - 2023-03-22
|
|
912
|
+
|
|
913
|
+
- Fixed: weird behavior or create new option in *MultiEmailInput*.
|
|
914
|
+
|
|
915
|
+
## 4.4.16 - 2023-03-20
|
|
916
|
+
|
|
917
|
+
- Added: keyboard accessibility to color picker.
|
|
918
|
+
|
|
919
|
+

|
|
920
|
+
|
|
921
|
+
## 4.4.15 - 2023-03-17
|
|
922
|
+
|
|
923
|
+
Added terser plugin to rollup config to minimise bundle size.
|
|
924
|
+
|
|
925
|
+
## 4.4.13 - 2023-03-16
|
|
926
|
+
|
|
927
|
+
- Renamed the lib folder to src.
|
|
928
|
+
- Made the corresponding changes in config files.
|
|
929
|
+
- Updated imports with lib to use aliased imports.
|
|
930
|
+
- Updated the documentation.
|
|
931
|
+
- Ensured tests are running as expected.
|
|
932
|
+
|
|
933
|
+
## 4.4.12 - 2023-03-15
|
|
934
|
+
|
|
935
|
+
This PR adds the following changes to the *Switch* component.
|
|
936
|
+
|
|
937
|
+
- Added `forwardRef` to the *Switch* component so that it supports adding
|
|
938
|
+
*Tooltip* to it, as per this
|
|
939
|
+
[guide](https://github.com/atomiks/tippyjs-react#component-children).
|
|
940
|
+
|
|
941
|
+
## 4.4.11 - 2023-03-14
|
|
942
|
+
|
|
943
|
+
- Added: `liveChat` prop to *HelpSection* component.
|
|
944
|
+
- Added: data-cy to `helpLink` prop.
|
|
945
|
+
- Changed: label into an optional value in LinkType.
|
|
946
|
+
|
|
947
|
+
## 4.4.10 - 2023-03-14
|
|
948
|
+
|
|
949
|
+
- Updated: product title font weight in ProductSwitcher from `normal` to
|
|
950
|
+
`medium`.
|
|
951
|
+
|
|
952
|
+
<img width="725" alt="Group 6" src="https://user-images.githubusercontent.com/48869249/224666135-be677e88-6e79-4d1d-8cd7-b89842e55c51.png">
|
|
953
|
+
- Updated: Accordion border color from `--neeto-ui-gray-400` to `--neeto-ui-gray-300`.
|
|
954
|
+
-
|
|
955
|
+
- Updated: Label color from `--neeto-ui-gray-700` to `--neeto-ui-black`.
|
|
956
|
+
-
|
|
957
|
+
- Updated: Label font weight from `normal` to `medium`.
|
|
958
|
+
-
|
|
959
|
+
- Updated: Help text color from `--neeto-ui-gray-600` to `--neeto-ui-gray-700`.
|
|
960
|
+
-
|
|
961
|
+
<img width="725" alt="Group 8" src="https://user-images.githubusercontent.com/48869249/224667904-67512253-f120-4cca-9ec3-a85e6c7e1499.png">
|
|
962
|
+
- Fixed: Modal spacing when there is no footer.
|
|
963
|
+
<img width="725" alt="Group 9" src="https://user-images.githubusercontent.com/48869249/224668860-20a74fb4-2f86-4159-9d49-c6ffa0c178d2.png">
|
|
964
|
+
- Added: Storybook example for using Tooltip in Table header
|
|
965
|
+
<img width="855" alt="Screenshot 2023-03-13 at 3 33 29 PM" src="https://user-images.githubusercontent.com/48869249/224669900-6ffd52b4-b9dd-4e2f-9c33-be5053548d63.png">
|
|
966
|
+
- Fixed: Horizontal scroll issue in Table header
|
|
967
|
+
## 4.4.8 - 2023-03-10
|
|
968
|
+
- Fixed: Issue with overriding components in *Select* component
|
|
969
|
+
## 4.4.7 - 2023-03-10
|
|
970
|
+
- Added: entry points for TypeScript resolutions in package.json
|
|
971
|
+
## 4.4.6 - 2023-03-09
|
|
972
|
+
- Added: new fallback avatars in the *Avatar* component using `boringavatars`.
|
|
973
|
+
## 4.4.4 - 2023-03-07
|
|
974
|
+
- Added: the ability to add a custom separator text between the primary and secondary buttons using the `buttonSeparatorText` prop for the *NoData* component.
|
|
975
|
+
## 4.4.3 - 2023-03-07
|
|
976
|
+
- Changed: Exported both cjs and esm bundles.
|
|
977
|
+
## 4.4.2 - 2023-03-03
|
|
978
|
+
Fixed empty toastr message when errors or errorCodes are given null values.
|
|
979
|
+
## 4.4.1 - 2023-03-03
|
|
980
|
+
- Added feature to display string from custom message key from response , when the noticeCode is custom_message
|
|
981
|
+
## 4.4.0 - 2023-02-24
|
|
982
|
+
- Fixed: Alignment issues in Table headers when sort is enabled.
|
|
983
|
+
- Fixed: Made Table headers popout.
|
|
984
|
+
**Color contrast improvements**
|
|
985
|
+
- Updated: `--neeto-ui-black` from `#1b1f23` to `#121212`.
|
|
986
|
+
- Updated: `--neeto-ui-gray-800` from `#2f3941` to `#1f1f1f`.
|
|
987
|
+
- Updated: `--neeto-ui-gray-700` from `#49545c` to `#2f3941`.
|
|
988
|
+
<img width="532" alt="Group 2" src="https://user-images.githubusercontent.com/48869249/220600134-0e92558c-4bb5-498b-a09a-63a04725fc0b.png">
|
|
989
|
+
- Updated: `h1`, `h2`, `h3`, `h4`, `h5`, `h6` color to `--neeto-ui-black` (`#121212`).
|
|
990
|
+
<img width="898" alt="Group 3" src="https://user-images.githubusercontent.com/48869249/220602168-ab61369c-5576-4661-aaf4-e532230ad5eb.png">
|
|
991
|
+
- Updated: Color contrast of `secondary`, `text` and `link` variants of Button.
|
|
992
|
+
<img width="545" alt="Group 7" src="https://user-images.githubusercontent.com/48869249/220705083-484434cc-d345-40b9-b331-fb9d33590f40.png">
|
|
993
|
+
- Updated: Tags color contrast.
|
|
994
|
+
<img width="1002" alt="Group 9" src="https://user-images.githubusercontent.com/48869249/220823524-3f8eec49-8bf7-4391-8cdc-cf79b289a2ef.png">
|
|
995
|
+
- Updated: Menubar color contrast.
|
|
996
|
+
|
|
997
|
+
---
|
|
998
|
+
|
|
999
|
+
- Updated: Search icon position from right to left in AppSwitcher search input.
|
|
1000
|
+
|
|
1001
|
+
<img width="747" alt="Group 4" src="https://user-images.githubusercontent.com/48869249/220603160-2bb5f207-e2cc-4eb1-9d46-1f913c9d915f.png">
|
|
1002
|
+
- Added: Borders to Table.
|
|
1003
|
+
<img width="1440" alt="Screenshot 2023-02-22 at 4 41 14 PM" src="https://user-images.githubusercontent.com/48869249/220603744-4cdecc30-fa2d-4471-83ec-d88f5df5da63.png">
|
|
1004
|
+
**Dropdown changes**
|
|
1005
|
+
- Updated: `--neeto-ui-shadow-lg` to `0 8px 24px rgba(140,149,159,0.2)`.
|
|
1006
|
+
- Updated: Dropdown shadow to `--neeto-ui-shadow-lg`.
|
|
1007
|
+
- Updated: Select dropdown shadow to `--neeto-ui-shadow-lg`.
|
|
1008
|
+
- Updated: Date/Time picker dropdown shadow to `--neeto-ui-shadow-lg`.
|
|
1009
|
+
<img width="238" alt="shadow" src="https://user-images.githubusercontent.com/48869249/220604390-3c95f1d2-cf41-46e8-af63-32074ddcc60f.png">
|
|
1010
|
+
- Updated: Dropdown `max-height` from `360px` to `480px` to accommodate more number of items without scroll.
|
|
1011
|
+
- Updated: Select dropdown `max-height` to `480px`
|
|
1012
|
+
<img width="407" alt="max" src="https://user-images.githubusercontent.com/48869249/220604606-976fa6ee-76b0-4928-95a0-70f714a0723a.png">
|
|
1013
|
+
- Improved: The spacing in NoData component
|
|
1014
|
+
- Updated: AppSwitcher selection styles.
|
|
1015
|
+
<img width="1440" alt="Screenshot 2023-02-22 at 11 04 47 PM" src="https://user-images.githubusercontent.com/48869249/220709676-2ed9735e-1030-431d-a87e-53e78d9f5b2c.png">
|
|
1016
|
+
## 4.3.3 - 2023-02-17
|
|
1017
|
+
- Added: functionality to get `errorCode` or `errorCodes` from the Axios error object and displays translated string as toastr message
|
|
1018
|
+
## 4.3.2 - 2023-02-16
|
|
1019
|
+
- Updated: styles of preset ranges in *DatePicker*.
|
|
1020
|
+
## 4.3.1 - 2023-02-14
|
|
1021
|
+
- Changed: **BREAKING** Updated `neetoApps` prop in *AppSwitcher* component to include app description and url along with the app name.
|
|
1022
|
+
- Changed: Product icons required for *AppSwitcher* component is directly picked from `neetoIcons`.
|
|
1023
|
+
- Removed: `subdomain` and `environment` props from *AppSwitcher* component.
|
|
1024
|
+
## 4.3.0 - 2023-02-13
|
|
1025
|
+
- Fixed: overlay issues with Subheader Tippy dropdown
|
|
1026
|
+
- Fixed: logo sizing in Sidebar
|
|
1027
|
+
Before
|
|
1028
|
+
<img width="965" alt="Screenshot 2023-02-09 at 8 26 47 AM" src="https://user-images.githubusercontent.com/48869249/217706767-1350dd62-2a23-4093-b989-a1d2ba98cb97.png">
|
|
1029
|
+
After
|
|
1030
|
+
<img width="968" alt="Screenshot 2023-02-09 at 8 27 04 AM" src="https://user-images.githubusercontent.com/48869249/217706816-2bc90bed-5a69-43dc-9cbd-ea4312ae73a6.png">
|
|
1031
|
+
|
|
1032
|
+
---
|
|
1033
|
+
|
|
1034
|
+
Before
|
|
1035
|
+
|
|
1036
|
+
<img width="73" alt="Screenshot 2023-02-09 at 8 34 16 AM" src="https://user-images.githubusercontent.com/48869249/217708196-9d60c9db-87c5-4c12-a88e-7a643a46db0a.png">
|
|
1037
|
+
After
|
|
1038
|
+
<img width="74" alt="Screenshot 2023-02-09 at 8 36 36 AM" src="https://user-images.githubusercontent.com/48869249/217708237-933c98b8-af0e-4647-9a92-19bdb2b7ba2b.png">
|
|
1039
|
+
## 4.2.9 - 2023-02-08
|
|
1040
|
+
- Changed: `Neeto` logo in the sidebar.
|
|
1041
|
+
## 4.2.8 - 2023-02-08
|
|
1042
|
+
- Fixed: *Modal* and *Alert* was adding a `margin-right` to the *body* when there was no scrollbar which caused the UI elements to shift right.
|
|
1043
|
+
## 4.2.7 - 2023-02-08
|
|
1044
|
+
- Updated: Pageloader component.
|
|
1045
|
+
## 4.2.6 - 2023-02-08
|
|
1046
|
+
- Fixed: Submit on enter triggered when *Form* was being submitted.
|
|
1047
|
+
## 4.2.5 - 2023-02-07
|
|
1048
|
+
- Updated : Table sorting UI styles
|
|
1049
|
+
## 4.2.4 - 2023-01-31
|
|
1050
|
+
- Updated : `neeto-icons`
|
|
1051
|
+
## 4.2.3 - 2023-01-30
|
|
1052
|
+
- Added: transparency control option in *ColorPicker*, controlled via `showTransparencyControl`.
|
|
1053
|
+
## 4.2.2 - 2023-01-29
|
|
1054
|
+
- Fixed: respecting the prop `isCreatable` if `loadOptions` prop is provided in *Select* component
|
|
1055
|
+
## 4.2.1 - 2023-01-24
|
|
1056
|
+
- Changed: product descriptions as per the [list](https://docs.google.com/spreadsheets/d/1xFWMyXJkUCf1YBRhrokLdlQvyBn0X3uK2M2JUZClGgw).
|
|
1057
|
+
- Changed: product name from **Review** to **Deploy** in the app switcher.
|
|
1058
|
+
## 4.2.0 - 2023-01-19
|
|
1059
|
+
Fixed getToastrMessage in Toastr to accept object with the placeholder value for the translations.
|
|
1060
|
+
## 4.1.44 - 2023-01-17
|
|
1061
|
+
- Updated: Button keyboard focus styles
|
|
1062
|
+
- Updated: Radio keyboard focus styles
|
|
1063
|
+
- Updated: Checkbox keyboard focus styles
|
|
1064
|
+
- Updated: `antd` Checkbox focus styles in Table
|
|
1065
|
+
- Added: Switch focus styles
|
|
1066
|
+
- Added: Tab focus styles
|
|
1067
|
+
- Added: Accordion focus styles
|
|
1068
|
+
- Added: Pagination focus styles
|
|
1069
|
+
- Added: `antd` Pagination focus styles in Table
|
|
1070
|
+
Screenshot
|
|
1071
|
+
<img width="992" alt="Group 1 (1)" src="https://user-images.githubusercontent.com/48869249/212918441-d5c2c57c-16b1-4da7-a472-e64134b659ce.png">
|
|
1072
|
+
## 4.1.43 - 2023-01-09
|
|
1073
|
+
Added function in Toastr to check for notice_code in response and if it's not present then it will fall back to notice.
|
|
1074
|
+
## 4.1.42 - 2023-01-05
|
|
1075
|
+
- Updated: Sidebar neeto logo.
|
|
1076
|
+
## 4.1.41 - 2023-01-05
|
|
1077
|
+
- Fixed: Focus trap for conditionally rendered elements in *Overlay*
|
|
1078
|
+
## 4.1.40 - 2022-12-30
|
|
1079
|
+
- Added: word break for *Modal* body and *Tooltip* content
|
|
1080
|
+
## 4.1.38 - 2022-12-29
|
|
1081
|
+
- Fixed: proptypes declaration being included in production bundle (3% bundle size reduction)
|
|
1082
|
+
- Changed: github workflow compilation environment to `production`
|
|
1083
|
+
## 4.1.37 - 2022-12-28
|
|
1084
|
+
- Fixed: issue with multiple links in *Sidebar* getting active at the same time.
|
|
1085
|
+
- Changed: logic in *Select* component to respect `getOptionValue` prop.
|
|
1086
|
+
## 4.1.35 - 2022-12-27
|
|
1087
|
+
- Added: the ability to choose email from options in *EmailInput*.
|
|
1088
|
+
## 4.1.34 - 2022-12-26
|
|
1089
|
+
- Fixed: Select dropdown width when strategy fixed.
|
|
1090
|
+
## 4.1.33 - 2022-12-25
|
|
1091
|
+
- Fixed: Issues with `value` prop of *Select* component.
|
|
1092
|
+
## 4.1.32 - 2022-12-25
|
|
1093
|
+
Added: *Checkbox* and *MultiEmailInput* are wrapped with `forwardref`.
|
|
1094
|
+
## 4.1.31 - 2022-12-21
|
|
1095
|
+
- Fixed: issue with continue in *BlockNavigation*.
|
|
1096
|
+
## 4.1.30 - 2022-12-21
|
|
1097
|
+
- Added: functionality to scroll to the selected value in *Select* component
|
|
1098
|
+
## 4.1.29 - 2022-12-21
|
|
1099
|
+
- Fixed: pressing `enter` key in *Select* to select an option submitting the *Form*.
|
|
1100
|
+
## 4.1.28 - 2022-12-20
|
|
1101
|
+
- Fixed: **Form** `validateOnChange` and `validateOnBlur` is not being triggered after the form is submitted by pressing enter key and there are validation errors.
|
|
1102
|
+
## 4.1.27 - 2022-12-19
|
|
1103
|
+
- Updated: *Product switcher* component in neetoUI
|
|
1104
|
+
- Updated: the icon Tooltip content from "App switcher" to "Product switcher"
|
|
1105
|
+
## 4.1.26 - 2022-12-19
|
|
1106
|
+
- Added: support for `neeto-ui-shadow-sm`, `neeto-ui-shadow-md` and `neeto-ui-shadow-lg`.
|
|
1107
|
+
## 4.1.25 - 2022-12-14
|
|
1108
|
+
Fixed: Issue with overlapping column headers for fixed columns in tables.
|
|
1109
|
+
## 4.1.24 - 2022-12-12
|
|
1110
|
+
Added: `labelProps` to form elements to customize `Label`.
|
|
1111
|
+
Changed: Made `shouldDynamicallyRenderRowSize` `false` by default.
|
|
1112
|
+
## 4.1.22 - 2022-12-07
|
|
1113
|
+
- Added: *Popover* component
|
|
1114
|
+
<img width="1100" alt="Screenshot 2022-12-05 at 5 42 51 PM" src="https://user-images.githubusercontent.com/24496302/205637383-afe596b8-c117-43ce-ad00-fee566fa0859.png">
|
|
1115
|
+
## 4.1.20 - 2022-12-06
|
|
1116
|
+
- Changed: `color` prop in *Tag* component as optional in type definition.
|
|
1117
|
+
## 4.1.19 - 2022-12-05
|
|
1118
|
+
- Fixed: Prevented form submission on the `enter` key for neetoEditor.
|
|
1119
|
+
## 4.1.18 - 2022-12-02
|
|
1120
|
+
Added: `shouldDynamicallyRenderRowSize` to calculate rows per page dynamically based on viewport height.
|
|
1121
|
+
## 4.1.17 - 2022-12-01
|
|
1122
|
+
Fixed: Issue with class instance producing undefined in the host application.
|
|
1123
|
+
Added: Types for `manager`.
|
|
1124
|
+
## 4.1.16 - 2022-12-01
|
|
1125
|
+
Fixed: Prevents form submission when the `enter` key is pressed.
|
|
1126
|
+
## 4.1.15 - 2022-11-28
|
|
1127
|
+
Fixed: Form validation triggered with incorrect values from MultiEmailInput.
|
|
1128
|
+
## 4.1.13 - 2022-11-24
|
|
1129
|
+
- Fixed: Wrong managers bundle entry point in rollup config
|
|
1130
|
+
- Added: `OverlayManager` which is used by all overlay components in neetoUI internally. The host application can use the methods inside the class to determine whether an Overlay is open in the product or not.
|
|
1131
|
+
- Removed: `ModalManager` and migrate the Modal component to use `OverlayManager`.
|
|
1132
|
+
## 4.1.12 - 2022-11-24
|
|
1133
|
+
- Fixed: UI issues in Subheader
|
|
1134
|
+
## 4.1.11 - 2022-11-21
|
|
1135
|
+
- Fixed: warnings in *DatePicker* and *TimePicker* component
|
|
1136
|
+
## 4.1.10 - 2022-11-17
|
|
1137
|
+
- Adds formikBag to onSubmit
|
|
1138
|
+
## 4.1.9 - 2022-11-16
|
|
1139
|
+
- Fixed: `validateOnBlur` and `validateOnChange` getting triggered before the first submission of the *Form*.
|
|
1140
|
+
## 4.1.8 - 2022-11-16
|
|
1141
|
+
- Updated: Toaster styles.
|
|
1142
|
+
- Added: POC for Toasters with minimum content and bottom left positioning
|
|
1143
|
+
## 4.1.7 - 2022-11-14
|
|
1144
|
+
- Changed: color-picker related dependencies to dev dependency
|
|
1145
|
+
## 4.1.6 - 2022-11-13
|
|
1146
|
+
- Fixed: issue with *Select* dropdown when scrolling the page.
|
|
1147
|
+
## 4.1.5 - 2022-11-11
|
|
1148
|
+
- Added `system-ui` to `font-family` in `_base.scss`
|
|
1149
|
+
## 4.1.4 - 2022-11-10
|
|
1150
|
+
- Added: `className` as props to *Form* component.
|
|
1151
|
+
## 4.1.3 - 2022-11-10
|
|
1152
|
+
- Removes Tags molecule from library and moved to [neeto-tags-frontend](https://github.com/bigbinary/neeto-tags-frontend)
|
|
1153
|
+
## 4.1.2 - 2022-11-09
|
|
1154
|
+
- Added `Form` component to `neetoui/formik`.
|
|
1155
|
+
- Added relevant tests for `Form` component.
|
|
1156
|
+
- Removed the usage of `Formik` and `Form` from `formik` in stories and used `Form`.
|
|
1157
|
+
- Fixed flaky tests.
|
|
1158
|
+
## 4.1.1 - 2022-11-03
|
|
1159
|
+
- Added: Eyedropper to *ColorPicker*
|
|
1160
|
+
## 4.1.0 - 2022-11-03
|
|
1161
|
+
- Changed: **BREAKING** Name of the *EmailInput* component to *MultiEmailInput* in both components and Formik components.
|
|
1162
|
+
## 4.0.17 - 2022-10-28
|
|
1163
|
+
- Fixed:`ValidateDOMNesting` warning in *DatePicker* component.
|
|
1164
|
+
- Fixed: the issue with date items looking disabled in normal state
|
|
1165
|
+
## 4.0.16 - 2022-10-28
|
|
1166
|
+
Changes documentations to sentence case from title casing.
|
|
1167
|
+
## 4.0.15 - 2022-10-28
|
|
1168
|
+
- Added: Border for menubar block and item active states.
|
|
1169
|
+
## 4.0.14 - 2022-10-28
|
|
1170
|
+
- Added: ability to pass custom config to Toastr.
|
|
1171
|
+
## 4.0.13 - 2022-10-20
|
|
1172
|
+
- Fixed: Icons grabbing away click events & onClick not being triggered when icons are replaced during a state change.
|
|
1173
|
+
- Fixed: False positive type errors for MenuBar & Dropdown subcomponents
|
|
1174
|
+
## 4.0.12 - 2022-10-17
|
|
1175
|
+
- Added: tooltip to *Avatar* component
|
|
1176
|
+
## 4.0.11 - 2022-10-10
|
|
1177
|
+
- Fixed false positive type errors
|
|
1178
|
+
## 4.0.10 - 2022-10-05
|
|
1179
|
+
- Fixed: issue with week picker in `DatePicker`.
|
|
1180
|
+
## 4.0.9 - 2022-09-29
|
|
1181
|
+
- Fixed: warnings in `Tag` and `DatePicker` props.
|
|
1182
|
+
- Added: neetoReview app to `AppSwitcher`.
|
|
1183
|
+
## 4.0.8 - 2022-09-28
|
|
1184
|
+
- Added: *Kbd* component to render keyboard keys.
|
|
1185
|
+
## 4.0.7 - 2022-09-22
|
|
1186
|
+
- Fixed: Clicking on neetoQuiz from the app switcher takes the user to the consumer page.
|
|
1187
|
+
## 4.0.6 - 2022-09-20
|
|
1188
|
+
- Changed: default value of `defaultPageSize` prop of *Table* component from 100 to 15.
|
|
1189
|
+
## 4.0.5 - 2022-09-20
|
|
1190
|
+
- Added: type support for data-cy props in all components that are forward referenced to HTML native elements.
|
|
1191
|
+
## 4.0.4 - 2022-09-16
|
|
1192
|
+
- Changed: Allowed `hideOnSinglePage` override in *Table* `paginationProps`
|
|
1193
|
+
## 4.0.3 - 2022-09-13
|
|
1194
|
+
- Added: Storybook addon that lets users toggle between dark and light mode
|
|
1195
|
+
- Fixed: date/time input color in darkmode
|
|
1196
|
+
- Fixed: overlapping issue with *Dropdown* in *Table*
|
|
1197
|
+
## 4.0.2 - 2022-09-12
|
|
1198
|
+
- Fixed: navigation issue in *BlockNavigation* component
|
|
1199
|
+
## 4.0.1 - 2022-09-12
|
|
1200
|
+
- Added: `secondary` style variant
|
|
1201
|
+
- Added: `info` style variant
|
|
1202
|
+
- Removed: `inactive` style variant
|
|
1203
|
+
- Fixed issue with custom target in *Dropdown*
|
|
1204
|
+
- Fixed alignment issues in Dropdown `sizing` Story
|
|
1205
|
+
- Updated select styles of antd table pagination
|
|
1206
|
+
- Fixed Menuhorizontal button size in Table
|
|
1207
|
+
## 4.0.0 - 2022-09-02
|
|
1208
|
+
- Updated: Color palette
|
|
1209
|
+
- Added: CSS variables support
|
|
1210
|
+
- Added: Custom theming support
|
|
1211
|
+
- Added: Default dark theme support
|
|
1212
|
+
- Added: Design preview in Storybook
|
|
1213
|
+
- Added: Guidelines to structure content in applications
|
|
1214
|
+
- Changed: bundle type to `CJS`
|
|
1215
|
+
- Fixed: delay while opening overlays
|
|
1216
|
+
- Removed: `framer-motion` from dependencies.
|
|
1217
|
+
### Color palette 🎨
|
|
1218
|
+
- Updated color naming convention
|
|
1219
|
+
- Added CSS variables support for colors
|
|
1220
|
+
- Implemented dynamic color palette to support default dark mode
|
|
1221
|
+
- Served color codes as RBG numbers in CSS variables to achieve color transparency
|
|
1222
|
+
- Enhanced contrast of status color (info, success, error, warning)
|
|
1223
|
+
- Included existing pastel colors as the color swatches of primary, success, error, warning, and info
|
|
1224
|
+
- Added new set of pastel colors
|
|
1225
|
+
- Removed unused colors from the palette
|
|
1226
|
+
- Updated utility classes to match the new variable naming
|
|
1227
|
+
- Restructured documentation and created new documentation for color palette
|
|
1228
|
+
- Deprecated `neeto-ui-accent1`, `neeto-ui-accent2`, `neeto-ui-accent3`, `neeto-ui-accent4` colors and utility classes
|
|
1229
|
+
- Deprecated `neeto-ui-secondary-indigo`, `neeto-ui-secondary-green`, `neeto-ui-secondary-teal` colors and utility classes
|
|
1230
|
+
- Deprecated `neeto-ui-pastel-teal`
|
|
1231
|
+
- Renamed `neeto-ui-success` to `neeto-ui-success-500`
|
|
1232
|
+
- Renamed `neeto-ui-info` to `neeto-ui-info-500`
|
|
1233
|
+
- Renamed `neeto-ui-error` to `neeto-ui-error-500`
|
|
1234
|
+
- Renamed `neeto-ui-warning` to `neeto-ui-warning-500`
|
|
1235
|
+
- Renamed `neeto-ui-pastel-blue` to `neeto-ui-info-100`
|
|
1236
|
+
- Renamed `neeto-ui-pastel-green` to `neeto-ui-success-100`
|
|
1237
|
+
- Renamed `neeto-ui-pastel-yellow` to `neeto-ui-warning-100`
|
|
1238
|
+
- Renamed `neeto-ui-pastel-red` to `neeto-ui-error-100`
|
|
1239
|
+
### Cosmetic changes 👁
|
|
1240
|
+
#### Button
|
|
1241
|
+
- Updated primary button color to `neeto-ui-primary-500`
|
|
1242
|
+
- Added `:focus` rings to buttons for accessibility
|
|
1243
|
+
- Updated `:focus-visible` styles to match the new design
|
|
1244
|
+
- Updated border radius to `5px`
|
|
1245
|
+
- Updated CSS transition from `all .3s ease-in-out` to `all .3s linear`
|
|
1246
|
+
- Deprecated variants story in Storybook doc
|
|
1247
|
+
- Created independent stories for `Styles`, `Sizes`, `Icon only` etc
|
|
1248
|
+
#### Checkbox
|
|
1249
|
+
- Replaced checked state icon with neetoIcon
|
|
1250
|
+
- Updated checked state color to `neeto-ui-primary-500`
|
|
1251
|
+
- Changed default state border color from `grey 300` to `grey 400`
|
|
1252
|
+
- Updated `:hover` border color to `grey 500`
|
|
1253
|
+
- Updated `:focus-visible` border color to `neeto-ui-primary-500`
|
|
1254
|
+
- Updated focus ring styles to match `neeto-ui-primary` color
|
|
1255
|
+
- Improved spacing in component
|
|
1256
|
+
#### Radio
|
|
1257
|
+
- Replaced checked state icon with neetoIcon
|
|
1258
|
+
- Updated checked state color to `neeto-ui-primary-500`
|
|
1259
|
+
- Changed default state border color from `grey 300` to `grey 400`
|
|
1260
|
+
- Updated `:hover` border color to `grey 500`
|
|
1261
|
+
- Updated `:focus-visible` border color to `neeto-ui-primary-500`
|
|
1262
|
+
- Updated focus ring styles to match `neeto-ui-primary` color
|
|
1263
|
+
- Improved spacing in component
|
|
1264
|
+
#### Input
|
|
1265
|
+
- Updated border-radius to `5px`
|
|
1266
|
+
- Updated focus ring styles to match `neeto-ui-primary` color
|
|
1267
|
+
- Fixed unwanted spacing in maxLength label
|
|
1268
|
+
- Fixed alignment issues in Input with maxLength and no label text
|
|
1269
|
+
- Fixed spacing inconsistencies in error test and helper text - used same margin value for both
|
|
1270
|
+
- Fixed alignment issues in naked inputs
|
|
1271
|
+
- Deprecate `variants` story in Storybook and created individual stories for `Input sizing`
|
|
1272
|
+
#### Textarea
|
|
1273
|
+
- Updated border-radius to `5px`
|
|
1274
|
+
- Updated focus ring styles to match `neeto-ui-primary` color
|
|
1275
|
+
- Fixed unwanted spacing in the maxLength label
|
|
1276
|
+
- Fixed alignment issues in Input with maxLength and no label text
|
|
1277
|
+
- Fix spacing inconsistencies in error test and helper text - used the same margin value for both
|
|
1278
|
+
- Fixed alignment issues in naked inputs
|
|
1279
|
+
- Added size prop to Textarea
|
|
1280
|
+
#### Select
|
|
1281
|
+
- Updated border-radius to `5px`
|
|
1282
|
+
- Updated focus ring styles to match `neeto-ui-primary` color
|
|
1283
|
+
- Replaced the default dropdown icons with neetoIcons
|
|
1284
|
+
- Added CSS transition to the select options
|
|
1285
|
+
- Applied Badge styles to Multi select items
|
|
1286
|
+
- Replaced multivalue remove icon with neetoIcon
|
|
1287
|
+
- Updated multivalue error styles
|
|
1288
|
+
- Increased Story heights for better view
|
|
1289
|
+
#### Email input
|
|
1290
|
+
- Updated border radius to `5px`
|
|
1291
|
+
- Updated selected values styles to match Tag styles
|
|
1292
|
+
- Fixed prefix and suffix spacing
|
|
1293
|
+
- Updated prefix icon size to `16px`
|
|
1294
|
+
- Updated focus ring styles to match `neeto-ui-primary` color
|
|
1295
|
+
- Fixed spacing issues in counter
|
|
1296
|
+
- Fixed alignment issues in label row
|
|
1297
|
+
- Fixed spacing inconsistencies in error test and helper text - used same margin for both
|
|
1298
|
+
- Updated error styles of multivalue select
|
|
1299
|
+
#### Label
|
|
1300
|
+
- Updated label bottom margin to 8px
|
|
1301
|
+
- Removed letter-spacing in label text
|
|
1302
|
+
#### Dropdown & Action Dropdown
|
|
1303
|
+
- Updated border-radius to `5px`
|
|
1304
|
+
- Reduced the height of Dropdown options to `32px`
|
|
1305
|
+
- Created Storybook examples with semantic markup for easy keyboard win
|
|
1306
|
+
- Separated Delete/Remove actions with a border
|
|
1307
|
+
- Updated `box-shadow`
|
|
1308
|
+
#### Date Time picker
|
|
1309
|
+
- Replaced default icons with neetoIcons
|
|
1310
|
+
- Updated selection color to `neeto-ui-primary`
|
|
1311
|
+
- Added border to date and time dropdown
|
|
1312
|
+
- Updated box shadow of dropdown
|
|
1313
|
+
#### Accordion
|
|
1314
|
+
- Updated font weight of Accordion title to `500`
|
|
1315
|
+
- Updated `border-radius` to `8px`
|
|
1316
|
+
#### Avatar
|
|
1317
|
+
- Updated background colors to new pastel colors
|
|
1318
|
+
- Updated square variant `border-radius` to `5px`
|
|
1319
|
+
#### Table
|
|
1320
|
+
- Updated column title color to `grey 600`
|
|
1321
|
+
- Updated column title font weight to 700
|
|
1322
|
+
- Reduced cell padding from `12px 16px` to `8px 16px` to accommodate more number of row in a given height
|
|
1323
|
+
- Removed border from pagination items
|
|
1324
|
+
- Updated pagination buttons to match neetoUI button style
|
|
1325
|
+
- Updated active pagination item styles to `neeto-ui-primary`
|
|
1326
|
+
- Replaced default icons with neetoIcons
|
|
1327
|
+
#### PageLoader
|
|
1328
|
+
- Updated neeto logo
|
|
1329
|
+
#### Color picker
|
|
1330
|
+
- Added border to input
|
|
1331
|
+
#### Alert & Modal
|
|
1332
|
+
- Reduced outer padding from `32px ` to `24px` to provide the compact view
|
|
1333
|
+
- Updated `border-radius` to `12px`
|
|
1334
|
+
#### Toast
|
|
1335
|
+
- Applied `48px` minimum height
|
|
1336
|
+
- Applied dark theme to all variants
|
|
1337
|
+
- Reduced text font weight to `400`
|
|
1338
|
+
#### Tooltip
|
|
1339
|
+
- Changed box shadow of light theme variant to `--neeto-ui-shadow-s`
|
|
1340
|
+
#### Sidebar
|
|
1341
|
+
- Increased width from `64px` to `72px`
|
|
1342
|
+
- Changed background color from `neeto-ui-gray-200` to `neeto-ui-white`
|
|
1343
|
+
- Added border on the right side
|
|
1344
|
+
- Updated `padding-top` and `padding-bottom` to `24px`
|
|
1345
|
+
### Functionality changes 🛠️
|
|
1346
|
+
#### Input
|
|
1347
|
+
- Changed: `maxlength` prop logic to allow typing characters beyond the
|
|
1348
|
+
specified maxlength. The character count will be shown only when the input
|
|
1349
|
+
length reaches 90% of maxlength and changes the state to error when input
|
|
1350
|
+
exceeds the maxlength
|
|
1351
|
+
#### TextArea
|
|
1352
|
+
- Changed: `maxlength` prop logic to allow typing characters beyond the
|
|
1353
|
+
specified maxlength. Character count will be shown only when the input length
|
|
1354
|
+
reaches 90% of maxlength and changes the state to error when input exceeds the
|
|
1355
|
+
maxlength
|
|
1356
|
+
#### Dropdown
|
|
1357
|
+
- Changed: **BREAKING** Renamed `ulProps` prop to `dropdownProps`
|
|
1358
|
+
- Added: `buttonSize` prop
|
|
1359
|
+
#### ActionDropdown
|
|
1360
|
+
- Changed: **BREAKING** Renamed `size` prop to `buttonSize`
|
|
1361
|
+
- Changed: **BREAKING** Renamed `style` prop to `buttonStyle`
|
|
1362
|
+
#### Tag
|
|
1363
|
+
- Changed: **BREAKING** Renamed `style` prop to `type`
|
|
1364
|
+
- Removed: **BREAKING** Renamed `color` and `indicatorColor` props
|
|
1365
|
+
- Added: **BREAKING** `style` and `indicatorStyle` props with options
|
|
1366
|
+
`"success" | "warning" | "danger" | "primary" | "inactive"`
|
|
1367
|
+
#### ColorPicker
|
|
1368
|
+
- Added: `Size` prop
|
|
1369
|
+
#### Typography
|
|
1370
|
+
- Added: new variant **nano**
|
|
1371
|
+
#### Modal
|
|
1372
|
+
- Added: `description` prop in header
|
|
1373
|
+
- Added: `initialFocusRef` and `finalFocusRef` to programmatically add focus to
|
|
1374
|
+
custom components.
|
|
1375
|
+
- Added: `blockScrollOnMount` prop to enable/disable body scrolling when the
|
|
1376
|
+
modal opens.
|
|
1377
|
+
- Added: focus trapping to focusable elements in Modal.
|
|
1378
|
+
#### Sidebar
|
|
1379
|
+
- Removed: **BREAKING** `footerLinks` props
|
|
1380
|
+
- Removed: **BREAKING** `isCollapsed` prop and **expanded state** of sidebar
|
|
1381
|
+
## 3.5.17 - 2022-08-25
|
|
1382
|
+
- Fixed: false positive type errors for tooltip
|
|
1383
|
+
## 3.5.16 - 2022-08-17
|
|
1384
|
+
- Changed: avoided showing duplicate toastr when called multiple times with the
|
|
1385
|
+
same arguments.
|
|
1386
|
+
## 3.5.15 - 2022-08-05
|
|
1387
|
+
- Fixed: Fixed false positive ts errors which were thrown since some of the
|
|
1388
|
+
fields were not marked optional.
|
|
1389
|
+
## 3.5.14 - 2022-08-01
|
|
1390
|
+
- Added: neetoTestify and neetoSite to AppSwitcher
|
|
1391
|
+
## 3.5.13 - 2022-07-28
|
|
1392
|
+
- Added: type support for all exported components. IDE will now auto-predict the
|
|
1393
|
+
component props.
|
|
1394
|
+
- Changed: Deprecated babel-eslint was replaced with @babel/eslint-parser
|
|
1395
|
+
## 3.5.12 - 2022-07-25
|
|
1396
|
+
- Security: Bump moment from 2.29.3 to 2.29.4
|
|
1397
|
+
## 3.5.11 - 2022-07-06
|
|
1398
|
+
- Added: a *Button* component in neetoui/formik that automatically disables
|
|
1399
|
+
itself if the form is not in a submittable state. Example: the form contains
|
|
1400
|
+
any invalid data, the form content has not been changed, or the form is
|
|
1401
|
+
already being submitted. To make this work, you need to import *Button* from
|
|
1402
|
+
"neetoui/formik" as your submit button.
|
|
1403
|
+
- Changed: *ActionBlock* will now use the above-mentioned logic internally. So
|
|
1404
|
+
its submit/cancel buttons will also be automatically enabled or disabled.
|
|
1405
|
+
## 3.5.10 - 2022-07-05
|
|
1406
|
+
- Fixed: issue with closeOnEsc prop when the Pane is controlled.
|
|
1407
|
+
## 3.5.9 - 2022-07-05
|
|
1408
|
+
- Fixed: Checkbox in *Table* component cut off in lower screen resolutions.
|
|
1409
|
+
## 3.5.8 - 2022-07-01
|
|
1410
|
+
- Fixed: Error when handling `axios` error objects with `undefined` response in
|
|
1411
|
+
`Toastr.error`
|
|
1412
|
+
## 3.5.7 - 2022-06-24
|
|
1413
|
+
- Added: `startsFrom` to `counter` prop of *EmailInput* component.
|
|
1414
|
+
## 3.5.6 - 2022-06-13
|
|
1415
|
+
- Fixed: Calendar icon overflowing under the clear icon in Date Range picker
|
|
1416
|
+
## 3.5.5 - 2022-06-09
|
|
1417
|
+
- Fixed: issue with `onClose` function reference when closing the *Modal* using
|
|
1418
|
+
`Esc`.
|
|
1419
|
+
## 3.5.4 - 2022-06-08
|
|
1420
|
+
Fixed: `TypeError` issue in *Toastr* component.
|
|
1421
|
+
## 3.5.3 - 2022-06-07
|
|
1422
|
+
- Fixed: issue with `closeOnEsc` prop when the *Dropdown* is controlled.
|
|
1423
|
+
## 3.5.2 - 2022-06-07
|
|
1424
|
+
- Fixed : placeholder content extending into multiple lines in *Select*
|
|
1425
|
+
component.
|
|
1426
|
+
## 3.5.1 - 2022-06-07
|
|
1427
|
+
- Fixed: `useInsertionEffect` export issue due to `terser` compression.
|
|
1428
|
+
## 3.5.0 - 2022-05-25
|
|
1429
|
+
- Changed: Replaced webpack with rollup for bundling the package.
|
|
1430
|
+
## 3.4.6 - 2022-05-19
|
|
1431
|
+
- Updated: `react-toastify` to `9.0.1`
|
|
1432
|
+
## 3.4.4
|
|
1433
|
+
- Fixed: import for molecule components.
|
|
1434
|
+
## 3.4.3
|
|
1435
|
+
- Added: `prefix` and `suffix` to *EmailInput*.
|
|
1436
|
+
## 3.4.2
|
|
1437
|
+
- Fixed: issue with search not working with `isCreatable` *Select*.
|
|
1438
|
+
## 3.4.1
|
|
1439
|
+
- Fixed: issue with `autoFocus` not working on *Input* when inside *Dropdown*.
|
|
1440
|
+
## 3.4.0
|
|
1441
|
+
- Removed: all instances of TailwindCSS.
|
|
1442
|
+
- Added: `label` prop in *Tags* molecule.
|
|
1443
|
+
- Changed: Added `neetoCal` into *AppSwitcher* app list .
|
|
1444
|
+
- Removed: `count` limiting (to 99) logic from *MenuBar.Block*.
|
|
1445
|
+
## 3.3.13
|
|
1446
|
+
- Added: Tags in the molecule section.
|
|
1447
|
+
## 3.3.12
|
|
1448
|
+
- Fixed: loading state in *ActionBlock* component.
|
|
1449
|
+
## 3.3.11
|
|
1450
|
+
- Added: New input format for the *EmailInput* component.
|
|
1451
|
+
## 3.3.10
|
|
1452
|
+
- Fixed: Removed unnecessary scrollbar in *Table* component.
|
|
1453
|
+
- Added: `maxHeight` prop to the *EmailInput* component.
|
|
1454
|
+
## 3.3.9
|
|
1455
|
+
- Fixed: *ActionDropdown* issues with common props for button and dropdown
|
|
1456
|
+
## 3.3.7
|
|
1457
|
+
- Changed: Updated React version to 17.0.2.
|
|
1458
|
+
## 3.3.6
|
|
1459
|
+
- Fixed: Reset Formik data on continue action in *BlockNavigation* component.
|
|
1460
|
+
## 3.3.5
|
|
1461
|
+
- Added: active state to `NavLink` in *Sidebar* component.
|
|
1462
|
+
## 3.3.4
|
|
1463
|
+
- Added: `hideOnTargetExit` prop to *Tooltip* component
|
|
1464
|
+
## 3.3.3
|
|
1465
|
+
- Added: data-cy for in *Alert* component elements
|
|
1466
|
+
## 3.3.2
|
|
1467
|
+
- Fixed: Added override for `onClick` prop in *Dropdown* component
|
|
1468
|
+
## 3.3.1
|
|
1469
|
+
- Fixed: Typography of Header in *Alert* component.
|
|
1470
|
+
- Fixed: Max width issue in *Dropdown* component.
|
|
1471
|
+
## 3.3.0
|
|
1472
|
+
- Changed: **BREAKING** `isLoading` prop of *Table* to `loading`.
|
|
1473
|
+
- Changed: Implemented *Dropdown* component with Tippy.js and removed
|
|
1474
|
+
`react-popper`
|
|
1475
|
+
- Deprecated: **BREAKING** `loading` prop of *Pane*, *Modal* and *Alert*
|
|
1476
|
+
components.
|
|
1477
|
+
- Removed: **BREAKING** `placement` prop from *Tooltip* (Use position instead).
|
|
1478
|
+
#### UI
|
|
1479
|
+
- Changed: colors of `$neeto-ui-warning` and `$neeto-ui-error` in *Color
|
|
1480
|
+
Palette*
|
|
1481
|
+
- Changed: the text color in *Table* to `$neeto-ui-black`
|
|
1482
|
+
- Changed: UI of *Tag* of component
|
|
1483
|
+
- Changed: look and feel of *Danger Button*
|
|
1484
|
+
- Changed: Contrast of *Avatar*, *Accordian*, *Toastr* and *Callout*
|
|
1485
|
+
- Changed: Made *Modal* Header text and Close icon aligned in a line
|
|
1486
|
+
- Added: new variant for *Danger Button* -`danger-text`
|
|
1487
|
+
- Added: new accent colors
|
|
1488
|
+
- 
|