@nimbus-ds/components 5.21.1-rc.1 → 5.21.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/Accordion/index.js +2 -1
  3. package/dist/Alert/index.js +2 -1
  4. package/dist/Badge/index.js +2 -1
  5. package/dist/Box/index.js +2 -1
  6. package/dist/Button/index.js +2 -1
  7. package/dist/CHANGELOG.md +6 -0
  8. package/dist/Card/index.js +2 -1
  9. package/dist/Checkbox/index.js +2 -1
  10. package/dist/Chip/index.js +2 -1
  11. package/dist/Collapsible/index.js +2 -1
  12. package/dist/FileUploader/index.js +2 -1
  13. package/dist/Icon/index.js +2 -1
  14. package/dist/IconButton/index.js +2 -1
  15. package/dist/Input/index.js +2 -1
  16. package/dist/Label/index.js +2 -1
  17. package/dist/Link/index.js +2 -1
  18. package/dist/List/index.js +2 -1
  19. package/dist/Modal/index.js +2 -1
  20. package/dist/MultiSelect/index.js +2 -1
  21. package/dist/Pagination/index.js +2 -1
  22. package/dist/Popover/index.js +2 -1
  23. package/dist/ProgressBar/index.js +2 -1
  24. package/dist/Radio/index.js +2 -1
  25. package/dist/ScrollPane/index.d.ts +4 -2
  26. package/dist/ScrollPane/index.js +2 -1
  27. package/dist/SegmentedControl/index.d.ts +1 -1
  28. package/dist/SegmentedControl/index.js +2 -1
  29. package/dist/Select/index.js +2 -1
  30. package/dist/Sidebar/index.js +2 -1
  31. package/dist/Skeleton/index.js +2 -1
  32. package/dist/Spinner/index.js +2 -1
  33. package/dist/Stepper/index.js +2 -1
  34. package/dist/Table/index.js +2 -1
  35. package/dist/Tabs/index.js +2 -1
  36. package/dist/Tag/index.js +2 -1
  37. package/dist/Text/index.js +2 -1
  38. package/dist/Textarea/index.js +2 -1
  39. package/dist/Thumbnail/index.js +2 -1
  40. package/dist/Title/index.js +2 -1
  41. package/dist/Toast/index.js +2 -1
  42. package/dist/Toggle/index.js +2 -1
  43. package/dist/Tooltip/index.js +2 -1
  44. package/dist/components-props.json +1 -0
  45. package/dist/index.d.ts +5 -3
  46. package/dist/index.js +2 -1
  47. package/package.json +1 -1
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