@devtable/dashboard 10.17.0 → 10.18.1
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/filter/filter-select/render.d.ts +1 -1
- package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +4 -20
- package/dist/components/plugins/plugin-context.d.ts +4 -20
- package/dist/components/widgets/custom-selector-item/index.d.ts +8 -0
- package/dist/contexts/panel-context.d.ts +8 -40
- package/dist/dashboard-editor/model/panels/panel.d.ts +2 -10
- package/dist/dashboard-editor/model/panels/panels.d.ts +16 -80
- package/dist/dashboard-editor/model/queries/index.d.ts +5 -25
- package/dist/dashboard.es.js +3049 -3031
- package/dist/dashboard.umd.js +60 -60
- package/dist/model/meta-model/dashboard/content/filter/widgets/select.d.ts +12 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +2 -10
- package/dist/model/render-model/dashboard/content/panels/panels.d.ts +14 -70
- package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +2 -5
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +5 -25
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +1 -5
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -50,10 +50,14 @@ export declare const FilterSelectConfigMeta: import("mobx-state-tree").IModelTyp
|
|
|
50
50
|
};
|
|
51
51
|
truthy(value: any): boolean;
|
|
52
52
|
getSelectOption(value: string): import("./select-base").TSelectOption | undefined;
|
|
53
|
+
readonly default_selection: string;
|
|
53
54
|
} & {
|
|
54
55
|
setRequired(required: boolean): void;
|
|
55
56
|
setDefaultValue(default_value: string): void;
|
|
56
57
|
setWidth(v: string): void;
|
|
58
|
+
setDefaultSelection(): void;
|
|
59
|
+
} & {
|
|
60
|
+
afterCreate(): void;
|
|
57
61
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
58
62
|
export declare type FilterSelectConfigInstance = Instance<typeof FilterSelectConfigMeta>;
|
|
59
63
|
export declare const createFilterSelectConfig: () => {
|
|
@@ -112,10 +116,14 @@ export declare const createFilterSelectConfig: () => {
|
|
|
112
116
|
};
|
|
113
117
|
truthy(value: any): boolean;
|
|
114
118
|
getSelectOption(value: string): import("./select-base").TSelectOption | undefined;
|
|
119
|
+
readonly default_selection: string;
|
|
115
120
|
} & {
|
|
116
121
|
setRequired(required: boolean): void;
|
|
117
122
|
setDefaultValue(default_value: string): void;
|
|
118
123
|
setWidth(v: string): void;
|
|
124
|
+
setDefaultSelection(): void;
|
|
125
|
+
} & {
|
|
126
|
+
afterCreate(): void;
|
|
119
127
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
120
128
|
_name: import("mobx-state-tree").ISimpleType<"select">;
|
|
121
129
|
default_value: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -167,8 +175,12 @@ export declare const createFilterSelectConfig: () => {
|
|
|
167
175
|
};
|
|
168
176
|
truthy(value: any): boolean;
|
|
169
177
|
getSelectOption(value: string): import("./select-base").TSelectOption | undefined;
|
|
178
|
+
readonly default_selection: string;
|
|
170
179
|
} & {
|
|
171
180
|
setRequired(required: boolean): void;
|
|
172
181
|
setDefaultValue(default_value: string): void;
|
|
173
182
|
setWidth(v: string): void;
|
|
183
|
+
setDefaultSelection(): void;
|
|
184
|
+
} & {
|
|
185
|
+
afterCreate(): void;
|
|
174
186
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
@@ -1155,11 +1155,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1155
1155
|
setPreProcess(v: string): void;
|
|
1156
1156
|
setPostProcess(v: string): void;
|
|
1157
1157
|
} & {
|
|
1158
|
-
readonly conditionOptions:
|
|
1159
|
-
label: string;
|
|
1160
|
-
value: string;
|
|
1161
|
-
group: string;
|
|
1162
|
-
}[];
|
|
1158
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
1163
1159
|
readonly unmetRunByConditions: string[];
|
|
1164
1160
|
} & {
|
|
1165
1161
|
readonly reQueryKey: string;
|
|
@@ -1223,11 +1219,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1223
1219
|
setPreProcess(v: string): void;
|
|
1224
1220
|
setPostProcess(v: string): void;
|
|
1225
1221
|
} & {
|
|
1226
|
-
readonly conditionOptions:
|
|
1227
|
-
label: string;
|
|
1228
|
-
value: string;
|
|
1229
|
-
group: string;
|
|
1230
|
-
}[];
|
|
1222
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
1231
1223
|
readonly unmetRunByConditions: string[];
|
|
1232
1224
|
} & {
|
|
1233
1225
|
readonly reQueryKey: string;
|
|
@@ -1156,11 +1156,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1156
1156
|
setPreProcess(v: string): void;
|
|
1157
1157
|
setPostProcess(v: string): void;
|
|
1158
1158
|
} & {
|
|
1159
|
-
readonly conditionOptions:
|
|
1160
|
-
label: string;
|
|
1161
|
-
value: string;
|
|
1162
|
-
group: string;
|
|
1163
|
-
}[];
|
|
1159
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
1164
1160
|
readonly unmetRunByConditions: string[];
|
|
1165
1161
|
} & {
|
|
1166
1162
|
readonly reQueryKey: string;
|
|
@@ -1224,11 +1220,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1224
1220
|
setPreProcess(v: string): void;
|
|
1225
1221
|
setPostProcess(v: string): void;
|
|
1226
1222
|
} & {
|
|
1227
|
-
readonly conditionOptions:
|
|
1228
|
-
label: string;
|
|
1229
|
-
value: string;
|
|
1230
|
-
group: string;
|
|
1231
|
-
}[];
|
|
1223
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
1232
1224
|
readonly unmetRunByConditions: string[];
|
|
1233
1225
|
} & {
|
|
1234
1226
|
readonly reQueryKey: string;
|
|
@@ -2897,11 +2889,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2897
2889
|
setPreProcess(v: string): void;
|
|
2898
2890
|
setPostProcess(v: string): void;
|
|
2899
2891
|
} & {
|
|
2900
|
-
readonly conditionOptions:
|
|
2901
|
-
label: string;
|
|
2902
|
-
value: string;
|
|
2903
|
-
group: string;
|
|
2904
|
-
}[];
|
|
2892
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
2905
2893
|
readonly unmetRunByConditions: string[];
|
|
2906
2894
|
} & {
|
|
2907
2895
|
readonly reQueryKey: string;
|
|
@@ -2965,11 +2953,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2965
2953
|
setPreProcess(v: string): void;
|
|
2966
2954
|
setPostProcess(v: string): void;
|
|
2967
2955
|
} & {
|
|
2968
|
-
readonly conditionOptions:
|
|
2969
|
-
label: string;
|
|
2970
|
-
value: string;
|
|
2971
|
-
group: string;
|
|
2972
|
-
}[];
|
|
2956
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
2973
2957
|
readonly unmetRunByConditions: string[];
|
|
2974
2958
|
} & {
|
|
2975
2959
|
readonly reQueryKey: string;
|
|
@@ -4161,11 +4145,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4161
4145
|
setPreProcess(v: string): void;
|
|
4162
4146
|
setPostProcess(v: string): void;
|
|
4163
4147
|
} & {
|
|
4164
|
-
readonly conditionOptions:
|
|
4165
|
-
label: string;
|
|
4166
|
-
value: string;
|
|
4167
|
-
group: string;
|
|
4168
|
-
}[];
|
|
4148
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
4169
4149
|
readonly unmetRunByConditions: string[];
|
|
4170
4150
|
} & {
|
|
4171
4151
|
readonly reQueryKey: string;
|
|
@@ -4229,11 +4209,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4229
4209
|
setPreProcess(v: string): void;
|
|
4230
4210
|
setPostProcess(v: string): void;
|
|
4231
4211
|
} & {
|
|
4232
|
-
readonly conditionOptions:
|
|
4233
|
-
label: string;
|
|
4234
|
-
value: string;
|
|
4235
|
-
group: string;
|
|
4236
|
-
}[];
|
|
4212
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
4237
4213
|
readonly unmetRunByConditions: string[];
|
|
4238
4214
|
} & {
|
|
4239
4215
|
readonly reQueryKey: string;
|
|
@@ -5711,11 +5687,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5711
5687
|
setPreProcess(v: string): void;
|
|
5712
5688
|
setPostProcess(v: string): void;
|
|
5713
5689
|
} & {
|
|
5714
|
-
readonly conditionOptions:
|
|
5715
|
-
label: string;
|
|
5716
|
-
value: string;
|
|
5717
|
-
group: string;
|
|
5718
|
-
}[];
|
|
5690
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
5719
5691
|
readonly unmetRunByConditions: string[];
|
|
5720
5692
|
} & {
|
|
5721
5693
|
readonly reQueryKey: string;
|
|
@@ -5779,11 +5751,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5779
5751
|
setPreProcess(v: string): void;
|
|
5780
5752
|
setPostProcess(v: string): void;
|
|
5781
5753
|
} & {
|
|
5782
|
-
readonly conditionOptions:
|
|
5783
|
-
label: string;
|
|
5784
|
-
value: string;
|
|
5785
|
-
group: string;
|
|
5786
|
-
}[];
|
|
5754
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
5787
5755
|
readonly unmetRunByConditions: string[];
|
|
5788
5756
|
} & {
|
|
5789
5757
|
readonly reQueryKey: string;
|
|
@@ -6975,11 +6943,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6975
6943
|
setPreProcess(v: string): void;
|
|
6976
6944
|
setPostProcess(v: string): void;
|
|
6977
6945
|
} & {
|
|
6978
|
-
readonly conditionOptions:
|
|
6979
|
-
label: string;
|
|
6980
|
-
value: string;
|
|
6981
|
-
group: string;
|
|
6982
|
-
}[];
|
|
6946
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
6983
6947
|
readonly unmetRunByConditions: string[];
|
|
6984
6948
|
} & {
|
|
6985
6949
|
readonly reQueryKey: string;
|
|
@@ -7043,11 +7007,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
7043
7007
|
setPreProcess(v: string): void;
|
|
7044
7008
|
setPostProcess(v: string): void;
|
|
7045
7009
|
} & {
|
|
7046
|
-
readonly conditionOptions:
|
|
7047
|
-
label: string;
|
|
7048
|
-
value: string;
|
|
7049
|
-
group: string;
|
|
7050
|
-
}[];
|
|
7010
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
7051
7011
|
readonly unmetRunByConditions: string[];
|
|
7052
7012
|
} & {
|
|
7053
7013
|
readonly reQueryKey: string;
|
|
@@ -8527,11 +8487,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
8527
8487
|
setPreProcess(v: string): void;
|
|
8528
8488
|
setPostProcess(v: string): void;
|
|
8529
8489
|
} & {
|
|
8530
|
-
readonly conditionOptions:
|
|
8531
|
-
label: string;
|
|
8532
|
-
value: string;
|
|
8533
|
-
group: string;
|
|
8534
|
-
}[];
|
|
8490
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
8535
8491
|
readonly unmetRunByConditions: string[];
|
|
8536
8492
|
} & {
|
|
8537
8493
|
readonly reQueryKey: string;
|
|
@@ -8595,11 +8551,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
8595
8551
|
setPreProcess(v: string): void;
|
|
8596
8552
|
setPostProcess(v: string): void;
|
|
8597
8553
|
} & {
|
|
8598
|
-
readonly conditionOptions:
|
|
8599
|
-
label: string;
|
|
8600
|
-
value: string;
|
|
8601
|
-
group: string;
|
|
8602
|
-
}[];
|
|
8554
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
8603
8555
|
readonly unmetRunByConditions: string[];
|
|
8604
8556
|
} & {
|
|
8605
8557
|
readonly reQueryKey: string;
|
|
@@ -9791,11 +9743,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
9791
9743
|
setPreProcess(v: string): void;
|
|
9792
9744
|
setPostProcess(v: string): void;
|
|
9793
9745
|
} & {
|
|
9794
|
-
readonly conditionOptions:
|
|
9795
|
-
label: string;
|
|
9796
|
-
value: string;
|
|
9797
|
-
group: string;
|
|
9798
|
-
}[];
|
|
9746
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
9799
9747
|
readonly unmetRunByConditions: string[];
|
|
9800
9748
|
} & {
|
|
9801
9749
|
readonly reQueryKey: string;
|
|
@@ -9859,11 +9807,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
9859
9807
|
setPreProcess(v: string): void;
|
|
9860
9808
|
setPostProcess(v: string): void;
|
|
9861
9809
|
} & {
|
|
9862
|
-
readonly conditionOptions:
|
|
9863
|
-
label: string;
|
|
9864
|
-
value: string;
|
|
9865
|
-
group: string;
|
|
9866
|
-
}[];
|
|
9810
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
9867
9811
|
readonly unmetRunByConditions: string[];
|
|
9868
9812
|
} & {
|
|
9869
9813
|
readonly reQueryKey: string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SelectItem } from '@mantine/core';
|
|
1
2
|
import { Instance } from 'mobx-state-tree';
|
|
2
3
|
export declare const MuteQueryModel: import("mobx-state-tree").IModelType<{
|
|
3
4
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -32,11 +33,7 @@ export declare const MuteQueryModel: import("mobx-state-tree").IModelType<{
|
|
|
32
33
|
setPreProcess(v: string): void;
|
|
33
34
|
setPostProcess(v: string): void;
|
|
34
35
|
} & {
|
|
35
|
-
readonly conditionOptions:
|
|
36
|
-
label: string;
|
|
37
|
-
value: string;
|
|
38
|
-
group: string;
|
|
39
|
-
}[];
|
|
36
|
+
readonly conditionOptions: SelectItem[];
|
|
40
37
|
readonly unmetRunByConditions: string[];
|
|
41
38
|
} & {
|
|
42
39
|
readonly reQueryKey: string;
|
|
@@ -38,11 +38,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
38
38
|
setPreProcess(v: string): void;
|
|
39
39
|
setPostProcess(v: string): void;
|
|
40
40
|
} & {
|
|
41
|
-
readonly conditionOptions:
|
|
42
|
-
label: string;
|
|
43
|
-
value: string;
|
|
44
|
-
group: string;
|
|
45
|
-
}[];
|
|
41
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
46
42
|
readonly unmetRunByConditions: string[];
|
|
47
43
|
} & {
|
|
48
44
|
readonly reQueryKey: string;
|
|
@@ -108,11 +104,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
108
104
|
setPreProcess(v: string): void;
|
|
109
105
|
setPostProcess(v: string): void;
|
|
110
106
|
} & {
|
|
111
|
-
readonly conditionOptions:
|
|
112
|
-
label: string;
|
|
113
|
-
value: string;
|
|
114
|
-
group: string;
|
|
115
|
-
}[];
|
|
107
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
116
108
|
readonly unmetRunByConditions: string[];
|
|
117
109
|
} & {
|
|
118
110
|
readonly reQueryKey: string;
|
|
@@ -176,11 +168,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
176
168
|
setPreProcess(v: string): void;
|
|
177
169
|
setPostProcess(v: string): void;
|
|
178
170
|
} & {
|
|
179
|
-
readonly conditionOptions:
|
|
180
|
-
label: string;
|
|
181
|
-
value: string;
|
|
182
|
-
group: string;
|
|
183
|
-
}[];
|
|
171
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
184
172
|
readonly unmetRunByConditions: string[];
|
|
185
173
|
} & {
|
|
186
174
|
readonly reQueryKey: string;
|
|
@@ -244,11 +232,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
244
232
|
setPreProcess(v: string): void;
|
|
245
233
|
setPostProcess(v: string): void;
|
|
246
234
|
} & {
|
|
247
|
-
readonly conditionOptions:
|
|
248
|
-
label: string;
|
|
249
|
-
value: string;
|
|
250
|
-
group: string;
|
|
251
|
-
}[];
|
|
235
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
252
236
|
readonly unmetRunByConditions: string[];
|
|
253
237
|
} & {
|
|
254
238
|
readonly reQueryKey: string;
|
|
@@ -312,11 +296,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
312
296
|
setPreProcess(v: string): void;
|
|
313
297
|
setPostProcess(v: string): void;
|
|
314
298
|
} & {
|
|
315
|
-
readonly conditionOptions:
|
|
316
|
-
label: string;
|
|
317
|
-
value: string;
|
|
318
|
-
group: string;
|
|
319
|
-
}[];
|
|
299
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
320
300
|
readonly unmetRunByConditions: string[];
|
|
321
301
|
} & {
|
|
322
302
|
readonly reQueryKey: string;
|
|
@@ -37,11 +37,7 @@ export declare const QueryRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
37
37
|
setPreProcess(v: string): void;
|
|
38
38
|
setPostProcess(v: string): void;
|
|
39
39
|
} & {
|
|
40
|
-
readonly conditionOptions:
|
|
41
|
-
label: string;
|
|
42
|
-
value: string;
|
|
43
|
-
group: string;
|
|
44
|
-
}[];
|
|
40
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
45
41
|
readonly unmetRunByConditions: string[];
|
|
46
42
|
} & {
|
|
47
43
|
readonly reQueryKey: string;
|