@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
|
@@ -3131,6 +3131,7 @@ export declare const tokens: {
|
|
|
3131
3131
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3132
3132
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3133
3133
|
}, {
|
|
3134
|
+
readonly query: any;
|
|
3134
3135
|
readonly valid: boolean;
|
|
3135
3136
|
readonly json: {
|
|
3136
3137
|
id: string;
|
|
@@ -3337,6 +3338,7 @@ export declare const tokens: {
|
|
|
3337
3338
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3338
3339
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3339
3340
|
}, {
|
|
3341
|
+
readonly query: any;
|
|
3340
3342
|
readonly valid: boolean;
|
|
3341
3343
|
readonly json: {
|
|
3342
3344
|
id: string;
|
|
@@ -3459,6 +3461,7 @@ export declare const tokens: {
|
|
|
3459
3461
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3460
3462
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
3461
3463
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3464
|
+
readonly query: any;
|
|
3462
3465
|
readonly valid: boolean;
|
|
3463
3466
|
readonly json: {
|
|
3464
3467
|
id: string;
|
|
@@ -3642,6 +3645,7 @@ export declare const tokens: {
|
|
|
3642
3645
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3643
3646
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3644
3647
|
}, {
|
|
3648
|
+
readonly query: any;
|
|
3645
3649
|
readonly valid: boolean;
|
|
3646
3650
|
readonly json: {
|
|
3647
3651
|
id: string;
|
|
@@ -3849,6 +3853,7 @@ export declare const tokens: {
|
|
|
3849
3853
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3850
3854
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3851
3855
|
}, {
|
|
3856
|
+
readonly query: any;
|
|
3852
3857
|
readonly valid: boolean;
|
|
3853
3858
|
readonly json: {
|
|
3854
3859
|
id: string;
|
|
@@ -4050,6 +4055,9 @@ export declare const tokens: {
|
|
|
4050
4055
|
readonly stateMessage: string;
|
|
4051
4056
|
} & {
|
|
4052
4057
|
controller: AbortController;
|
|
4058
|
+
} & {
|
|
4059
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
4060
|
+
setError(err: string | null): void;
|
|
4053
4061
|
} & {
|
|
4054
4062
|
runSQL: () => Promise<void>;
|
|
4055
4063
|
runHTTP: () => Promise<void>;
|
|
@@ -4184,6 +4192,7 @@ export declare const tokens: {
|
|
|
4184
4192
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4185
4193
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4186
4194
|
}, {
|
|
4195
|
+
readonly query: any;
|
|
4187
4196
|
readonly valid: boolean;
|
|
4188
4197
|
readonly json: {
|
|
4189
4198
|
id: string;
|
|
@@ -4386,6 +4395,9 @@ export declare const tokens: {
|
|
|
4386
4395
|
readonly stateMessage: string;
|
|
4387
4396
|
} & {
|
|
4388
4397
|
controller: AbortController;
|
|
4398
|
+
} & {
|
|
4399
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
4400
|
+
setError(err: string | null): void;
|
|
4389
4401
|
} & {
|
|
4390
4402
|
runSQL: () => Promise<void>;
|
|
4391
4403
|
runHTTP: () => Promise<void>;
|
|
@@ -4532,6 +4544,7 @@ export declare const tokens: {
|
|
|
4532
4544
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4533
4545
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4534
4546
|
}, {
|
|
4547
|
+
readonly query: any;
|
|
4535
4548
|
readonly valid: boolean;
|
|
4536
4549
|
readonly json: {
|
|
4537
4550
|
id: string;
|
|
@@ -4738,6 +4751,7 @@ export declare const tokens: {
|
|
|
4738
4751
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4739
4752
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4740
4753
|
}, {
|
|
4754
|
+
readonly query: any;
|
|
4741
4755
|
readonly valid: boolean;
|
|
4742
4756
|
readonly json: {
|
|
4743
4757
|
id: string;
|
|
@@ -4860,6 +4874,7 @@ export declare const tokens: {
|
|
|
4860
4874
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4861
4875
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
4862
4876
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4877
|
+
readonly query: any;
|
|
4863
4878
|
readonly valid: boolean;
|
|
4864
4879
|
readonly json: {
|
|
4865
4880
|
id: string;
|
|
@@ -5043,6 +5058,7 @@ export declare const tokens: {
|
|
|
5043
5058
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5044
5059
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5045
5060
|
}, {
|
|
5061
|
+
readonly query: any;
|
|
5046
5062
|
readonly valid: boolean;
|
|
5047
5063
|
readonly json: {
|
|
5048
5064
|
id: string;
|
|
@@ -5250,6 +5266,7 @@ export declare const tokens: {
|
|
|
5250
5266
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5251
5267
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5252
5268
|
}, {
|
|
5269
|
+
readonly query: any;
|
|
5253
5270
|
readonly valid: boolean;
|
|
5254
5271
|
readonly json: {
|
|
5255
5272
|
id: string;
|
|
@@ -5451,6 +5468,9 @@ export declare const tokens: {
|
|
|
5451
5468
|
readonly stateMessage: string;
|
|
5452
5469
|
} & {
|
|
5453
5470
|
controller: AbortController;
|
|
5471
|
+
} & {
|
|
5472
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
5473
|
+
setError(err: string | null): void;
|
|
5454
5474
|
} & {
|
|
5455
5475
|
runSQL: () => Promise<void>;
|
|
5456
5476
|
runHTTP: () => Promise<void>;
|
|
@@ -5585,6 +5605,7 @@ export declare const tokens: {
|
|
|
5585
5605
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5586
5606
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5587
5607
|
}, {
|
|
5608
|
+
readonly query: any;
|
|
5588
5609
|
readonly valid: boolean;
|
|
5589
5610
|
readonly json: {
|
|
5590
5611
|
id: string;
|
|
@@ -5787,6 +5808,9 @@ export declare const tokens: {
|
|
|
5787
5808
|
readonly stateMessage: string;
|
|
5788
5809
|
} & {
|
|
5789
5810
|
controller: AbortController;
|
|
5811
|
+
} & {
|
|
5812
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
5813
|
+
setError(err: string | null): void;
|
|
5790
5814
|
} & {
|
|
5791
5815
|
runSQL: () => Promise<void>;
|
|
5792
5816
|
runHTTP: () => Promise<void>;
|
|
@@ -5934,6 +5958,7 @@ export declare const tokens: {
|
|
|
5934
5958
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5935
5959
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5936
5960
|
}, {
|
|
5961
|
+
readonly query: any;
|
|
5937
5962
|
readonly valid: boolean;
|
|
5938
5963
|
readonly json: {
|
|
5939
5964
|
id: string;
|
|
@@ -6140,6 +6165,7 @@ export declare const tokens: {
|
|
|
6140
6165
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6141
6166
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6142
6167
|
}, {
|
|
6168
|
+
readonly query: any;
|
|
6143
6169
|
readonly valid: boolean;
|
|
6144
6170
|
readonly json: {
|
|
6145
6171
|
id: string;
|
|
@@ -6262,6 +6288,7 @@ export declare const tokens: {
|
|
|
6262
6288
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6263
6289
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
6264
6290
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6291
|
+
readonly query: any;
|
|
6265
6292
|
readonly valid: boolean;
|
|
6266
6293
|
readonly json: {
|
|
6267
6294
|
id: string;
|
|
@@ -6445,6 +6472,7 @@ export declare const tokens: {
|
|
|
6445
6472
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6446
6473
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6447
6474
|
}, {
|
|
6475
|
+
readonly query: any;
|
|
6448
6476
|
readonly valid: boolean;
|
|
6449
6477
|
readonly json: {
|
|
6450
6478
|
id: string;
|
|
@@ -6652,6 +6680,7 @@ export declare const tokens: {
|
|
|
6652
6680
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6653
6681
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6654
6682
|
}, {
|
|
6683
|
+
readonly query: any;
|
|
6655
6684
|
readonly valid: boolean;
|
|
6656
6685
|
readonly json: {
|
|
6657
6686
|
id: string;
|
|
@@ -6853,6 +6882,9 @@ export declare const tokens: {
|
|
|
6853
6882
|
readonly stateMessage: string;
|
|
6854
6883
|
} & {
|
|
6855
6884
|
controller: AbortController;
|
|
6885
|
+
} & {
|
|
6886
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
6887
|
+
setError(err: string | null): void;
|
|
6856
6888
|
} & {
|
|
6857
6889
|
runSQL: () => Promise<void>;
|
|
6858
6890
|
runHTTP: () => Promise<void>;
|
|
@@ -6987,6 +7019,7 @@ export declare const tokens: {
|
|
|
6987
7019
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6988
7020
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6989
7021
|
}, {
|
|
7022
|
+
readonly query: any;
|
|
6990
7023
|
readonly valid: boolean;
|
|
6991
7024
|
readonly json: {
|
|
6992
7025
|
id: string;
|
|
@@ -7189,6 +7222,9 @@ export declare const tokens: {
|
|
|
7189
7222
|
readonly stateMessage: string;
|
|
7190
7223
|
} & {
|
|
7191
7224
|
controller: AbortController;
|
|
7225
|
+
} & {
|
|
7226
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
7227
|
+
setError(err: string | null): void;
|
|
7192
7228
|
} & {
|
|
7193
7229
|
runSQL: () => Promise<void>;
|
|
7194
7230
|
runHTTP: () => Promise<void>;
|
|
@@ -10288,6 +10324,7 @@ export declare const tokens: {
|
|
|
10288
10324
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10289
10325
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10290
10326
|
}, {
|
|
10327
|
+
readonly query: any;
|
|
10291
10328
|
readonly valid: boolean;
|
|
10292
10329
|
readonly json: {
|
|
10293
10330
|
id: string;
|
|
@@ -10494,6 +10531,7 @@ export declare const tokens: {
|
|
|
10494
10531
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10495
10532
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10496
10533
|
}, {
|
|
10534
|
+
readonly query: any;
|
|
10497
10535
|
readonly valid: boolean;
|
|
10498
10536
|
readonly json: {
|
|
10499
10537
|
id: string;
|
|
@@ -10616,6 +10654,7 @@ export declare const tokens: {
|
|
|
10616
10654
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10617
10655
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
10618
10656
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10657
|
+
readonly query: any;
|
|
10619
10658
|
readonly valid: boolean;
|
|
10620
10659
|
readonly json: {
|
|
10621
10660
|
id: string;
|
|
@@ -10799,6 +10838,7 @@ export declare const tokens: {
|
|
|
10799
10838
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10800
10839
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10801
10840
|
}, {
|
|
10841
|
+
readonly query: any;
|
|
10802
10842
|
readonly valid: boolean;
|
|
10803
10843
|
readonly json: {
|
|
10804
10844
|
id: string;
|
|
@@ -11006,6 +11046,7 @@ export declare const tokens: {
|
|
|
11006
11046
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11007
11047
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11008
11048
|
}, {
|
|
11049
|
+
readonly query: any;
|
|
11009
11050
|
readonly valid: boolean;
|
|
11010
11051
|
readonly json: {
|
|
11011
11052
|
id: string;
|
|
@@ -11207,6 +11248,9 @@ export declare const tokens: {
|
|
|
11207
11248
|
readonly stateMessage: string;
|
|
11208
11249
|
} & {
|
|
11209
11250
|
controller: AbortController;
|
|
11251
|
+
} & {
|
|
11252
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
11253
|
+
setError(err: string | null): void;
|
|
11210
11254
|
} & {
|
|
11211
11255
|
runSQL: () => Promise<void>;
|
|
11212
11256
|
runHTTP: () => Promise<void>;
|
|
@@ -11341,6 +11385,7 @@ export declare const tokens: {
|
|
|
11341
11385
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11342
11386
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11343
11387
|
}, {
|
|
11388
|
+
readonly query: any;
|
|
11344
11389
|
readonly valid: boolean;
|
|
11345
11390
|
readonly json: {
|
|
11346
11391
|
id: string;
|
|
@@ -11543,6 +11588,9 @@ export declare const tokens: {
|
|
|
11543
11588
|
readonly stateMessage: string;
|
|
11544
11589
|
} & {
|
|
11545
11590
|
controller: AbortController;
|
|
11591
|
+
} & {
|
|
11592
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
11593
|
+
setError(err: string | null): void;
|
|
11546
11594
|
} & {
|
|
11547
11595
|
runSQL: () => Promise<void>;
|
|
11548
11596
|
runHTTP: () => Promise<void>;
|
|
@@ -11689,6 +11737,7 @@ export declare const tokens: {
|
|
|
11689
11737
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11690
11738
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11691
11739
|
}, {
|
|
11740
|
+
readonly query: any;
|
|
11692
11741
|
readonly valid: boolean;
|
|
11693
11742
|
readonly json: {
|
|
11694
11743
|
id: string;
|
|
@@ -11895,6 +11944,7 @@ export declare const tokens: {
|
|
|
11895
11944
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11896
11945
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11897
11946
|
}, {
|
|
11947
|
+
readonly query: any;
|
|
11898
11948
|
readonly valid: boolean;
|
|
11899
11949
|
readonly json: {
|
|
11900
11950
|
id: string;
|
|
@@ -12017,6 +12067,7 @@ export declare const tokens: {
|
|
|
12017
12067
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12018
12068
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
12019
12069
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12070
|
+
readonly query: any;
|
|
12020
12071
|
readonly valid: boolean;
|
|
12021
12072
|
readonly json: {
|
|
12022
12073
|
id: string;
|
|
@@ -12200,6 +12251,7 @@ export declare const tokens: {
|
|
|
12200
12251
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12201
12252
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12202
12253
|
}, {
|
|
12254
|
+
readonly query: any;
|
|
12203
12255
|
readonly valid: boolean;
|
|
12204
12256
|
readonly json: {
|
|
12205
12257
|
id: string;
|
|
@@ -12407,6 +12459,7 @@ export declare const tokens: {
|
|
|
12407
12459
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12408
12460
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12409
12461
|
}, {
|
|
12462
|
+
readonly query: any;
|
|
12410
12463
|
readonly valid: boolean;
|
|
12411
12464
|
readonly json: {
|
|
12412
12465
|
id: string;
|
|
@@ -12608,6 +12661,9 @@ export declare const tokens: {
|
|
|
12608
12661
|
readonly stateMessage: string;
|
|
12609
12662
|
} & {
|
|
12610
12663
|
controller: AbortController;
|
|
12664
|
+
} & {
|
|
12665
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
12666
|
+
setError(err: string | null): void;
|
|
12611
12667
|
} & {
|
|
12612
12668
|
runSQL: () => Promise<void>;
|
|
12613
12669
|
runHTTP: () => Promise<void>;
|
|
@@ -12742,6 +12798,7 @@ export declare const tokens: {
|
|
|
12742
12798
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12743
12799
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12744
12800
|
}, {
|
|
12801
|
+
readonly query: any;
|
|
12745
12802
|
readonly valid: boolean;
|
|
12746
12803
|
readonly json: {
|
|
12747
12804
|
id: string;
|
|
@@ -12944,6 +13001,9 @@ export declare const tokens: {
|
|
|
12944
13001
|
readonly stateMessage: string;
|
|
12945
13002
|
} & {
|
|
12946
13003
|
controller: AbortController;
|
|
13004
|
+
} & {
|
|
13005
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
13006
|
+
setError(err: string | null): void;
|
|
12947
13007
|
} & {
|
|
12948
13008
|
runSQL: () => Promise<void>;
|
|
12949
13009
|
runHTTP: () => Promise<void>;
|
|
@@ -13091,6 +13151,7 @@ export declare const tokens: {
|
|
|
13091
13151
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13092
13152
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13093
13153
|
}, {
|
|
13154
|
+
readonly query: any;
|
|
13094
13155
|
readonly valid: boolean;
|
|
13095
13156
|
readonly json: {
|
|
13096
13157
|
id: string;
|
|
@@ -13297,6 +13358,7 @@ export declare const tokens: {
|
|
|
13297
13358
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13298
13359
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13299
13360
|
}, {
|
|
13361
|
+
readonly query: any;
|
|
13300
13362
|
readonly valid: boolean;
|
|
13301
13363
|
readonly json: {
|
|
13302
13364
|
id: string;
|
|
@@ -13419,6 +13481,7 @@ export declare const tokens: {
|
|
|
13419
13481
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13420
13482
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
13421
13483
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
13484
|
+
readonly query: any;
|
|
13422
13485
|
readonly valid: boolean;
|
|
13423
13486
|
readonly json: {
|
|
13424
13487
|
id: string;
|
|
@@ -13602,6 +13665,7 @@ export declare const tokens: {
|
|
|
13602
13665
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13603
13666
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13604
13667
|
}, {
|
|
13668
|
+
readonly query: any;
|
|
13605
13669
|
readonly valid: boolean;
|
|
13606
13670
|
readonly json: {
|
|
13607
13671
|
id: string;
|
|
@@ -13809,6 +13873,7 @@ export declare const tokens: {
|
|
|
13809
13873
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13810
13874
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13811
13875
|
}, {
|
|
13876
|
+
readonly query: any;
|
|
13812
13877
|
readonly valid: boolean;
|
|
13813
13878
|
readonly json: {
|
|
13814
13879
|
id: string;
|
|
@@ -14010,6 +14075,9 @@ export declare const tokens: {
|
|
|
14010
14075
|
readonly stateMessage: string;
|
|
14011
14076
|
} & {
|
|
14012
14077
|
controller: AbortController;
|
|
14078
|
+
} & {
|
|
14079
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
14080
|
+
setError(err: string | null): void;
|
|
14013
14081
|
} & {
|
|
14014
14082
|
runSQL: () => Promise<void>;
|
|
14015
14083
|
runHTTP: () => Promise<void>;
|
|
@@ -14144,6 +14212,7 @@ export declare const tokens: {
|
|
|
14144
14212
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
14145
14213
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
14146
14214
|
}, {
|
|
14215
|
+
readonly query: any;
|
|
14147
14216
|
readonly valid: boolean;
|
|
14148
14217
|
readonly json: {
|
|
14149
14218
|
id: string;
|
|
@@ -14346,6 +14415,9 @@ export declare const tokens: {
|
|
|
14346
14415
|
readonly stateMessage: string;
|
|
14347
14416
|
} & {
|
|
14348
14417
|
controller: AbortController;
|
|
14418
|
+
} & {
|
|
14419
|
+
setData(data: string[][] | number[][] | import("../..").AnyObject[]): void;
|
|
14420
|
+
setError(err: string | null): void;
|
|
14349
14421
|
} & {
|
|
14350
14422
|
runSQL: () => Promise<void>;
|
|
14351
14423
|
runHTTP: () => Promise<void>;
|