@nimbus-ds/components 5.21.1-rc.2 → 5.21.2-rc.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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Nimbus is an open-source Design System created by Tiendanube / Nuvemshop's team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
4
4
 
5
+ ## 2025-09-10 `5.21.1`
6
+
7
+ #### 💡 Others
8
+
9
+ - `ScrollPane`: Added support for flex container props and grid display. ([#347](https://github.com/TiendaNube/nimbus-design-system/pull/347) by [@mrolando-tn](https://github.com/mrolando-tn))
10
+
5
11
  ## 2025-08-21 `5.21.0`
6
12
 
7
13
  #### 🎉 New features
package/dist/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Nimbus is an open-source Design System created by Tiendanube / Nuvemshop's team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
4
4
 
5
+ ## 2025-09-10 `5.21.1`
6
+
7
+ #### 💡 Others
8
+
9
+ - `ScrollPane`: Added support for flex container props and grid display. ([#347](https://github.com/TiendaNube/nimbus-design-system/pull/347) by [@mrolando-tn](https://github.com/mrolando-tn))
10
+
5
11
  ## 2025-08-21 `5.21.0`
6
12
 
7
13
  #### 🎉 New features
@@ -855,9 +855,11 @@ export interface ScrollPaneProperties {
855
855
  /**
856
856
  * Props to be passed to the content container
857
857
  */
858
- contentContainerProps?: BoxProps;
858
+ contentContainerProps?: object;
859
859
  }
860
- export type ScrollPaneProps = ScrollPaneProperties & Omit<BoxProps, "children">;
860
+ export type ScrollPaneProps = ScrollPaneProperties & Omit<BoxProps, "children"> & {
861
+ contentContainerProps?: BoxProps;
862
+ };
861
863
  /**
862
864
  * ScrollPane component handles responsive scrolls in lists that are overflowing inside a container.
863
865
  * It provides gradient overlays, optional navigation arrows, and scroll-to-item functionality.
@@ -823,7 +823,7 @@ export interface ControlledSegmentedControlProperties extends SegmentedControlBa
823
823
  * Callback fired when the selected segments change.
824
824
  * @param selectedIds Array of selected segment IDs
825
825
  */
826
- onSegmentsSelect: (selectedIds: string[]) => void;
826
+ onSegmentsSelect?: (selectedIds: string[]) => void;
827
827
  }
828
828
  /**
829
829
  * Props for the SegmentedControl component, supporting both controlled and uncontrolled modes
package/dist/index.d.ts CHANGED
@@ -3494,9 +3494,11 @@ export interface ScrollPaneProperties {
3494
3494
  /**
3495
3495
  * Props to be passed to the content container
3496
3496
  */
3497
- contentContainerProps?: BoxProps;
3497
+ contentContainerProps?: object;
3498
3498
  }
3499
- export type ScrollPaneProps = ScrollPaneProperties & Omit<BoxProps, "children">;
3499
+ export type ScrollPaneProps = ScrollPaneProperties & Omit<BoxProps, "children"> & {
3500
+ contentContainerProps?: BoxProps;
3501
+ };
3500
3502
  /**
3501
3503
  * ScrollPane component handles responsive scrolls in lists that are overflowing inside a container.
3502
3504
  * It provides gradient overlays, optional navigation arrows, and scroll-to-item functionality.
@@ -3905,7 +3907,7 @@ export interface ControlledSegmentedControlProperties extends SegmentedControlBa
3905
3907
  * Callback fired when the selected segments change.
3906
3908
  * @param selectedIds Array of selected segment IDs
3907
3909
  */
3908
- onSegmentsSelect: (selectedIds: string[]) => void;
3910
+ onSegmentsSelect?: (selectedIds: string[]) => void;
3909
3911
  }
3910
3912
  /**
3911
3913
  * Props for the SegmentedControl component, supporting both controlled and uncontrolled modes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/components",
3
- "version": "5.21.1-rc.2",
3
+ "version": "5.21.2-rc.1",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@floating-ui/react": "^0.26.0",
18
- "@nimbus-ds/icons": "^1.12.0"
18
+ "@nimbus-ds/icons": "^1.13.0"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "react": "^16.8 || ^17.0 || ^18.0",