@nimbus-ds/patterns 1.36.0-rc.1 → 1.36.0-rc.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 (55) hide show
  1. package/dist/AppShell/index.d.ts +123 -0
  2. package/dist/AppShell/index.js +2 -0
  3. package/dist/CHANGELOG.md +538 -0
  4. package/dist/Calendar/index.d.ts +44 -0
  5. package/dist/Calendar/index.js +2 -0
  6. package/dist/CalloutCard/index.d.ts +43 -0
  7. package/dist/CalloutCard/index.js +2 -0
  8. package/dist/ChatInput/index.d.ts +89 -0
  9. package/dist/ChatInput/index.js +2 -0
  10. package/dist/DataList/index.d.ts +49 -0
  11. package/dist/DataList/index.js +2 -0
  12. package/dist/DataTable/index.d.ts +201 -0
  13. package/dist/DataTable/index.js +2 -0
  14. package/dist/Editor/index.d.ts +65 -0
  15. package/dist/Editor/index.js +2 -0
  16. package/dist/EmptyApp/index.d.ts +65 -0
  17. package/dist/EmptyApp/index.js +2 -0
  18. package/dist/EmptyMessage/index.d.ts +38 -0
  19. package/dist/EmptyMessage/index.js +2 -0
  20. package/dist/FormField/index.d.ts +63 -0
  21. package/dist/FormField/index.js +2 -0
  22. package/dist/HelpLink/index.d.ts +20 -0
  23. package/dist/HelpLink/index.js +2 -0
  24. package/dist/InitialScreen/index.d.ts +138 -0
  25. package/dist/InitialScreen/index.js +2 -0
  26. package/dist/InteractiveList/index.d.ts +133 -0
  27. package/dist/InteractiveList/index.js +2 -0
  28. package/dist/Layout/index.d.ts +33 -0
  29. package/dist/Layout/index.js +2 -0
  30. package/dist/Menu/index.d.ts +151 -0
  31. package/dist/Menu/index.js +2 -0
  32. package/dist/MenuButton/index.d.ts +101 -0
  33. package/dist/MenuButton/index.js +2 -0
  34. package/dist/NavTabs/index.d.ts +46 -0
  35. package/dist/NavTabs/index.js +2 -0
  36. package/dist/Page/index.d.ts +48 -0
  37. package/dist/Page/index.js +2 -0
  38. package/dist/PlanDisplay/index.d.ts +72 -0
  39. package/dist/PlanDisplay/index.js +2 -0
  40. package/dist/ProductDataList/index.d.ts +208 -0
  41. package/dist/ProductDataList/index.js +2 -0
  42. package/dist/ProductUpdates/index.d.ts +79 -0
  43. package/dist/ProductUpdates/index.js +2 -0
  44. package/dist/README.md +235 -0
  45. package/dist/SideModal/index.d.ts +73 -0
  46. package/dist/SideModal/index.js +2 -0
  47. package/dist/Sortable/index.d.ts +140 -0
  48. package/dist/Sortable/index.js +2 -0
  49. package/dist/SummaryStats/index.d.ts +238 -0
  50. package/dist/SummaryStats/index.js +2 -0
  51. package/dist/ThumbnailWithAction/index.d.ts +31 -0
  52. package/dist/ThumbnailWithAction/index.js +2 -0
  53. package/dist/index.d.ts +1686 -0
  54. package/dist/index.js +2 -0
  55. package/package.json +1 -1
