randmarcomps 1.279.0 → 1.281.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.
@@ -106,6 +106,14 @@ export declare interface AreaChartProps {
106
106
  size?: "default" | "mini";
107
107
  }
108
108
 
109
+ export declare function AssistantChat(props: AssistantChatProps): JSX.Element;
110
+
111
+ declare interface AssistantChatProps {
112
+ userId: string;
113
+ userName: string;
114
+ initialPrompt?: string;
115
+ }
116
+
109
117
  export declare const Avatar: React_2.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React_2.RefAttributes<HTMLSpanElement>, "ref"> & React_2.RefAttributes<HTMLSpanElement>>;
110
118
 
111
119
  export declare const AvatarFallback: React_2.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React_2.RefAttributes<HTMLSpanElement>, "ref"> & React_2.RefAttributes<HTMLSpanElement>>;
@@ -172,6 +180,8 @@ export declare interface ChatLayoutProps {
172
180
  userName: string;
173
181
  inputRef?: React.RefObject<HTMLTextAreaElement | null>;
174
182
  assistantOnly?: boolean;
183
+ className?: string;
184
+ initialPrompt?: string;
175
185
  }
176
186
 
177
187
  export declare const ChatProvider: default_2.FC<{
@@ -401,15 +411,6 @@ export declare interface InputProps extends Omit<React_2.ComponentProps<"input">
401
411
  }
402
412
 
403
413
  declare interface IProps {
404
- appID: string;
405
- readonly: boolean;
406
- userEmail: string;
407
- isSuperAdmin: boolean;
408
- reseller?: Reseller;
409
- withoutReports?: boolean;
410
- }
411
-
412
- declare interface IProps_2 {
413
414
  applicationId: string;
414
415
  sku: string;
415
416
  productDefaultOpportunityNumber?: string;
@@ -422,6 +423,15 @@ declare interface IProps_2 {
422
423
  productCustomAction?: React.ReactNode;
423
424
  }
424
425
 
426
+ declare interface IProps_2 {
427
+ appID: string;
428
+ readonly: boolean;
429
+ userEmail: string;
430
+ isSuperAdmin: boolean;
431
+ reseller?: Reseller;
432
+ withoutReports?: boolean;
433
+ }
434
+
425
435
  export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
426
436
 
427
437
  export declare const Layout: ForwardRefExoticComponent<LayoutProps & RefAttributes<HTMLInputElement>>;
@@ -595,7 +605,7 @@ declare interface ProductInventoryGridProps {
595
605
  showBinLocation?: boolean;
596
606
  }
597
607
 
598
- export declare function ProductOverviewPage({ applicationId, sku, productDefaultOpportunityNumber, productOnAddToCart, productAddingToCart, productShopifyHostname, productCustomAction }: IProps_2): JSX.Element;
608
+ export declare function ProductOverviewPage({ applicationId, sku, productDefaultOpportunityNumber, productOnAddToCart, productAddingToCart, productShopifyHostname, productCustomAction }: IProps): JSX.Element;
599
609
 
600
610
  export declare const Progress: React_2.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
601
611
 
@@ -611,16 +621,18 @@ declare interface ResellerBillingOverviewCardProps {
611
621
  loading?: boolean;
612
622
  }
613
623
 
614
- export declare function ResellerCard({ reseller, link, actions, loading, }: ResellerCardProps): JSX.Element;
624
+ export declare function ResellerCard({ reseller, link, linkNewTab, actions, mainAction, loading, }: ResellerCardProps): JSX.Element;
615
625
 
616
626
  export declare interface ResellerCardProps {
617
627
  reseller?: Reseller;
618
628
  link?: string;
629
+ linkNewTab?: boolean;
619
630
  actions?: React.ReactNode;
631
+ mainAction?: React.ReactNode;
620
632
  loading?: boolean;
621
633
  }
622
634
 
623
- export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin, withoutReports }: IProps): JSX.Element;
635
+ export declare function ResellerOverview({ appID, reseller, readonly, userEmail, isSuperAdmin, withoutReports }: IProps_2): JSX.Element;
624
636
 
625
637
  export declare function ResellerQualificationsCard({ qualifications, loading }: ResellerQualificationsCardProps): JSX.Element;
626
638