design-system-silkhaus 2.17.0-beta.notifications.2 → 2.17.0-beta.notifications.4
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/index.cjs +38 -38
- package/dist/index.d.ts +24 -0
- package/dist/index.js +1526 -1471
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -877,6 +877,10 @@ export declare interface PopoverProps {
|
|
|
877
877
|
* The title of the popover
|
|
878
878
|
*/
|
|
879
879
|
title?: string;
|
|
880
|
+
/**
|
|
881
|
+
* Callback when popover is opened or closed
|
|
882
|
+
*/
|
|
883
|
+
onOpenChange?: (isOpen: boolean) => void;
|
|
880
884
|
}
|
|
881
885
|
|
|
882
886
|
export declare const PreviewIcon: FC<{
|
|
@@ -1001,6 +1005,26 @@ export declare const Scrollbar: FC<ScrollbarProps>;
|
|
|
1001
1005
|
export declare interface ScrollbarProps extends Props {
|
|
1002
1006
|
}
|
|
1003
1007
|
|
|
1008
|
+
export declare const Section: default_2.FC<SectionProps>;
|
|
1009
|
+
|
|
1010
|
+
export declare const SectionHeader: default_2.FC<SectionHeaderProps>;
|
|
1011
|
+
|
|
1012
|
+
export declare interface SectionHeaderProps {
|
|
1013
|
+
title?: string;
|
|
1014
|
+
description?: string;
|
|
1015
|
+
className?: string;
|
|
1016
|
+
titleClassName?: string;
|
|
1017
|
+
descriptionClassName?: string;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
export declare interface SectionProps {
|
|
1021
|
+
head?: default_2.ReactNode;
|
|
1022
|
+
body?: default_2.ReactNode;
|
|
1023
|
+
className?: string;
|
|
1024
|
+
headClassName?: string;
|
|
1025
|
+
bodyClassName?: string;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1004
1028
|
export declare const SECURITY_DEPOSIT_REFUND = "security_deposit_refund";
|
|
1005
1029
|
|
|
1006
1030
|
export declare const SegmentedControl: FC<SegmentedControlProps>;
|