design-system-silkhaus 2.1.3-beta.fix-buttons-group.2 → 2.1.3-beta.fix-buttons-group.3
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 +27 -27
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1357 -1353
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -153,7 +153,14 @@ export declare interface ButtonsGroupSelectorProps extends HTMLAttributes<HTMLDi
|
|
|
153
153
|
minWidthButton?: string;
|
|
154
154
|
buttonWidth?: string;
|
|
155
155
|
minSelectionError?: string;
|
|
156
|
+
/**
|
|
157
|
+
* className for the wrapping div on the buttons
|
|
158
|
+
*/
|
|
156
159
|
buttonsContainerClassName?: string;
|
|
160
|
+
/**
|
|
161
|
+
* className to applied on each button
|
|
162
|
+
*/
|
|
163
|
+
buttonClassName?: string;
|
|
157
164
|
}
|
|
158
165
|
|
|
159
166
|
export declare const Card: React_2.ForwardRefExoticComponent<CardProps & React_2.RefAttributes<HTMLDivElement>>;
|