@ws-ui/shared 1.11.12 → 1.12.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.
@@ -11,5 +11,6 @@ export interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement
11
11
  isInvalid?: boolean;
12
12
  icon?: ReactElement<BaseCheckboxIconProps>;
13
13
  label?: ReactNode;
14
+ indeterminate?: boolean;
14
15
  }
15
16
  export declare function Checkbox({ isChecked: controlledIsChecked, isIndeterminate, isInvalid, icon, label, className, style, ...props }: CheckboxProps): import("react/jsx-runtime").JSX.Element;
@@ -10,6 +10,7 @@ declare namespace catalog {
10
10
  type AttributeType =
11
11
  | 'bool'
12
12
  | 'word'
13
+ | 'time'
13
14
  | 'blob'
14
15
  | 'string'
15
16
  | 'text'