digitinary-ui 1.0.209 → 1.0.210
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.
|
@@ -174,19 +174,23 @@ export interface ButtonPropsType {
|
|
|
174
174
|
className?: string;
|
|
175
175
|
id?: string;
|
|
176
176
|
}
|
|
177
|
-
export interface CardPropsType
|
|
177
|
+
export interface CardPropsType {
|
|
178
178
|
header?: JSX.Element;
|
|
179
179
|
children?: JSX.Element | string;
|
|
180
180
|
footer?: JSX.Element;
|
|
181
181
|
rounded?: boolean;
|
|
182
|
+
id?: string;
|
|
183
|
+
className?: string;
|
|
184
|
+
dataId?: string;
|
|
182
185
|
}
|
|
183
|
-
export interface CheckboxPropsType
|
|
186
|
+
export interface CheckboxPropsType {
|
|
184
187
|
label: string;
|
|
185
188
|
labelPlacement?: PositionType;
|
|
186
189
|
handleCheckboxChange: () => void;
|
|
187
190
|
checked?: boolean;
|
|
188
191
|
size?: SizeType;
|
|
189
192
|
disabled?: boolean;
|
|
193
|
+
className?: string;
|
|
190
194
|
}
|
|
191
195
|
export interface ChipPropsType extends BaseProps {
|
|
192
196
|
color?: ChipColorType;
|