@devtable/dashboard 14.60.11-2 → 14.60.11

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 (56) hide show
  1. package/dist/components/panel/use-config-viz-instance-service.d.ts +1 -1
  2. package/dist/components/plugins/built-in-plugin.d.ts +2 -0
  3. package/dist/components/plugins/editor-components/color-interpolation-select/index.d.ts +1 -1
  4. package/dist/components/plugins/plugin-context.d.ts +1 -3611
  5. package/dist/components/plugins/plugin-data-migrator/plugin-data-migrator.d.ts +3 -3
  6. package/dist/components/plugins/plugin-data-migrator/version-based-migrator.d.ts +2 -2
  7. package/dist/components/plugins/service/use-top-level-services.d.ts +1 -1
  8. package/dist/components/plugins/tokens.d.ts +3609 -0
  9. package/dist/components/plugins/viz-components/cartesian/migrators/index.d.ts +1 -1
  10. package/dist/components/plugins/viz-components/regression-chart/migrators/index.d.ts +1 -1
  11. package/dist/components/plugins/viz-components/table/render/use-get-cell-context.d.ts +1 -1
  12. package/dist/components/plugins/viz-components/table/table-cell-context.d.ts +1 -1
  13. package/dist/components/plugins/viz-components/viz-instance-api.d.ts +1 -1
  14. package/dist/components/plugins/viz-list.d.ts +6 -0
  15. package/dist/contexts/panel-context.d.ts +200 -200
  16. package/dist/dashboard-editor/model/datasources/datasource.d.ts +2 -2
  17. package/dist/dashboard-editor/model/datasources/index.d.ts +10 -10
  18. package/dist/dashboard-editor/model/datasources/mm-info/metric-detail.d.ts +2 -2
  19. package/dist/dashboard-editor/model/datasources/mm-info/mm-info.d.ts +2 -2
  20. package/dist/dashboard-editor/model/editor/index.d.ts +1 -1
  21. package/dist/dashboard-editor/model/filters/filter-model.d.ts +22 -22
  22. package/dist/dashboard-editor/model/filters/index.d.ts +198 -198
  23. package/dist/dashboard-editor/model/layouts/layouts.d.ts +1 -1
  24. package/dist/dashboard-editor/model/panels/panel.d.ts +42 -42
  25. package/dist/dashboard-editor/model/panels/panels.d.ts +397 -397
  26. package/dist/dashboard-editor/model/queries/queries.d.ts +2314 -2314
  27. package/dist/dashboard-editor/model/queries/query.d.ts +36 -36
  28. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/model.d.ts +33 -33
  29. package/dist/dashboard.es.js +4240 -4263
  30. package/dist/dashboard.umd.js +68 -68
  31. package/dist/index.d.ts +15 -3
  32. package/dist/interactions/components/interaction-settings.d.ts +1 -1
  33. package/dist/interactions/hooks/use-current-interaction-manager.d.ts +1 -1
  34. package/dist/interactions/operation/operation-manager-impl.d.ts +2 -2
  35. package/dist/interactions/operation/operations/index.d.ts +1 -1
  36. package/dist/interactions/trigger/constant.d.ts +1 -0
  37. package/dist/interactions/trigger/index.d.ts +1 -0
  38. package/dist/interactions/trigger/trigger-manager-impl.d.ts +0 -1
  39. package/dist/model/meta-model/dashboard/content/filter/filter.d.ts +22 -22
  40. package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +29 -29
  41. package/dist/model/meta-model/dashboard/content/panel/variable.d.ts +16 -16
  42. package/dist/model/meta-model/dashboard/content/query/db-query.d.ts +3 -3
  43. package/dist/model/meta-model/dashboard/content/query/query.d.ts +35 -35
  44. package/dist/model/render-model/dashboard/content/filters/filters.d.ts +154 -154
  45. package/dist/model/render-model/dashboard/content/layouts/layouts.d.ts +1 -1
  46. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +42 -42
  47. package/dist/model/render-model/dashboard/content/panels/panels.d.ts +355 -355
  48. package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +35 -35
  49. package/dist/model/render-model/dashboard/content/queries/queries.d.ts +1452 -1452
  50. package/dist/model/render-model/dashboard/content/queries/query.d.ts +36 -36
  51. package/dist/stats.html +1 -1
  52. package/dist/types/index.d.ts +0 -1
  53. package/dist/types/plugin/index.d.ts +1 -1
  54. package/dist/version.json +2 -2
  55. package/package.json +1 -1
  56. package/dist/components/plugins/index.d.ts +0 -10
@@ -1,4 +1,4 @@
1
- import { IMigrationEnv } from '../../../../../components/plugins';
1
+ import { IMigrationEnv } from '../../../../../components/plugins/plugin-data-migrator';
2
2
  import { PanelModelInstance } from '../../../../../dashboard-editor';
3
3
  import { AnyObject } from '../../../../../types';
4
4
  import { ITemplateVariable } from '../../../../../utils';
@@ -1,4 +1,4 @@
1
- import { IMigrationEnv } from '../../../../../components/plugins';
1
+ import { IMigrationEnv } from '../../../../../components/plugins/plugin-data-migrator';
2
2
  import { IRegressionChartConf } from '../type';
3
3
  export declare function v2(legacyConf: $TSFixMe): IRegressionChartConf;
4
4
  export declare function v3(legacyConf: any, { panelModel }: IMigrationEnv): IRegressionChartConf;
@@ -1,7 +1,7 @@
1
1
  import { Cell } from '@tanstack/react-table';
2
2
  import { AnyObject } from '../../../../../types';
3
3
  import { VizInstance } from '../../../../../types/plugin';
4
- import { IVizManager } from '../../..';
4
+ import { IVizManager } from '../../../viz-manager';
5
5
  import { TableCellContext } from '../table-cell-context';
6
6
  export declare const useGetCellContext: (context: {
7
7
  vizManager: IVizManager;
@@ -1,7 +1,7 @@
1
1
  import { Cell } from '@tanstack/react-table';
2
2
  import { AnyObject } from '../../../../types';
3
3
  import { ITriggerSnapshot, IVizInteractionManager } from '../../../../types/plugin';
4
- import { IColorManager } from '../..';
4
+ import { IColorManager } from '../../color-manager';
5
5
  import { IColumnConf, ITableCellContext, TriggerConfigType } from './type';
6
6
  export declare class TableCellContext implements ITableCellContext {
7
7
  private getColIndex;
@@ -1,4 +1,4 @@
1
- import { IPanelInfo } from '../../../components/plugins';
1
+ import { IPanelInfo } from '../../../components/plugins/viz-manager';
2
2
  import { VizInstance } from '../../../types/plugin';
3
3
  /**
4
4
  * Emit viz rendered event
@@ -0,0 +1,6 @@
1
+ export declare const vizList: import("../..").VizComponent[];
2
+ export type VizNameKeys = {
3
+ displayName: string;
4
+ displayGroup: string;
5
+ };
6
+ export declare const vizNameToKeys: Record<string, VizNameKeys>;