@clidey/ux 0.34.0 → 0.36.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
@@ -359,7 +359,7 @@ export declare function ScrollBar({ className, orientation, ...props }: React_2.
359
359
 
360
360
  export declare function SearchInput({ className, ...props }: React_2.ComponentProps<"input">): JSX.Element;
361
361
 
362
- export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, defaultValue, onChange, onValueChange, notFoundMessage, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, buttonProps, }: SearchSelectProps): JSX.Element;
362
+ export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, defaultValue, onChange, onValueChange, notFoundMessage, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, buttonProps, rightIcon, }: SearchSelectProps): JSX.Element;
363
363
 
364
364
  declare type SearchSelectOption = {
365
365
  value: string;
@@ -387,6 +387,7 @@ declare type SearchSelectProps = {
387
387
  label?: string;
388
388
  inputProps?: React_2.ComponentProps<typeof CommandInput>;
389
389
  buttonProps?: React_2.ComponentProps<typeof Button>;
390
+ rightIcon?: React_2.ReactNode;
390
391
  };
391
392
 
392
393
  export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;
@@ -413,6 +414,7 @@ export declare function Sheet({ ...props }: React_2.ComponentProps<typeof SheetP
413
414
 
414
415
  export declare function SheetContent({ className, children, side, ...props }: React_2.ComponentProps<typeof SheetPrimitive.Content> & {
415
416
  side?: "top" | "right" | "bottom" | "left";
417
+ onClose?: () => void;
416
418
  }): JSX.Element;
417
419
 
418
420
  export declare function SheetDescription({ className, ...props }: React_2.ComponentProps<typeof SheetPrimitive.Description>): JSX.Element;