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.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<HTMLDivElement>>;
233
+ export declare const Checkbox: default_2.ForwardRefExoticComponent<CheckboxProps & default_2.RefAttributes<HTMLInputElement>>;
234
234
 
235
- export declare interface CheckboxProps extends HTMLAttributes<HTMLDivElement> {
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
  }