@clidey/ux 0.21.2 → 0.22.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
@@ -35,7 +35,7 @@ export declare function AccordionTrigger({ className, children, ...props }: Reac
35
35
 
36
36
  export declare function Alert({ className, variant, ...props }: React_2.ComponentProps<"div"> & VariantProps<typeof alertVariants>): JSX.Element;
37
37
 
38
- export declare function AlertDescription({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
38
+ export declare function AlertDescription({ className, ...props }: React_2.ComponentProps<"p">): JSX.Element;
39
39
 
40
40
  export declare function AlertDialog({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Root>): JSX.Element;
41
41
 
@@ -55,7 +55,7 @@ export declare function AlertDialogTitle({ className, ...props }: React_2.Compon
55
55
 
56
56
  export declare function AlertDialogTrigger({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Trigger>): JSX.Element;
57
57
 
58
- export declare function AlertTitle({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
58
+ export declare function AlertTitle({ className, ...props }: React_2.ComponentProps<"p">): JSX.Element;
59
59
 
60
60
  declare const alertVariants: (props?: ({
61
61
  variant?: "default" | "destructive" | null | undefined;
@@ -284,12 +284,13 @@ 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, inputProps, }: SearchSelectProps): JSX.Element;
287
+ export declare function SearchSelect({ options, placeholder, searchPlaceholder, value, onChange, buttonClassName, contentClassName, disabled, extraOptions, side, align, onlyIcon, label, inputProps, buttonProps, }: SearchSelectProps): JSX.Element;
288
288
 
289
289
  declare type SearchSelectOption = {
290
290
  value: string;
291
291
  label: string;
292
292
  icon?: React_2.ReactNode;
293
+ rightIcon?: React_2.ReactNode;
293
294
  };
294
295
 
295
296
  declare type SearchSelectProps = {
@@ -307,6 +308,7 @@ declare type SearchSelectProps = {
307
308
  onlyIcon?: boolean;
308
309
  label?: string;
309
310
  inputProps?: React_2.ComponentProps<typeof CommandInput>;
311
+ buttonProps?: React_2.ComponentProps<typeof Button>;
310
312
  };
311
313
 
312
314
  export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;