@nimbus-ds/components 5.8.0 β†’ 5.8.2

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.
Files changed (76) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/Accordion/index.d.ts +136 -0
  3. package/dist/Accordion/index.js +2 -0
  4. package/dist/Alert/index.d.ts +60 -0
  5. package/dist/Alert/index.js +2 -0
  6. package/dist/Badge/index.d.ts +55 -0
  7. package/dist/Badge/index.js +2 -0
  8. package/dist/Box/index.d.ts +763 -0
  9. package/dist/Box/index.js +2 -0
  10. package/dist/Button/index.d.ts +78 -0
  11. package/dist/Button/index.js +2 -0
  12. package/dist/CHANGELOG.md +502 -0
  13. package/dist/Card/index.d.ts +153 -0
  14. package/dist/Card/index.js +2 -0
  15. package/dist/Checkbox/index.d.ts +62 -0
  16. package/dist/Checkbox/index.js +2 -0
  17. package/dist/Chip/index.d.ts +54 -0
  18. package/dist/Chip/index.js +2 -0
  19. package/dist/Collapsible/index.d.ts +45 -0
  20. package/dist/Collapsible/index.js +2 -0
  21. package/dist/FileUploader/index.d.ts +98 -0
  22. package/dist/FileUploader/index.js +2 -0
  23. package/dist/Icon/index.d.ts +96 -0
  24. package/dist/Icon/index.js +2 -0
  25. package/dist/IconButton/index.d.ts +98 -0
  26. package/dist/IconButton/index.js +2 -0
  27. package/dist/Input/index.d.ts +71 -0
  28. package/dist/Input/index.js +2 -0
  29. package/dist/Label/index.d.ts +55 -0
  30. package/dist/Label/index.js +2 -0
  31. package/dist/Link/index.d.ts +115 -0
  32. package/dist/Link/index.js +2 -0
  33. package/dist/List/index.d.ts +75 -0
  34. package/dist/List/index.js +2 -0
  35. package/dist/Modal/index.d.ts +210 -0
  36. package/dist/Modal/index.js +2 -0
  37. package/dist/MultiSelect/index.d.ts +107 -0
  38. package/dist/MultiSelect/index.js +2 -0
  39. package/dist/Pagination/index.d.ts +41 -0
  40. package/dist/Pagination/index.js +2 -0
  41. package/dist/Popover/index.d.ts +160 -0
  42. package/dist/Popover/index.js +2 -0
  43. package/dist/README.md +235 -0
  44. package/dist/Radio/index.d.ts +62 -0
  45. package/dist/Radio/index.js +2 -0
  46. package/dist/Select/index.d.ts +81 -0
  47. package/dist/Select/index.js +2 -0
  48. package/dist/Sidebar/index.d.ts +367 -0
  49. package/dist/Sidebar/index.js +2 -0
  50. package/dist/Skeleton/index.d.ts +31 -0
  51. package/dist/Skeleton/index.js +2 -0
  52. package/dist/Spinner/index.d.ts +53 -0
  53. package/dist/Spinner/index.js +2 -0
  54. package/dist/Table/index.d.ts +123 -0
  55. package/dist/Table/index.js +2 -0
  56. package/dist/Tabs/index.d.ts +78 -0
  57. package/dist/Tabs/index.js +2 -0
  58. package/dist/Tag/index.d.ts +51 -0
  59. package/dist/Tag/index.js +2 -0
  60. package/dist/Text/index.d.ts +465 -0
  61. package/dist/Text/index.js +2 -0
  62. package/dist/Textarea/index.d.ts +50 -0
  63. package/dist/Textarea/index.js +2 -0
  64. package/dist/Thumbnail/index.d.ts +72 -0
  65. package/dist/Thumbnail/index.js +2 -0
  66. package/dist/Title/index.d.ts +164 -0
  67. package/dist/Title/index.js +2 -0
  68. package/dist/Toast/index.d.ts +56 -0
  69. package/dist/Toast/index.js +2 -0
  70. package/dist/Toggle/index.d.ts +48 -0
  71. package/dist/Toggle/index.js +2 -0
  72. package/dist/Tooltip/index.d.ts +46 -0
  73. package/dist/Tooltip/index.js +2 -0
  74. package/dist/index.d.ts +3506 -0
  75. package/dist/index.js +2 -0
  76. package/package.json +1 -1
