@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.
- package/dist/components/panel/use-config-viz-instance-service.d.ts +1 -1
- package/dist/components/plugins/built-in-plugin.d.ts +2 -0
- package/dist/components/plugins/editor-components/color-interpolation-select/index.d.ts +1 -1
- package/dist/components/plugins/plugin-context.d.ts +1 -3611
- package/dist/components/plugins/plugin-data-migrator/plugin-data-migrator.d.ts +3 -3
- package/dist/components/plugins/plugin-data-migrator/version-based-migrator.d.ts +2 -2
- package/dist/components/plugins/service/use-top-level-services.d.ts +1 -1
- package/dist/components/plugins/tokens.d.ts +3609 -0
- package/dist/components/plugins/viz-components/cartesian/migrators/index.d.ts +1 -1
- package/dist/components/plugins/viz-components/regression-chart/migrators/index.d.ts +1 -1
- package/dist/components/plugins/viz-components/table/render/use-get-cell-context.d.ts +1 -1
- package/dist/components/plugins/viz-components/table/table-cell-context.d.ts +1 -1
- package/dist/components/plugins/viz-components/viz-instance-api.d.ts +1 -1
- package/dist/components/plugins/viz-list.d.ts +6 -0
- package/dist/contexts/panel-context.d.ts +200 -200
- package/dist/dashboard-editor/model/datasources/datasource.d.ts +2 -2
- package/dist/dashboard-editor/model/datasources/index.d.ts +10 -10
- package/dist/dashboard-editor/model/datasources/mm-info/metric-detail.d.ts +2 -2
- package/dist/dashboard-editor/model/datasources/mm-info/mm-info.d.ts +2 -2
- package/dist/dashboard-editor/model/editor/index.d.ts +1 -1
- package/dist/dashboard-editor/model/filters/filter-model.d.ts +22 -22
- package/dist/dashboard-editor/model/filters/index.d.ts +198 -198
- package/dist/dashboard-editor/model/layouts/layouts.d.ts +1 -1
- package/dist/dashboard-editor/model/panels/panel.d.ts +42 -42
- package/dist/dashboard-editor/model/panels/panels.d.ts +397 -397
- package/dist/dashboard-editor/model/queries/queries.d.ts +2314 -2314
- package/dist/dashboard-editor/model/queries/query.d.ts +36 -36
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/model.d.ts +33 -33
- package/dist/dashboard.es.js +4240 -4263
- package/dist/dashboard.umd.js +68 -68
- package/dist/index.d.ts +15 -3
- package/dist/interactions/components/interaction-settings.d.ts +1 -1
- package/dist/interactions/hooks/use-current-interaction-manager.d.ts +1 -1
- package/dist/interactions/operation/operation-manager-impl.d.ts +2 -2
- package/dist/interactions/operation/operations/index.d.ts +1 -1
- package/dist/interactions/trigger/constant.d.ts +1 -0
- package/dist/interactions/trigger/index.d.ts +1 -0
- package/dist/interactions/trigger/trigger-manager-impl.d.ts +0 -1
- package/dist/model/meta-model/dashboard/content/filter/filter.d.ts +22 -22
- package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +29 -29
- package/dist/model/meta-model/dashboard/content/panel/variable.d.ts +16 -16
- package/dist/model/meta-model/dashboard/content/query/db-query.d.ts +3 -3
- package/dist/model/meta-model/dashboard/content/query/query.d.ts +35 -35
- package/dist/model/render-model/dashboard/content/filters/filters.d.ts +154 -154
- package/dist/model/render-model/dashboard/content/layouts/layouts.d.ts +1 -1
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +42 -42
- package/dist/model/render-model/dashboard/content/panels/panels.d.ts +355 -355
- package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +35 -35
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +1452 -1452
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +36 -36
- package/dist/stats.html +1 -1
- package/dist/types/index.d.ts +0 -1
- package/dist/types/plugin/index.d.ts +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
- package/dist/components/plugins/index.d.ts +0 -10
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { AnyObject } from '../../../types';
|
|
1
|
+
import { type PanelModelInstance } from '../../../dashboard-editor/model/panels';
|
|
2
|
+
import { TRIGGERS_KEY } from '../../../interactions/trigger/constant';
|
|
3
|
+
import { type AnyObject } from '../../../types';
|
|
4
4
|
export interface IMigrationEnv {
|
|
5
5
|
panelModel: PanelModelInstance;
|
|
6
6
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IConfigMigrationContext, IConfigMigrationExecContext, IPanelScopeConfigMigrator } from '../../../types/plugin';
|
|
2
|
-
import { IMigration, PluginDataMigrator } from './plugin-data-migrator';
|
|
1
|
+
import type { IConfigMigrationContext, IConfigMigrationExecContext, IPanelScopeConfigMigrator } from '../../../types/plugin';
|
|
2
|
+
import { type IMigration, PluginDataMigrator } from './plugin-data-migrator';
|
|
3
3
|
/**
|
|
4
4
|
* Instance version is read from the `instanceData.version` field.
|
|
5
5
|
* Current version is read from the `VERSION` field.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { IPluginContextProps } from '../../../components/plugins';
|
|
1
|
+
import { IPluginContextProps } from '../../../components/plugins/plugin-context';
|
|
2
2
|
import { IServiceLocator } from '../../../components/plugins/service/service-locator';
|
|
3
3
|
export declare function useTopLevelServices(pluginContext: IPluginContextProps): (services: IServiceLocator) => IServiceLocator;
|