randmarcomps 1.85.0 → 1.87.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.
@@ -20,6 +20,17 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
20
20
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
21
21
  import { VariantProps } from 'class-variance-authority';
22
22
 
23
+ export declare function AreaChart({ data, units, unitsPosition, width, height, className }: AreaChartProps): JSX.Element;
24
+
25
+ export declare interface AreaChartProps {
26
+ data: DataPoint[];
27
+ units?: string;
28
+ unitsPosition?: "left" | "right";
29
+ width?: string | number;
30
+ height?: string | number;
31
+ className?: string;
32
+ }
33
+
23
34
  export declare function AvatarFooter({ onClick, publicName, applicationName, partnerId }: AvatarFooterProps): JSX.Element;
24
35
 
25
36
  export declare interface AvatarFooterProps {
@@ -79,6 +90,10 @@ export declare interface CountryFlagProps {
79
90
  className?: string;
80
91
  }
81
92
 
93
+ export declare interface DataPoint {
94
+ [key: string]: string | number;
95
+ }
96
+
82
97
  export declare const Dialog: {
83
98
  ({ modal, ...props }: DialogPrimitive.DialogProps): JSX.Element;
84
99
  displayName: string | undefined;
@@ -212,6 +227,14 @@ declare interface PartnerCardProps {
212
227
  loading?: boolean;
213
228
  }
214
229
 
230
+ export declare function Preloader({ text, color, className }: PreloaderProps): JSX.Element;
231
+
232
+ export declare interface PreloaderProps {
233
+ text?: string;
234
+ color?: "white" | "black";
235
+ className?: string;
236
+ }
237
+
215
238
  export declare function ProductCard({ item, addToCart, syncToShopify, customAction, defaultOpportunityNumber, viewProductAction, addToCartAction, isAddToCartActionLoading, syncToShopifyAction, isSyncToShopifyActionLoading, }: ProductCardProps): JSX.Element;
216
239
 
217
240
  export declare interface ProductCardProps {