randmarcomps 1.151.0 → 1.153.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/randmarcomps.d.ts +18 -0
- package/dist/randmarcomps.js +34962 -28934
- package/dist/randmarcomps.umd.cjs +203 -184
- package/package.json +2 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -41,6 +41,22 @@ declare interface ActiveOrdersCardProps {
|
|
|
41
41
|
loading?: boolean;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
+
export declare function AiGeneratedContent(props: AiGeneratedContentProps): JSX.Element;
|
|
45
|
+
|
|
46
|
+
export declare interface AiGeneratedContentProps {
|
|
47
|
+
prompt: string;
|
|
48
|
+
data: any;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
declare interface ApiKeyContextType {
|
|
52
|
+
apiKey: string | null;
|
|
53
|
+
setApiKey: (key: string) => void;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export declare const ApiKeyProvider: ({ children }: {
|
|
57
|
+
children: ReactNode;
|
|
58
|
+
}) => JSX.Element;
|
|
59
|
+
|
|
44
60
|
export declare function AreaChart({ data, units, unitsPosition, width, height, className }: AreaChartProps): JSX.Element;
|
|
45
61
|
|
|
46
62
|
export declare interface AreaChartProps {
|
|
@@ -575,6 +591,8 @@ export declare interface TopbarProps {
|
|
|
575
591
|
searchPlaceholder?: string;
|
|
576
592
|
}
|
|
577
593
|
|
|
594
|
+
export declare const useApiKey: () => ApiKeyContextType;
|
|
595
|
+
|
|
578
596
|
export declare function useIsMobile(): boolean;
|
|
579
597
|
|
|
580
598
|
export declare function useSidebar(): SidebarContext;
|