design-system-silkhaus 2.2.0 → 2.2.2

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
@@ -26,6 +26,12 @@ export declare interface AccordionProps {
26
26
  accordionContentClass?: string | undefined;
27
27
  isEnabled?: boolean;
28
28
  isExpanded?: boolean;
29
+ /**
30
+ * @default true
31
+ * If false, accordion will collapse on clicking anywhere,
32
+ * otherwise it will only collapse on clicking the header
33
+ */
34
+ isCollapseOnlyOnHeaderClick?: boolean;
29
35
  }
30
36
 
31
37
  export declare const ActionFooter: default_2.ForwardRefExoticComponent<ActionFooterProps & default_2.RefAttributes<HTMLDivElement>>;
@@ -163,6 +169,10 @@ export declare interface ButtonsGroupSelectorProps extends HTMLAttributes<HTMLDi
163
169
  buttonClassName?: string;
164
170
  }
165
171
 
172
+ export declare const CalendarIcon: FC<{
173
+ className?: string;
174
+ }>;
175
+
166
176
  export declare const Card: React_2.ForwardRefExoticComponent<CardProps & React_2.RefAttributes<HTMLDivElement>>;
167
177
 
168
178
  export declare const CardContent: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;