@matthiaskrijgsman/mat-ui 0.0.31 → 0.0.33

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.
@@ -14,6 +14,8 @@ export type InputSelectProps<T> = {
14
14
  maxHeight?: number;
15
15
  error?: string | React.ReactNode;
16
16
  size?: Size;
17
+ disabled?: boolean;
18
+ clearable?: boolean;
17
19
  };
18
20
  export type { Option, SelectGroupHeader, SelectDivider, SelectItem } from "@/components/inputs/select-item.ts";
19
21
  export declare const InputSelect: <T>(props: InputSelectProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -18,5 +18,7 @@ export type InputSelectMultipleProps<T> = {
18
18
  size?: Size;
19
19
  singleLine?: boolean;
20
20
  color?: BadgeColorKey;
21
+ disabled?: boolean;
22
+ clearable?: boolean;
21
23
  };
22
24
  export declare const InputSelectMultiple: <T>(props: InputSelectMultipleProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -16,5 +16,7 @@ export type InputSelectSearchableProps<T> = {
16
16
  maxHeight?: number;
17
17
  error?: string | React.ReactNode;
18
18
  size?: Size;
19
+ disabled?: boolean;
20
+ clearable?: boolean;
19
21
  };
20
22
  export declare const InputSelectSearchable: <T>(props: InputSelectSearchableProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -17,5 +17,7 @@ export type InputSelectSearchableAsyncProps<T> = {
17
17
  maxHeight?: number;
18
18
  error?: string | React.ReactNode;
19
19
  size?: Size;
20
+ disabled?: boolean;
21
+ clearable?: boolean;
20
22
  };
21
23
  export declare const InputSelectSearchableAsync: <T>(props: InputSelectSearchableAsyncProps<T>) => import("react/jsx-runtime").JSX.Element;