@verifiedinc-public/shared-ui-elements 0.14.5-beta.5 → 1.0.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.
@@ -13,10 +13,11 @@ interface SelectInputProps {
13
13
  value?: Option | null;
14
14
  defaultOption?: Option;
15
15
  InputProps?: TextFieldProps;
16
+ disableClearable?: boolean;
16
17
  }
17
18
  /**
18
19
  * This component manages the input of type Select.
19
20
  * @constructor
20
21
  */
21
- export declare function SelectInput({ options, defaultOption, value: controlledValue, onChange, onClear, ...props }: SelectInputProps): React.JSX.Element;
22
+ export declare function SelectInput({ options, defaultOption, value: controlledValue, onChange, onClear, disableClearable, ...props }: SelectInputProps): React.JSX.Element;
22
23
  export {};