@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
|
@@ -43,6 +43,7 @@ export declare const MericoMetricQueryMeta: import("mobx-state-tree").IModelType
|
|
|
43
43
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
44
44
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
45
45
|
}, {
|
|
46
|
+
readonly query: any;
|
|
46
47
|
readonly valid: boolean;
|
|
47
48
|
readonly json: {
|
|
48
49
|
id: string;
|
|
@@ -130,6 +131,7 @@ export declare const createMericoMetricQueryMetaConfig: () => {
|
|
|
130
131
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
131
132
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
132
133
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
134
|
+
readonly query: any;
|
|
133
135
|
readonly valid: boolean;
|
|
134
136
|
readonly json: {
|
|
135
137
|
id: string;
|
|
@@ -195,6 +197,7 @@ export declare const createMericoMetricQueryMetaConfig: () => {
|
|
|
195
197
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
196
198
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
197
199
|
}, {
|
|
200
|
+
readonly query: any;
|
|
198
201
|
readonly valid: boolean;
|
|
199
202
|
readonly json: {
|
|
200
203
|
id: string;
|
|
@@ -124,6 +124,7 @@ export declare const QueryMeta: 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;
|
|
@@ -2558,6 +2558,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2558
2558
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2559
2559
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2560
2560
|
}, {
|
|
2561
|
+
readonly query: any;
|
|
2561
2562
|
readonly valid: boolean;
|
|
2562
2563
|
readonly json: {
|
|
2563
2564
|
id: string;
|
|
@@ -2764,6 +2765,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2764
2765
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2765
2766
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2766
2767
|
}, {
|
|
2768
|
+
readonly query: any;
|
|
2767
2769
|
readonly valid: boolean;
|
|
2768
2770
|
readonly json: {
|
|
2769
2771
|
id: string;
|
|
@@ -2886,6 +2888,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2886
2888
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2887
2889
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2888
2890
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2891
|
+
readonly query: any;
|
|
2889
2892
|
readonly valid: boolean;
|
|
2890
2893
|
readonly json: {
|
|
2891
2894
|
id: string;
|
|
@@ -3069,6 +3072,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3069
3072
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3070
3073
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3071
3074
|
}, {
|
|
3075
|
+
readonly query: any;
|
|
3072
3076
|
readonly valid: boolean;
|
|
3073
3077
|
readonly json: {
|
|
3074
3078
|
id: string;
|
|
@@ -3276,6 +3280,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3276
3280
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3277
3281
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3278
3282
|
}, {
|
|
3283
|
+
readonly query: any;
|
|
3279
3284
|
readonly valid: boolean;
|
|
3280
3285
|
readonly json: {
|
|
3281
3286
|
id: string;
|
|
@@ -3477,6 +3482,9 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3477
3482
|
readonly stateMessage: string;
|
|
3478
3483
|
} & {
|
|
3479
3484
|
controller: AbortController;
|
|
3485
|
+
} & {
|
|
3486
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
3487
|
+
setError(err: string | null): void;
|
|
3480
3488
|
} & {
|
|
3481
3489
|
runSQL: () => Promise<void>;
|
|
3482
3490
|
runHTTP: () => Promise<void>;
|
|
@@ -3611,6 +3619,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3611
3619
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3612
3620
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3613
3621
|
}, {
|
|
3622
|
+
readonly query: any;
|
|
3614
3623
|
readonly valid: boolean;
|
|
3615
3624
|
readonly json: {
|
|
3616
3625
|
id: string;
|
|
@@ -3813,6 +3822,9 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3813
3822
|
readonly stateMessage: string;
|
|
3814
3823
|
} & {
|
|
3815
3824
|
controller: AbortController;
|
|
3825
|
+
} & {
|
|
3826
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
3827
|
+
setError(err: string | null): void;
|
|
3816
3828
|
} & {
|
|
3817
3829
|
runSQL: () => Promise<void>;
|
|
3818
3830
|
runHTTP: () => Promise<void>;
|
|
@@ -3959,6 +3971,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3959
3971
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3960
3972
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3961
3973
|
}, {
|
|
3974
|
+
readonly query: any;
|
|
3962
3975
|
readonly valid: boolean;
|
|
3963
3976
|
readonly json: {
|
|
3964
3977
|
id: string;
|
|
@@ -4165,6 +4178,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4165
4178
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4166
4179
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4167
4180
|
}, {
|
|
4181
|
+
readonly query: any;
|
|
4168
4182
|
readonly valid: boolean;
|
|
4169
4183
|
readonly json: {
|
|
4170
4184
|
id: string;
|
|
@@ -4287,6 +4301,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4287
4301
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4288
4302
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
4289
4303
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4304
|
+
readonly query: any;
|
|
4290
4305
|
readonly valid: boolean;
|
|
4291
4306
|
readonly json: {
|
|
4292
4307
|
id: string;
|
|
@@ -4470,6 +4485,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4470
4485
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4471
4486
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4472
4487
|
}, {
|
|
4488
|
+
readonly query: any;
|
|
4473
4489
|
readonly valid: boolean;
|
|
4474
4490
|
readonly json: {
|
|
4475
4491
|
id: string;
|
|
@@ -4677,6 +4693,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4677
4693
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4678
4694
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4679
4695
|
}, {
|
|
4696
|
+
readonly query: any;
|
|
4680
4697
|
readonly valid: boolean;
|
|
4681
4698
|
readonly json: {
|
|
4682
4699
|
id: string;
|
|
@@ -4878,6 +4895,9 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4878
4895
|
readonly stateMessage: string;
|
|
4879
4896
|
} & {
|
|
4880
4897
|
controller: AbortController;
|
|
4898
|
+
} & {
|
|
4899
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
4900
|
+
setError(err: string | null): void;
|
|
4881
4901
|
} & {
|
|
4882
4902
|
runSQL: () => Promise<void>;
|
|
4883
4903
|
runHTTP: () => Promise<void>;
|
|
@@ -5012,6 +5032,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5012
5032
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5013
5033
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5014
5034
|
}, {
|
|
5035
|
+
readonly query: any;
|
|
5015
5036
|
readonly valid: boolean;
|
|
5016
5037
|
readonly json: {
|
|
5017
5038
|
id: string;
|
|
@@ -5214,6 +5235,9 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5214
5235
|
readonly stateMessage: string;
|
|
5215
5236
|
} & {
|
|
5216
5237
|
controller: AbortController;
|
|
5238
|
+
} & {
|
|
5239
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
5240
|
+
setError(err: string | null): void;
|
|
5217
5241
|
} & {
|
|
5218
5242
|
runSQL: () => Promise<void>;
|
|
5219
5243
|
runHTTP: () => Promise<void>;
|
|
@@ -5361,6 +5385,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5361
5385
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5362
5386
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5363
5387
|
}, {
|
|
5388
|
+
readonly query: any;
|
|
5364
5389
|
readonly valid: boolean;
|
|
5365
5390
|
readonly json: {
|
|
5366
5391
|
id: string;
|
|
@@ -5567,6 +5592,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5567
5592
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5568
5593
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5569
5594
|
}, {
|
|
5595
|
+
readonly query: any;
|
|
5570
5596
|
readonly valid: boolean;
|
|
5571
5597
|
readonly json: {
|
|
5572
5598
|
id: string;
|
|
@@ -5689,6 +5715,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5689
5715
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5690
5716
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
5691
5717
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5718
|
+
readonly query: any;
|
|
5692
5719
|
readonly valid: boolean;
|
|
5693
5720
|
readonly json: {
|
|
5694
5721
|
id: string;
|
|
@@ -5872,6 +5899,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5872
5899
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5873
5900
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5874
5901
|
}, {
|
|
5902
|
+
readonly query: any;
|
|
5875
5903
|
readonly valid: boolean;
|
|
5876
5904
|
readonly json: {
|
|
5877
5905
|
id: string;
|
|
@@ -6079,6 +6107,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6079
6107
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6080
6108
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6081
6109
|
}, {
|
|
6110
|
+
readonly query: any;
|
|
6082
6111
|
readonly valid: boolean;
|
|
6083
6112
|
readonly json: {
|
|
6084
6113
|
id: string;
|
|
@@ -6280,6 +6309,9 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6280
6309
|
readonly stateMessage: string;
|
|
6281
6310
|
} & {
|
|
6282
6311
|
controller: AbortController;
|
|
6312
|
+
} & {
|
|
6313
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
6314
|
+
setError(err: string | null): void;
|
|
6283
6315
|
} & {
|
|
6284
6316
|
runSQL: () => Promise<void>;
|
|
6285
6317
|
runHTTP: () => Promise<void>;
|
|
@@ -6414,6 +6446,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6414
6446
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6415
6447
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6416
6448
|
}, {
|
|
6449
|
+
readonly query: any;
|
|
6417
6450
|
readonly valid: boolean;
|
|
6418
6451
|
readonly json: {
|
|
6419
6452
|
id: string;
|
|
@@ -6616,6 +6649,9 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6616
6649
|
readonly stateMessage: string;
|
|
6617
6650
|
} & {
|
|
6618
6651
|
controller: AbortController;
|
|
6652
|
+
} & {
|
|
6653
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
6654
|
+
setError(err: string | null): void;
|
|
6619
6655
|
} & {
|
|
6620
6656
|
runSQL: () => Promise<void>;
|
|
6621
6657
|
runHTTP: () => Promise<void>;
|
|
@@ -144,6 +144,7 @@ export declare const MuteQueryModel: import("mobx-state-tree").IModelType<{
|
|
|
144
144
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
145
145
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
146
146
|
}, {
|
|
147
|
+
readonly query: any;
|
|
147
148
|
readonly valid: boolean;
|
|
148
149
|
readonly json: {
|
|
149
150
|
id: string;
|
|
@@ -125,6 +125,7 @@ export declare const QueriesRenderModel: 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 QueriesRenderModel: 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>;
|
|
@@ -476,6 +480,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
476
480
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
477
481
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
478
482
|
}, {
|
|
483
|
+
readonly query: any;
|
|
479
484
|
readonly valid: boolean;
|
|
480
485
|
readonly json: {
|
|
481
486
|
id: string;
|
|
@@ -682,6 +687,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
682
687
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
683
688
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
684
689
|
}, {
|
|
690
|
+
readonly query: any;
|
|
685
691
|
readonly valid: boolean;
|
|
686
692
|
readonly json: {
|
|
687
693
|
id: string;
|
|
@@ -804,6 +810,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
804
810
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
805
811
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
806
812
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
813
|
+
readonly query: any;
|
|
807
814
|
readonly valid: boolean;
|
|
808
815
|
readonly json: {
|
|
809
816
|
id: string;
|
|
@@ -987,6 +994,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
987
994
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
988
995
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
989
996
|
}, {
|
|
997
|
+
readonly query: any;
|
|
990
998
|
readonly valid: boolean;
|
|
991
999
|
readonly json: {
|
|
992
1000
|
id: string;
|
|
@@ -1194,6 +1202,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1194
1202
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1195
1203
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
1196
1204
|
}, {
|
|
1205
|
+
readonly query: any;
|
|
1197
1206
|
readonly valid: boolean;
|
|
1198
1207
|
readonly json: {
|
|
1199
1208
|
id: string;
|
|
@@ -1395,6 +1404,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1395
1404
|
readonly stateMessage: string;
|
|
1396
1405
|
} & {
|
|
1397
1406
|
controller: AbortController;
|
|
1407
|
+
} & {
|
|
1408
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
1409
|
+
setError(err: string | null): void;
|
|
1398
1410
|
} & {
|
|
1399
1411
|
runSQL: () => Promise<void>;
|
|
1400
1412
|
runHTTP: () => Promise<void>;
|
|
@@ -1529,6 +1541,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1529
1541
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1530
1542
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
1531
1543
|
}, {
|
|
1544
|
+
readonly query: any;
|
|
1532
1545
|
readonly valid: boolean;
|
|
1533
1546
|
readonly json: {
|
|
1534
1547
|
id: string;
|
|
@@ -1731,6 +1744,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1731
1744
|
readonly stateMessage: string;
|
|
1732
1745
|
} & {
|
|
1733
1746
|
controller: AbortController;
|
|
1747
|
+
} & {
|
|
1748
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
1749
|
+
setError(err: string | null): void;
|
|
1734
1750
|
} & {
|
|
1735
1751
|
runSQL: () => Promise<void>;
|
|
1736
1752
|
runHTTP: () => Promise<void>;
|
|
@@ -1877,6 +1893,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1877
1893
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1878
1894
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
1879
1895
|
}, {
|
|
1896
|
+
readonly query: any;
|
|
1880
1897
|
readonly valid: boolean;
|
|
1881
1898
|
readonly json: {
|
|
1882
1899
|
id: string;
|
|
@@ -2083,6 +2100,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2083
2100
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2084
2101
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2085
2102
|
}, {
|
|
2103
|
+
readonly query: any;
|
|
2086
2104
|
readonly valid: boolean;
|
|
2087
2105
|
readonly json: {
|
|
2088
2106
|
id: string;
|
|
@@ -2205,6 +2223,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2205
2223
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2206
2224
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2207
2225
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2226
|
+
readonly query: any;
|
|
2208
2227
|
readonly valid: boolean;
|
|
2209
2228
|
readonly json: {
|
|
2210
2229
|
id: string;
|
|
@@ -2388,6 +2407,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2388
2407
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2389
2408
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2390
2409
|
}, {
|
|
2410
|
+
readonly query: any;
|
|
2391
2411
|
readonly valid: boolean;
|
|
2392
2412
|
readonly json: {
|
|
2393
2413
|
id: string;
|
|
@@ -2595,6 +2615,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2595
2615
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2596
2616
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2597
2617
|
}, {
|
|
2618
|
+
readonly query: any;
|
|
2598
2619
|
readonly valid: boolean;
|
|
2599
2620
|
readonly json: {
|
|
2600
2621
|
id: string;
|
|
@@ -2796,6 +2817,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2796
2817
|
readonly stateMessage: string;
|
|
2797
2818
|
} & {
|
|
2798
2819
|
controller: AbortController;
|
|
2820
|
+
} & {
|
|
2821
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
2822
|
+
setError(err: string | null): void;
|
|
2799
2823
|
} & {
|
|
2800
2824
|
runSQL: () => Promise<void>;
|
|
2801
2825
|
runHTTP: () => Promise<void>;
|
|
@@ -2930,6 +2954,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2930
2954
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2931
2955
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
2932
2956
|
}, {
|
|
2957
|
+
readonly query: any;
|
|
2933
2958
|
readonly valid: boolean;
|
|
2934
2959
|
readonly json: {
|
|
2935
2960
|
id: string;
|
|
@@ -3132,6 +3157,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3132
3157
|
readonly stateMessage: string;
|
|
3133
3158
|
} & {
|
|
3134
3159
|
controller: AbortController;
|
|
3160
|
+
} & {
|
|
3161
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
3162
|
+
setError(err: string | null): void;
|
|
3135
3163
|
} & {
|
|
3136
3164
|
runSQL: () => Promise<void>;
|
|
3137
3165
|
runHTTP: () => Promise<void>;
|
|
@@ -3326,6 +3354,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3326
3354
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3327
3355
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3328
3356
|
}, {
|
|
3357
|
+
readonly query: any;
|
|
3329
3358
|
readonly valid: boolean;
|
|
3330
3359
|
readonly json: {
|
|
3331
3360
|
id: string;
|
|
@@ -3532,6 +3561,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3532
3561
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3533
3562
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3534
3563
|
}, {
|
|
3564
|
+
readonly query: any;
|
|
3535
3565
|
readonly valid: boolean;
|
|
3536
3566
|
readonly json: {
|
|
3537
3567
|
id: string;
|
|
@@ -3654,6 +3684,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3654
3684
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3655
3685
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
3656
3686
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3687
|
+
readonly query: any;
|
|
3657
3688
|
readonly valid: boolean;
|
|
3658
3689
|
readonly json: {
|
|
3659
3690
|
id: string;
|
|
@@ -3837,6 +3868,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3837
3868
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3838
3869
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3839
3870
|
}, {
|
|
3871
|
+
readonly query: any;
|
|
3840
3872
|
readonly valid: boolean;
|
|
3841
3873
|
readonly json: {
|
|
3842
3874
|
id: string;
|
|
@@ -4044,6 +4076,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4044
4076
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4045
4077
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4046
4078
|
}, {
|
|
4079
|
+
readonly query: any;
|
|
4047
4080
|
readonly valid: boolean;
|
|
4048
4081
|
readonly json: {
|
|
4049
4082
|
id: string;
|
|
@@ -4245,6 +4278,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4245
4278
|
readonly stateMessage: string;
|
|
4246
4279
|
} & {
|
|
4247
4280
|
controller: AbortController;
|
|
4281
|
+
} & {
|
|
4282
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
4283
|
+
setError(err: string | null): void;
|
|
4248
4284
|
} & {
|
|
4249
4285
|
runSQL: () => Promise<void>;
|
|
4250
4286
|
runHTTP: () => Promise<void>;
|
|
@@ -4379,6 +4415,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4379
4415
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4380
4416
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4381
4417
|
}, {
|
|
4418
|
+
readonly query: any;
|
|
4382
4419
|
readonly valid: boolean;
|
|
4383
4420
|
readonly json: {
|
|
4384
4421
|
id: string;
|
|
@@ -4581,6 +4618,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4581
4618
|
readonly stateMessage: string;
|
|
4582
4619
|
} & {
|
|
4583
4620
|
controller: AbortController;
|
|
4621
|
+
} & {
|
|
4622
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
4623
|
+
setError(err: string | null): void;
|
|
4584
4624
|
} & {
|
|
4585
4625
|
runSQL: () => Promise<void>;
|
|
4586
4626
|
runHTTP: () => Promise<void>;
|
|
@@ -4727,6 +4767,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4727
4767
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4728
4768
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4729
4769
|
}, {
|
|
4770
|
+
readonly query: any;
|
|
4730
4771
|
readonly valid: boolean;
|
|
4731
4772
|
readonly json: {
|
|
4732
4773
|
id: string;
|
|
@@ -4933,6 +4974,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4933
4974
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4934
4975
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4935
4976
|
}, {
|
|
4977
|
+
readonly query: any;
|
|
4936
4978
|
readonly valid: boolean;
|
|
4937
4979
|
readonly json: {
|
|
4938
4980
|
id: string;
|
|
@@ -5055,6 +5097,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5055
5097
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5056
5098
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
5057
5099
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5100
|
+
readonly query: any;
|
|
5058
5101
|
readonly valid: boolean;
|
|
5059
5102
|
readonly json: {
|
|
5060
5103
|
id: string;
|
|
@@ -5238,6 +5281,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5238
5281
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5239
5282
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5240
5283
|
}, {
|
|
5284
|
+
readonly query: any;
|
|
5241
5285
|
readonly valid: boolean;
|
|
5242
5286
|
readonly json: {
|
|
5243
5287
|
id: string;
|
|
@@ -5445,6 +5489,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5445
5489
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5446
5490
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5447
5491
|
}, {
|
|
5492
|
+
readonly query: any;
|
|
5448
5493
|
readonly valid: boolean;
|
|
5449
5494
|
readonly json: {
|
|
5450
5495
|
id: string;
|
|
@@ -5646,6 +5691,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5646
5691
|
readonly stateMessage: string;
|
|
5647
5692
|
} & {
|
|
5648
5693
|
controller: AbortController;
|
|
5694
|
+
} & {
|
|
5695
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
5696
|
+
setError(err: string | null): void;
|
|
5649
5697
|
} & {
|
|
5650
5698
|
runSQL: () => Promise<void>;
|
|
5651
5699
|
runHTTP: () => Promise<void>;
|
|
@@ -5780,6 +5828,7 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5780
5828
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5781
5829
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5782
5830
|
}, {
|
|
5831
|
+
readonly query: any;
|
|
5783
5832
|
readonly valid: boolean;
|
|
5784
5833
|
readonly json: {
|
|
5785
5834
|
id: string;
|
|
@@ -5982,6 +6031,9 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5982
6031
|
readonly stateMessage: string;
|
|
5983
6032
|
} & {
|
|
5984
6033
|
controller: AbortController;
|
|
6034
|
+
} & {
|
|
6035
|
+
setData(data: string[][] | number[][] | import("../../../../..").AnyObject[]): void;
|
|
6036
|
+
setError(err: string | null): void;
|
|
5985
6037
|
} & {
|
|
5986
6038
|
runSQL: () => Promise<void>;
|
|
5987
6039
|
runHTTP: () => Promise<void>;
|
|
@@ -125,6 +125,7 @@ export declare const QueryRenderModel: 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 QueryRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
327
328
|
readonly stateMessage: string;
|
|
328
329
|
} & {
|
|
329
330
|
controller: AbortController;
|
|
331
|
+
} & {
|
|
332
|
+
setData(data: string[][] | number[][] | AnyObject[]): void;
|
|
333
|
+
setError(err: string | null): void;
|
|
330
334
|
} & {
|
|
331
335
|
runSQL: () => Promise<void>;
|
|
332
336
|
runHTTP: () => Promise<void>;
|