@devtable/dashboard 13.17.3 → 13.19.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.
Files changed (37) hide show
  1. package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +2 -0
  2. package/dist/components/plugins/common-echarts-fields/number-or-dynamic-value/get-number-or-dynamic-value.d.ts +1 -1
  3. package/dist/components/plugins/common-echarts-fields/visual-map/types.d.ts +18 -5
  4. package/dist/components/plugins/common-echarts-fields/visual-map/utils.d.ts +7 -35
  5. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/continuous/gradient-editor.d.ts +7 -0
  6. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/continuous/index.d.ts +7 -0
  7. 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
  8. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/index.d.ts +7 -0
  9. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/interval-editor.d.ts +8 -0
  10. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/piece-editor.d.ts +9 -0
  11. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/piecewise/pieces-editor.d.ts +7 -0
  12. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/preview-visual-map.d.ts +1 -2
  13. package/dist/components/plugins/plugin-context.d.ts +2 -0
  14. package/dist/components/plugins/viz-components/calendar-heatmap/migrators/index.d.ts +5 -0
  15. package/dist/components/plugins/viz-components/calendar-heatmap/option/index.d.ts +56 -1
  16. package/dist/components/plugins/viz-components/calendar-heatmap/option/series.d.ts +3 -4
  17. package/dist/components/plugins/viz-components/calendar-heatmap/type.d.ts +3 -4
  18. package/dist/components/plugins/viz-components/heatmap/type.d.ts +1 -1
  19. package/dist/components/plugins/viz-components/merico-heatmap/migrators/index.d.ts +2 -0
  20. package/dist/components/plugins/viz-components/merico-heatmap/render/option/series.d.ts +2 -2
  21. package/dist/components/plugins/viz-components/merico-heatmap/render/option/x-axis.d.ts +2 -2
  22. package/dist/components/plugins/viz-components/merico-heatmap/render/option/y-axis.d.ts +2 -2
  23. package/dist/components/plugins/viz-components/merico-heatmap/type.d.ts +2 -3
  24. package/dist/contexts/panel-context.d.ts +4 -0
  25. package/dist/dashboard-editor/model/panels/panel.d.ts +1 -0
  26. package/dist/dashboard.es.js +6656 -6327
  27. package/dist/dashboard.umd.js +81 -81
  28. package/dist/i18n/en.d.ts +16 -0
  29. package/dist/i18n/zh.d.ts +16 -0
  30. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +1 -0
  31. package/dist/stats.html +1 -1
  32. package/dist/version.json +2 -2
  33. package/package.json +1 -1
  34. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/gradient-editor.d.ts +0 -6
  35. package/dist/components/plugins/viz-components/calendar-heatmap/option/visual-map.d.ts +0 -10
  36. package/dist/components/plugins/viz-components/merico-heatmap/render/option/visual-map.d.ts +0 -10
  37. /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,21 @@ 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
+ interval: string;
613
+ piece_label: string;
614
+ };
615
+ bar_width: string;
616
+ bar_height: string;
602
617
  item_width: string;
603
618
  item_height: string;
604
619
  calculable: string;
@@ -608,6 +623,7 @@ export declare const en: {
608
623
  max_text: string;
609
624
  use_palette_x: string;
610
625
  built_in_palettes: string;
626
+ precision: string;
611
627
  skip_range: {
612
628
  lt_min: string;
613
629
  min: string;
package/dist/i18n/zh.d.ts CHANGED
@@ -599,6 +599,21 @@ 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
+ interval: string;
613
+ piece_label: string;
614
+ };
615
+ bar_width: string;
616
+ bar_height: string;
602
617
  item_width: string;
603
618
  item_height: string;
604
619
  calculable: string;
@@ -608,6 +623,7 @@ export declare const zh: {
608
623
  max_text: string;
609
624
  use_palette_x: string;
610
625
  built_in_palettes: string;
626
+ precision: string;
611
627
  skip_range: {
612
628
  lt_min: string;
613
629
  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[];