design-system-silkhaus 2.5.0-beta.travel-list.1 → 2.5.0-beta.travel-list.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 +35 -35
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4975 -4948
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -230,9 +230,9 @@ declare const cardVariants: (props?: ({
|
|
|
230
230
|
cardType?: "default" | "shadowCard" | null | undefined;
|
|
231
231
|
} & ClassProp) | undefined) => string;
|
|
232
232
|
|
|
233
|
-
export declare const Checkbox: default_2.ForwardRefExoticComponent<CheckboxProps & default_2.RefAttributes<
|
|
233
|
+
export declare const Checkbox: default_2.ForwardRefExoticComponent<CheckboxProps & default_2.RefAttributes<HTMLInputElement>>;
|
|
234
234
|
|
|
235
|
-
export declare interface CheckboxProps extends HTMLAttributes<
|
|
235
|
+
export declare interface CheckboxProps extends HTMLAttributes<HTMLInputElement> {
|
|
236
236
|
isChecked: boolean;
|
|
237
237
|
onSelectionChange: () => void;
|
|
238
238
|
label: string;
|