@nimbus-ds/components 5.51.0-rc.1 → 5.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/Accordion/index.js +1 -1
- package/dist/Alert/index.d.ts +1 -1
- package/dist/Alert/index.js +1 -1
- package/dist/Badge/index.d.ts +1 -1
- package/dist/Badge/index.js +1 -1
- package/dist/Box/index.js +1 -1
- package/dist/Button/index.d.ts +1 -1
- package/dist/Button/index.js +1 -1
- package/dist/CHANGELOG.md +13 -0
- package/dist/Card/index.js +1 -1
- package/dist/Checkbox/index.d.ts +1 -1
- package/dist/Checkbox/index.js +1 -1
- package/dist/Chip/index.d.ts +1 -1
- package/dist/Chip/index.js +1 -1
- package/dist/Collapsible/index.js +1 -1
- package/dist/FileUploader/index.d.ts +1 -1
- package/dist/FileUploader/index.js +1 -1
- package/dist/Icon/index.d.ts +1 -1
- package/dist/Icon/index.js +1 -1
- package/dist/IconButton/index.d.ts +1 -1
- package/dist/IconButton/index.js +1 -1
- package/dist/Input/index.d.ts +1 -1
- package/dist/Input/index.js +1 -1
- package/dist/Label/index.d.ts +1 -1
- package/dist/Label/index.js +1 -1
- package/dist/Link/index.d.ts +1 -1
- package/dist/Link/index.js +1 -1
- package/dist/List/index.js +1 -1
- package/dist/Modal/index.js +1 -1
- package/dist/MultiSelect/index.d.ts +1 -1
- package/dist/MultiSelect/index.js +1 -1
- package/dist/Pagination/index.js +1 -1
- package/dist/Popover/index.js +1 -1
- package/dist/ProgressBar/index.d.ts +1 -1
- package/dist/ProgressBar/index.js +1 -1
- package/dist/Radio/index.d.ts +1 -1
- package/dist/Radio/index.js +1 -1
- package/dist/ScrollPane/index.d.ts +30 -16
- package/dist/ScrollPane/index.js +1 -1
- package/dist/SegmentedControl/index.d.ts +2 -0
- package/dist/SegmentedControl/index.js +1 -1
- package/dist/Select/index.d.ts +1 -1
- package/dist/Select/index.js +1 -1
- package/dist/Sidebar/index.js +1 -1
- package/dist/Skeleton/index.js +1 -1
- package/dist/Slider/index.d.ts +6 -4
- package/dist/Slider/index.js +1 -1
- package/dist/Spinner/index.js +1 -1
- package/dist/SplitButton/index.d.ts +1 -1
- package/dist/SplitButton/index.js +1 -1
- package/dist/Stepper/index.d.ts +1 -0
- package/dist/Stepper/index.js +1 -1
- package/dist/Table/index.js +1 -1
- package/dist/Tabs/index.js +1 -1
- package/dist/Tag/index.d.ts +1 -1
- package/dist/Tag/index.js +1 -1
- package/dist/Text/index.d.ts +1 -1
- package/dist/Text/index.js +1 -1
- package/dist/Textarea/index.d.ts +1 -1
- package/dist/Textarea/index.js +1 -1
- package/dist/Thumbnail/index.d.ts +1 -1
- package/dist/Thumbnail/index.js +1 -1
- package/dist/TimePicker/index.d.ts +343 -0
- package/dist/TimePicker/index.js +2 -0
- package/dist/Title/index.d.ts +1 -1
- package/dist/Title/index.js +1 -1
- package/dist/Toast/index.js +1 -1
- package/dist/Toggle/index.d.ts +1 -1
- package/dist/Toggle/index.js +1 -1
- package/dist/Tooltip/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +195 -34
- package/dist/index.js +1 -1
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
Nimbus is an open-source Design System created by Tiendanube / Nuvemshop's team to empower and enhance more stories
|
|
4
4
|
every day, with simplicity, accessibility, consistency and performance.
|
|
5
5
|
|
|
6
|
+
## 2026-02-12 `5.52.0`
|
|
7
|
+
|
|
8
|
+
#### 🎉 New features
|
|
9
|
+
|
|
10
|
+
- Enabled `className` prop forwarding across all atomic and composite components, allowing consumers to pass custom CSS classes. ([#426](https://github.com/TiendaNube/nimbus-design-system/pull/426) by [@joacotornello](https://github.com/joacotornello))
|
|
11
|
+
|
|
12
|
+
## 2026-02-09 `5.51.0`
|
|
13
|
+
|
|
14
|
+
#### 🎉 New features
|
|
15
|
+
|
|
16
|
+
- `ScrollPane`: Added `scrollContainerRef` property to allow passing a ref to the scroll container. ([#414](https://github.com/TiendaNube/nimbus-design-system/pull/414) by [@joacotornello](https://github.com/joacotornello))
|
|
17
|
+
- `TimePicker`: New `TimePicker` component for time selection with scroll and dropdown modes, 12h and 24h formats, AM/PM toggle, time constraints, step intervals, keyboard navigation, and full accessibility support. ([#414](https://github.com/TiendaNube/nimbus-design-system/pull/414) by [@joacotornello](https://github.com/joacotornello))
|
|
18
|
+
|
|
6
19
|
## 2026-02-03 `5.50.0`
|
|
7
20
|
|
|
8
21
|
#### 🎉 New features
|