@nimbus-ds/components 5.46.0-rc.1 → 5.46.1
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 +8 -2
- package/dist/CHANGELOG.md +8 -2
- package/dist/ScrollPane/index.d.ts +3 -5
- package/dist/components-props.json +1 -0
- package/dist/index.d.ts +3 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,17 @@
|
|
|
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-01-
|
|
6
|
+
## 2026-01-15 `5.46.1`
|
|
7
|
+
|
|
8
|
+
#### 🐛 Bug fixes
|
|
9
|
+
|
|
10
|
+
- Fixed DTS generation command to include `--no-check` flag. ([#407](https://github.com/TiendaNube/nimbus-design-system/pull/407) by [@joacotornello](https://github.com/joacotornello))
|
|
11
|
+
|
|
12
|
+
## 2026-01-14 `5.46.0`
|
|
7
13
|
|
|
8
14
|
#### 🎉 New features
|
|
9
15
|
|
|
10
|
-
- Added support for React 19 in peer dependencies. ([#
|
|
16
|
+
- Added support for React 19 in peer dependencies. ([#404](https://github.com/TiendaNube/nimbus-design-system/pull/404) by [@joacotornello](https://github.com/joacotornello))
|
|
11
17
|
|
|
12
18
|
#### 📚 3rd party library updates
|
|
13
19
|
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,17 @@
|
|
|
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-01-
|
|
6
|
+
## 2026-01-15 `5.46.1`
|
|
7
|
+
|
|
8
|
+
#### 🐛 Bug fixes
|
|
9
|
+
|
|
10
|
+
- Fixed DTS generation command to include `--no-check` flag. ([#407](https://github.com/TiendaNube/nimbus-design-system/pull/407) by [@joacotornello](https://github.com/joacotornello))
|
|
11
|
+
|
|
12
|
+
## 2026-01-14 `5.46.0`
|
|
7
13
|
|
|
8
14
|
#### 🎉 New features
|
|
9
15
|
|
|
10
|
-
- Added support for React 19 in peer dependencies. ([#
|
|
16
|
+
- Added support for React 19 in peer dependencies. ([#404](https://github.com/TiendaNube/nimbus-design-system/pull/404) by [@joacotornello](https://github.com/joacotornello))
|
|
11
17
|
|
|
12
18
|
#### 📚 3rd party library updates
|
|
13
19
|
|
|
@@ -806,16 +806,14 @@ export interface ScrollPaneItemProperties {
|
|
|
806
806
|
* Custom class name for styling
|
|
807
807
|
*/
|
|
808
808
|
className?: string;
|
|
809
|
-
/**
|
|
810
|
-
* Custom inline styles
|
|
811
|
-
*/
|
|
812
|
-
style?: React.CSSProperties;
|
|
813
809
|
/**
|
|
814
810
|
* Callback fired when the item is clicked
|
|
815
811
|
*/
|
|
816
812
|
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
817
813
|
}
|
|
818
|
-
export type ScrollPaneItemProps = ScrollPaneItemProperties &
|
|
814
|
+
export type ScrollPaneItemProps = ScrollPaneItemProperties & {
|
|
815
|
+
style?: React.CSSProperties;
|
|
816
|
+
} & Omit<React.HTMLAttributes<HTMLDivElement>, "children">;
|
|
819
817
|
/**
|
|
820
818
|
* ScrollPaneItem is a wrapper component for items within a ScrollPane.
|
|
821
819
|
* It handles click events to scroll the item into view when clicked.
|