randmarcomps 1.85.0 → 1.86.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;