bsm-design-system 1.20.0 → 1.20.2

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/index.d.mts CHANGED
@@ -598,6 +598,7 @@ interface BaseSelectProps {
598
598
  disabled?: boolean;
599
599
  readOnly?: boolean;
600
600
  asyncSearch?: boolean;
601
+ clearable?: boolean;
601
602
  label?: string;
602
603
  hint?: string;
603
604
  helperText?: string;
@@ -621,7 +622,7 @@ type SelectProps = SingleSelectProps | MultiSelectProps;
621
622
 
622
623
  declare function Select(props: SingleSelectProps): JSX.Element;
623
624
  declare function Select(props: MultiSelectProps): JSX.Element;
624
- declare function Select({ mode, options, value, className, onChange, onSearch, searchable, loading, label, hint, helperText, error, disabled, rounded, readOnly, size, asyncSearch, scrollContent, placeholder, emptyText, }: SelectProps): react_jsx_runtime.JSX.Element;
625
+ declare function Select({ mode, options, value, className, onChange, onSearch, searchable, loading, label, hint, helperText, error, disabled, rounded, readOnly, size, asyncSearch, scrollContent, clearable, placeholder, emptyText, }: SelectProps): react_jsx_runtime.JSX.Element;
625
626
 
626
627
  declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
627
628
  declare namespace Tooltip {
package/index.d.ts CHANGED
@@ -598,6 +598,7 @@ interface BaseSelectProps {
598
598
  disabled?: boolean;
599
599
  readOnly?: boolean;
600
600
  asyncSearch?: boolean;
601
+ clearable?: boolean;
601
602
  label?: string;
602
603
  hint?: string;
603
604
  helperText?: string;
@@ -621,7 +622,7 @@ type SelectProps = SingleSelectProps | MultiSelectProps;
621
622
 
622
623
  declare function Select(props: SingleSelectProps): JSX.Element;
623
624
  declare function Select(props: MultiSelectProps): JSX.Element;
624
- declare function Select({ mode, options, value, className, onChange, onSearch, searchable, loading, label, hint, helperText, error, disabled, rounded, readOnly, size, asyncSearch, scrollContent, placeholder, emptyText, }: SelectProps): react_jsx_runtime.JSX.Element;
625
+ declare function Select({ mode, options, value, className, onChange, onSearch, searchable, loading, label, hint, helperText, error, disabled, rounded, readOnly, size, asyncSearch, scrollContent, clearable, placeholder, emptyText, }: SelectProps): react_jsx_runtime.JSX.Element;
625
626
 
626
627
  declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
627
628
  declare namespace Tooltip {