@nimbus-ds/components 5.35.1 → 5.35.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/dist/Accordion/index.js +1 -1
- package/dist/Alert/index.js +1 -1
- package/dist/Badge/index.js +1 -1
- package/dist/Box/index.d.ts +1 -0
- package/dist/Button/index.js +1 -1
- package/dist/Card/index.js +1 -1
- package/dist/Checkbox/index.js +1 -1
- package/dist/Chip/index.js +1 -1
- package/dist/FileUploader/index.js +1 -1
- package/dist/Icon/index.js +1 -1
- package/dist/IconButton/index.d.ts +1 -0
- package/dist/IconButton/index.js +1 -1
- package/dist/Input/index.js +1 -1
- package/dist/Label/index.js +1 -1
- package/dist/Link/index.js +1 -1
- package/dist/List/index.js +1 -1
- package/dist/Modal/index.d.ts +1 -0
- package/dist/Modal/index.js +1 -1
- package/dist/MultiSelect/index.js +1 -1
- package/dist/Pagination/index.js +1 -1
- package/dist/Popover/index.d.ts +1 -0
- package/dist/ProgressBar/index.js +1 -1
- package/dist/Radio/index.js +1 -1
- package/dist/ScrollPane/index.d.ts +2 -1
- package/dist/ScrollPane/index.js +1 -1
- package/dist/SegmentedControl/index.d.ts +1 -0
- package/dist/SegmentedControl/index.js +1 -1
- package/dist/Select/index.js +1 -1
- package/dist/Sidebar/index.d.ts +1 -0
- package/dist/Sidebar/index.js +1 -1
- package/dist/SplitButton/index.d.ts +1 -0
- package/dist/SplitButton/index.js +1 -1
- package/dist/Stepper/index.d.ts +1 -0
- package/dist/Stepper/index.js +1 -1
- package/dist/Table/index.d.ts +1 -0
- package/dist/Tag/index.js +1 -1
- package/dist/Text/index.d.ts +1 -0
- package/dist/Text/index.js +1 -1
- package/dist/Textarea/index.js +1 -1
- package/dist/Thumbnail/index.js +1 -1
- package/dist/Title/index.d.ts +1 -0
- package/dist/Title/index.js +1 -1
- package/dist/Toast/index.js +1 -1
- package/dist/Toggle/index.js +1 -1
- package/dist/Tooltip/index.d.ts +1 -0
- package/dist/Tooltip/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ export interface Conditions<T> {
|
|
|
83
83
|
md?: T;
|
|
84
84
|
lg?: T;
|
|
85
85
|
xl?: T;
|
|
86
|
+
xxl?: T;
|
|
86
87
|
}
|
|
87
88
|
export type AspectRatio = "1/1" | "16/9" | "9/16" | "4/3" | "3/4" | "2/1" | "1/2";
|
|
88
89
|
export type BorderStyle = "solid" | "none" | "hidden" | "dashed" | "dotted";
|
|
@@ -3643,7 +3644,7 @@ export interface ScrollPaneItemProperties {
|
|
|
3643
3644
|
*/
|
|
3644
3645
|
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
3645
3646
|
}
|
|
3646
|
-
export type ScrollPaneItemProps = ScrollPaneItemProperties & Omit<
|
|
3647
|
+
export type ScrollPaneItemProps = ScrollPaneItemProperties & Omit<React.HTMLAttributes<HTMLDivElement>, "children">;
|
|
3647
3648
|
export type ScrollPaneArrowProperties = {
|
|
3648
3649
|
children: ReactNode;
|
|
3649
3650
|
};
|