@clidey/ux 0.16.0 → 0.18.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.
package/dist/index.d.ts CHANGED
@@ -284,7 +284,7 @@ export declare function ScrollArea({ className, children, ...props }: React_2.Co
284
284
 
285
285
  export declare function SearchInput({ className, ...props }: React_2.ComponentProps<"input">): JSX.Element;
286
286
 
287
- export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, onChange, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, }: SearchSelectProps): JSX.Element;
287
+ export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, onChange, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, }: SearchSelectProps): JSX.Element;
288
288
 
289
289
  declare type SearchSelectOption = {
290
290
  value: string;
@@ -306,6 +306,7 @@ declare type SearchSelectProps = {
306
306
  align?: "start" | "center" | "end";
307
307
  onlyIcon?: boolean;
308
308
  label?: string;
309
+ inputProps?: React_2.ComponentProps<typeof CommandInput>;
309
310
  };
310
311
 
311
312
  export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;