@clidey/ux 0.14.0 → 0.16.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, }: SearchSelectProps): JSX.Element;
287
+ export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, onChange, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, }: SearchSelectProps): JSX.Element;
288
288
 
289
289
  declare type SearchSelectOption = {
290
290
  value: string;
@@ -305,6 +305,7 @@ declare type SearchSelectProps = {
305
305
  side?: "top" | "bottom" | "left" | "right";
306
306
  align?: "start" | "center" | "end";
307
307
  onlyIcon?: boolean;
308
+ label?: string;
308
309
  };
309
310
 
310
311
  export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;