design-system-silkhaus 2.14.0-beta.tabbed-menu.12 → 2.15.0
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 +33 -33
- package/dist/index.d.ts +21 -1
- package/dist/index.js +647 -567
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export declare interface AccordionProps {
|
|
|
36
36
|
* otherwise it will only collapse on clicking the header
|
|
37
37
|
*/
|
|
38
38
|
isCollapseOnlyOnHeaderClick?: boolean;
|
|
39
|
+
onStateChange?: (state: boolean) => void;
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
declare type ActionButtonProps = {
|
|
@@ -870,6 +871,25 @@ export declare const QuestionMarkIcon: FC<{
|
|
|
870
871
|
className?: string;
|
|
871
872
|
}>;
|
|
872
873
|
|
|
874
|
+
export declare const RadioButton: default_2.FC<RadioButtonProps>;
|
|
875
|
+
|
|
876
|
+
export declare interface RadioButtonProps {
|
|
877
|
+
value: string;
|
|
878
|
+
label: string;
|
|
879
|
+
disabled?: boolean;
|
|
880
|
+
name: string;
|
|
881
|
+
selectedValue?: string;
|
|
882
|
+
onChange: (value: string) => void;
|
|
883
|
+
className?: string;
|
|
884
|
+
labelContainerClassName?: string;
|
|
885
|
+
inputClassName?: string;
|
|
886
|
+
labelClassName?: string;
|
|
887
|
+
helperText?: string;
|
|
888
|
+
error?: boolean;
|
|
889
|
+
isChecked?: boolean;
|
|
890
|
+
defaultChecked?: boolean;
|
|
891
|
+
}
|
|
892
|
+
|
|
873
893
|
export declare const RangeSlider: default_2.FC<RangeSliderProps>;
|
|
874
894
|
|
|
875
895
|
export declare interface RangeSliderProps {
|
|
@@ -1048,7 +1068,7 @@ export declare const TabbedMenu: default_2.FC<TabbedMenuProps>;
|
|
|
1048
1068
|
|
|
1049
1069
|
export declare interface TabbedMenuProps {
|
|
1050
1070
|
tabs: Tab[];
|
|
1051
|
-
value
|
|
1071
|
+
value?: string;
|
|
1052
1072
|
defaultValue?: string;
|
|
1053
1073
|
onChange: (tab: {
|
|
1054
1074
|
value: string;
|