@zvoove/unity-ui 2.40.1 → 2.41.0

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.
@@ -546,7 +546,7 @@ export declare type ChatBubbleState = 'default' | 'thinking' | 'error';
546
546
 
547
547
  export declare type ChatBubbleVariant = 'sender' | 'receiver';
548
548
 
549
- export declare const Checkbox: ({ checked, name, id, disabled, error, indeterminate, value, label, onChange, }: CheckboxProps) => JSX.Element;
549
+ export declare const Checkbox: ({ checked, name, id, disabled, error, indeterminate, value, label, hideLabel, onChange, }: CheckboxProps) => JSX.Element;
550
550
 
551
551
  export declare interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
552
552
  /**
@@ -557,6 +557,10 @@ export declare interface CheckboxProps extends Omit<React.InputHTMLAttributes<HT
557
557
  * Handle the label of the checkbox.
558
558
  */
559
559
  label: ReactNode;
560
+ /**
561
+ * Handle if the label should be hidden.
562
+ */
563
+ hideLabel?: boolean;
560
564
  /**
561
565
  * Handle the name of the checkbox.
562
566
  */