@devtable/dashboard 13.2.0 → 13.3.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 (20) hide show
  1. package/dist/components/plugins/common-echarts-fields/visual-map/index.d.ts +3 -0
  2. package/dist/components/plugins/common-echarts-fields/visual-map/types.d.ts +82 -0
  3. package/dist/components/plugins/common-echarts-fields/visual-map/utils.d.ts +48 -0
  4. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/gradient-editor.d.ts +6 -0
  5. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/index.d.ts +7 -0
  6. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/preview-gradient-and-apply-palette.d.ts +6 -0
  7. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/preview-visual-map.d.ts +5 -0
  8. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/skip-range-editor.d.ts +7 -0
  9. package/dist/components/plugins/common-echarts-fields/visual-map/visual-map-editor/types.d.ts +4 -0
  10. package/dist/components/plugins/viz-components/heatmap/migrators/index.d.ts +6 -0
  11. package/dist/components/plugins/viz-components/heatmap/type.d.ts +2 -3
  12. package/dist/components/plugins/viz-manager/components.d.ts +2 -2
  13. package/dist/dashboard.es.js +5622 -5278
  14. package/dist/dashboard.umd.js +87 -87
  15. package/dist/i18n/en.d.ts +22 -2
  16. package/dist/i18n/zh.d.ts +22 -2
  17. package/dist/model/render-model/dashboard/content/queries/query.d.ts +9 -0
  18. package/dist/stats.html +1 -1
  19. package/package.json +1 -1
  20. package/dist/components/plugins/viz-components/heatmap/option/visual-map.d.ts +0 -10
package/dist/i18n/en.d.ts CHANGED
@@ -477,6 +477,7 @@ export declare const en: {
477
477
  };
478
478
  transform: {
479
479
  label: string;
480
+ full_label: string;
480
481
  data_source: string;
481
482
  guide: {
482
483
  pick_queries: string;
@@ -588,6 +589,25 @@ export declare const en: {
588
589
  inside_bottom_right: string;
589
590
  outside: string;
590
591
  };
592
+ visual_map: {
593
+ label: string;
594
+ item_width: string;
595
+ item_height: string;
596
+ calculable: string;
597
+ min_value: string;
598
+ max_value: string;
599
+ min_text: string;
600
+ max_text: string;
601
+ use_palette_x: string;
602
+ built_in_palettes: string;
603
+ skip_range: {
604
+ lt_min: string;
605
+ min: string;
606
+ max: string;
607
+ gt_max: string;
608
+ follow_visual_map: string;
609
+ };
610
+ };
591
611
  number_or_dynamic_value: {
592
612
  type: {
593
613
  static: string;
@@ -790,6 +810,8 @@ export declare const en: {
790
810
  pick_a_theme_color: string;
791
811
  background_color: string;
792
812
  text_color: string;
813
+ click_to_add_a_color: string;
814
+ color_gradient: string;
793
815
  };
794
816
  behavior: {
795
817
  label: string;
@@ -798,8 +820,6 @@ export declare const en: {
798
820
  heatmap: {
799
821
  heatblock: {
800
822
  label: string;
801
- min_value: string;
802
- max_value: string;
803
823
  show_label: string;
804
824
  };
805
825
  };
package/dist/i18n/zh.d.ts CHANGED
@@ -477,6 +477,7 @@ export declare const zh: {
477
477
  };
478
478
  transform: {
479
479
  label: string;
480
+ full_label: string;
480
481
  data_source: string;
481
482
  guide: {
482
483
  pick_queries: string;
@@ -588,6 +589,25 @@ export declare const zh: {
588
589
  inside_bottom_right: string;
589
590
  outside: string;
590
591
  };
592
+ visual_map: {
593
+ label: string;
594
+ item_width: string;
595
+ item_height: string;
596
+ calculable: string;
597
+ min_value: string;
598
+ max_value: string;
599
+ min_text: string;
600
+ max_text: string;
601
+ use_palette_x: string;
602
+ built_in_palettes: string;
603
+ skip_range: {
604
+ lt_min: string;
605
+ min: string;
606
+ max: string;
607
+ gt_max: string;
608
+ follow_visual_map: string;
609
+ };
610
+ };
591
611
  number_or_dynamic_value: {
592
612
  type: {
593
613
  static: string;
@@ -790,6 +810,8 @@ export declare const zh: {
790
810
  pick_a_theme_color: string;
791
811
  background_color: string;
792
812
  text_color: string;
813
+ click_to_add_a_color: string;
814
+ color_gradient: string;
793
815
  };
794
816
  behavior: {
795
817
  label: string;
@@ -798,8 +820,6 @@ export declare const zh: {
798
820
  heatmap: {
799
821
  heatblock: {
800
822
  label: string;
801
- min_value: string;
802
- max_value: string;
803
823
  show_label: string;
804
824
  };
805
825
  };
@@ -84,6 +84,7 @@ export type QueryRenderModelInstance = Instance<typeof QueryRenderModel>;
84
84
  export type QueryRenderModelSnapshotIn = SnapshotIn<QueryRenderModelInstance>;
85
85
  export type QueryUsageType = {
86
86
  type: 'filter';
87
+ type_label: 'filter.label';
87
88
  queryID: string;
88
89
  id: string;
89
90
  label: string;
@@ -93,6 +94,7 @@ export type QueryUsageType = {
93
94
  }[];
94
95
  } | {
95
96
  type: 'panel';
97
+ type_label: 'panel.label';
96
98
  queryID: string;
97
99
  id: string;
98
100
  label: string;
@@ -100,4 +102,11 @@ export type QueryUsageType = {
100
102
  id: string;
101
103
  label: string;
102
104
  }[];
105
+ } | {
106
+ type: 'transform-query';
107
+ type_label: 'query.transform.full_label';
108
+ queryID: string;
109
+ id: string;
110
+ label: string;
111
+ views: [];
103
112
  };