@devtable/dashboard 14.28.0 → 14.30.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/plugins/plugin-context.d.ts +24 -0
- package/dist/contexts/panel-context.d.ts +48 -0
- package/dist/dashboard-editor/model/filters/index.d.ts +1 -0
- package/dist/dashboard-editor/model/panels/panel.d.ts +12 -0
- package/dist/dashboard-editor/model/queries/queries.d.ts +26 -0
- package/dist/dashboard-editor/model/queries/query.d.ts +2 -0
- package/dist/dashboard-editor/model/views/index.d.ts +9 -0
- package/dist/dashboard.es.js +2688 -2590
- package/dist/dashboard.umd.js +54 -54
- package/dist/i18n/en.d.ts +5 -0
- package/dist/i18n/zh.d.ts +5 -0
- package/dist/interactions/operation/operations/switch-tab.d.ts +6 -0
- package/dist/model/render-model/dashboard/content/filters/filters.d.ts +2 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +8 -0
- package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +2 -0
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +18 -0
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +2 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/dist/i18n/en.d.ts
CHANGED
package/dist/i18n/zh.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ export declare const FiltersRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
147
147
|
}[];
|
|
148
148
|
readonly valuesString: string;
|
|
149
149
|
readonly filter: any;
|
|
150
|
+
readonly keysToTypes: Record<string, DashboardFilterType>;
|
|
150
151
|
readonly valuesForPayload: Record<string, any>;
|
|
151
152
|
readonly contentModel: any;
|
|
152
153
|
readonly context: any;
|
|
@@ -1144,6 +1145,7 @@ export interface IFiltersRenderModel {
|
|
|
1144
1145
|
readonly json: IFilterJsonType[];
|
|
1145
1146
|
readonly valuesString: string;
|
|
1146
1147
|
readonly filter: unknown;
|
|
1148
|
+
readonly keysToTypes: Record<string, DashboardFilterType>;
|
|
1147
1149
|
readonly valuesForPayload: Record<string, unknown>;
|
|
1148
1150
|
readonly contentModel: IContentRenderModel;
|
|
1149
1151
|
readonly context: ContextRecordType;
|
|
@@ -3455,6 +3455,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3455
3455
|
eq: string;
|
|
3456
3456
|
} | {
|
|
3457
3457
|
in: string[];
|
|
3458
|
+
} | {
|
|
3459
|
+
between: any[] | [number, number];
|
|
3458
3460
|
}>;
|
|
3459
3461
|
groupBys: string[];
|
|
3460
3462
|
timeQuery?: {
|
|
@@ -3792,6 +3794,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3792
3794
|
eq: string;
|
|
3793
3795
|
} | {
|
|
3794
3796
|
in: string[];
|
|
3797
|
+
} | {
|
|
3798
|
+
between: any[] | [number, number];
|
|
3795
3799
|
}>;
|
|
3796
3800
|
groupBys: string[];
|
|
3797
3801
|
timeQuery?: {
|
|
@@ -4862,6 +4866,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4862
4866
|
eq: string;
|
|
4863
4867
|
} | {
|
|
4864
4868
|
in: string[];
|
|
4869
|
+
} | {
|
|
4870
|
+
between: any[] | [number, number];
|
|
4865
4871
|
}>;
|
|
4866
4872
|
groupBys: string[];
|
|
4867
4873
|
timeQuery?: {
|
|
@@ -5199,6 +5205,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5199
5205
|
eq: string;
|
|
5200
5206
|
} | {
|
|
5201
5207
|
in: string[];
|
|
5208
|
+
} | {
|
|
5209
|
+
between: any[] | [number, number];
|
|
5202
5210
|
}>;
|
|
5203
5211
|
groupBys: string[];
|
|
5204
5212
|
timeQuery?: {
|
|
@@ -303,6 +303,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
303
303
|
eq: string;
|
|
304
304
|
} | {
|
|
305
305
|
in: string[];
|
|
306
|
+
} | {
|
|
307
|
+
between: any[] | [number, number];
|
|
306
308
|
}>;
|
|
307
309
|
groupBys: string[];
|
|
308
310
|
timeQuery?: {
|
|
@@ -1376,6 +1378,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1376
1378
|
eq: string;
|
|
1377
1379
|
} | {
|
|
1378
1380
|
in: string[];
|
|
1381
|
+
} | {
|
|
1382
|
+
between: any[] | [number, number];
|
|
1379
1383
|
}>;
|
|
1380
1384
|
groupBys: string[];
|
|
1381
1385
|
timeQuery?: {
|
|
@@ -1713,6 +1717,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1713
1717
|
eq: string;
|
|
1714
1718
|
} | {
|
|
1715
1719
|
in: string[];
|
|
1720
|
+
} | {
|
|
1721
|
+
between: any[] | [number, number];
|
|
1716
1722
|
}>;
|
|
1717
1723
|
groupBys: string[];
|
|
1718
1724
|
timeQuery?: {
|
|
@@ -2783,6 +2789,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2783
2789
|
eq: string;
|
|
2784
2790
|
} | {
|
|
2785
2791
|
in: string[];
|
|
2792
|
+
} | {
|
|
2793
|
+
between: any[] | [number, number];
|
|
2786
2794
|
}>;
|
|
2787
2795
|
groupBys: string[];
|
|
2788
2796
|
timeQuery?: {
|
|
@@ -3120,6 +3128,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3120
3128
|
eq: string;
|
|
3121
3129
|
} | {
|
|
3122
3130
|
in: string[];
|
|
3131
|
+
} | {
|
|
3132
|
+
between: any[] | [number, number];
|
|
3123
3133
|
}>;
|
|
3124
3134
|
groupBys: string[];
|
|
3125
3135
|
timeQuery?: {
|
|
@@ -4238,6 +4248,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4238
4248
|
eq: string;
|
|
4239
4249
|
} | {
|
|
4240
4250
|
in: string[];
|
|
4251
|
+
} | {
|
|
4252
|
+
between: any[] | [number, number];
|
|
4241
4253
|
}>;
|
|
4242
4254
|
groupBys: string[];
|
|
4243
4255
|
timeQuery?: {
|
|
@@ -4575,6 +4587,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4575
4587
|
eq: string;
|
|
4576
4588
|
} | {
|
|
4577
4589
|
in: string[];
|
|
4590
|
+
} | {
|
|
4591
|
+
between: any[] | [number, number];
|
|
4578
4592
|
}>;
|
|
4579
4593
|
groupBys: string[];
|
|
4580
4594
|
timeQuery?: {
|
|
@@ -5645,6 +5659,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5645
5659
|
eq: string;
|
|
5646
5660
|
} | {
|
|
5647
5661
|
in: string[];
|
|
5662
|
+
} | {
|
|
5663
|
+
between: any[] | [number, number];
|
|
5648
5664
|
}>;
|
|
5649
5665
|
groupBys: string[];
|
|
5650
5666
|
timeQuery?: {
|
|
@@ -5982,6 +5998,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5982
5998
|
eq: string;
|
|
5983
5999
|
} | {
|
|
5984
6000
|
in: string[];
|
|
6001
|
+
} | {
|
|
6002
|
+
between: any[] | [number, number];
|
|
5985
6003
|
}>;
|
|
5986
6004
|
groupBys: string[];
|
|
5987
6005
|
timeQuery?: {
|