design-system-silkhaus 2.17.0-beta.notifications.2 → 2.17.0-beta.notifications.3
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 +20 -0
- package/dist/index.js +1499 -1450
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1001,6 +1001,26 @@ export declare const Scrollbar: FC<ScrollbarProps>;
|
|
|
1001
1001
|
export declare interface ScrollbarProps extends Props {
|
|
1002
1002
|
}
|
|
1003
1003
|
|
|
1004
|
+
export declare const Section: default_2.FC<SectionProps>;
|
|
1005
|
+
|
|
1006
|
+
export declare const SectionHeader: default_2.FC<SectionHeaderProps>;
|
|
1007
|
+
|
|
1008
|
+
export declare interface SectionHeaderProps {
|
|
1009
|
+
title?: string;
|
|
1010
|
+
description?: string;
|
|
1011
|
+
className?: string;
|
|
1012
|
+
titleClassName?: string;
|
|
1013
|
+
descriptionClassName?: string;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
export declare interface SectionProps {
|
|
1017
|
+
head?: default_2.ReactNode;
|
|
1018
|
+
body?: default_2.ReactNode;
|
|
1019
|
+
className?: string;
|
|
1020
|
+
headClassName?: string;
|
|
1021
|
+
bodyClassName?: string;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1004
1024
|
export declare const SECURITY_DEPOSIT_REFUND = "security_deposit_refund";
|
|
1005
1025
|
|
|
1006
1026
|
export declare const SegmentedControl: FC<SegmentedControlProps>;
|