design-system-silkhaus 2.15.0 → 2.16.0-segmented-control-beta.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/README.md +6 -4
- package/dist/index.cjs +35 -35
- package/dist/index.d.ts +13 -0
- package/dist/index.js +357 -316
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -932,6 +932,19 @@ export declare interface ScrollbarProps extends Props {
|
|
|
932
932
|
|
|
933
933
|
export declare const SECURITY_DEPOSIT_REFUND = "security_deposit_refund";
|
|
934
934
|
|
|
935
|
+
export declare const SegmentedControl: FC<SegmentedControlProps>;
|
|
936
|
+
|
|
937
|
+
export declare type SegmentedControlProps = {
|
|
938
|
+
segments: {
|
|
939
|
+
label: string;
|
|
940
|
+
value: string;
|
|
941
|
+
icon?: React.ReactNode;
|
|
942
|
+
}[];
|
|
943
|
+
className?: string;
|
|
944
|
+
value?: string;
|
|
945
|
+
onChange?: (value: string) => void;
|
|
946
|
+
};
|
|
947
|
+
|
|
935
948
|
export declare const Select: FC<SelectProps>;
|
|
936
949
|
|
|
937
950
|
export declare enum SelectionStateEnum {
|