@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/version.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "semver": "13.17.3",
3
- "version": "541bf05664b4bae2cb47fdec833c2921ffcf380e"
2
+ "semver": "13.19.0",
3
+ "version": "89de81a94217082c8d2a1c610dc691dcc80ae952"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "13.17.3",
3
+ "version": "13.19.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -1,6 +0,0 @@
1
- type Props = {
2
- value: string[];
3
- onChange: (v: string[]) => void;
4
- };
5
- export declare const GrandientEditor: ({ value, onChange }: Props) => import('./react/jsx-runtime').JSX.Element;
6
- export {};
@@ -1,10 +0,0 @@
1
- import { ICalendarHeatmapConf } from '../type';
2
- export declare function getVisualMap(conf: ICalendarHeatmapConf, oneYearMode: boolean, variableValueMap: Record<string, string | number>): {
3
- min: any;
4
- max: any;
5
- calculable: boolean;
6
- orient: string;
7
- left: string | number;
8
- top: number;
9
- itemWidth: number;
10
- };
@@ -1,10 +0,0 @@
1
- import { TMericoHeatmapConf } from '../../type';
2
- export declare function getVisualMap(conf: TMericoHeatmapConf, variableValueMap: Record<string, string | number>): {
3
- min: any;
4
- max: any;
5
- calculable: boolean;
6
- orient: string;
7
- left: string;
8
- top: number;
9
- itemWidth: number;
10
- };