design-system-silkhaus 2.3.0-beta.monthly-payment.6 → 2.3.0-beta.monthly-payment.7
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 +14 -0
- package/dist/index.js +21990 -21939
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,12 @@ export declare interface AccordionProps {
|
|
|
27
27
|
accordionContentClass?: string | undefined;
|
|
28
28
|
isEnabled?: boolean;
|
|
29
29
|
isExpanded?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* @default true
|
|
32
|
+
* If false, accordion will collapse on clicking anywhere,
|
|
33
|
+
* otherwise it will only collapse on clicking the header
|
|
34
|
+
*/
|
|
35
|
+
isCollapseOnlyOnHeaderClick?: boolean;
|
|
30
36
|
}
|
|
31
37
|
|
|
32
38
|
export declare const ActionFooter: default_2.ForwardRefExoticComponent<ActionFooterProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -162,6 +168,14 @@ export declare interface ButtonsGroupSelectorProps extends HTMLAttributes<HTMLDi
|
|
|
162
168
|
minWidthButton?: string;
|
|
163
169
|
buttonWidth?: string;
|
|
164
170
|
minSelectionError?: string;
|
|
171
|
+
/**
|
|
172
|
+
* className for the wrapping div on the buttons
|
|
173
|
+
*/
|
|
174
|
+
buttonsContainerClassName?: string;
|
|
175
|
+
/**
|
|
176
|
+
* className to applied on each button
|
|
177
|
+
*/
|
|
178
|
+
buttonClassName?: string;
|
|
165
179
|
}
|
|
166
180
|
|
|
167
181
|
export declare const CalendarIcon: FC<{
|