design-system-silkhaus 2.15.0-beta.accordian-event.1 → 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.d.ts CHANGED
@@ -871,6 +871,25 @@ export declare const QuestionMarkIcon: FC<{
871
871
  className?: string;
872
872
  }>;
873
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
+
874
893
  export declare const RangeSlider: default_2.FC<RangeSliderProps>;
875
894
 
876
895
  export declare interface RangeSliderProps {
@@ -1037,6 +1056,26 @@ export declare interface SwitchProps {
1037
1056
  htmlId?: string;
1038
1057
  }
1039
1058
 
1059
+ export declare interface Tab {
1060
+ IconComponent: default_2.ElementType;
1061
+ HoverIconComponent: default_2.ElementType;
1062
+ label: string;
1063
+ value: string;
1064
+ link?: string;
1065
+ }
1066
+
1067
+ export declare const TabbedMenu: default_2.FC<TabbedMenuProps>;
1068
+
1069
+ export declare interface TabbedMenuProps {
1070
+ tabs: Tab[];
1071
+ value?: string;
1072
+ defaultValue?: string;
1073
+ onChange: (tab: {
1074
+ value: string;
1075
+ link?: string;
1076
+ }) => void;
1077
+ }
1078
+
1040
1079
  export declare const tabletMinWidth: number;
1041
1080
 
1042
1081
  declare type TagProps = {