@devtable/dashboard 13.24.0 → 13.25.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/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +2 -0
- package/dist/components/plugins/plugin-context.d.ts +4 -8
- package/dist/components/widgets/rich-text-editor/readonly-rich-text-editor.d.ts +4 -4
- package/dist/contexts/panel-context.d.ts +4 -0
- package/dist/dashboard-editor/model/panels/panel.d.ts +1 -0
- package/dist/dashboard.es.js +107 -106
- package/dist/dashboard.umd.js +51 -51
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +2 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { Instance, SnapshotIn } from 'mobx-state-tree';
|
|
3
3
|
import { ITemplateVariable } from '../../../../../utils';
|
|
4
4
|
export type VariableValueMap = Record<string, string | number>;
|
|
5
|
+
export type VariableAggValueMap = Record<string, string | number>;
|
|
5
6
|
export type VariableStyleMap = Record<string, {
|
|
6
7
|
color: string;
|
|
7
8
|
'font-size': string;
|
|
@@ -2899,6 +2900,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2899
2900
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
2900
2901
|
readonly data: TPanelData;
|
|
2901
2902
|
readonly variableStrings: Record<string, import('./react').ReactNode>;
|
|
2903
|
+
readonly variableAggValueMap: VariableAggValueMap;
|
|
2902
2904
|
readonly variableValueMap: VariableValueMap;
|
|
2903
2905
|
readonly variableStyleMap: VariableStyleMap;
|
|
2904
2906
|
readonly dataLoading: boolean;
|