@devtable/dashboard 13.17.3 → 13.18.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/common-echarts-fields/visual-map/types.d.ts +18 -5
- package/dist/components/plugins/common-echarts-fields/visual-map/utils.d.ts +7 -35
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/continuous/gradient-editor.d.ts +7 -0
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/continuous/index.d.ts +7 -0
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/{skip-range-editor.d.ts → continuous/skip-range-editor.d.ts} +1 -1
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/index.d.ts +7 -0
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/interval-editor.d.ts +8 -0
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/piece-editor.d.ts +9 -0
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/pieces-editor.d.ts +7 -0
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/preview-visual-map.d.ts +1 -2
- package/dist/components/plugins/plugin-context.d.ts +2 -0
- package/dist/components/plugins/viz-components/heatmap/type.d.ts +1 -1
- 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 +6198 -5884
- package/dist/dashboard.umd.js +70 -70
- package/dist/i18n/en.d.ts +14 -0
- package/dist/i18n/zh.d.ts +14 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +1 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
- package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/gradient-editor.d.ts +0 -6
- /package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/{preview-gradient-and-apply-palette.d.ts → continuous/preview-gradient-and-apply-palette.d.ts} +0 -0
package/dist/i18n/en.d.ts
CHANGED
|
@@ -599,6 +599,19 @@ export declare const en: {
|
|
|
599
599
|
};
|
|
600
600
|
visual_map: {
|
|
601
601
|
label: string;
|
|
602
|
+
continuous: {
|
|
603
|
+
label: string;
|
|
604
|
+
};
|
|
605
|
+
piecewise: {
|
|
606
|
+
label: string;
|
|
607
|
+
mode: {
|
|
608
|
+
pieces: string;
|
|
609
|
+
categories: string;
|
|
610
|
+
};
|
|
611
|
+
add_a_piece: string;
|
|
612
|
+
};
|
|
613
|
+
bar_width: string;
|
|
614
|
+
bar_height: string;
|
|
602
615
|
item_width: string;
|
|
603
616
|
item_height: string;
|
|
604
617
|
calculable: string;
|
|
@@ -608,6 +621,7 @@ export declare const en: {
|
|
|
608
621
|
max_text: string;
|
|
609
622
|
use_palette_x: string;
|
|
610
623
|
built_in_palettes: string;
|
|
624
|
+
precision: string;
|
|
611
625
|
skip_range: {
|
|
612
626
|
lt_min: string;
|
|
613
627
|
min: string;
|
package/dist/i18n/zh.d.ts
CHANGED
|
@@ -599,6 +599,19 @@ export declare const zh: {
|
|
|
599
599
|
};
|
|
600
600
|
visual_map: {
|
|
601
601
|
label: string;
|
|
602
|
+
continuous: {
|
|
603
|
+
label: string;
|
|
604
|
+
};
|
|
605
|
+
piecewise: {
|
|
606
|
+
label: string;
|
|
607
|
+
mode: {
|
|
608
|
+
pieces: string;
|
|
609
|
+
categories: string;
|
|
610
|
+
};
|
|
611
|
+
add_a_piece: string;
|
|
612
|
+
};
|
|
613
|
+
bar_width: string;
|
|
614
|
+
bar_height: string;
|
|
602
615
|
item_width: string;
|
|
603
616
|
item_height: string;
|
|
604
617
|
calculable: string;
|
|
@@ -608,6 +621,7 @@ export declare const zh: {
|
|
|
608
621
|
max_text: string;
|
|
609
622
|
use_palette_x: string;
|
|
610
623
|
built_in_palettes: string;
|
|
624
|
+
precision: string;
|
|
611
625
|
skip_range: {
|
|
612
626
|
lt_min: string;
|
|
613
627
|
min: string;
|
|
@@ -2891,6 +2891,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2891
2891
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
2892
2892
|
readonly data: TPanelData;
|
|
2893
2893
|
readonly variableStrings: Record<string, import('./react').ReactNode>;
|
|
2894
|
+
readonly variableValueMap: Record<string, string | number>;
|
|
2894
2895
|
readonly dataLoading: boolean;
|
|
2895
2896
|
readonly queryStateMessages: string;
|
|
2896
2897
|
readonly queryErrors: any[];
|