@vacano/ui 1.4.0 → 1.4.1

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
@@ -96,7 +96,7 @@ export declare type CheckboxProps = VacanoComponentProps<HTMLInputElement, Check
96
96
  checked: boolean;
97
97
  onChange: ChangeEventHandler<HTMLInputElement>;
98
98
  indeterminate?: boolean;
99
- label?: string;
99
+ label?: ReactNode;
100
100
  variant?: CheckboxVariant;
101
101
  };
102
102
 
@@ -512,7 +512,7 @@ export declare type RadioGroupProps = VacanoComponentProps<HTMLDivElement, Radio
512
512
  export declare type RadioProps = VacanoComponentProps<HTMLInputElement, RadioClassNames> & Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'checked' | 'onChange' | 'className'> & {
513
513
  checked: boolean;
514
514
  onChange: ChangeEventHandler<HTMLInputElement>;
515
- label?: string;
515
+ label?: ReactNode;
516
516
  variant?: RadioVariant;
517
517
  };
518
518