@devtable/dashboard 14.52.0 → 14.53.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.
- package/dist/components/panel/settings/common/data-field-selector.d.ts +4 -0
- package/dist/components/plugins/plugin-context.d.ts +4 -4
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/index.d.ts +1 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/add-a-row.d.ts +6 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/index.d.ts +1 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/palette.d.ts +5 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/row-editor.d.ts +13 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/sections-editor.d.ts +10 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/select-palette.d.ts +7 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/editor/viz-merico-linear-gauge-editor.d.ts +2 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/index.d.ts +2 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/migrator/index.d.ts +5 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/render/chart.d.ts +9 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/render/index.d.ts +1 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/render/option.d.ts +11 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/render/viz-merico-linear-gauge.d.ts +2 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/translation.d.ts +2 -0
- package/dist/components/plugins/viz-components/merico-linear-gauge/type.d.ts +14 -0
- package/dist/components/plugins/viz-components/regression-chart/render/toolbox/data-key-selector/data-key-selector.d.ts +1 -0
- package/dist/contexts/panel-context.d.ts +8 -8
- package/dist/dashboard-editor/model/panels/panel.d.ts +2 -2
- package/dist/dashboard.es.js +15276 -14908
- package/dist/dashboard.umd.js +216 -216
- package/dist/i18n/en.d.ts +8 -0
- package/dist/i18n/zh.d.ts +8 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +2 -2
- package/dist/stats.html +1 -1
- package/dist/style.css +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/dist/i18n/en.d.ts
CHANGED
|
@@ -550,6 +550,14 @@ export declare const en: {
|
|
|
550
550
|
preview_data: string;
|
|
551
551
|
empty_data: string;
|
|
552
552
|
requires_data: string;
|
|
553
|
+
data_field: {
|
|
554
|
+
selector: {
|
|
555
|
+
options: {
|
|
556
|
+
unset: string;
|
|
557
|
+
default: string;
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
};
|
|
553
561
|
};
|
|
554
562
|
data_source: {
|
|
555
563
|
label: string;
|
package/dist/i18n/zh.d.ts
CHANGED
|
@@ -550,6 +550,14 @@ export declare const zh: {
|
|
|
550
550
|
preview_data: string;
|
|
551
551
|
empty_data: string;
|
|
552
552
|
requires_data: string;
|
|
553
|
+
data_field: {
|
|
554
|
+
selector: {
|
|
555
|
+
options: {
|
|
556
|
+
unset: string;
|
|
557
|
+
default: string;
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
};
|
|
553
561
|
};
|
|
554
562
|
data_source: {
|
|
555
563
|
label: string;
|
|
@@ -5432,14 +5432,14 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5432
5432
|
group_id: string;
|
|
5433
5433
|
disabled: boolean;
|
|
5434
5434
|
}[];
|
|
5435
|
-
dataFieldOptions(selected: TDataKey, clearable: boolean, queryID?: string): {
|
|
5435
|
+
dataFieldOptions(selected: TDataKey, clearable: boolean, unsetKey: string, queryID?: string): {
|
|
5436
5436
|
label: string;
|
|
5437
5437
|
value: string;
|
|
5438
5438
|
group: string;
|
|
5439
5439
|
group_id: string;
|
|
5440
5440
|
disabled: boolean;
|
|
5441
5441
|
}[];
|
|
5442
|
-
dataFieldOptionGroups(selected: TDataKey, clearable: boolean, queryID?: string): {
|
|
5442
|
+
dataFieldOptionGroups(selected: TDataKey, clearable: boolean, unsetKey: string, queryID?: string): {
|
|
5443
5443
|
group: string;
|
|
5444
5444
|
items: {
|
|
5445
5445
|
label: string;
|