@fattureincloud/fic-design-system 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md ADDED
@@ -0,0 +1,310 @@
1
+ # Changelog
2
+
3
+ ## v0.4.1 - 14/01/2022
4
+
5
+ ### 🐛 Bug Fix
6
+
7
+ - Fix a bug during the update of SidebarItem
8
+
9
+ ## v0.4.0 - 15/12/2021
10
+
11
+ ### 💅 Enhancement
12
+
13
+ - Update Storybook to v6
14
+ - Update Rollup to v2
15
+ - Change build configs
16
+
17
+ ## v0.3.24 - 13/12/2021
18
+
19
+ ### 🐛 Bug Fix
20
+
21
+ - Add preventDefault on Dropdown trigger click
22
+
23
+ ## v0.3.23 - 13/12/2021
24
+
25
+ ### 💅 Enhancement
26
+
27
+ - Add href and cmd/ctrl+click on SidebarItem
28
+
29
+ ## v0.3.22 - 30/11/2021
30
+
31
+ ### 🐛 Bug Fix
32
+
33
+ - Move `lint-staged` to devDependencies
34
+
35
+ ## v0.3.21 - 29/11/2021
36
+
37
+ ### 🐛 Bug Fix
38
+
39
+ - Fix bug with Select usage
40
+
41
+ ## v0.3.20 - 22/11/2021
42
+
43
+ ### 🚀 Added
44
+
45
+ - TextArea:
46
+ - Add isResizable prop
47
+ - Add characters counter
48
+ - Add new `Select` components (`Select`, `CreatableSelect`, `AsyncSelect`, `AsyncCreatableSelect`)
49
+
50
+ ### 💅 Enhancement
51
+
52
+ - `InputHelper`'s prop `message` changed type from `string` to `ReactChild`
53
+ - Add `className` to TextArea wrapper
54
+ - Remove `margin-bottom: 1em` from `InputText` and `TextArea` components
55
+ - Update styled-components to v5
56
+ - Add styled-components to `peerDependencies`
57
+
58
+ ### 🐛 Bug Fix
59
+
60
+ - The cursor hovering an Icon will be `pointer` only if the icon has an `onClick` event
61
+ - Fix Tabs component glitch
62
+
63
+ ## v0.3.19 - 02/11/2021
64
+
65
+ ### 🚀 Added
66
+
67
+ - Add SidebarItem customization through `CustomSidebarItemProps` prop
68
+ - Add exports for `SidebarItemProps`
69
+
70
+ ### 💅 Enhancement
71
+
72
+ - Remove deprecated `alignRight` props from Dropdown component
73
+ - The `text` prop in Badge is now a `ReactText`
74
+ - Button `type=text` now supports icons and hover/active state
75
+
76
+ ### 🐛 Bug Fix
77
+
78
+ - Fix click on SidebarItem's Dropdown
79
+
80
+ ## v0.3.18 - 20/10/2021
81
+
82
+ ### 🚀 Added
83
+
84
+ - Add new InputText component
85
+ - Add new InputHelper component
86
+ - Add new TextArea component
87
+
88
+ ### 💅 Enhancement
89
+
90
+ - Add `isDisabled` prop to Icon component
91
+
92
+ ### 🐛 Bug Fix
93
+
94
+ - Close the Tooltip dropdown on click outside
95
+ - Better mobile event handling on Tooltip component (close on scroll page)
96
+ - Add a maximum width to the tooltip dropdown
97
+
98
+ ## v0.3.17 - 06/10/2021
99
+
100
+ ### 🚀 Added
101
+
102
+ - Added new `Stepper` component
103
+ - Added prop `forceOpenDropdown` on SidebarItem component
104
+
105
+ ## v0.3.16 - 29/09/2021
106
+
107
+ ### 🚀 Added
108
+
109
+ - Add new `forceOpen` prop to Dropdown
110
+
111
+ ### 💅 Enhancement
112
+
113
+ - Change SidebarItem height from 40px to 44px
114
+
115
+ ### 🐛 Bug Fix
116
+
117
+ - Fix Tooltip's arrow color
118
+
119
+ ## v0.3.15 - 21/09/2021
120
+
121
+ ### 🚀 Added
122
+
123
+ - Add new SidebarItem component
124
+
125
+ ## v0.3.14 - 02/09/2021
126
+
127
+ ### 🚀 Added
128
+
129
+ - Added new Tooltip component
130
+
131
+ ### 💅 Enhancement
132
+
133
+ - Add `triggerStyles` Dropdown prop
134
+ - Add new `IconBackground` component to support circle background behind icons
135
+
136
+ ## v0.3.13 - 19/08/2021
137
+
138
+ - Add `link` to DropdownItem `type`
139
+
140
+ ## v0.3.12 - 19/08/2021
141
+
142
+ ### 💅 Enhancement
143
+
144
+ - Merged Dropdown interfaces `ContentOption` and `ItemProps` in `DropdownItemProps`
145
+ - Add a part of DropdownPalette
146
+
147
+ ### 🐛 Bug Fix
148
+
149
+ - Add `e.stopPropagation()` on Dropdown trigger click
150
+
151
+ ## v0.3.11 - 16/08/2021
152
+
153
+ ### 💅 Enhancement
154
+
155
+ - DropdownItems doesn't highlight without an `onClick` prop anymore
156
+ - Changed DropdownItems' shortcuts style
157
+
158
+ ## v0.3.10 - 28/07/2021
159
+
160
+ ### 🐛 Bug Fix
161
+
162
+ - Export checkboxPalette interface
163
+ - Added boolean-only support for Checkbox component
164
+
165
+ ### 💅 Enhancement
166
+
167
+ - Change onClick prop type for Checkbox component
168
+
169
+ ## v0.3.9 - 28/07/2021
170
+
171
+ ### 💅 Enhancement
172
+
173
+ - Added boolean values support to Checkbox
174
+
175
+ ### 🐛 Bug Fix
176
+
177
+ - Fix CustomSizeModal width on small screens
178
+
179
+ ## v0.3.8 - 26/07/2021
180
+
181
+ ### 🚀 Added
182
+
183
+ - Added new Checkbox component with Checkbox Palette
184
+
185
+ ### 🐛 Bug Fix
186
+
187
+ - Increased Toast z-index to make it visible while a modal is open
188
+
189
+ ## v0.3.7 - 25/06/2021
190
+
191
+ ### 🚀 Added
192
+
193
+ - Added MicroTag palette
194
+ - Added Icon palette
195
+
196
+ ### 💅 Enhancement
197
+
198
+ - Refactor Palette structure
199
+ - Remove base palette part
200
+ - Use "transparent" css value instead of palette.base.transparent
201
+
202
+ ## v0.3.6 - 04/06/2021
203
+
204
+ ### 💅 Enhancement
205
+
206
+ - Change project linting rules
207
+
208
+ ## v0.3.5 - 03/06/2021
209
+
210
+ ### 🚀 Added
211
+
212
+ - Add export for `closeDropdownType`
213
+
214
+ ### 💅 Enhancement
215
+
216
+ - Remove Dropdown padding with custom content
217
+
218
+ ## v0.3.4 - 26/05/2021
219
+
220
+ ### 🚀 Added
221
+
222
+ - isDisabled prop on IconButton
223
+ - IconButton default types (defaultColor, defaultType) in iconButtonPalette
224
+ - Add `href` and `target` props on Button component
225
+
226
+ ### 💅 Enhancement
227
+
228
+ - Fix buttons appearance on small screens
229
+
230
+ ## v0.3.2 - 19/05/2021
231
+
232
+ ### 🚀 Added
233
+
234
+ - Add fullWidth prop on Button
235
+
236
+ ### 💅 Enhancement
237
+
238
+ - Fix default buttonPalette colors
239
+ - Align iconButton palette names to Button's one
240
+
241
+ ## v0.3.1 - 18/05/2021
242
+
243
+ ### 🚀 Added
244
+
245
+ - New useDebounceClick hook
246
+ - Add new theme object manual configuration
247
+ - Add palette configuration object for:
248
+ - Tag
249
+ - Button
250
+ - IconButton
251
+
252
+ ### 💅 Enhancement
253
+
254
+ - Switch default palette to DIC's palette
255
+ - Button component redone from scratch
256
+ - TextButton merged with Button (type='text')
257
+ - IconButton component redone from scratch
258
+ - Refactor Tag component
259
+
260
+ ## v0.2.9 - 05/05/2021
261
+
262
+ ### 💅 Enhancement
263
+
264
+ - The first render of the "not scrollable" Tabs component now
265
+ shows the scrollable version instead of an empty row with a dropdown
266
+ - Split Tabs component in ScrollableTabs and DropdownTabs
267
+
268
+ ### 🐛 Bug Fix
269
+
270
+ - Actually use the lateralPadding prop in Tabs component
271
+
272
+ ## v0.2.8 - 30/04/2021
273
+
274
+ ### 🐛 Bug Fix
275
+
276
+ - Fixed Dropdowns in Internet Explorer
277
+
278
+ ## v0.2.7 - 07/04/2021
279
+
280
+ ### 🐛 Bug Fix
281
+
282
+ - Fixed dropdown menu openings on Internet Explorer
283
+
284
+ ## v0.2.6 - 10/03/2021
285
+
286
+ ### 🐛 Bug Fix
287
+
288
+ - Change Tag component "style" prop to "tagStyle" to prevent TypeScript error
289
+
290
+ ## v0.2.5 - 04/03/2021
291
+
292
+ ### 💅 Enhancement
293
+
294
+ - Hide Tabs scrollbar if there's enough space for the elements
295
+
296
+ ### 🐛 Bug Fix
297
+
298
+ - Force Tabs component to have height: 100% (prevent component/sidebar overlap)
299
+
300
+ ## v0.2.4 - 03/03/2021
301
+
302
+ ### 🐛 Bug Fix
303
+
304
+ - Fixed Button appearance with empty text
305
+
306
+ ## v0.2.3 - 23/02/2021
307
+
308
+ ### 🐛 Bug Fix
309
+
310
+ - Fixed an error in Tabs causing the page overflow in scrollable mode