design-system-silkhaus 2.5.0-beta.travel-list.2 → 2.5.0-beta.travel-list.4
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 +32 -32
- package/dist/index.d.ts +4 -2
- package/dist/index.js +931 -924
- package/dist/style.css +1 -1
- 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;
|
|
@@ -575,8 +575,10 @@ export declare interface PaymentRadioInputProps {
|
|
|
575
575
|
label: string | default_2.ReactNode;
|
|
576
576
|
price: string | default_2.ReactNode;
|
|
577
577
|
description?: string | default_2.ReactNode;
|
|
578
|
+
descriptionRight?: string | default_2.ReactNode;
|
|
578
579
|
checked?: boolean;
|
|
579
580
|
selectionContent?: default_2.ReactNode;
|
|
581
|
+
showDescription?: boolean;
|
|
580
582
|
className?: string;
|
|
581
583
|
onChange: (id: string) => void;
|
|
582
584
|
}
|