@devtable/dashboard 14.22.3 → 14.23.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/panel-render/full-screen-render/use-panel-full-screen.d.ts +72 -0
- package/dist/components/plugins/plugin-context.d.ts +72 -0
- package/dist/contexts/panel-context.d.ts +144 -0
- package/dist/dashboard-editor/model/panels/panel.d.ts +36 -0
- package/dist/dashboard-editor/model/queries/queries.d.ts +72 -0
- package/dist/dashboard-editor/model/queries/query.d.ts +4 -0
- package/dist/dashboard.es.js +85 -75
- package/dist/dashboard.umd.js +32 -32
- package/dist/model/meta-model/dashboard/content/query/merico-metric-query.d.ts +3 -0
- package/dist/model/meta-model/dashboard/content/query/query.d.ts +1 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +36 -0
- package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +1 -0
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +52 -0
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +4 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -2549,6 +2549,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
2549
2549
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2550
2550
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2551
2551
|
}, {
|
|
2552
|
+
readonly query: any;
|
|
2552
2553
|
readonly valid: boolean;
|
|
2553
2554
|
readonly json: {
|
|
2554
2555
|
id: string;
|
|
@@ -2755,6 +2756,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
2755
2756
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2756
2757
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2757
2758
|
}, {
|
|
2759
|
+
readonly query: any;
|
|
2758
2760
|
readonly valid: boolean;
|
|
2759
2761
|
readonly json: {
|
|
2760
2762
|
id: string;
|
|
@@ -2877,6 +2879,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
2877
2879
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2878
2880
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2879
2881
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2882
|
+
readonly query: any;
|
|
2880
2883
|
readonly valid: boolean;
|
|
2881
2884
|
readonly json: {
|
|
2882
2885
|
id: string;
|
|
@@ -3060,6 +3063,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
3060
3063
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3061
3064
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3062
3065
|
}, {
|
|
3066
|
+
readonly query: any;
|
|
3063
3067
|
readonly valid: boolean;
|
|
3064
3068
|
readonly json: {
|
|
3065
3069
|
id: string;
|
|
@@ -3267,6 +3271,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
3267
3271
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3268
3272
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3269
3273
|
}, {
|
|
3274
|
+
readonly query: any;
|
|
3270
3275
|
readonly valid: boolean;
|
|
3271
3276
|
readonly json: {
|
|
3272
3277
|
id: string;
|
|
@@ -3468,6 +3473,9 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
3468
3473
|
readonly stateMessage: string;
|
|
3469
3474
|
} & {
|
|
3470
3475
|
controller: AbortController;
|
|
3476
|
+
} & {
|
|
3477
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
3478
|
+
setError(err: string | null): void;
|
|
3471
3479
|
} & {
|
|
3472
3480
|
runSQL: () => Promise<void>;
|
|
3473
3481
|
runHTTP: () => Promise<void>;
|
|
@@ -3602,6 +3610,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
3602
3610
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3603
3611
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3604
3612
|
}, {
|
|
3613
|
+
readonly query: any;
|
|
3605
3614
|
readonly valid: boolean;
|
|
3606
3615
|
readonly json: {
|
|
3607
3616
|
id: string;
|
|
@@ -3804,6 +3813,9 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
3804
3813
|
readonly stateMessage: string;
|
|
3805
3814
|
} & {
|
|
3806
3815
|
controller: AbortController;
|
|
3816
|
+
} & {
|
|
3817
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
3818
|
+
setError(err: string | null): void;
|
|
3807
3819
|
} & {
|
|
3808
3820
|
runSQL: () => Promise<void>;
|
|
3809
3821
|
runHTTP: () => Promise<void>;
|
|
@@ -3950,6 +3962,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
3950
3962
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3951
3963
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3952
3964
|
}, {
|
|
3965
|
+
readonly query: any;
|
|
3953
3966
|
readonly valid: boolean;
|
|
3954
3967
|
readonly json: {
|
|
3955
3968
|
id: string;
|
|
@@ -4156,6 +4169,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
4156
4169
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4157
4170
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4158
4171
|
}, {
|
|
4172
|
+
readonly query: any;
|
|
4159
4173
|
readonly valid: boolean;
|
|
4160
4174
|
readonly json: {
|
|
4161
4175
|
id: string;
|
|
@@ -4278,6 +4292,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
4278
4292
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4279
4293
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
4280
4294
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4295
|
+
readonly query: any;
|
|
4281
4296
|
readonly valid: boolean;
|
|
4282
4297
|
readonly json: {
|
|
4283
4298
|
id: string;
|
|
@@ -4461,6 +4476,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
4461
4476
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4462
4477
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4463
4478
|
}, {
|
|
4479
|
+
readonly query: any;
|
|
4464
4480
|
readonly valid: boolean;
|
|
4465
4481
|
readonly json: {
|
|
4466
4482
|
id: string;
|
|
@@ -4668,6 +4684,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
4668
4684
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4669
4685
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4670
4686
|
}, {
|
|
4687
|
+
readonly query: any;
|
|
4671
4688
|
readonly valid: boolean;
|
|
4672
4689
|
readonly json: {
|
|
4673
4690
|
id: string;
|
|
@@ -4869,6 +4886,9 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
4869
4886
|
readonly stateMessage: string;
|
|
4870
4887
|
} & {
|
|
4871
4888
|
controller: AbortController;
|
|
4889
|
+
} & {
|
|
4890
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
4891
|
+
setError(err: string | null): void;
|
|
4872
4892
|
} & {
|
|
4873
4893
|
runSQL: () => Promise<void>;
|
|
4874
4894
|
runHTTP: () => Promise<void>;
|
|
@@ -5003,6 +5023,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
5003
5023
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5004
5024
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5005
5025
|
}, {
|
|
5026
|
+
readonly query: any;
|
|
5006
5027
|
readonly valid: boolean;
|
|
5007
5028
|
readonly json: {
|
|
5008
5029
|
id: string;
|
|
@@ -5205,6 +5226,9 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
5205
5226
|
readonly stateMessage: string;
|
|
5206
5227
|
} & {
|
|
5207
5228
|
controller: AbortController;
|
|
5229
|
+
} & {
|
|
5230
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
5231
|
+
setError(err: string | null): void;
|
|
5208
5232
|
} & {
|
|
5209
5233
|
runSQL: () => Promise<void>;
|
|
5210
5234
|
runHTTP: () => Promise<void>;
|
|
@@ -5352,6 +5376,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
5352
5376
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5353
5377
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5354
5378
|
}, {
|
|
5379
|
+
readonly query: any;
|
|
5355
5380
|
readonly valid: boolean;
|
|
5356
5381
|
readonly json: {
|
|
5357
5382
|
id: string;
|
|
@@ -5558,6 +5583,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
5558
5583
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5559
5584
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5560
5585
|
}, {
|
|
5586
|
+
readonly query: any;
|
|
5561
5587
|
readonly valid: boolean;
|
|
5562
5588
|
readonly json: {
|
|
5563
5589
|
id: string;
|
|
@@ -5680,6 +5706,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
5680
5706
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5681
5707
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
5682
5708
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5709
|
+
readonly query: any;
|
|
5683
5710
|
readonly valid: boolean;
|
|
5684
5711
|
readonly json: {
|
|
5685
5712
|
id: string;
|
|
@@ -5863,6 +5890,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
5863
5890
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5864
5891
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5865
5892
|
}, {
|
|
5893
|
+
readonly query: any;
|
|
5866
5894
|
readonly valid: boolean;
|
|
5867
5895
|
readonly json: {
|
|
5868
5896
|
id: string;
|
|
@@ -6070,6 +6098,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
6070
6098
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6071
6099
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6072
6100
|
}, {
|
|
6101
|
+
readonly query: any;
|
|
6073
6102
|
readonly valid: boolean;
|
|
6074
6103
|
readonly json: {
|
|
6075
6104
|
id: string;
|
|
@@ -6271,6 +6300,9 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
6271
6300
|
readonly stateMessage: string;
|
|
6272
6301
|
} & {
|
|
6273
6302
|
controller: AbortController;
|
|
6303
|
+
} & {
|
|
6304
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
6305
|
+
setError(err: string | null): void;
|
|
6274
6306
|
} & {
|
|
6275
6307
|
runSQL: () => Promise<void>;
|
|
6276
6308
|
runHTTP: () => Promise<void>;
|
|
@@ -6405,6 +6437,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
6405
6437
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6406
6438
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6407
6439
|
}, {
|
|
6440
|
+
readonly query: any;
|
|
6408
6441
|
readonly valid: boolean;
|
|
6409
6442
|
readonly json: {
|
|
6410
6443
|
id: string;
|
|
@@ -6607,6 +6640,9 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
6607
6640
|
readonly stateMessage: string;
|
|
6608
6641
|
} & {
|
|
6609
6642
|
controller: AbortController;
|
|
6643
|
+
} & {
|
|
6644
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
6645
|
+
setError(err: string | null): void;
|
|
6610
6646
|
} & {
|
|
6611
6647
|
runSQL: () => Promise<void>;
|
|
6612
6648
|
runHTTP: () => Promise<void>;
|
|
@@ -125,6 +125,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
125
125
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
126
126
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
127
127
|
}, {
|
|
128
|
+
readonly query: any;
|
|
128
129
|
readonly valid: boolean;
|
|
129
130
|
readonly json: {
|
|
130
131
|
id: string;
|
|
@@ -327,6 +328,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
327
328
|
readonly stateMessage: string;
|
|
328
329
|
} & {
|
|
329
330
|
controller: AbortController;
|
|
331
|
+
} & {
|
|
332
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
333
|
+
setError(err: string | null): void;
|
|
330
334
|
} & {
|
|
331
335
|
runSQL: () => Promise<void>;
|
|
332
336
|
runHTTP: () => Promise<void>;
|
|
@@ -463,6 +467,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
463
467
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
464
468
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
465
469
|
}, {
|
|
470
|
+
readonly query: any;
|
|
466
471
|
readonly valid: boolean;
|
|
467
472
|
readonly json: {
|
|
468
473
|
id: string;
|
|
@@ -665,6 +670,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
665
670
|
readonly stateMessage: string;
|
|
666
671
|
} & {
|
|
667
672
|
controller: AbortController;
|
|
673
|
+
} & {
|
|
674
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
675
|
+
setError(err: string | null): void;
|
|
668
676
|
} & {
|
|
669
677
|
runSQL: () => Promise<void>;
|
|
670
678
|
runHTTP: () => Promise<void>;
|
|
@@ -822,6 +830,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
822
830
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
823
831
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
824
832
|
}, {
|
|
833
|
+
readonly query: any;
|
|
825
834
|
readonly valid: boolean;
|
|
826
835
|
readonly json: {
|
|
827
836
|
id: string;
|
|
@@ -1028,6 +1037,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
1028
1037
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1029
1038
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
1030
1039
|
}, {
|
|
1040
|
+
readonly query: any;
|
|
1031
1041
|
readonly valid: boolean;
|
|
1032
1042
|
readonly json: {
|
|
1033
1043
|
id: string;
|
|
@@ -1150,6 +1160,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
1150
1160
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1151
1161
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1152
1162
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1163
|
+
readonly query: any;
|
|
1153
1164
|
readonly valid: boolean;
|
|
1154
1165
|
readonly json: {
|
|
1155
1166
|
id: string;
|
|
@@ -1333,6 +1344,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
1333
1344
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1334
1345
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
1335
1346
|
}, {
|
|
1347
|
+
readonly query: any;
|
|
1336
1348
|
readonly valid: boolean;
|
|
1337
1349
|
readonly json: {
|
|
1338
1350
|
id: string;
|
|
@@ -1540,6 +1552,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
1540
1552
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1541
1553
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
1542
1554
|
}, {
|
|
1555
|
+
readonly query: any;
|
|
1543
1556
|
readonly valid: boolean;
|
|
1544
1557
|
readonly json: {
|
|
1545
1558
|
id: string;
|
|
@@ -1741,6 +1754,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
1741
1754
|
readonly stateMessage: string;
|
|
1742
1755
|
} & {
|
|
1743
1756
|
controller: AbortController;
|
|
1757
|
+
} & {
|
|
1758
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
1759
|
+
setError(err: string | null): void;
|
|
1744
1760
|
} & {
|
|
1745
1761
|
runSQL: () => Promise<void>;
|
|
1746
1762
|
runHTTP: () => Promise<void>;
|
|
@@ -1875,6 +1891,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
1875
1891
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1876
1892
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
1877
1893
|
}, {
|
|
1894
|
+
readonly query: any;
|
|
1878
1895
|
readonly valid: boolean;
|
|
1879
1896
|
readonly json: {
|
|
1880
1897
|
id: string;
|
|
@@ -2077,6 +2094,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
2077
2094
|
readonly stateMessage: string;
|
|
2078
2095
|
} & {
|
|
2079
2096
|
controller: AbortController;
|
|
2097
|
+
} & {
|
|
2098
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
2099
|
+
setError(err: string | null): void;
|
|
2080
2100
|
} & {
|
|
2081
2101
|
runSQL: () => Promise<void>;
|
|
2082
2102
|
runHTTP: () => Promise<void>;
|
|
@@ -2223,6 +2243,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
2223
2243
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2224
2244
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2225
2245
|
}, {
|
|
2246
|
+
readonly query: any;
|
|
2226
2247
|
readonly valid: boolean;
|
|
2227
2248
|
readonly json: {
|
|
2228
2249
|
id: string;
|
|
@@ -2429,6 +2450,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
2429
2450
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2430
2451
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2431
2452
|
}, {
|
|
2453
|
+
readonly query: any;
|
|
2432
2454
|
readonly valid: boolean;
|
|
2433
2455
|
readonly json: {
|
|
2434
2456
|
id: string;
|
|
@@ -2551,6 +2573,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
2551
2573
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2552
2574
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2553
2575
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2576
|
+
readonly query: any;
|
|
2554
2577
|
readonly valid: boolean;
|
|
2555
2578
|
readonly json: {
|
|
2556
2579
|
id: string;
|
|
@@ -2734,6 +2757,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
2734
2757
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2735
2758
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2736
2759
|
}, {
|
|
2760
|
+
readonly query: any;
|
|
2737
2761
|
readonly valid: boolean;
|
|
2738
2762
|
readonly json: {
|
|
2739
2763
|
id: string;
|
|
@@ -2941,6 +2965,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
2941
2965
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2942
2966
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2943
2967
|
}, {
|
|
2968
|
+
readonly query: any;
|
|
2944
2969
|
readonly valid: boolean;
|
|
2945
2970
|
readonly json: {
|
|
2946
2971
|
id: string;
|
|
@@ -3142,6 +3167,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
3142
3167
|
readonly stateMessage: string;
|
|
3143
3168
|
} & {
|
|
3144
3169
|
controller: AbortController;
|
|
3170
|
+
} & {
|
|
3171
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
3172
|
+
setError(err: string | null): void;
|
|
3145
3173
|
} & {
|
|
3146
3174
|
runSQL: () => Promise<void>;
|
|
3147
3175
|
runHTTP: () => Promise<void>;
|
|
@@ -3276,6 +3304,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
3276
3304
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3277
3305
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3278
3306
|
}, {
|
|
3307
|
+
readonly query: any;
|
|
3279
3308
|
readonly valid: boolean;
|
|
3280
3309
|
readonly json: {
|
|
3281
3310
|
id: string;
|
|
@@ -3478,6 +3507,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
3478
3507
|
readonly stateMessage: string;
|
|
3479
3508
|
} & {
|
|
3480
3509
|
controller: AbortController;
|
|
3510
|
+
} & {
|
|
3511
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
3512
|
+
setError(err: string | null): void;
|
|
3481
3513
|
} & {
|
|
3482
3514
|
runSQL: () => Promise<void>;
|
|
3483
3515
|
runHTTP: () => Promise<void>;
|
|
@@ -3672,6 +3704,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
3672
3704
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3673
3705
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3674
3706
|
}, {
|
|
3707
|
+
readonly query: any;
|
|
3675
3708
|
readonly valid: boolean;
|
|
3676
3709
|
readonly json: {
|
|
3677
3710
|
id: string;
|
|
@@ -3878,6 +3911,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
3878
3911
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3879
3912
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3880
3913
|
}, {
|
|
3914
|
+
readonly query: any;
|
|
3881
3915
|
readonly valid: boolean;
|
|
3882
3916
|
readonly json: {
|
|
3883
3917
|
id: string;
|
|
@@ -4000,6 +4034,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
4000
4034
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4001
4035
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
4002
4036
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4037
|
+
readonly query: any;
|
|
4003
4038
|
readonly valid: boolean;
|
|
4004
4039
|
readonly json: {
|
|
4005
4040
|
id: string;
|
|
@@ -4183,6 +4218,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
4183
4218
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4184
4219
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4185
4220
|
}, {
|
|
4221
|
+
readonly query: any;
|
|
4186
4222
|
readonly valid: boolean;
|
|
4187
4223
|
readonly json: {
|
|
4188
4224
|
id: string;
|
|
@@ -4390,6 +4426,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
4390
4426
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4391
4427
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4392
4428
|
}, {
|
|
4429
|
+
readonly query: any;
|
|
4393
4430
|
readonly valid: boolean;
|
|
4394
4431
|
readonly json: {
|
|
4395
4432
|
id: string;
|
|
@@ -4591,6 +4628,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
4591
4628
|
readonly stateMessage: string;
|
|
4592
4629
|
} & {
|
|
4593
4630
|
controller: AbortController;
|
|
4631
|
+
} & {
|
|
4632
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
4633
|
+
setError(err: string | null): void;
|
|
4594
4634
|
} & {
|
|
4595
4635
|
runSQL: () => Promise<void>;
|
|
4596
4636
|
runHTTP: () => Promise<void>;
|
|
@@ -4725,6 +4765,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
4725
4765
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4726
4766
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4727
4767
|
}, {
|
|
4768
|
+
readonly query: any;
|
|
4728
4769
|
readonly valid: boolean;
|
|
4729
4770
|
readonly json: {
|
|
4730
4771
|
id: string;
|
|
@@ -4927,6 +4968,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
4927
4968
|
readonly stateMessage: string;
|
|
4928
4969
|
} & {
|
|
4929
4970
|
controller: AbortController;
|
|
4971
|
+
} & {
|
|
4972
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
4973
|
+
setError(err: string | null): void;
|
|
4930
4974
|
} & {
|
|
4931
4975
|
runSQL: () => Promise<void>;
|
|
4932
4976
|
runHTTP: () => Promise<void>;
|
|
@@ -5073,6 +5117,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
5073
5117
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5074
5118
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5075
5119
|
}, {
|
|
5120
|
+
readonly query: any;
|
|
5076
5121
|
readonly valid: boolean;
|
|
5077
5122
|
readonly json: {
|
|
5078
5123
|
id: string;
|
|
@@ -5279,6 +5324,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
5279
5324
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5280
5325
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5281
5326
|
}, {
|
|
5327
|
+
readonly query: any;
|
|
5282
5328
|
readonly valid: boolean;
|
|
5283
5329
|
readonly json: {
|
|
5284
5330
|
id: string;
|
|
@@ -5401,6 +5447,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
5401
5447
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5402
5448
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
5403
5449
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5450
|
+
readonly query: any;
|
|
5404
5451
|
readonly valid: boolean;
|
|
5405
5452
|
readonly json: {
|
|
5406
5453
|
id: string;
|
|
@@ -5584,6 +5631,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
5584
5631
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5585
5632
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5586
5633
|
}, {
|
|
5634
|
+
readonly query: any;
|
|
5587
5635
|
readonly valid: boolean;
|
|
5588
5636
|
readonly json: {
|
|
5589
5637
|
id: string;
|
|
@@ -5791,6 +5839,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
5791
5839
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5792
5840
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5793
5841
|
}, {
|
|
5842
|
+
readonly query: any;
|
|
5794
5843
|
readonly valid: boolean;
|
|
5795
5844
|
readonly json: {
|
|
5796
5845
|
id: string;
|
|
@@ -5992,6 +6041,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
5992
6041
|
readonly stateMessage: string;
|
|
5993
6042
|
} & {
|
|
5994
6043
|
controller: AbortController;
|
|
6044
|
+
} & {
|
|
6045
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
6046
|
+
setError(err: string | null): void;
|
|
5995
6047
|
} & {
|
|
5996
6048
|
runSQL: () => Promise<void>;
|
|
5997
6049
|
runHTTP: () => Promise<void>;
|
|
@@ -6126,6 +6178,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
6126
6178
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6127
6179
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6128
6180
|
}, {
|
|
6181
|
+
readonly query: any;
|
|
6129
6182
|
readonly valid: boolean;
|
|
6130
6183
|
readonly json: {
|
|
6131
6184
|
id: string;
|
|
@@ -6328,6 +6381,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
6328
6381
|
readonly stateMessage: string;
|
|
6329
6382
|
} & {
|
|
6330
6383
|
controller: AbortController;
|
|
6384
|
+
} & {
|
|
6385
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
6386
|
+
setError(err: string | null): void;
|
|
6331
6387
|
} & {
|
|
6332
6388
|
runSQL: () => Promise<void>;
|
|
6333
6389
|
runHTTP: () => Promise<void>;
|
|
@@ -6539,6 +6595,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
6539
6595
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6540
6596
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6541
6597
|
}, {
|
|
6598
|
+
readonly query: any;
|
|
6542
6599
|
readonly valid: boolean;
|
|
6543
6600
|
readonly json: {
|
|
6544
6601
|
id: string;
|
|
@@ -6745,6 +6802,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
6745
6802
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6746
6803
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6747
6804
|
}, {
|
|
6805
|
+
readonly query: any;
|
|
6748
6806
|
readonly valid: boolean;
|
|
6749
6807
|
readonly json: {
|
|
6750
6808
|
id: string;
|
|
@@ -6867,6 +6925,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
6867
6925
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6868
6926
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
6869
6927
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6928
|
+
readonly query: any;
|
|
6870
6929
|
readonly valid: boolean;
|
|
6871
6930
|
readonly json: {
|
|
6872
6931
|
id: string;
|
|
@@ -7050,6 +7109,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
7050
7109
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7051
7110
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
7052
7111
|
}, {
|
|
7112
|
+
readonly query: any;
|
|
7053
7113
|
readonly valid: boolean;
|
|
7054
7114
|
readonly json: {
|
|
7055
7115
|
id: string;
|
|
@@ -7257,6 +7317,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
7257
7317
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7258
7318
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
7259
7319
|
}, {
|
|
7320
|
+
readonly query: any;
|
|
7260
7321
|
readonly valid: boolean;
|
|
7261
7322
|
readonly json: {
|
|
7262
7323
|
id: string;
|
|
@@ -7458,6 +7519,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
7458
7519
|
readonly stateMessage: string;
|
|
7459
7520
|
} & {
|
|
7460
7521
|
controller: AbortController;
|
|
7522
|
+
} & {
|
|
7523
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
7524
|
+
setError(err: string | null): void;
|
|
7461
7525
|
} & {
|
|
7462
7526
|
runSQL: () => Promise<void>;
|
|
7463
7527
|
runHTTP: () => Promise<void>;
|
|
@@ -7592,6 +7656,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
7592
7656
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7593
7657
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
7594
7658
|
}, {
|
|
7659
|
+
readonly query: any;
|
|
7595
7660
|
readonly valid: boolean;
|
|
7596
7661
|
readonly json: {
|
|
7597
7662
|
id: string;
|
|
@@ -7794,6 +7859,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
7794
7859
|
readonly stateMessage: string;
|
|
7795
7860
|
} & {
|
|
7796
7861
|
controller: AbortController;
|
|
7862
|
+
} & {
|
|
7863
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
7864
|
+
setError(err: string | null): void;
|
|
7797
7865
|
} & {
|
|
7798
7866
|
runSQL: () => Promise<void>;
|
|
7799
7867
|
runHTTP: () => Promise<void>;
|
|
@@ -7936,6 +8004,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
7936
8004
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7937
8005
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
7938
8006
|
}, {
|
|
8007
|
+
readonly query: any;
|
|
7939
8008
|
readonly valid: boolean;
|
|
7940
8009
|
readonly json: {
|
|
7941
8010
|
id: string;
|
|
@@ -8138,6 +8207,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
|
|
|
8138
8207
|
readonly stateMessage: string;
|
|
8139
8208
|
} & {
|
|
8140
8209
|
controller: AbortController;
|
|
8210
|
+
} & {
|
|
8211
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
8212
|
+
setError(err: string | null): void;
|
|
8141
8213
|
} & {
|
|
8142
8214
|
runSQL: () => Promise<void>;
|
|
8143
8215
|
runHTTP: () => Promise<void>;
|
|
@@ -124,6 +124,7 @@ export declare const QueryModel: import("mobx-state-tree").IModelType<{
|
|
|
124
124
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
125
125
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
126
126
|
}, {
|
|
127
|
+
readonly query: any;
|
|
127
128
|
readonly valid: boolean;
|
|
128
129
|
readonly json: {
|
|
129
130
|
id: string;
|
|
@@ -326,6 +327,9 @@ export declare const QueryModel: import("mobx-state-tree").IModelType<{
|
|
|
326
327
|
readonly stateMessage: string;
|
|
327
328
|
} & {
|
|
328
329
|
controller: AbortController;
|
|
330
|
+
} & {
|
|
331
|
+
setData(data: string[][] | number[][] | import("../../..").AnyObject[]): void;
|
|
332
|
+
setError(err: string | null): void;
|
|
329
333
|
} & {
|
|
330
334
|
runSQL: () => Promise<void>;
|
|
331
335
|
runHTTP: () => Promise<void>;
|