@@ -0,0 +1,502 @@
1
+ # Changelog
2
+
3
+ Nimbus is an open-source Design System created by Tiendanube / Nuvesmhop’s team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
4
+
5
+ ## 2025-03-20 `5.8.1` and `5.8.2`
6
+
7
+ #### πŸ› Bug fixes
8
+
9
+ - Rebuild after failed release. ([#277](https://github.com/TiendaNube/nimbus-design-system/pull/277) by [@joacotornello](https://github.com/joacotornello))
10
+
11
+ ## 2025-03-18 `5.8.0`
12
+
13
+ #### πŸŽ‰ New features
14
+
15
+ - Adds `use-client` directive to the build output in order to support NextJS applications. ([#276](https://github.com/TiendaNube/nimbus-design-system/pull/276) by [@joacotornello](https://github.com/joacotornello))
16
+
17
+ - Implemented new webpack configuration to move useful files into the build output directory and inject the `use client` directive. ([#276](https://github.com/TiendaNube/nimbus-design-system/pull/276) by [@joacotornello](https://github.com/joacotornello))
18
+
19
+ ### πŸ’‘ Others
20
+
21
+ - Rebuild after build process changes to add support for modular imports and Server Components. ([#276](https://github.com/TiendaNube/nimbus-design-system/pull/276) by [@joacotornello](https://github.com/joacotornello))
22
+
23
+ ## 2025-03-07 `5.7.2`
24
+
25
+ #### πŸ’‘ Others
26
+
27
+ #### πŸ› Bug fixes
28
+
29
+ - Docgen process won't break if some of the builds fails in between ([#272](https://github.com/TiendaNube/nimbus-design-system/pull/272) by [@joacotornello](https://github.com/joacotornello))
30
+
31
+ #### πŸ’‘ Others
32
+
33
+ - Added docs. ([#272](https://github.com/TiendaNube/nimbus-design-system/pull/272) by [@joacotornello](https://github.com/joacotornello))
34
+
35
+ ## 2025-03-03 `5.7.1`
36
+
37
+ ### πŸŽ‰ New features
38
+
39
+ - The `renderItem` property is added to the `Pagination` component, to be able to have the link functionality in the buttons. ([#269](https://github.com/TiendaNube/nimbus-design-system/pull/269) by [@hrchioest](https://github.com/hrchioest))
40
+
41
+ ## 2025-02-27 `5.5.6`
42
+
43
+ #### πŸ› Bug fixes
44
+
45
+ - Fixed `Tooltip` overflow when screen size is small enough. ([#268](https://github.com/TiendaNube/nimbus-design-system/pull/268) by [@joacotornello](https://github.com/joacotornello))
46
+
47
+ #### πŸ› New features
48
+
49
+ - `Tooltip`: Adds support for maxWidth prop. ([#268](https://github.com/TiendaNube/nimbus-design-system/pull/268) by [@joacotornello](https://github.com/joacotornello))
50
+
51
+ ## 2024-12-18 `5.5.5`
52
+
53
+ #### πŸ› Bug fixes
54
+
55
+ - We detected that the content of the Tabs, when set to full, was not centered but aligned to the left. ([#261](https://github.com/TiendaNube/nimbus-design-system/pull/261) by [@harrytiendanube](https://github.com/harrytiendanube) )
56
+ - Made `onDismiss` property optional for `Modal` component. If `onDismiss` is not provided, the modal can no longer be closed by clicking outside or pressing the close button
57
+ - Removed the close button (X) from `Modal` component when `onDismiss` is not provided. ([#246](https://github.com/TiendaNube/nimbus-design-system/pull/246) by [@dommirr](https://github.com/dommirr))
58
+
59
+ ## 2024-04-22 `5.5.4`
60
+
61
+ ### πŸ’‘ Others
62
+
63
+ - Trigger `onClick` only when close icon is pressed on `Chip` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/240) by [@nachozullo](https://github.com/nachozullo))
64
+ - Added `lockScroll` to prevent scroll outside of the body of `Sidebar` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/240) by [@nachozullo](https://github.com/nachozullo))
65
+
66
+ ## 2024-03-18 `5.5.3`
67
+
68
+ ### πŸ› Bug fixes
69
+
70
+ - Added `RemoveScroll` component from `react-remove-scroll` library to prevent scroll resetting on the body of the `Sidebar` component. ([#233](https://github.com/TiendaNube/nimbus-design-system/pull/233) by [@juanchigallego](https://github.com/juanchigallego))
71
+ - Added `needRemoveScroll` optional prop to `Sidebar` component. ([#233](https://github.com/TiendaNube/nimbus-design-system/pull/233) by [@juanchigallego](https://github.com/juanchigallego))
72
+ - Fixed type bug on expected icon and text color values on `Toast` component. ([#233](https://github.com/TiendaNube/nimbus-design-system/pull/233) by [@juanchigallego](https://github.com/juanchigallego))
73
+
74
+ ### πŸ“š 3rd party library updates
75
+
76
+ - Added `react-remove-scroll@2.5.7` to `Sidebar` component. ([#233](https://github.com/TiendaNube/nimbus-design-system/pull/233) by [@juanchigallego](https://github.com/juanchigallego))
77
+
78
+ ## 2024-03-01 `5.4.2`
79
+
80
+ ### πŸŽ‰ New features
81
+
82
+ - Add `neutral-background` option to `color` properties on `Title` component. ([#224](https://github.com/TiendaNube/nimbus-design-system/pull/224) by [@juanchigallego](https://github.com/juanchigallego))
83
+
84
+ ## 2024-02-07 `5.4.1`
85
+
86
+ ### πŸ› Bug fixes
87
+
88
+ - Added `lineClamp` and `wordBreak` properties to `Chip` Text to allow overflowing text to hide instead of breaking into lines. ([#220](https://github.com/TiendaNube/nimbus-design-system/pull/220) by [@juanchigallego](https://github.com/juanchigallego))
89
+
90
+ ## 2024-01-18 `5.4.0`
91
+
92
+ ### πŸŽ‰ New features
93
+
94
+ - Add `labelContent` prop to `Tabs.Item` subcomponent to include a child node on the tab button. ([#216](https://github.com/TiendaNube/nimbus-design-system/pull/216) by [@juanchigallego](https://github.com/juanchigallego))
95
+
96
+ ## 2023-12-22 `5.3.2`
97
+
98
+ #### πŸŽ‰ New features
99
+
100
+ - Update `Checkbox`, `Chip`, `IconButton`, `Radio`, `Toggle` and `Alert` packages with new color tokens from `@nimbus-ds/tokens` package. ([#215](https://github.com/TiendaNube/nimbus-design-system/pull/215) by [@juanchigallego](https://github.com/juanchigallego))
101
+ - Changed default color to `neutral-textHigh` and default weight to `bold` on `Title` component. ([#215](https://github.com/TiendaNube/nimbus-design-system/pull/215) by [@juanchigallego](https://github.com/juanchigallego))
102
+ - Changed default title size to `h4` on `CardHeader` and `ModalHeader` components. ([#215](https://github.com/TiendaNube/nimbus-design-system/pull/215) by [@juanchigallego](https://github.com/juanchigallego))
103
+ - Changed default title size to `h2` on `SidebarHeader` component. ([#215](https://github.com/TiendaNube/nimbus-design-system/pull/215) by [@juanchigallego](https://github.com/juanchigallego))
104
+
105
+ ## 2023-12-15 `5.3.1`
106
+
107
+ #### πŸ› Bug fixes
108
+
109
+ - Fixed bug where value was not being updated.([#203](https://github.com/TiendaNube/nimbus-design-system/pull/212) by [@vrlopess](https://github.com/vrlopess))
110
+
111
+ ## 2023-10-30 `5.3.0`
112
+
113
+ #### πŸŽ‰ New features
114
+
115
+ - Added new `MultiSelect` component. ([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
116
+
117
+ #### πŸ› Bug fixes
118
+
119
+ - Fixed bug where the theme change did not reflect the color change in the component `Popover`.([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
120
+ - Fixed bug where the theme change did not reflect the color change in the component `Tooltip`.([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
121
+ - Fixed bug where the theme change did not reflect the color change in the component `Modal`.([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
122
+ - Fixed bug where the theme change did not reflect the color change in the component `Sidebar`.([#203](https://github.com/TiendaNube/nimbus-design-system/pull/203) by [@juniorconquista](https://github.com/juniorconquista))
123
+
124
+ ## 2023-10-13 `5.2.1`
125
+
126
+ #### πŸŽ‰ New features
127
+
128
+ - Added `arrow` property to the Component `Tooltip` API. ([#196](https://github.com/TiendaNube/nimbus-design-system/pull/196) by [@juniorconquista](https://github.com/juniorconquista))
129
+ - Added `maxWidth` and `matchReferenceWidth` properties to the Component `Popover` API. ([#196](https://github.com/TiendaNube/nimbus-design-system/pull/196) by [@juniorconquista](https://github.com/juniorconquista))
130
+
131
+ #### πŸ› Bug fixes
132
+
133
+ - Fixed bug where the maximum width of the popover exceeded the maximum size of a screen to the Component `Popover`. ([#196](https://github.com/TiendaNube/nimbus-design-system/pull/196) by [@juniorconquista](https://github.com/juniorconquista))
134
+ - Removed fixed minimum width so that the minimum width respects the content of the popover to the Component `Popover`. ([#196](https://github.com/TiendaNube/nimbus-design-system/pull/196) by [@juniorconquista](https://github.com/juniorconquista))
135
+ - Fixed arrow positioning to the Component `Popover`. ([#196](https://github.com/TiendaNube/nimbus-design-system/pull/196) by [@juniorconquista](https://github.com/juniorconquista))
136
+ - Fixed the positioning of the popover so that if it does not fit in the chosen position, it automatically moves to a position that has positioning space to the Component `Popover`. ([#196](https://github.com/TiendaNube/nimbus-design-system/pull/196) by [@juniorconquista](https://github.com/juniorconquista))
137
+
138
+ #### πŸ“š 3rd party library updates
139
+
140
+ - Updated `@floating-ui/react@0.26.0`. ([#195](https://github.com/TiendaNube/nimbus-design-system/pull/195) by [@juanchigallego](https://github.com/juanchigallego))
141
+
142
+ ## 2023-08-04 `5.2.0`
143
+
144
+ #### πŸŽ‰ New features
145
+
146
+ - Added `fontSize` property to the Component `Box` API. ([#184](https://github.com/TiendaNube/nimbus-design-system/pull/184) by [@juniorconquista](https://github.com/juniorconquista))
147
+ - Added `fontWeight` property to the Component `Box` API. ([#184](https://github.com/TiendaNube/nimbus-design-system/pull/184) by [@juniorconquista](https://github.com/juniorconquista))
148
+ - Added `lineHeight` property to the Component `Box` API. ([#184](https://github.com/TiendaNube/nimbus-design-system/pull/184) by [@juniorconquista](https://github.com/juniorconquista))
149
+ - Added `textAlign` property to the Component `Box` API. ([#184](https://github.com/TiendaNube/nimbus-design-system/pull/184) by [@juniorconquista](https://github.com/juniorconquista))
150
+
151
+ ## 2023-07-11 `5.1.1`
152
+
153
+ #### πŸŽ‰ New features
154
+
155
+ - Added `ref` property to `Select` component API. ([#180](https://github.com/TiendaNube/nimbus-design-system/pull/180) by [@juniorconquista](https://github.com/juniorconquista)).
156
+ - Added `ref` property to `Textarea` component API. ([#180](https://github.com/TiendaNube/nimbus-design-system/pull/180) by [@juniorconquista](https://github.com/juniorconquista)).
157
+
158
+ #### πŸ› Bug fixes
159
+
160
+ - Adding extra right padding to the modal title to prevent the title from getting overlaid by the close button. ([#179](https://github.com/TiendaNube/nimbus-design-system/pull/179) by [@juniorconquista](https://github.com/juniorconquista))
161
+
162
+ #### πŸ“š 3rd party library updates
163
+
164
+ - Updated `@floating-ui/react@0.24.6`. ([#179](https://github.com/TiendaNube/nimbus-design-system/pull/179) by [@juanchigallego](https://github.com/juanchigallego))
165
+
166
+ ## 2023-06-13 `5.1.0`
167
+
168
+ ### πŸŽ‰ New features
169
+
170
+ - Added `Padding` property to the Component `Card.Header`. ([#169](https://github.com/TiendaNube/nimbus-design-system/pull/169) by [@juniorconquista](https://github.com/juniorconquista))
171
+ - Added `Padding` property to the Component `Card.Footer`. ([#169](https://github.com/TiendaNube/nimbus-design-system/pull/169) by [@juniorconquista](https://github.com/juniorconquista))
172
+ - Added `Padding` property to the Component `Modal.Header`. ([#169](https://github.com/TiendaNube/nimbus-design-system/pull/169) by [@juniorconquista](https://github.com/juniorconquista))
173
+ - Added `Padding` property to the Component `Modal.Footer`. ([#169](https://github.com/TiendaNube/nimbus-design-system/pull/169) by [@juniorconquista](https://github.com/juniorconquista))
174
+ - Added `wordBreak` property to the Component `Text` API. ([#169](https://github.com/TiendaNube/nimbus-design-system/pull/169) by [@juniorconquista](https://github.com/juniorconquista))
175
+
176
+ ## 2023-05-23 `5.0.0`
177
+
178
+ #### πŸ›  Breaking changes
179
+
180
+ - Changed the dynamic sending option of the `zIndex` property to use `zIndex` in the `Popover` component API. ([#162](https://github.com/TiendaNube/nimbus-design-system/pull/162) by [@juniorconquista](https://github.com/juniorconquista))
181
+
182
+ ## 2023-05-22 `4.4.0`
183
+
184
+ ### πŸŽ‰ New features
185
+
186
+ - Added new `lineClamp` property on `Text` component. ([#157](https://github.com/TiendaNube/nimbus-design-system/pull/157) by [@juanchigallego](https://github.com/juanchigallego))
187
+
188
+ ### πŸ› Bug fixes
189
+
190
+ - Fixes a bug on `Modal` component where focus wasn't correctly moved to the modal dialog when pressing tab key. ([#157](https://github.com/TiendaNube/nimbus-design-system/pull/157) by [@juanchigallego](https://github.com/juanchigallego))
191
+
192
+ ### πŸ“š 3rd party library updates
193
+
194
+ - Removed `@floating-ui/react-dom-interactions`. ([#157](https://github.com/TiendaNube/nimbus-design-system/pull/157) by [@juanchigallego](https://github.com/juanchigallego))
195
+ - Added `@floating-ui/react`. ([#157](https://github.com/TiendaNube/nimbus-design-system/pull/157) by [@juanchigallego](https://github.com/juanchigallego))
196
+
197
+ ## 2023-05-08 `4.3.0`
198
+
199
+ ### πŸŽ‰ New features
200
+
201
+ - Added `padding` property to the Component `Accordion.Body`. ([#156](https://github.com/TiendaNube/nimbus-design-system/pull/156) by [@juniorconquista](https://github.com/juniorconquista))
202
+
203
+ ## 2023-05-02 `4.2.1`
204
+
205
+ ### πŸŽ‰ New features
206
+
207
+ - Added responsive conditions to `Title` component properties. ([#152](https://github.com/TiendaNube/nimbus-design-system/pull/152) by [@juanchigallego](https://github.com/juanchigallego))
208
+
209
+ #### πŸ› Bug fixes
210
+
211
+ - Omit `content` HTML prop on `Popover` API. ([#152](https://github.com/TiendaNube/nimbus-design-system/pull/152) by [@juanchigallego](https://github.com/juanchigallego))
212
+
213
+ ## 2023-04-24 `4.2.0`
214
+
215
+ #### πŸŽ‰ New features
216
+
217
+ - Added `ref` property to `Input` component API. ([#151](https://github.com/TiendaNube/nimbus-design-system/pull/151) by [@juniorconquista](https://github.com/juniorconquista)).
218
+ - Added `ref` property to `Input.Password` component API. ([#151](https://github.com/TiendaNube/nimbus-design-system/pull/151) by [@juniorconquista](https://github.com/juniorconquista)).
219
+ - Added `ref` property to `Input.Search` component API. ([#151](https://github.com/TiendaNube/nimbus-design-system/pull/151) by [@juniorconquista](https://github.com/juniorconquista)).
220
+
221
+ ## 2023-04-13 `4.1.1`
222
+
223
+ #### πŸŽ‰ New features
224
+
225
+ - Added renderProps functionality to the component `Popover` so that it is possible to obtain the internal state of the popover in the component's children. ([#149](https://github.com/TiendaNube/nimbus-design-system/pull/149) by [@juniorconquista](https://github.com/juniorconquista))
226
+ - Added responsive conditions to `Text` component properties. ([#149](https://github.com/TiendaNube/nimbus-design-system/pull/149) by [@juniorconquista](https://github.com/juniorconquista))
227
+
228
+ #### πŸ› Bug fixes
229
+
230
+ - Removed additional margin generated in component `Card` when using subcomponent `Card.Header` without a `Card.Footer`. ([#149](https://github.com/TiendaNube/nimbus-design-system/pull/149) by [@juniorconquista](https://github.com/juniorconquista))
231
+ - Removed hover effect on `IconButton` component when disabled. ([#149](https://github.com/TiendaNube/nimbus-design-system/pull/149) by [@juniorconquista](https://github.com/juniorconquista))
232
+ - Added side spacing to `Modal` component. ([#149](https://github.com/TiendaNube/nimbus-design-system/pull/149) by [@juniorconquista](https://github.com/juniorconquista))
233
+ - Fixed bug in `Select` component where clicking on arrow icon didn't work. ([#149](https://github.com/TiendaNube/nimbus-design-system/pull/149) by [@juniorconquista](https://github.com/juniorconquista))
234
+
235
+ ## 2023-04-10 `4.1.0`
236
+
237
+ #### πŸ’‘ Others
238
+
239
+ - Changed `maxWidth` type description to reflect on prop documentation `Modal` component. ([#141](https://github.com/TiendaNube/nimbus-design-system/pull/141) by [@diegopsilverio](https://github.com/diegopsilverio))
240
+
241
+ ## 2023-04-03 `4.0.0`
242
+
243
+ #### πŸ›  Breaking changes
244
+
245
+ - Refactored shadow tokens in components. ([#139](https://github.com/TiendaNube/nimbus-design-system/pull/139) by [@juniorconquista](https://github.com/juniorconquista))
246
+
247
+ ## 2023-03-31 `3.2.0`
248
+
249
+ ### πŸŽ‰ New features
250
+
251
+ - Added `textDecoration` property to `Box` component API. ([#136](https://github.com/TiendaNube/nimbus-design-system/pull/106) by
252
+
253
+ ### πŸ› Bug fixes
254
+
255
+ - Add missing dependency for `@nimbus-ds/icon` external package on `Select` component. ([#136](https://github.com/TiendaNube/nimbus-design-system/pull/136) by [@juanchigallego](https://github.com/juanchigallego))
256
+
257
+ ## 2023-03-24 `3.1.0`
258
+
259
+ ### πŸ› Bug fixes
260
+
261
+ - Adjusted internal spacing of components when the alert does not have the removal function. ([#134](https://github.com/TiendaNube/nimbus-design-system/pull/134) by [@juniorconquista](https://github.com/juniorconquista))
262
+
263
+ ### πŸ’‘ Others
264
+
265
+ - Adjusted the `Box` component properties interface to use `ComponentPropsWithRef` and include the `as` prop in the output interface. ([#134](https://github.com/TiendaNube/nimbus-design-system/pull/134) by [@juniorconquista](https://github.com/juniorconquista))
266
+ - Adjusted the `Button` component properties interface to use `ComponentPropsWithRef` and include the `as` prop in the output interface. ([#134](https://github.com/TiendaNube/nimbus-design-system/pull/134) by [@juniorconquista](https://github.com/juniorconquista))
267
+ - Adjusted the `Link` component properties interface to use `ComponentPropsWithRef` and include the `as` prop in the output interface. ([#134](https://github.com/TiendaNube/nimbus-design-system/pull/134) by [@juniorconquista](https://github.com/juniorconquista))
268
+
269
+ ## 2023-03-27 `3.0.1`
270
+
271
+ ### πŸ› Bug fixes
272
+
273
+ - Fixes bug where `Select.Option` subcomponent would not render the HTML option elements on IOS devices. ([#129](https://github.com/TiendaNube/nimbus-design-system/pull/129) by [@juanchigallego](https://github.com/juanchigallego))
274
+
275
+ ## 2023-03-10 `3.0.0`
276
+
277
+ ### πŸ›  Breaking changes
278
+
279
+ - Changed the `backgroundColor` properties to `primary-interactive`, `primary-surface`, `primary-surfaceHighlight`, `primary-textLow`, `success-interactive`, `success-surface`, `success-surfaceHighlight`, `success-textLow`, `warning-interactive`, `warning-surface`, `warning-surfaceHighlight`, `warning-textLow`, `danger-interactive`, `danger-surface`, `danger-surfaceHighlight`, `danger-textLow`, `neutral-background`, `neutral-interactive`, `neutral-surface`, `neutral-surfaceHighlight`, `neutral-surfaceDisabled` and `neutral-textLow` on `Box` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
280
+ - Changed the `color` properties to `primary-interactive`, `primary-surface`, `primary-surfaceHighlight`, `primary-textLow`, `success-interactive`, `success-surface`, `success-surfaceHighlight`, `success-textLow`, `warning-interactive`, `warning-surface`, `warning-surfaceHighlight`, `warning-textLow`, `danger-interactive`, `danger-surface`, `danger-surfaceHighlight`, `danger-textLow`, `neutral-background`, `neutral-interactive`, `neutral-surface`, `neutral-surfaceHighlight`, `neutral-surfaceDisabled` and `neutral-textLow` on `Box` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
281
+ - Changed the `borderColor` properties to `primary-interactive`, `primary-surface`, `primary-surfaceHighlight`, `success-interactive`, `success-surface`, `success-surfaceHighlight`, `warning-interactive`, `warning-surface`, `warning-surfaceHighlight`, `danger-interactive`, `danger-surface`, `danger-surfaceHighlight`, `neutral-interactive`, `neutral-surface` and `neutral-surfaceHighlight` on `Box` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
282
+ - Changed the `color` properties to `primary-interactive`, `primary-surface`, `primary-textLow`, `success-textLow`, `success-surface`, `warning-interactive`, `warning-surface`, `warning-textLow`, `danger-interactive`, `danger-surface`, `danger-textLow`, `neutral-background`, `neutral-interactive`, `neutral-surface`, `neutral-textLow`, `currentColor`, `success-interactive`, `primary-textHigh`, `success-textHigh`, `warning-textHigh`, `danger-textHigh`, `neutral-textDisabled` and `neutral-textHigh` on `Icon` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
283
+ - Changed the `borderColor` properties to `neutral-surface`, `neutral-interactive` and `neutral-surfaceHighlight` on `IconButton` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
284
+ - Changed the `backgroundColor` properties to `neutral-interactive`, `neutral-interactiveHover`, `neutral-interactivePressed` and `primary-interactive` on `IconButton` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
285
+ - Changed appearance property from `neutral.background` to `neutral-background` on `Link` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
286
+ - Changed the `backgroundColor` properties to `primary-surfaceHighlight`, `primary-interactiveHover`, `success-surfaceHighlight`, `danger-surfaceHighlight`, `neutral-surfaceHighlight` and `warning-surfaceHighlight` on `Popover` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
287
+ - Changed the `color` properties to `primary-surfaceHighlight`, `primary-interactiveHover`, `success-surfaceHighlight`, `danger-surfaceHighlight`, `neutral-surfaceHighlight` and `warning-surfaceHighlight` on `Popover` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
288
+ - Changed the `color` properties to `primary-interactive`, `primary-surface`, `primary-textLow`, `success-textLow`, `success-surface`, `danger-interactive`, `danger-surface`, `danger-textLow`, `neutral-background`, `neutral-interactive`, `neutral-surface`, `neutral-textLow`, `currentColor` and `success-interactive` on `Spinner` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
289
+ - Changed the `color` properties to `primary-interactive`, `primary-surface`, `primary-textLow`, `success-textLow`, `success-surface`, `warning-interactive`, `warning-surface`, `warning-textLow`, `danger-interactive`, `danger-surface`, `danger-textLow`, `neutral-background`, `neutral-interactive`, `neutral-surface`, `neutral-textLow`, `success-interactive`, `primary-textHigh`, `success-textHigh`, `warning-textHigh`, `danger-textHigh`, `neutral-textDisabled` and `neutral-textHigh` on `Text` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
290
+ - Changed the `color` properties to `primary-textLow`,`success-textLow`,`warning-textLow`,`danger-textLow`,`neutral-textLow`,`primary-textHigh`,`success-textHigh`,`warning-textHigh`,`danger-textHigh` and `neutral-textHigh` on `Title` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
291
+ - Changed the `backgroundColor` properties to `primary-surface`, `primary-surfaceHighlight`, `success-surface`, `success-surfaceHighlight`, `warning-surface`, `warning-surfaceHighlight`, `danger-surface`, `danger-surfaceHighlight`, `neutral-background`, `neutral-surface` and `neutral-surfaceHighlight` on `Card` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
292
+ - Changed the `backgroundColor` properties to `neutral-background`, `neutral-surface`, `neutral-surfaceHighlight`, `primary-surface` and `primary-surfaceHighlight` on `Table.Cell` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
293
+ - Changed the `backgroundColor` properties to `neutral-background`, `neutral-surface`, `neutral-surfaceHighlight`, `primary-surface` and `primary-surfaceHighlight` on `Table.Row` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
294
+
295
+ ### πŸ’‘ Others
296
+
297
+ - Refactored style classes to have more semantic names on `Checkbox` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
298
+ - Refactored style classes to have more semantic names on `Chip` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
299
+ - Refactored style classes to have more semantic names on `FileUploader` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
300
+ - Refactored style classes to have more semantic names on `Icon` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
301
+ - Refactored style classes to have more semantic names on `IconButton` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
302
+ - Refactored style classes to have more semantic names on `Input` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
303
+ - Refactored style classes to have more semantic names on `Link` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
304
+ - Refactored style classes to have more semantic names on `List` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
305
+ - Refactored style classes to have more semantic names on `Popover` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
306
+ - Refactored style classes to have more semantic names on `Radio` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
307
+ - Refactored style classes to have more semantic names on `Select` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
308
+ - Refactored style classes to have more semantic names on `Spinner` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
309
+ - Refactored style classes to have more semantic names on `Skeleton` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
310
+ - Refactored style classes to have more semantic names on `Tag` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
311
+ - Refactored style classes to have more semantic names on `Text` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
312
+ - Refactored style classes to have more semantic names on `Thumbnail` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
313
+ - Refactored style classes to have more semantic names on `Title` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
314
+ - Refactored style classes to have more semantic names on `Toast` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
315
+ - Refactored style classes to have more semantic names on `Toggle` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
316
+ - Refactored style classes to have more semantic names on `Tooltip` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
317
+ - Refactored style classes to have more semantic names on `Accordion` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
318
+ - Refactored style classes to have more semantic names on `Alert` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
319
+ - Refactored style classes to have more semantic names on `Card` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
320
+ - Refactored style classes to have more semantic names on `Modal` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
321
+ - Refactored style classes to have more semantic names on `Sidebar` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
322
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Checkbox` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
323
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Chip` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
324
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `FileUploader` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
325
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Input` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
326
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Select` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
327
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Thumbnail` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
328
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Toast` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
329
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Toggle` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
330
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Tooltip` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
331
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Accordion` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
332
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Alert` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
333
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Card` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
334
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Modal` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
335
+ - Refactored use of `color tokens` in internal components by removing `.` per `-` on `Sidebar` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/110) by [@juniorconquista](https://github.com/juniorconquista))
336
+
337
+ ## 2023-02-24 `2.10.0`
338
+
339
+ ### πŸŽ‰ New features
340
+
341
+ - Added `fontSize`, `fontWeight` and `lineHeight` properties to `Title` component API. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
342
+ - Changed `cursor` property default value to `inherit` on `Icon` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
343
+ - Added `zIndex`, `minHeight`, `minWidth`, `flexGrow`, `order` and `alignSelf` property to `Box` component API. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
344
+ - Added `"border-box"` as default value for `boxSizing` property on `Box` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
345
+ - Added `backgroundImage`, `backgroundPosition`, `backgroundBlendMode`, `backgroundRepeat`, `backgroundSize`, `color`, `minWidth` and `minHeight` properties to `Box` component API. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
346
+ - Changed `fontSize` default value to `base` on `Text` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
347
+ - Changed `lineHeight` default value to `base` on `Text` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
348
+ - Changed `color` default value to `neutral.textLow` on `Text` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
349
+ - Added `as` prop on `Table.Cell` subcomponente API. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
350
+ - Replaced `size` property with `fontSize` on `Link` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
351
+ - Added `lineHeight` property to `Link` component API. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
352
+ - Added `backgroundColor`, `color`, `zIndex`, `height` and `width` property to `Popover` component API. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juniorconquista](https://github.com/juniorconquista))
353
+
354
+ ### πŸ’‘ Others
355
+
356
+ - Replaced font size and line height on `Text` component on `Badge` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
357
+ - Reset font size and line height values on `Text` component to default values on `Checkbox` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
358
+ - Reset color value on `Text` component to default value on `Chip` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
359
+ - Add `lineHeight caption` property on `Text` component on `Chip` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
360
+ - Add `fontSize caption` property on `Text` component on `FileUploader` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
361
+ - Adjust `fontSize` and `color` properties in `Text` component on stories documentation on `Link` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
362
+ - Adjust `fontSize` and `lineHeight` properties in `Text` component on stories documentation on `Tag` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
363
+ - Adjust `Text` component default values on `Toggle` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
364
+ - Adjust `Text` component default values on `Accordion` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
365
+ - Adjust `Text` component default values in stories documentation on `Accordion` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
366
+ - Adjust `fontSize` and `lineHeight` properties in `Text` component on stories documentation on `Card` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
367
+ - Adjust `fontSize` and `lineHeight` properties in `Text` component on stories documentation on `Modal` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
368
+ - Adjust `fontSize` and `lineHeight` properties in `Text` component on stories documentation on `Sidebar` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
369
+
370
+ ### πŸ› Bug fixes
371
+
372
+ - Fixed a bug where `rest` condition selector sprinkle would not work in `Table` component. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
373
+ - Fixed a bug where `Pagination` component was not being exported in the package. ([#106](https://github.com/TiendaNube/nimbus-design-system/pull/106) by [@juanchigallego](https://github.com/juanchigallego))
374
+
375
+ ## 2023-02-23 `2.9.0`
376
+
377
+ ### πŸŽ‰ New features
378
+
379
+ - Added server side-rendering support to component `Badge`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
380
+ - Added server side-rendering support to component `Box`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
381
+ - Added server side-rendering support to component `Button`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
382
+ - Added server side-rendering support to component `Checkbox`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
383
+ - Added server side-rendering support to component `Chip`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
384
+ - Added server side-rendering support to component `FileUploader`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
385
+ - Added server side-rendering support to component `Icon`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
386
+ - Added server side-rendering support to component `IconButton`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
387
+ - Added server side-rendering support to component `Input`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
388
+ - Added server side-rendering support to component `Label`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
389
+ - Added server side-rendering support to component `List`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
390
+ - Added server side-rendering support to component `Popover`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
391
+ - Added server side-rendering support to component `Radio`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
392
+ - Added server side-rendering support to component `Select`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
393
+ - Added server side-rendering support to component `Skeleton`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
394
+ - Added server side-rendering support to component `Spinner`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
395
+ - Added server side-rendering support to component `Tag`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
396
+ - Added server side-rendering support to component `Text`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
397
+ - Added server side-rendering support to component `Textarea`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
398
+ - Added server side-rendering support to component `Thumbnail`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
399
+ - Added server side-rendering support to component `Tilte`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
400
+ - Added server side-rendering support to component `Toast`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
401
+ - Added server side-rendering support to component `Toggle`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
402
+ - Added server side-rendering support to component `Tooltip`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
403
+ - Added server side-rendering support to component `Accordion`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
404
+ - Added server side-rendering support to component `Alert`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
405
+ - Added server side-rendering support to component `Card`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
406
+ - Added server side-rendering support to component `Modal`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
407
+ - Added server side-rendering support to component `Pagination`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
408
+ - Added server side-rendering support to component `Sidebar`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
409
+ - Added server side-rendering support to component `Table`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
410
+ - Added server side-rendering support to component `Tabs`. ([#105](https://github.com/TiendaNube/nimbus-design-system/pull/105) by [@juniorconquista](https://github.com/juniorconquista))
411
+
412
+ ## 2023-02-16 `2.8.0`
413
+
414
+ ### πŸŽ‰ New features
415
+
416
+ - Removed external dependency from `@tiendanube/icons` package to now use inner package `@nimbus-ds/icons` in packages `@nimbus-ds/button`, `@nimbus-ds/chip`, `@nimbus-ds /file-uploader`, `@nimbus-ds/icon`, `@nimbus-ds/icon-button`, `@nimbus-ds/input`, `@nimbus-ds/label`, `@nimbus-ds/link`, `@nimbus-ds/tag`, `@nimbus-ds/thumbnail` and `@nimbus-ds/toast`. ([#94](https://github.com/TiendaNube/nimbus-design-system/pull/#94) by [@juniorconquista](https://github.com/juniorconquista))
417
+
418
+ ### πŸ“š 3rd party library updates
419
+
420
+ - Removed `@tiendanube/icons@0.3.1`. ([#94](https://github.com/TiendaNube/nimbus-design-system/pull/#94) by [@juniorconquista](https://github.com/juniorconquista))
421
+
422
+ ## 2023-02-13 `2.7.0`
423
+
424
+ ### πŸŽ‰ New features
425
+
426
+ - Added polymorphic typing support to component `Button`. ([#89](https://github.com/TiendaNube/nimbus-design-system/pull/89) by [@juniorconquista](https://github.com/juniorconquista))
427
+ - Added `as` property to the Component `Button`. ([#89](https://github.com/TiendaNube/nimbus-design-system/pull/89) by [@juniorconquista](https://github.com/juniorconquista))
428
+ - Added polymorphic typing support to component `Lnk`. ([#89](https://github.com/TiendaNube/nimbus-design-system/pull/89) by [@juniorconquista](https://github.com/juniorconquista))
429
+ - Added `as` property to the Component `Lnk`. ([#89](https://github.com/TiendaNube/nimbus-design-system/pull/89) by [@juniorconquista](https://github.com/juniorconquista))
430
+
431
+ ### πŸ’‘ Others
432
+
433
+ - Removed subcomponent `Link.Button`. [#89](https://github.com/TiendaNube/nimbus-design-system/pull/#89) by [@juniorconquista](https://github.com/juniorconquista))
434
+ - Removed subcomponent `Button.Link`. [#89](https://github.com/TiendaNube/nimbus-design-system/pull/#89) by [@juniorconquista](https://github.com/juniorconquista))
435
+
436
+ ## 2023-02-09 `2.3.0`
437
+
438
+ ### πŸŽ‰ New features
439
+
440
+ - Added properties present in the `@nimbus-ds/stack` package to the box component package. ([#83](https://github.com/TiendaNube/nimbus-design-system/pull/83) by [@juniorconquista](https://github.com/juniorconquista))
441
+
442
+ ### πŸ’‘ Others
443
+
444
+ - Deprecated package `@nimbus-ds/stack`. ([#83](https://github.com/TiendaNube/nimbus-design-system/pull/83) by [@juniorconquista](https://github.com/juniorconquista))
445
+
446
+ ## 2023-02-08 `2.2.0`
447
+
448
+ ### πŸŽ‰ New features
449
+
450
+ - Added polymorphic typing support to component `Box`. ([#81](https://github.com/TiendaNube/nimbus-design-system/pull/81) by [@juniorconquista](https://github.com/juniorconquista))
451
+ - Added `as` property to the Component `Box`. ([#81](https://github.com/TiendaNube/nimbus-design-system/pull/81) by [@juniorconquista](https://github.com/juniorconquista))
452
+ - Added `auto` margin properties to the Component `Box`. ([#81](https://github.com/TiendaNube/nimbus-design-system/pull/81) by [@juniorconquista](https://github.com/juniorconquista))
453
+
454
+ ## 2023-02-07 `2.4.0`
455
+
456
+ ### πŸŽ‰ New features
457
+
458
+ - Added new composite `Accordion` component. ([#80](https://github.com/TiendaNube/nimbus-design-system/pull/80) by [@juniorconquista](https://github.com/juniorconquista))
459
+
460
+ ## 2023-02-01 `2.3.0`
461
+
462
+ ### πŸŽ‰ New features
463
+
464
+ - Added new composite `Modal` component. ([#77](https://github.com/TiendaNube/nimbus-design-system/pull/77) by [@juniorconquista](https://github.com/juniorconquista))
465
+
466
+ ## 2023-01-27 `2.2.0`
467
+
468
+ ### πŸŽ‰ New features
469
+
470
+ - Added new options to `appearance` property on `Popover` component. ([#76](https://github.com/TiendaNube/nimbus-design-system/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
471
+ - Added new options to `appearance` property on `Link` component. ([#76](https://github.com/TiendaNube/nimbus-design-system/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
472
+ - Added new properties to `Box` component. ([#76](https://github.com/TiendaNube/nimbus-design-system/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
473
+
474
+ ## 2023-01-09 `2.1.0`
475
+
476
+ ### πŸŽ‰ New features
477
+
478
+ - Added new composite `Table` component. ([#72](https://github.com/TiendaNube/nimbus-design-system/pull/72) by [@juanchigallego](https://github.com/juanchigallego))
479
+
480
+ ## 2022-12-22 `2.0.0`
481
+
482
+ ### πŸ’‘ Others
483
+
484
+ - Removed direct dependency on package 'nimbus-ds/styles' from compilation of all components. ([#69](https://github.com/TiendaNube/nimbus-design-system/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
485
+
486
+ ## 2022-12-20 `1.1.0`
487
+
488
+ ### πŸŽ‰ New features
489
+
490
+ - Added new composite `Pagination` component. ([#68](https://github.com/TiendaNube/nimbus-design-system/pull/68) by [@juniorconquista](https://github.com/juniorconquista))
491
+
492
+ ## 2022-12-15 `1.0.2`
493
+
494
+ ### πŸ› Bug fixes
495
+
496
+ - Fixed bug in the `textDecoration` property where the `none` option was not applied when the link contained the `href` property. ([#66](https://github.com/TiendaNube/nimbus-design-system/pull/66) by [@juniorconquista](https://github.com/juniorconquista))
497
+
498
+ ## 2022-12-07 `1.0.0`
499
+
500
+ ### πŸ“š 3rd party library updates
501
+
502
+ - Added `webpack@5.75.0`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))