@@ -0,0 +1,538 @@
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
+ ## 2026-03-04 `1.33.1`
6
+
7
+ #### 🐛 Bug fixes
8
+
9
+ - Fixed `className` prop not being passed through to the underlying elements across all pattern components. ([#156](https://github.com/TiendaNube/nimbus-patterns/pull/156) by [@joacotornello](https://github.com/joacotornello))
10
+
11
+ ## 2026-03-02 `1.33.0`
12
+
13
+ #### 🎉 New features
14
+
15
+ - `ProductUpdates`: Added `ProductUpdates.Paginator` and `ProductUpdates.Footer` as compound sub-components. ([#155](https://github.com/TiendaNube/nimbus-patterns/pull/155) by [@joacotornello](https://github.com/joacotornello))
16
+ - `ProductUpdates`: Added `tag` prop to render an optional element inline before the title. ([#155](https://github.com/TiendaNube/nimbus-patterns/pull/155) by [@joacotornello](https://github.com/joacotornello))
17
+ - `ProductUpdates`: Added `bodyContentProps` prop to pass extra properties to the popover body container. ([#155](https://github.com/TiendaNube/nimbus-patterns/pull/155) by [@joacotornello](https://github.com/joacotornello))
18
+
19
+ ## 2026-02-25 `1.32.3`
20
+
21
+ #### 🐛 Bug fixes
22
+
23
+ - Added conditional hover background color to `SummaryStatsItem`, only applied when the stat is expandable. ([#153](https://github.com/TiendaNube/nimbus-patterns/pull/153) by [@jetchart-tiendanube](https://github.com/jetchart-tiendanube))
24
+ - Increased padding on `SummaryStatsItem` to prevent hover background from overlapping separator lines in grid layout. ([#153](https://github.com/TiendaNube/nimbus-patterns/pull/153) by [@jetchart-tiendanube](https://github.com/jetchart-tiendanube))
25
+
26
+ ## 2026-02-24 `1.32.2`
27
+
28
+ #### 🐛 Bug fixes
29
+
30
+ - Replaced React 18's `useId` with a custom `useRandomId` hook in `SummaryStats` to support React 16.8+. ([#152](https://github.com/TiendaNube/nimbus-patterns/pull/152) by [@jetchart-tiendanube](https://github.com/jetchart-tiendanube))
31
+
32
+ ## 2026-02-23 `1.32.1`
33
+
34
+ #### 🐛 Bug fixes
35
+
36
+ - Fixed missing `SummaryStats` export from the `@nimbus-ds/react` package entry point. ([#151](https://github.com/TiendaNube/nimbus-patterns/pull/151) by [@jetchart-tiendanube](https://github.com/jetchart-tiendanube))
37
+
38
+ ## 2026-02-23 `1.32.0`
39
+
40
+ #### 🎉 New features
41
+
42
+ - Added new `SummaryStats` component for displaying key statistics with trend indicators, info tooltips, and expandable content areas. ([#145](https://github.com/TiendaNube/nimbus-patterns/pull/145) by [@jetchart-tiendanube](https://github.com/jetchart-tiendanube))
43
+ - Added Editor `renderModules` prop to allow customization of the toolbar. (by [@edersoares](https://github.com/edersoares))
44
+
45
+ ## 2026-02-13 `1.31.3`
46
+
47
+ #### 🐛 Bug fixes
48
+
49
+ - Removed hardcoded `pb` and `px` props from `ChatInput.Actions` to allow proper layout flexibility. ([#149](https://github.com/TiendaNube/nimbus-patterns/pull/149) by [@karemcarvalho-hue](https://github.com/karemcarvalho-hue))
50
+
51
+ ## 2026-02-11 `1.31.2`
52
+
53
+ #### 🐛 Bug fixes
54
+
55
+ - Fixed `paddingBottom` prop default value in `DataList.Row` sub-component. ([#148](https://github.com/TiendaNube/nimbus-patterns/pull/148) by [@joacotornello](https://github.com/joacotornello))
56
+
57
+ ## 2026-02-11 `1.31.1`
58
+
59
+ #### 🐛 Bug fixes
60
+
61
+ - Fixed `paddingBottom` prop default value to `none` in `DataList.Row` sub-component. ([#147](https://github.com/TiendaNube/nimbus-patterns/pull/147) by [@joacotornello](https://github.com/joacotornello))
62
+
63
+ ## 2026-02-06 `1.31.0`
64
+
65
+ #### 🎉 New features
66
+
67
+ - Added auto-close behavior to `DataTable.Dropdown` when an action is clicked. ([#143](https://github.com/TiendaNube/nimbus-patterns/pull/143) by [@joacotornello](https://github.com/joacotornello))
68
+
69
+ ## 2026-02-05 `1.30.0`
70
+
71
+ #### 🎉 New features
72
+
73
+ - Added `paddingBottom` prop to `DataList.Row` sub-component to allow custom padding bottom definition to rows. ([#141](https://github.com/TiendaNube/nimbus-patterns/pull/141) by [@joacotornello](https://github.com/joacotornello))
74
+
75
+ ## 2026-02-03 `1.29.0`
76
+
77
+ #### 🎉 New features
78
+
79
+ - Added `DataTable.Dropdown` component. ([#141](https://github.com/TiendaNube/nimbus-patterns/pull/141) by [@joacotornello](https://github.com/joacotornello))
80
+ - Added `DataTable.DropdownAction` component. ([#141](https://github.com/TiendaNube/nimbus-patterns/pull/141) by [@joacotornello](https://github.com/joacotornello))
81
+ - Added `DataTable.DropdownDivider` component. ([#141](https://github.com/TiendaNube/nimbus-patterns/pull/141) by [@joacotornello](https://github.com/joacotornello))
82
+ - Added `DataTable.DropdownSection` component. ([#141](https://github.com/TiendaNube/nimbus-patterns/pull/141) by [@joacotornello](https://github.com/joacotornello))
83
+
84
+ ## 2026-01-22 `1.28.1`
85
+
86
+ #### 🐛 Bug fixes
87
+
88
+ - Fixed `DataTable.Cell` component to correctly use the `column` prop. ([#140](https://github.com/TiendaNube/nimbus-patterns/pull/140) by [@joacotornello](https://github.com/joacotornello))
89
+
90
+ ## 2026-01-15 `1.28.0`
91
+
92
+ #### 📚 3rd party library updates
93
+
94
+ - Extends support to React 19. ([#138](https://github.com/TiendaNube/nimbus-patterns/pull/138) by [@joacotornello](https://github.com/joacotornello))
95
+
96
+ ## 2025-12-23 `1.27.0`
97
+
98
+ #### 🎉 New features
99
+
100
+ - Added `containerProps` prop to `DataTable` component to allow passing props to the container element. ([#136](https://github.com/TiendaNube/nimbus-patterns/pull/136) by [@joacotornello](https://github.com/joacotornello))
101
+
102
+ ## 2025-12-11 `1.26.0`
103
+
104
+ #### 🎉 New features
105
+
106
+ - Added `tagIcon` and `tagText` props to `ProductDataListItem` component
107
+ - Added `tagAppearance` prop to `ProductDataListItem` component
108
+ - Added `tagIcon` and `tagText` props to `ProductDataListSortable` component
109
+
110
+ ## 2025-11-14 `1.25.3`
111
+
112
+ #### 🐛 Bug fixes
113
+
114
+ - Don't render start icon in popover content when menu is collapsed. ([#134](https://github.com/TiendaNube/nimbus-patterns/pull/134) by [@joacotornello](https://github.com/joacotornello))
115
+
116
+ ## 2025-11-07 `1.25.2`
117
+
118
+ #### 💡 Others
119
+
120
+ - Updated `AppShell` chat component sizes for better layout consistency. ([#132](https://github.com/TiendaNube/nimbus-patterns/pull/132) by [@joacotornello](https://github.com/joacotornello))
121
+
122
+ ## 2025-11-10 `1.25.1`
123
+
124
+ #### 💡 Others
125
+
126
+ - Improved menu items alignment when menu is collapsed. ([#133](https://github.com/TiendaNube/nimbus-patterns/pull/133) by [@joacotornello](https://github.com/joacotornello))
127
+
128
+ ## 2025-11-04 `1.25.0`
129
+
130
+ #### 💡 Others
131
+
132
+ - Adds support for popovers inside `MenuButton.Accordion` component. ([#131](https://github.com/TiendaNube/nimbus-patterns/pull/131) by [@joacotornello](https://github.com/joacotornello))
133
+ - Added `noop` utility function to the build output. ([#131](https://github.com/TiendaNube/nimbus-patterns/pull/131) by [@joacotornello](https://github.com/joacotornello))
134
+
135
+ ## 2025-10-16 `1.24.1`
136
+
137
+ #### 💡 Others
138
+
139
+ - Fixes background color of `InitialScreen.Card`. ([#130](https://github.com/TiendaNube/nimbus-patterns/pull/130) by [@joacotornello](https://github.com/joacotornello))
140
+
141
+ ## 2025-10-09 `1.24.0`
142
+
143
+ #### 🎉 New features
144
+
145
+ - Added `showTooltipsWhenCollapsed` prop to `Menu` component to control tooltip visibility when menu is collapsed. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
146
+ - Added `tooltipsPosition` prop to `Menu` component to control tooltip position when menu is collapsed. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
147
+ - Added `tooltipText` prop to `MenuButton` component to display custom tooltip text when menu is collapsed. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
148
+ - Added `tooltipText` prop to `MenuButton.Accordion` component to display custom tooltip text when menu is collapsed. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
149
+ - Added tooltip support to `MenuButton` component that automatically displays when menu is collapsed. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
150
+ - Added tooltip support to `MenuButton.Accordion` component that automatically displays when menu is collapsed. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
151
+
152
+ #### 💡 Others
153
+
154
+ - Updated `AppShell` collapsible menu story with improved UI interactions using `SidebarIcon` for menu toggle. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
155
+ - Extended `MenuExpandContext` with `showTooltipsWhenCollapsed` and `tooltipsPosition` properties. ([#129](https://github.com/TiendaNube/nimbus-patterns/pull/129) by [@joacotornello](https://github.com/joacotornello))
156
+
157
+ ## 2025-09-30 `1.23.3`
158
+
159
+ #### 🐛 Bug fixes
160
+
161
+ - Fixed `AppShell` component not showing scrollbar when content is taller than the viewport. ([#128](https://github.com/TiendaNube/nimbus-patterns/pull/128) by [@joacotornello](https://github.com/joacotornello))
162
+
163
+ ## 2025-09-30 `1.23.2`
164
+
165
+ #### 💡 Others
166
+
167
+ - Disabled enforce check for `useMenuExpandContext` hook in `MenuBody` component to ensure backward compatibility with clients that were not using the `<Menu>` component as wrapper of `Menu` subcomponents. ([#127](https://github.com/TiendaNube/nimbus-patterns/pull/127) by [@joacotornello](https://github.com/joacotornello))
168
+
169
+ ## 2025-09-28 `1.23.1`
170
+
171
+ #### 💡 Others
172
+
173
+ - Disabled enforce check for `useMenuExpandContext` hook to ensure backward compatibility with clients that were not using the `<Menu>` component as wrapper of `Menu` subcomponents. ([#126](https://github.com/TiendaNube/nimbus-patterns/pull/126) by [@joacotornello](https://github.com/joacotornello))
174
+
175
+ ## 2025-09-27 `1.23.0`
176
+
177
+ #### 🎉 New features
178
+
179
+ - Added `enforce` parameter to `useAppShellMenuContext` hook to allow for optional use without a provider. ([#125](https://github.com/TiendaNube/nimbus-patterns/pull/125) by [@joacotornello](https://github.com/joacotornello))
180
+
181
+ ## 2025-09-27 `1.22.0`
182
+
183
+ #### 🎉 New features
184
+
185
+ - Extended `menuProperties` props to `AppShell` component. ([#124](https://github.com/TiendaNube/nimbus-patterns/pull/124) by [@joacotornello](https://github.com/joacotornello))
186
+
187
+ ## 2025-09-24 `1.21.0`
188
+
189
+ #### 🎉 New features
190
+
191
+ - Added `ChatInput` component. ([#123](https://github.com/TiendaNube/nimbus-patterns/pull/123) by [@joacotornello](https://github.com/joacotornello))
192
+
193
+ ## 2025-09-10 `1.20.1`
194
+
195
+ #### 🐛 Bug fixes
196
+
197
+ - Fixed `AppShell` default value for `menuExpanded` prop to be true. ([#121](https://github.com/TiendaNube/nimbus-patterns/pull/121) by [@joacotornello](https://github.com/joacotornello))
198
+
199
+ ## 2025-09-04 `1.20.0`
200
+
201
+ #### 🎉 New features
202
+
203
+ - Added `Chat` and `Body` subcomponents to `AppShell` component, and improved layout to better support fixed header. ([#119](https://github.com/TiendaNube/nimbus-patterns/pull/119) by [@joacotornello](https://github.com/joacotornello))
204
+ - Added `root` prop support to `SideModal` component. ([#119](https://github.com/TiendaNube/nimbus-patterns/pull/119) by [@joacotornello](https://github.com/joacotornello))
205
+
206
+ ## 2025-09-05 `1.19.0`
207
+
208
+ #### 🎉 New features
209
+
210
+ - Improved `PlanDisplay` and `InitialScreen` mobile layout. ([#120](https://github.com/TiendaNube/nimbus-patterns/pull/120) by [@joacotornello](https://github.com/joacotornello))
211
+
212
+ ## 2025-08-29 `1.18.0`
213
+
214
+ #### 🎉 New features
215
+
216
+ - Added `ai-generative` appearance for `FormField.Input` component. ([#110](https://github.com/TiendaNube/nimbus-patterns/pull/110) by [@joacotornello](https://github.com/joacotornello))
217
+
218
+ ## 2025-08-08 `1.17.0`
219
+
220
+ #### 🎉 New features
221
+
222
+ - Added collapsible sidebar support via new props: `menuExpanded`, `menuExpandedWidth`, and `menuCollapsedWidth`. The sidebar width now transitions between expanded and a compact rail. A `MenuProvider` context is used to inform `Menu` descendants about expansion state. ([#117](https://github.com/TiendaNube/nimbus-patterns/pull/117) by [@joacotornello](https://github.com/joacotornello))
223
+ - Added `expanded` prop support for Menu component. ([#117](https://github.com/TiendaNube/nimbus-patterns/pull/117) by [@joacotornello](https://github.com/joacotornello))
224
+
225
+ ## 2025-08-05 `1.16.0`
226
+
227
+ #### 🎉 New features
228
+
229
+ - Updated MenuFooter ChevronRightIcon size from 14px to 16px for visual consistency with MenuButton icons. ([#115](https://github.com/TiendaNube/nimbus-patterns/pull/115) by [@noecondoleo](https://github.com/noecondoleo) [@FedeTrevi-se](https://github.com/FedeTrevi-se))
230
+
231
+ - Updated MenuButton icon size from 14px to 16px for better visual consistency. ([#115](https://github.com/TiendaNube/nimbus-patterns/pull/115) by [@noecondoleo](https://github.com/noecondoleo) [@FedeTrevi-se](https://github.com/FedeTrevi-se))
232
+
233
+ ## 2025-06-04 `1.15.0`
234
+
235
+ #### 🎉 New features
236
+
237
+ - Added `components-props.json` file to the build output. ([#114](https://github.com/TiendaNube/nimbus-patterns/pull/114) by [@joacotornello](https://github.com/joacotornello))
238
+
239
+ ## 2025-04-25 `1.14.0`
240
+
241
+ #### 🎉 New features
242
+
243
+ - Added `ProductDataList` component. ([#111](https://github.com/TiendaNube/nimbus-patterns/pull/111) by [@joacotornello](https://github.com/joacotornello))
244
+
245
+ ## 2025-04-25 `1.13.0`
246
+
247
+ #### 🎉 New features
248
+
249
+ - Added `Sortable` component. ([#109](https://github.com/TiendaNube/nimbus-patterns/pull/109) by [@joacotornello](https://github.com/joacotornello))
250
+
251
+ ## 2025-03-18 `1.12.0`
252
+
253
+ #### 🎉 New features
254
+
255
+ - Adds `use-client` directive to the build output in order to support NextJS applications. ([#104](https://github.com/TiendaNube/nimbus-patterns/pull/104) by [@joacotornello](https://github.com/joacotornello))
256
+
257
+ - Implemented new webpack configuration to move useful files into the build output directory and inject the `use client` directive. ([#104](https://github.com/TiendaNube/nimbus-patterns/pull/104) by [@joacotornello](https://github.com/joacotornello))
258
+
259
+ ### 💡 Others
260
+
261
+ - Rebuild after build process changes to add support for modular imports and Server Components. ([#104](https://github.com/TiendaNube/nimbus-patterns/pull/104) by [@joacotornello](https://github.com/joacotornello))
262
+
263
+ ## 2025-02-28 `1.11.1`
264
+
265
+ #### 🐛 Bug fixes
266
+
267
+ - Fixed `InitialScreen.Hero` missing key warnings. ([#101](https://github.com/TiendaNube/nimbus-patterns/pull/101) by [@joacotornello](https://github.com/joacotornello))
268
+
269
+ ## 2025-02-12 `1.11.0`
270
+
271
+ - Added new Landing Screen template. ([#100](https://github.com/TiendaNube/nimbus-patterns/pull/100) by [@joacotornello](https://github.com/joacotornello))
272
+
273
+ ## 2025-02-12 `1.10.0`
274
+
275
+ - Added new `@nimbus-ds/initial-screen` component. ([#97](https://github.com/TiendaNube/nimbus-patterns/pull/97) by [@joacotornello](https://github.com/joacotornello))
276
+
277
+ ## 2024-02-17 `1.9.1`
278
+
279
+ - Fixed `PlanDisplay` not being exported and not working on NextJS. ([#99](https://github.com/TiendaNube/nimbus-patterns/pull/99) by [@joacotornello](https://github.com/joacotornello))
280
+
281
+ ## 2024-02-17 `1.9.0`
282
+
283
+ - Added new `PlanDisplay` component. ([#98](https://github.com/TiendaNube/nimbus-patterns/pull/98) by [@joacotornello](https://github.com/joacotornello))
284
+
285
+ ## 2024-03-06 `1.8.0`
286
+
287
+ ### 🎉 New features
288
+
289
+ - Added new `EmptyApp` component. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
290
+ - Added new `EmptyAppContentImageElement` subcomponent. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
291
+ - Added new `EmptyAppContentSection` subcomponent. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
292
+ - Added new `EmptyAppContentTextElement` subcomponent. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
293
+ - Added new `EmptyAppHeroSection` subcomponent. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
294
+ - Added new `EmptyAppPlanCard` subcomponent. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
295
+ - Added new `EmptyAppPlanItem` subcomponent. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
296
+ - Added `children` property to `EmptyApp` component API. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
297
+ - Added `src` and `alt` properties to `EmptyAppContentImageElement` subcomponent API. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
298
+ - Added `title`, `subtitle`, `actions` and `children` properties to `EmptyAppContentSection` subcomponent API. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
299
+ - Added `title`, `content` and `bottomDivider` properties to `EmptyAppContentTextElement` subcomponent API. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
300
+ - Added `src`, `alt`, `title`, `subtitle`, `content` and `actions` properties to `EmptyAppHeroSection` subcomponent API. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
301
+ - Added `planContext`, `planName` and `children` properties to `EmptyAppPlanCard` subcomponent API. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
302
+ - Added `label` and `disabled` properties to `EmptyAppPlanItem` subcomponent API. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
303
+
304
+ ### 📚 3rd party library updates
305
+
306
+ - Updated `@nimbus-ds/styles@9.11.0`. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
307
+ - Updated `@nimbus-ds/components@5.5.1`. ([#95](https://github.com/TiendaNube/nimbus-patterns/pull/95) by [@juanchigallego](https://github.com/juanchigallego))
308
+
309
+ ## 2024-02-07 `1.7.8`
310
+
311
+ ### 🎉 New features
312
+
313
+ - Add `wordBreak="break-all"` property to `MenuButton` component to allow overflowing text to be trimmed at any position. ([#94](https://github.com/TiendaNube/nimbus-patterns/pull/94) by [@juanchigallego](https://github.com/juanchigallego))
314
+
315
+ ## 2024-01-09 `1.7.7`
316
+
317
+ #### 🐛 Bug fixes
318
+
319
+ - Remove visual focus box-shadow from `MenuButton` component because it visually hints the element is on focus even after an action has been performed. ([#93](https://github.com/TiendaNube/nimbus-patterns/pull/93) by [@juanchigallego](https://github.com/juanchigallego))
320
+
321
+ ## 2024-01-04 `1.7.6`
322
+
323
+ #### 🐛 Bug fixes
324
+
325
+ - Explicitly export type for `FormFieldInput` component. ([#92](https://github.com/TiendaNube/nimbus-patterns/pull/92) by [@juanchigallego](https://github.com/juanchigallego))
326
+ - Explicitly export type for `FormFieldSelect` component. ([#92](https://github.com/TiendaNube/nimbus-patterns/pull/92) by [@juanchigallego](https://github.com/juanchigallego))
327
+ - Explicitly export type for `FormFieldTextarea` component. ([#92](https://github.com/TiendaNube/nimbus-patterns/pull/92) by [@juanchigallego](https://github.com/juanchigallego))
328
+
329
+ #### 🎉 New features
330
+
331
+ - Update `AppShell` component with new design requirements. ([#91](https://github.com/TiendaNube/nimbus-patterns/pull/91) by [@juanchigallego](https://github.com/juanchigallego))
332
+ - Update `CalloutCard` component with new design requirements. ([#91](https://github.com/TiendaNube/nimbus-patterns/pull/91) by [@juanchigallego](https://github.com/juanchigallego))
333
+ - Update `SideModal` component with new design requirements. ([#91](https://github.com/TiendaNube/nimbus-patterns/pull/91) by [@juanchigallego](https://github.com/juanchigallego))
334
+
335
+ ## 2023-12-18 `1.7.5`
336
+
337
+ - Adjust component padding and size of the icon child on `MenuButton` component. ([#90](https://github.com/TiendaNube/nimbus-patterns/pull/90) by [@juanchigallego](https://github.com/juanchigallego))
338
+ - Adjust padding on `MenuButtonAccordion` subcomponent. ([#90](https://github.com/TiendaNube/nimbus-patterns/pull/90) by [@juanchigallego](https://github.com/juanchigallego))
339
+ - Adjust padding of `MenuBody` subcomponent. ([#90](https://github.com/TiendaNube/nimbus-patterns/pull/90) by [@juanchigallego](https://github.com/juanchigallego))
340
+ - Adjust padding and icon sizing on `MenuFooter` subcomponent. ([#90](https://github.com/TiendaNube/nimbus-patterns/pull/90) by [@juanchigallego](https://github.com/juanchigallego))
341
+ - Adjust colors and padding on `MenuSection` subcomponent. ([#90](https://github.com/TiendaNube/nimbus-patterns/pull/90) by [@juanchigallego](https://github.com/juanchigallego))
342
+
343
+ ## 2023-12-06 `1.7.4`
344
+
345
+ #### 🐛 Bug fixes
346
+
347
+ - Added possibility to forward ref of `FormField.Input` component. Fix [issue #88](https://github.com/TiendaNube/nimbus-patterns/issues/88) ([#89](https://github.com/TiendaNube/nimbus-patterns/pull/89) by [@hrchioest](https://github.com/hrchioest))
348
+ - Added possibility to forward ref of `FormField.Select` component. Fix [issue #88](https://github.com/TiendaNube/nimbus-patterns/issues/88) ([#89](https://github.com/TiendaNube/nimbus-patterns/pull/89) by [@hrchioest](https://github.com/hrchioest))
349
+ - Added possibility to forward ref of `FormField.Textarea` component. Fix [issue #88](https://github.com/TiendaNube/nimbus-patterns/issues/88) ([#89](https://github.com/TiendaNube/nimbus-patterns/pull/89) by [@hrchioest](https://github.com/hrchioest))
350
+
351
+ #### 📚 3rd party library updates
352
+
353
+ - Updated `@nimbus-ds/icons@1.x`. ([#89](https://github.com/TiendaNube/nimbus-patterns/pull/89) by [@hrchioest](https://github.com/hrchioest))
354
+
355
+ ## 2023-11-16 `1.7.3`
356
+
357
+ #### 💡 Others
358
+
359
+ - Remove `Editor` component from bundle until `lexical` supports SSR to prevent erros with server-side rendering projects. ([#86](https://github.com/TiendaNube/nimbus-patterns/pull/86) by [@juanchigallego](https://github.com/juanchigallego))
360
+
361
+ ## 2023-11-15 `1.7.2`
362
+
363
+ #### 📚 3rd party library updates
364
+
365
+ - Update packages. ([#85](https://github.com/TiendaNube/nimbus-patterns/pull/85) by [@juanchigallego](https://github.com/juanchigallego))
366
+
367
+ #### 💡 Others
368
+
369
+ - Changed `helpIcon` and `helpText` appearance to `neutral-textDisabled` on `FormField` component. ([#85](https://github.com/TiendaNube/nimbus-patterns/pull/85) by [@juanchigallego](https://github.com/juanchigallego))
370
+
371
+ ## 2023-10-25 `1.7.1`
372
+
373
+ #### 🐛 Bug fixes
374
+
375
+ - Fixed text and object alignment issues on `EmptyMessage` component's `illustration` variant. ([#81](https://github.com/TiendaNube/nimbus-patterns/pull/81) by [@juanchigallego](https://github.com/juanchigallego))
376
+ - Adjusted text and spacing styles to match `EmptyMessage` component's UI design pattern. ([#81](https://github.com/TiendaNube/nimbus-patterns/pull/81) by [@juanchigallego](https://github.com/juanchigallego))
377
+
378
+ ## 2023-10-17 `1.7.0`
379
+
380
+ #### 🎉 New features
381
+
382
+ - Added new `Editor` component. ([#80](https://github.com/TiendaNube/nimbus-patterns/pull/80) by [@juniorconquista](https://github.com/juniorconquista))
383
+
384
+ #### 🐛 Bug fixes
385
+
386
+ - Fixed externally controlled visibility working correctly in the `ProductUpdate` component. ([#80](https://github.com/TiendaNube/nimbus-patterns/pull/80)
387
+
388
+ ## 2023-09-25 `1.6.0`
389
+
390
+ #### 🎉 New features
391
+
392
+ - Added new `Calendar` component. ([#76](https://github.com/TiendaNube/nimbus-patterns/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
393
+ - Added `hideBorder`, `containerProps`, `stickyWeekdays` and `fullWidthDays` properties to the `Calendar` component API. ([#76](https://github.com/TiendaNube/nimbus-patterns/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
394
+ - Added new `CustomCaptionLabel` subcomponent. ([#76](https://github.com/TiendaNube/nimbus-patterns/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
395
+ - Added new `CustomDay` subcomponent. ([#76](https://github.com/TiendaNube/nimbus-patterns/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
396
+ - Added new `Weekdays` subcomponent. ([#76](https://github.com/TiendaNube/nimbus-patterns/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
397
+ - Added new `Wrapper` subcomponent. ([#76](https://github.com/TiendaNube/nimbus-patterns/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
398
+ - Added `children` property to the `Wrapper` subcomponent API. ([#76](https://github.com/TiendaNube/nimbus-patterns/pull/76) by [@juanchigallego](https://github.com/juanchigallego))
399
+
400
+ ## 2023-07-21 `1.5.1`
401
+
402
+ #### 🐛 Bug fixes
403
+
404
+ - Fixed a bug on `CalloutCard` where `onClick` attribute would only work when clicking the chevron icon instead of the whole component. ([#72](https://github.com/TiendaNube/nimbus-patterns/pull/72) by [@juanchigallego](https://github.com/juanchigallego))
405
+
406
+ ## 2023-07-18 `1.5.0`
407
+
408
+ #### 🎉 New features
409
+
410
+ - Added new `menuProperties` prop to `AppShell` component to control menu responsiveness. ([#69](https://github.com/TiendaNube/nimbus-patterns/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
411
+ - Added `ref` property to `FormField.Input` component API. ([#69](https://github.com/TiendaNube/nimbus-patterns/pull/69) by [@juniorconquista](https://github.com/juniorconquista)).
412
+ - Added `ref` property to `FormField.Select` component API. ([#69](https://github.com/TiendaNube/nimbus-patterns/pull/69) by [@juniorconquista](https://github.com/juniorconquista)).
413
+ - Added `ref` property to `Input.Textarea` component API. ([#69](https://github.com/TiendaNube/nimbus-patterns/pull/69) by [@juniorconquista](https://github.com/juniorconquista)).
414
+
415
+ #### 🐛 Bug fixes
416
+
417
+ - Adjusted the property typing of the footer buttons so that they contain all the properties available in the `SideModal` component. ([#69](https://github.com/TiendaNube/nimbus-patterns/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
418
+ - Adjusted the `toggle` property to contain all properties available in the `InteractiveList.ToggleItemSkeleton` component. ([#69](https://github.com/TiendaNube/nimbus-patterns/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
419
+ - Adjusted the `pagination` property to contain all properties available in the `DataTable.Footer` component. ([#69](https://github.com/TiendaNube/nimbus-patterns/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
420
+
421
+ ## 2023-06-21 `1.4.3`
422
+
423
+ #### 🐛 Bug fixes
424
+
425
+ - Fixed typing of `InteractiveList.CheckboxItem`, `InteractiveList.ButtonItem`, `InteractiveList.RadioItem` and `InteractiveList.ToggleItem` internal components to extend native HTML props. ([#66](https://github.com/TiendaNube/nimbus-patterns/pull/66) by [@juniorconquista](https://github.com/juniorconquista))
426
+
427
+ ## 2023-06-15 `1.4.2`
428
+
429
+ #### 💡 Others
430
+
431
+ - Removed module key from `package.json` in all components. ([#62](https://github.com/TiendaNube/nimbus-patterns/pull/62) by [@juniorconquista](https://github.com/juniorconquista))
432
+
433
+ ## 2023-05-23 `1.4.0`
434
+
435
+ #### 💡 Others
436
+
437
+ - Some patterns extend the properties of the `Box` component which has undergone some significant changes, so you should consult the `Box` component documentation when performing this update. ([#56](https://github.com/TiendaNube/nimbus-patterns/pull/56) by [@juniorconquista](https://github.com/juniorconquista))
438
+
439
+ #### 📚 3rd party library updates
440
+
441
+ - Updated `@nimbus-ds/components@4.x` to `@nimbus-ds/components@5.x`. ([#56](https://github.com/TiendaNube/nimbus-patterns/pull/56) by [@juniorconquista](https://github.com/juniorconquista))
442
+
443
+ ## 2023-05-08 `1.3.0`
444
+
445
+ #### 🎉 New features
446
+
447
+ - Added `as` property to the `MenuButton.Accordion` component API. ([#50](https://github.com/TiendaNube/nimbus-patterns/pull/50) by [@juniorconquista](https://github.com/juniorconquista))
448
+
449
+ ## 2023-05-02 `1.2.2`
450
+
451
+ #### 🎉 New features
452
+
453
+ - Update component design styles on `EmptyMessage` component. ([#49](https://github.com/TiendaNube/nimbus-design-system/pull/49) by [@juanchigallego](https://github.com/juanchigallego))
454
+
455
+ ## 2023-04-24 `1.2.1`
456
+
457
+ #### 🐛 Bug fixes
458
+
459
+ - Fixed typing of `Page`, `Page.Header` and `Page.Body` components to correctly extend `Box` properties. ([#48](https://github.com/TiendaNube/nimbus-patterns/pull/48) by [@juniorconquista](https://github.com/juniorconquista))
460
+ - Fixed bug where it was not possible to change the paddings of the `Page.Header` and `Page.Body` components. ([#48](https://github.com/TiendaNube/nimbus-patterns/pull/48) by [@juniorconquista](https://github.com/juniorconquista))
461
+ - Renamed `controlled` property to `open` in `MenuButton.Accordion` component API. ([#48](https://github.com/TiendaNube/nimbus-patterns/pull/48) by [@juniorconquista](https://github.com/juniorconquista))
462
+ - Changed the background color of the `MenuButton.Accordion` component when it is open. ([#48](https://github.com/TiendaNube/nimbus-patterns/pull/48) by [@juniorconquista](https://github.com/juniorconquista))
463
+
464
+ ## 2023-04-18 `1.2.0`
465
+
466
+ #### 🎉 New features
467
+
468
+ - Added `Menu.ButtonAccordion` subcomponent of `Menu` component. ([#44](https://github.com/TiendaNube/nimbus-patterns/pull/44) by [@juniorconquista](https://github.com/juniorconquista))
469
+ - Added `MenuButton.Accordion` subcomponent of `MenuButton` component. ([#44](https://github.com/TiendaNube/nimbus-patterns/pull/44) by [@juniorconquista](https://github.com/juniorconquista))
470
+
471
+ ## 2023-04-17 `1.1.1`
472
+
473
+ #### 🎉 New features
474
+
475
+ - Added new `DataTable.Cell` subcomponent. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
476
+ - Added `bottomDivider` property to `DataList` component API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
477
+ - Added `topDivider` property to `DataList.Row` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
478
+ - Extend `DataList` properties inside `InteractiveList` component API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
479
+ - Extend `topDivider` property from `DataList.Row` subcomponent inside `InteractiveList.CheckboxItem` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
480
+ - Extend `topDivider` property from `DataList.Row` subcomponent inside `InteractiveList.RadioItem` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
481
+ - Extend `topDivider` property from `DataList.Row` subcomponent inside `InteractiveList.ToggleItem` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
482
+ - Extend `topDivider` property from `DataList.Row` subcomponent inside `InteractiveList.ButtonItem` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
483
+ - Added new `HelpLink` component. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
484
+ - Added `children` property to the `HelpLink` component API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
485
+ - Added stories documentation for `HelpLink` component. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
486
+
487
+ #### 💡 Others
488
+
489
+ - Extend `Box` properties inside `Page` component API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
490
+ - Extend `Box` properties inside `Page.Header` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
491
+ - Extend `Box` properties inside `Page.Body` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
492
+ - Extend `Box` properties inside `AppShell.Header` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
493
+ - Added `ariaLabel` property to `NavTabs.Item` subcomponent API. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
494
+ - Added `stressed` story to `CalloutCard` stories documentation. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
495
+
496
+ #### 🐛 Bug fixes
497
+
498
+ - Fixed a bug on `AppShell.Header` subcomponent where content on `rightSlot` would fall off to the left when `leftSlot` property was empty. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
499
+ - Fixed a bug on `CalloutCard` component where the icon would incorrectly stretch and warp when the text was too long. ([#45](https://github.com/TiendaNube/nimbus-patterns/pull/45) by [@juanchigallego](https://github.com/juanchigallego))
500
+
501
+ ## 2023-04-11 `1.1.0`
502
+
503
+ #### 🎉 New features
504
+
505
+ - Added new subcomponent `InteractiveList.StructureSkeleton` in component `InteractiveList`. ([#38](https://github.com/TiendaNube/nimbus-patterns/pull/38) by [@juniorconquista](https://github.com/juniorconquista))
506
+ - Added new subcomponent `InteractiveList.ButtonItemSkeleton` in component `InteractiveList`. ([#38](https://github.com/TiendaNube/nimbus-patterns/pull/38) by [@juniorconquista](https://github.com/juniorconquista))
507
+ - Added new subcomponent `InteractiveList.CheckboxItemSkeleton` in component `InteractiveList`. ([#38](https://github.com/TiendaNube/nimbus-patterns/pull/38) by [@juniorconquista](https://github.com/juniorconquista))
508
+ - Added new subcomponent `InteractiveList.RadioItemSkeleton` in component `InteractiveList`. ([#38](https://github.com/TiendaNube/nimbus-patterns/pull/38) by [@juniorconquista](https://github.com/juniorconquista))
509
+ - Added new subcomponent `InteractiveList.ToggleItemSkeleton` in component `InteractiveList`. ([#38](https://github.com/TiendaNube/nimbus-patterns/pull/38) by [@juniorconquista](https://github.com/juniorconquista))
510
+
511
+ #### 🐛 Bug fixes
512
+
513
+ - Fixed bug using Crypto library when generating unique id's for `InteractiveListItem`. ([#38](https://github.com/TiendaNube/nimbus-patterns/pull/38) by [@juniorconquista](https://github.com/juniorconquista))
514
+
515
+ ## 2023-04-06 `1.0.0`
516
+
517
+ #### 🎉 New features
518
+
519
+ - Added `@nimbus-ds/app-shell` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
520
+ - Added `@nimbus-ds/callout-card` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
521
+ - Added `@nimbus-ds/data-list` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
522
+ - Added `@nimbus-ds/data-table` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
523
+ - Added `@nimbus-ds/empty-message` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
524
+ - Added `@nimbus-ds/formfield` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
525
+ - Added `@nimbus-ds/interactive-list` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
526
+ - Added `@nimbus-ds/layout` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
527
+ - Added `@nimbus-ds/menu` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
528
+ - Added `@nimbus-ds/menubutton` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
529
+ - Added `@nimbus-ds/nav-tabs` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
530
+ - Added `@nimbus-ds/page` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
531
+ - Added `@nimbus-ds/productupdates` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
532
+ - Added `@nimbus-ds/sidemodal` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
533
+ - Added `@nimbus-ds/thumbnail-with-action` to pattern pack. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
534
+
535
+ #### 📚 3rd party library updates
536
+
537
+ - Added `@nimbus-ds/components@4.x`. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
538
+ - Added `@nimbus-ds/icons@1.x`. ([#33](https://github.com/TiendaNube/nimbus-patterns/pull/33) by [@juniorconquista](https://github.com/juniorconquista))
@@ -0,0 +1,44 @@
1
+ // Generated by dts-bundle-generator v8.1.2
2
+
3
+ import { BoxProps } from '@nimbus-ds/components';
4
+ import React from 'react';
5
+ import { ComponentProps, HTMLAttributes, ReactNode } from 'react';
6
+ import { CaptionLabelProps, DayPicker, DayPickerProviderProps, DayProps } from 'react-day-picker';
7
+
8
+ export type CalendarExtends = ComponentProps<typeof DayPicker>;
9
+ export interface CalendarProperties {
10
+ /**
11
+ * Ability to hide the border of the calendar container. Useful for including the calendar inside other components such as Modal, Popover or Card.
12
+ * @default false
13
+ */
14
+ hideBorder?: boolean;
15
+ /**
16
+ * If true will stick the weekday indicators to the top of the component. Useful for when creating scrolling calendars with a display of >1 months. Only works when property numberOfMonths is set to a number greater than 1.
17
+ * @default false
18
+ */
19
+ stickyWeekdays?: boolean;
20
+ /**
21
+ * If true the buttons for individual days will span 100% of available width as opposed to the default state where they have a fixed width. Useful for when creating calendars inside containers that are wider than default.
22
+ * @default false
23
+ */
24
+ fullWidthDays?: boolean;
25
+ }
26
+ export type CalendarProps = CalendarProperties & CalendarExtends & {
27
+ /**
28
+ * Spreads the properties of the Box component to the calendar wrapper.
29
+ */
30
+ containerProps?: BoxProps;
31
+ };
32
+ export declare const Calendar: React.FC<CalendarProps>;
33
+ export declare const CustomCaptionLabel: React.FC<CaptionLabelProps>;
34
+ export type CustomDayProps = HTMLAttributes<HTMLButtonElement> & DayProps;
35
+ export declare const CustomDay: React.FC<CustomDayProps>;
36
+ export interface WrapperProperties {
37
+ /** Content of the wrapper which will inherit the base props for the Day Picker component. */
38
+ children: ReactNode;
39
+ }
40
+ export type WrapperProps = WrapperProperties & DayPickerProviderProps;
41
+ export declare const Wrapper: React.FC<WrapperProps>;
42
+ export declare const Weekdays: React.FC;
43
+
44
+ export {};
@@ -0,0 +1,2 @@
1
+ "use client";
2
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("react"),require("@nimbus-ds/components"),require("@nimbus-ds/icons"),require("@nimbus-ds/styles"),require("react-day-picker"),require("date-fns")):"function"==typeof define&&define.amd?define(["react","@nimbus-ds/components","@nimbus-ds/icons","@nimbus-ds/styles","react-day-picker","date-fns"],t):"object"==typeof exports?exports["@nimbus-ds/patterns"]=t(require("react"),require("@nimbus-ds/components"),require("@nimbus-ds/icons"),require("@nimbus-ds/styles"),require("react-day-picker"),require("date-fns")):e["@nimbus-ds/patterns"]=t(e.react,e["@nimbus-ds/components"],e["@nimbus-ds/icons"],e["@nimbus-ds/styles"],e["react-day-picker"],e["date-fns"])}(global,((e,t,r,n,a,o)=>(()=>{"use strict";var c={456:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Calendar=void 0;const n=r(5163).__importDefault(r(8156)),a=r(5280),o=r(3215),c=r(7990),i=r(1621),l=r(6563),s=({className:e,style:t,hideBorder:r=!1,containerProps:s,stickyWeekdays:u=!1,fullWidthDays:d=!1,...f})=>n.default.createElement(l.Wrapper,{initialProps:{...f}},n.default.createElement(a.Box,{borderWidth:r?"none":"1",borderStyle:"solid",borderColor:"neutral-surfaceHighlight",borderRadius:"2","data-style":"nimbus-calendar",overflowY:"auto",position:"relative",...s,className:[s?.className,e].filter(Boolean).join(" ")},f.numberOfMonths&&f.numberOfMonths>1&&u&&n.default.createElement(l.Weekdays,null),n.default.createElement(i.DayPicker,{...f,classNames:{table:c.calendar.classnames.table,row:c.calendar.classnames.row,cell:c.calendar.classnames.cell,caption:c.calendar.classnames.caption,caption_start:c.calendar.classnames.caption_start,caption_end:c.calendar.classnames.caption_end,head:u?c.calendar.classnames.head_stickyWeekdays:c.calendar.classnames.head,head_row:c.calendar.classnames.row,head_cell:c.calendar.classnames.cell__head,tbody:c.calendar.classnames.body,nav:c.calendar.classnames.nav,nav_button_previous:c.calendar.classnames.nav__button,nav_button_next:c.calendar.classnames.nav__button,day:d?c.calendar.classnames.day_fullWidth:c.calendar.classnames.day,day_selected:c.calendar.classnames.day_selected,day_today:c.calendar.classnames.day_today,day_outside:c.calendar.classnames.day_outside,day_disabled:c.calendar.classnames.day_disabled,day_range_middle:c.calendar.classnames.day__middle,day_range_start:c.calendar.classnames.day__start,day_range_end:c.calendar.classnames.day__end,months:c.calendar.classnames.months},components:{CaptionLabel:l.CustomCaptionLabel,IconLeft:o.ChevronLeftIcon,IconRight:o.ChevronRightIcon,Day:l.CustomDay}})));t.Calendar=s,s.displayName="Calendar"},8765:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0});const n=r(5163);n.__exportStar(r(5589),t),n.__exportStar(r(6563),t)},7709:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CustomCaptionLabel=void 0;const n=r(5163).__importDefault(r(8156)),a=r(1621),o=r(5280);t.CustomCaptionLabel=({...e})=>{const{locale:t,formatters:{formatCaption:r}}=(0,a.useDayPicker)();return n.default.createElement(o.Text,{fontSize:"highlight",fontWeight:"medium",...e},r(e.displayMonth,{locale:t}))}},2352:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CustomCaptionLabel=void 0;const n=r(7709);var a=r(7709);Object.defineProperty(t,"CustomCaptionLabel",{enumerable:!0,get:function(){return a.CustomCaptionLabel}}),t.default=n.CustomCaptionLabel},8432:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CustomDay=void 0;const n=r(5163).__importDefault(r(8156)),a=r(1621),o=r(7876);t.CustomDay=({...e})=>n.default.createElement("div",{id:(0,o.format)(e.date,"yyyy-MM-dd"),style:{width:"100%"}},n.default.createElement(a.Day,{...e}))},9869:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CustomDay=void 0;const n=r(8432);var a=r(8432);Object.defineProperty(t,"CustomDay",{enumerable:!0,get:function(){return a.CustomDay}}),t.default=n.CustomDay},8815:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Weekdays=void 0;const n=r(5163).__importDefault(r(8156)),a=r(1621),o=r(5280),c=r(2074);t.Weekdays=()=>{const{locale:e,weekStartsOn:t,ISOWeek:r,formatters:{formatWeekdayName:i},labels:{labelWeekday:l}}=(0,a.useDayPicker)(),s=(0,c.getWeekdays)(e,t,r);return n.default.createElement(o.Box,{display:"flex",width:"100%",backgroundColor:"neutral-surface",position:"sticky",top:"0",py:"2",px:"4",zIndex:"100"},s.map((t=>n.default.createElement(o.Box,{key:l(t,{locale:e}),display:"flex",flex:"1",alignItems:"center",justifyContent:"center","aria-label":l(t,{locale:e})},n.default.createElement(o.Text,{textAlign:"center",fontSize:"caption",fontWeight:"medium"},i(t,{locale:e}))))))}},9882:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Weekdays=void 0;const n=r(8815);var a=r(8815);Object.defineProperty(t,"Weekdays",{enumerable:!0,get:function(){return a.Weekdays}}),t.default=n.Weekdays},8240:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Wrapper=void 0;const n=r(5163).__importDefault(r(8156)),a=r(1621);t.Wrapper=({children:e,...t})=>n.default.createElement(a.DayPickerProvider,{...t},e)},2506:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Wrapper=void 0;const n=r(8240);var a=r(8240);Object.defineProperty(t,"Wrapper",{enumerable:!0,get:function(){return a.Wrapper}}),t.default=n.Wrapper},6563:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0});const n=r(5163);n.__exportStar(r(2352),t),n.__exportStar(r(9869),t),n.__exportStar(r(2506),t),n.__exportStar(r(9882),t)},5589:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Calendar=void 0;const n=r(456);var a=r(456);Object.defineProperty(t,"Calendar",{enumerable:!0,get:function(){return a.Calendar}}),t.default=n.Calendar},6282:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getWeekdays=void 0;const n=r(7876);t.getWeekdays=function(e,t,r){const a=r?(0,n.startOfISOWeek)(new Date):(0,n.startOfWeek)(new Date,{locale:e,weekStartsOn:t}),o=[];for(let e=0;e<7;e++){const t=(0,n.addDays)(a,e);o.push(t)}return o}},2074:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0});r(5163).__exportStar(r(6282),t)},5163:(e,t,r)=>{r.r(t),r.d(t,{__assign:()=>o,__asyncDelegator:()=>x,__asyncGenerator:()=>P,__asyncValues:()=>C,__await:()=>j,__awaiter:()=>y,__classPrivateFieldGet:()=>E,__classPrivateFieldIn:()=>I,__classPrivateFieldSet:()=>M,__createBinding:()=>m,__decorate:()=>i,__esDecorate:()=>s,__exportStar:()=>b,__extends:()=>a,__generator:()=>_,__importDefault:()=>D,__importStar:()=>W,__makeTemplateObject:()=>S,__metadata:()=>p,__param:()=>l,__propKey:()=>d,__read:()=>h,__rest:()=>c,__runInitializers:()=>u,__setFunctionName:()=>f,__spread:()=>w,__spreadArray:()=>g,__spreadArrays:()=>O,__values:()=>v});var n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)};function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}var o=function(){return o=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},o.apply(this,arguments)};function c(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r}function i(e,t,r,n){var a,o=arguments.length,c=o<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)c=Reflect.decorate(e,t,r,n);else for(var i=e.length-1;i>=0;i--)(a=e[i])&&(c=(o<3?a(c):o>3?a(t,r,c):a(t,r))||c);return o>3&&c&&Object.defineProperty(t,r,c),c}function l(e,t){return function(r,n){t(r,n,e)}}function s(e,t,r,n,a,o){function c(e){if(void 0!==e&&"function"!=typeof e)throw new TypeError("Function expected");return e}for(var i,l=n.kind,s="getter"===l?"get":"setter"===l?"set":"value",u=!t&&e?n.static?e:e.prototype:null,d=t||(u?Object.getOwnPropertyDescriptor(u,n.name):{}),f=!1,p=r.length-1;p>=0;p--){var y={};for(var _ in n)y[_]="access"===_?{}:n[_];for(var _ in n.access)y.access[_]=n.access[_];y.addInitializer=function(e){if(f)throw new TypeError("Cannot add initializers after decoration has completed");o.push(c(e||null))};var m=(0,r[p])("accessor"===l?{get:d.get,set:d.set}:d[s],y);if("accessor"===l){if(void 0===m)continue;if(null===m||"object"!=typeof m)throw new TypeError("Object expected");(i=c(m.get))&&(d.get=i),(i=c(m.set))&&(d.set=i),(i=c(m.init))&&a.push(i)}else(i=c(m))&&("field"===l?a.push(i):d[s]=i)}u&&Object.defineProperty(u,n.name,d),f=!0}function u(e,t,r){for(var n=arguments.length>2,a=0;a<t.length;a++)r=n?t[a].call(e,r):t[a].call(e);return n?r:void 0}function d(e){return"symbol"==typeof e?e:"".concat(e)}function f(e,t,r){return"symbol"==typeof t&&(t=t.description?"[".concat(t.description,"]"):""),Object.defineProperty(e,"name",{configurable:!0,value:r?"".concat(r," ",t):t})}function p(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)}function y(e,t,r,n){return new(r||(r=Promise))((function(a,o){function c(e){try{l(n.next(e))}catch(e){o(e)}}function i(e){try{l(n.throw(e))}catch(e){o(e)}}function l(e){var t;e.done?a(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(c,i)}l((n=n.apply(e,t||[])).next())}))}function _(e,t){var r,n,a,o,c={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return o={next:i(0),throw:i(1),return:i(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function i(i){return function(l){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;o&&(o=0,i[0]&&(c=0)),c;)try{if(r=1,n&&(a=2&i[0]?n.return:i[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,i[1])).done)return a;switch(n=0,a&&(i=[2&i[0],a.value]),i[0]){case 0:case 1:a=i;break;case 4:return c.label++,{value:i[1],done:!1};case 5:c.label++,n=i[1],i=[0];continue;case 7:i=c.ops.pop(),c.trys.pop();continue;default:if(!(a=c.trys,(a=a.length>0&&a[a.length-1])||6!==i[0]&&2!==i[0])){c=0;continue}if(3===i[0]&&(!a||i[1]>a[0]&&i[1]<a[3])){c.label=i[1];break}if(6===i[0]&&c.label<a[1]){c.label=a[1],a=i;break}if(a&&c.label<a[2]){c.label=a[2],c.ops.push(i);break}a[2]&&c.ops.pop(),c.trys.pop();continue}i=t.call(e,c)}catch(e){i=[6,e],n=0}finally{r=a=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,l])}}}var m=Object.create?function(e,t,r,n){void 0===n&&(n=r);var a=Object.getOwnPropertyDescriptor(t,r);a&&!("get"in a?!t.__esModule:a.writable||a.configurable)||(a={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,a)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]};function b(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||m(t,e,r)}function v(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function h(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,a,o=r.call(e),c=[];try{for(;(void 0===t||t-- >0)&&!(n=o.next()).done;)c.push(n.value)}catch(e){a={error:e}}finally{try{n&&!n.done&&(r=o.return)&&r.call(o)}finally{if(a)throw a.error}}return c}function w(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(h(arguments[t]));return e}function O(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),a=0;for(t=0;t<r;t++)for(var o=arguments[t],c=0,i=o.length;c<i;c++,a++)n[a]=o[c];return n}function g(e,t,r){if(r||2===arguments.length)for(var n,a=0,o=t.length;a<o;a++)!n&&a in t||(n||(n=Array.prototype.slice.call(t,0,a)),n[a]=t[a]);return e.concat(n||Array.prototype.slice.call(t))}function j(e){return this instanceof j?(this.v=e,this):new j(e)}function P(e,t,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,a=r.apply(e,t||[]),o=[];return n={},c("next"),c("throw"),c("return"),n[Symbol.asyncIterator]=function(){return this},n;function c(e){a[e]&&(n[e]=function(t){return new Promise((function(r,n){o.push([e,t,r,n])>1||i(e,t)}))})}function i(e,t){try{(r=a[e](t)).value instanceof j?Promise.resolve(r.value.v).then(l,s):u(o[0][2],r)}catch(e){u(o[0][3],e)}var r}function l(e){i("next",e)}function s(e){i("throw",e)}function u(e,t){e(t),o.shift(),o.length&&i(o[0][0],o[0][1])}}function x(e){var t,r;return t={},n("next"),n("throw",(function(e){throw e})),n("return"),t[Symbol.iterator]=function(){return this},t;function n(n,a){t[n]=e[n]?function(t){return(r=!r)?{value:j(e[n](t)),done:!1}:a?a(t):t}:a}}function C(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=v(e),t={},n("next"),n("throw"),n("return"),t[Symbol.asyncIterator]=function(){return this},t);function n(r){t[r]=e[r]&&function(t){return new Promise((function(n,a){(function(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)})(n,a,(t=e[r](t)).done,t.value)}))}}}function S(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e}var k=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};function W(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)"default"!==r&&Object.prototype.hasOwnProperty.call(e,r)&&m(t,e,r);return k(t,e),t}function D(e){return e&&e.__esModule?e:{default:e}}function E(e,t,r,n){if("a"===r&&!n)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!n:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===r?n:"a"===r?n.call(e):n?n.value:t.get(e)}function M(e,t,r,n,a){if("m"===n)throw new TypeError("Private method is not writable");if("a"===n&&!a)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!a:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===n?a.call(e,r):a?a.value=r:t.set(e,r),r}function I(e,t){if(null===t||"object"!=typeof t&&"function"!=typeof t)throw new TypeError("Cannot use 'in' operator on non-object");return"function"==typeof e?t===e:e.has(t)}},5280:e=>{e.exports=t},3215:e=>{e.exports=r},7990:e=>{e.exports=n},7876:e=>{e.exports=o},8156:t=>{t.exports=e},1621:e=>{e.exports=a}},i={};function l(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={exports:{}};return c[e](r,r.exports,l),r.exports}return l.d=(e,t)=>{for(var r in t)l.o(t,r)&&!l.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},l.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),l.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l(8765)})()));