randmarcomps 1.139.0 → 1.141.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.
@@ -112,7 +112,7 @@ export declare interface ChatLayoutProps {
112
112
  userId: string;
113
113
  userName: string;
114
114
  apiKey: string;
115
- inputRef?: React.RefObject<HTMLInputElement | null>;
115
+ inputRef?: React.RefObject<HTMLTextAreaElement | null>;
116
116
  }
117
117
 
118
118
  export declare interface ConfirmationDialogProps {
@@ -381,6 +381,10 @@ export declare const ScrollBar: React_2.ForwardRefExoticComponent<Omit<ScrollAre
381
381
 
382
382
  export declare const Select: React_2.FC<SelectPrimitive.SelectProps>;
383
383
 
384
+ export declare const SelectScrollDownButton: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
385
+
386
+ export declare const SelectScrollUpButton: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
387
+
384
388
  export declare const Separator: React_2.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
385
389
 
386
390
  export declare const Sheet: React_2.FC<DialogPrimitive.DialogProps>;
@@ -514,6 +518,8 @@ export declare const TabsList: React_2.ForwardRefExoticComponent<Omit<TabsPrimit
514
518
 
515
519
  export declare const TabsTrigger: React_2.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
516
520
 
521
+ export declare const Textarea: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React_2.RefAttributes<HTMLTextAreaElement>>;
522
+
517
523
  export declare const Toast: React_2.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React_2.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
518
524
  variant?: "default" | "destructive" | "outline" | "secondary" | "success" | "warning" | "info" | null | undefined;
519
525
  } & ClassProp) | undefined) => string> & React_2.RefAttributes<HTMLLIElement>>;