@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
@@ -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.