@nimbus-ds/components 5.21.0 → 5.21.1-rc.2
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/dist/Accordion/index.js +1 -2
- package/dist/Alert/index.js +1 -2
- package/dist/Badge/index.js +1 -2
- package/dist/Box/index.js +1 -2
- package/dist/Button/index.js +1 -2
- package/dist/Card/index.js +1 -2
- package/dist/Checkbox/index.js +1 -2
- package/dist/Chip/index.js +1 -2
- package/dist/Collapsible/index.js +1 -2
- package/dist/FileUploader/index.js +1 -2
- package/dist/Icon/index.js +1 -2
- package/dist/IconButton/index.js +1 -2
- package/dist/Input/index.js +1 -2
- package/dist/Label/index.js +1 -2
- package/dist/Link/index.js +1 -2
- package/dist/List/index.js +1 -2
- package/dist/Modal/index.js +1 -2
- package/dist/MultiSelect/index.js +1 -2
- package/dist/Pagination/index.js +1 -2
- package/dist/Popover/index.js +1 -2
- package/dist/ProgressBar/index.js +1 -2
- package/dist/Radio/index.js +1 -2
- package/dist/ScrollPane/index.d.ts +4 -0
- package/dist/ScrollPane/index.js +1 -2
- package/dist/SegmentedControl/index.js +1 -2
- package/dist/Select/index.js +1 -2
- package/dist/Sidebar/index.js +1 -2
- package/dist/Skeleton/index.js +1 -2
- package/dist/Spinner/index.js +1 -2
- package/dist/Stepper/index.js +1 -2
- package/dist/Table/index.js +1 -2
- package/dist/Tabs/index.js +1 -2
- package/dist/Tag/index.js +1 -2
- package/dist/Text/index.js +1 -2
- package/dist/Textarea/index.js +1 -2
- package/dist/Thumbnail/index.js +1 -2
- package/dist/Title/index.js +1 -2
- package/dist/Toast/index.js +1 -2
- package/dist/Toggle/index.js +1 -2
- package/dist/Tooltip/index.js +1 -2
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -2
- package/package.json +1 -1
- package/dist/components-props.json +0 -1
|
@@ -852,6 +852,10 @@ export interface ScrollPaneProperties {
|
|
|
852
852
|
* Custom arrow component to render at the end of the scroll area
|
|
853
853
|
*/
|
|
854
854
|
scrollPaneArrowEnd?: React.ReactNode;
|
|
855
|
+
/**
|
|
856
|
+
* Props to be passed to the content container
|
|
857
|
+
*/
|
|
858
|
+
contentContainerProps?: BoxProps;
|
|
855
859
|
}
|
|
856
860
|
export type ScrollPaneProps = ScrollPaneProperties & Omit<BoxProps, "children">;
|
|
857
861
|
/**
|