@devtable/dashboard 14.50.5 → 14.50.6
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/contexts/panel-context.d.ts +3 -3
- package/dist/dashboard.es.js +202 -200
- package/dist/dashboard.umd.js +4 -4
- package/dist/stats.html +1 -1
- package/dist/types/dashboard.d.ts +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export declare const PanelContextProvider: React.Provider<{
|
|
|
8
8
|
loading: boolean;
|
|
9
9
|
errors: string[];
|
|
10
10
|
downloadPanelScreenshot: () => void;
|
|
11
|
-
|
|
11
|
+
getEchartsOptions: () => EChartsOption | null;
|
|
12
12
|
setEchartsOptions: (v: EChartsOption | null) => void;
|
|
13
13
|
}>;
|
|
14
14
|
export declare const useRenderPanelContext: () => {
|
|
@@ -15185,7 +15185,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
15185
15185
|
loading: boolean;
|
|
15186
15186
|
errors: string[];
|
|
15187
15187
|
downloadPanelScreenshot: () => {};
|
|
15188
|
-
|
|
15188
|
+
getEchartsOptions: () => EChartsOption | null;
|
|
15189
15189
|
setEchartsOptions: (v: EChartsOption | null) => {};
|
|
15190
15190
|
};
|
|
15191
15191
|
export declare const useEditPanelContext: () => {
|
|
@@ -30438,7 +30438,7 @@ export declare const useEditPanelContext: () => {
|
|
|
30438
30438
|
loading: boolean;
|
|
30439
30439
|
errors: string[];
|
|
30440
30440
|
downloadPanelScreenshot: () => {};
|
|
30441
|
-
|
|
30441
|
+
getEchartsOptions: () => EChartsOption | null;
|
|
30442
30442
|
setEchartsOptions: (v: EChartsOption | null) => {};
|
|
30443
30443
|
};
|
|
30444
30444
|
export declare const useIsInRenderPanelContext: () => boolean;
|