next-helios-fe 1.9.15 → 1.9.17

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.
@@ -17,6 +17,7 @@ export interface MultipleSelectProps extends Omit<React.HTMLAttributes<HTMLDivEl
17
17
  height?: "short" | "medium" | "high";
18
18
  disableDropdown?: boolean;
19
19
  };
20
+ max?: number;
20
21
  required?: boolean;
21
22
  disabled?: boolean;
22
23
  value?: string[];
@@ -26,6 +27,7 @@ export interface MultipleSelectProps extends Omit<React.HTMLAttributes<HTMLDivEl
26
27
  value: string[];
27
28
  };
28
29
  }) => void;
30
+ readOnly?: boolean;
29
31
  onSelect?: (e: {
30
32
  target: {
31
33
  value: string;
@@ -15,5 +15,6 @@ export interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElemen
15
15
  width?: "full" | "fit";
16
16
  height?: "short" | "medium" | "high";
17
17
  };
18
+ readOnly?: boolean;
18
19
  }
19
20
  export declare const Select: React.FC<SelectProps>;