@devtable/dashboard 10.40.0 → 10.41.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 +66 -6
- package/dist/components/plugins/plugin-context.d.ts +66 -6
- package/dist/components/plugins/viz-manager/components.d.ts +1 -3
- package/dist/contexts/panel-context.d.ts +132 -12
- package/dist/dashboard-editor/model/panels/panel.d.ts +29 -3
- package/dist/dashboard-editor/model/panels/panels.d.ts +274 -25
- package/dist/dashboard-editor/ui/settings/content/data-preview/index.d.ts +2 -1
- package/dist/dashboard-editor/ui/settings/content/edit-panel/panel-config/name.d.ts +3 -0
- package/dist/dashboard.es.js +1604 -1572
- package/dist/dashboard.umd.js +61 -61
- package/dist/model/meta-model/dashboard/content/panel/index.d.ts +1 -0
- package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +29 -3
- package/dist/model/meta-model/dashboard/content/panel/title.d.ts +9 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +29 -3
- package/dist/model/render-model/dashboard/content/panels/panels.d.ts +245 -22
- package/dist/stats.html +1 -1
- package/dist/types/dashboard.d.ts +4 -1
- package/dist/types/plugin/index.d.ts +0 -9
- package/package.json +1 -1
|
@@ -65,15 +65,7 @@ export interface VizContext {
|
|
|
65
65
|
data: TPanelData;
|
|
66
66
|
vizManager: IVizManager;
|
|
67
67
|
}
|
|
68
|
-
declare type Setter<T> = (val: T) => void;
|
|
69
|
-
export interface IPanelInfoEditor {
|
|
70
|
-
setTitle: Setter<string>;
|
|
71
|
-
setDescription: Setter<string>;
|
|
72
|
-
addQueryID: Setter<string>;
|
|
73
|
-
removeQueryID: Setter<string>;
|
|
74
|
-
}
|
|
75
68
|
export interface VizConfigContext extends VizContext {
|
|
76
|
-
panelInfoEditor: IPanelInfoEditor;
|
|
77
69
|
}
|
|
78
70
|
export interface VizViewContext extends VizContext {
|
|
79
71
|
viewport: {
|
|
@@ -219,4 +211,3 @@ export interface IColorInterpolationConfig {
|
|
|
219
211
|
steps: IValueStep[];
|
|
220
212
|
interpolation: string;
|
|
221
213
|
}
|
|
222
|
-
export {};
|