@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
|
@@ -3112,6 +3112,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
3112
3112
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3113
3113
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3114
3114
|
}, {
|
|
3115
|
+
readonly query: any;
|
|
3115
3116
|
readonly valid: boolean;
|
|
3116
3117
|
readonly json: {
|
|
3117
3118
|
id: string;
|
|
@@ -3318,6 +3319,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
3318
3319
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3319
3320
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3320
3321
|
}, {
|
|
3322
|
+
readonly query: any;
|
|
3321
3323
|
readonly valid: boolean;
|
|
3322
3324
|
readonly json: {
|
|
3323
3325
|
id: string;
|
|
@@ -3440,6 +3442,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
3440
3442
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3441
3443
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
3442
3444
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3445
|
+
readonly query: any;
|
|
3443
3446
|
readonly valid: boolean;
|
|
3444
3447
|
readonly json: {
|
|
3445
3448
|
id: string;
|
|
@@ -3623,6 +3626,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
3623
3626
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3624
3627
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3625
3628
|
}, {
|
|
3629
|
+
readonly query: any;
|
|
3626
3630
|
readonly valid: boolean;
|
|
3627
3631
|
readonly json: {
|
|
3628
3632
|
id: string;
|
|
@@ -3830,6 +3834,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
3830
3834
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3831
3835
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3832
3836
|
}, {
|
|
3837
|
+
readonly query: any;
|
|
3833
3838
|
readonly valid: boolean;
|
|
3834
3839
|
readonly json: {
|
|
3835
3840
|
id: string;
|
|
@@ -4031,6 +4036,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
4031
4036
|
readonly stateMessage: string;
|
|
4032
4037
|
} & {
|
|
4033
4038
|
controller: AbortController;
|
|
4039
|
+
} & {
|
|
4040
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
4041
|
+
setError(err: string | null): void;
|
|
4034
4042
|
} & {
|
|
4035
4043
|
runSQL: () => Promise<void>;
|
|
4036
4044
|
runHTTP: () => Promise<void>;
|
|
@@ -4165,6 +4173,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
4165
4173
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4166
4174
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4167
4175
|
}, {
|
|
4176
|
+
readonly query: any;
|
|
4168
4177
|
readonly valid: boolean;
|
|
4169
4178
|
readonly json: {
|
|
4170
4179
|
id: string;
|
|
@@ -4367,6 +4376,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
4367
4376
|
readonly stateMessage: string;
|
|
4368
4377
|
} & {
|
|
4369
4378
|
controller: AbortController;
|
|
4379
|
+
} & {
|
|
4380
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
4381
|
+
setError(err: string | null): void;
|
|
4370
4382
|
} & {
|
|
4371
4383
|
runSQL: () => Promise<void>;
|
|
4372
4384
|
runHTTP: () => Promise<void>;
|
|
@@ -4513,6 +4525,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
4513
4525
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4514
4526
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4515
4527
|
}, {
|
|
4528
|
+
readonly query: any;
|
|
4516
4529
|
readonly valid: boolean;
|
|
4517
4530
|
readonly json: {
|
|
4518
4531
|
id: string;
|
|
@@ -4719,6 +4732,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
4719
4732
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4720
4733
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4721
4734
|
}, {
|
|
4735
|
+
readonly query: any;
|
|
4722
4736
|
readonly valid: boolean;
|
|
4723
4737
|
readonly json: {
|
|
4724
4738
|
id: string;
|
|
@@ -4841,6 +4855,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
4841
4855
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4842
4856
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
4843
4857
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4858
|
+
readonly query: any;
|
|
4844
4859
|
readonly valid: boolean;
|
|
4845
4860
|
readonly json: {
|
|
4846
4861
|
id: string;
|
|
@@ -5024,6 +5039,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
5024
5039
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5025
5040
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5026
5041
|
}, {
|
|
5042
|
+
readonly query: any;
|
|
5027
5043
|
readonly valid: boolean;
|
|
5028
5044
|
readonly json: {
|
|
5029
5045
|
id: string;
|
|
@@ -5231,6 +5247,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
5231
5247
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5232
5248
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5233
5249
|
}, {
|
|
5250
|
+
readonly query: any;
|
|
5234
5251
|
readonly valid: boolean;
|
|
5235
5252
|
readonly json: {
|
|
5236
5253
|
id: string;
|
|
@@ -5432,6 +5449,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
5432
5449
|
readonly stateMessage: string;
|
|
5433
5450
|
} & {
|
|
5434
5451
|
controller: AbortController;
|
|
5452
|
+
} & {
|
|
5453
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
5454
|
+
setError(err: string | null): void;
|
|
5435
5455
|
} & {
|
|
5436
5456
|
runSQL: () => Promise<void>;
|
|
5437
5457
|
runHTTP: () => Promise<void>;
|
|
@@ -5566,6 +5586,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
5566
5586
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5567
5587
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5568
5588
|
}, {
|
|
5589
|
+
readonly query: any;
|
|
5569
5590
|
readonly valid: boolean;
|
|
5570
5591
|
readonly json: {
|
|
5571
5592
|
id: string;
|
|
@@ -5768,6 +5789,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
5768
5789
|
readonly stateMessage: string;
|
|
5769
5790
|
} & {
|
|
5770
5791
|
controller: AbortController;
|
|
5792
|
+
} & {
|
|
5793
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
5794
|
+
setError(err: string | null): void;
|
|
5771
5795
|
} & {
|
|
5772
5796
|
runSQL: () => Promise<void>;
|
|
5773
5797
|
runHTTP: () => Promise<void>;
|
|
@@ -5915,6 +5939,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
5915
5939
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5916
5940
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5917
5941
|
}, {
|
|
5942
|
+
readonly query: any;
|
|
5918
5943
|
readonly valid: boolean;
|
|
5919
5944
|
readonly json: {
|
|
5920
5945
|
id: string;
|
|
@@ -6121,6 +6146,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
6121
6146
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6122
6147
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6123
6148
|
}, {
|
|
6149
|
+
readonly query: any;
|
|
6124
6150
|
readonly valid: boolean;
|
|
6125
6151
|
readonly json: {
|
|
6126
6152
|
id: string;
|
|
@@ -6243,6 +6269,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
6243
6269
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6244
6270
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
6245
6271
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6272
|
+
readonly query: any;
|
|
6246
6273
|
readonly valid: boolean;
|
|
6247
6274
|
readonly json: {
|
|
6248
6275
|
id: string;
|
|
@@ -6426,6 +6453,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
6426
6453
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6427
6454
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6428
6455
|
}, {
|
|
6456
|
+
readonly query: any;
|
|
6429
6457
|
readonly valid: boolean;
|
|
6430
6458
|
readonly json: {
|
|
6431
6459
|
id: string;
|
|
@@ -6633,6 +6661,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
6633
6661
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6634
6662
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6635
6663
|
}, {
|
|
6664
|
+
readonly query: any;
|
|
6636
6665
|
readonly valid: boolean;
|
|
6637
6666
|
readonly json: {
|
|
6638
6667
|
id: string;
|
|
@@ -6834,6 +6863,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
6834
6863
|
readonly stateMessage: string;
|
|
6835
6864
|
} & {
|
|
6836
6865
|
controller: AbortController;
|
|
6866
|
+
} & {
|
|
6867
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
6868
|
+
setError(err: string | null): void;
|
|
6837
6869
|
} & {
|
|
6838
6870
|
runSQL: () => Promise<void>;
|
|
6839
6871
|
runHTTP: () => Promise<void>;
|
|
@@ -6968,6 +7000,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
6968
7000
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6969
7001
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6970
7002
|
}, {
|
|
7003
|
+
readonly query: any;
|
|
6971
7004
|
readonly valid: boolean;
|
|
6972
7005
|
readonly json: {
|
|
6973
7006
|
id: string;
|
|
@@ -7170,6 +7203,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
7170
7203
|
readonly stateMessage: string;
|
|
7171
7204
|
} & {
|
|
7172
7205
|
controller: AbortController;
|
|
7206
|
+
} & {
|
|
7207
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
7208
|
+
setError(err: string | null): void;
|
|
7173
7209
|
} & {
|
|
7174
7210
|
runSQL: () => Promise<void>;
|
|
7175
7211
|
runHTTP: () => Promise<void>;
|
|
@@ -10208,6 +10244,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
10208
10244
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10209
10245
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10210
10246
|
}, {
|
|
10247
|
+
readonly query: any;
|
|
10211
10248
|
readonly valid: boolean;
|
|
10212
10249
|
readonly json: {
|
|
10213
10250
|
id: string;
|
|
@@ -10414,6 +10451,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
10414
10451
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10415
10452
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10416
10453
|
}, {
|
|
10454
|
+
readonly query: any;
|
|
10417
10455
|
readonly valid: boolean;
|
|
10418
10456
|
readonly json: {
|
|
10419
10457
|
id: string;
|
|
@@ -10536,6 +10574,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
10536
10574
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10537
10575
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
10538
10576
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10577
|
+
readonly query: any;
|
|
10539
10578
|
readonly valid: boolean;
|
|
10540
10579
|
readonly json: {
|
|
10541
10580
|
id: string;
|
|
@@ -10719,6 +10758,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
10719
10758
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10720
10759
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10721
10760
|
}, {
|
|
10761
|
+
readonly query: any;
|
|
10722
10762
|
readonly valid: boolean;
|
|
10723
10763
|
readonly json: {
|
|
10724
10764
|
id: string;
|
|
@@ -10926,6 +10966,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
10926
10966
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10927
10967
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10928
10968
|
}, {
|
|
10969
|
+
readonly query: any;
|
|
10929
10970
|
readonly valid: boolean;
|
|
10930
10971
|
readonly json: {
|
|
10931
10972
|
id: string;
|
|
@@ -11127,6 +11168,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
11127
11168
|
readonly stateMessage: string;
|
|
11128
11169
|
} & {
|
|
11129
11170
|
controller: AbortController;
|
|
11171
|
+
} & {
|
|
11172
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
11173
|
+
setError(err: string | null): void;
|
|
11130
11174
|
} & {
|
|
11131
11175
|
runSQL: () => Promise<void>;
|
|
11132
11176
|
runHTTP: () => Promise<void>;
|
|
@@ -11261,6 +11305,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
11261
11305
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11262
11306
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11263
11307
|
}, {
|
|
11308
|
+
readonly query: any;
|
|
11264
11309
|
readonly valid: boolean;
|
|
11265
11310
|
readonly json: {
|
|
11266
11311
|
id: string;
|
|
@@ -11463,6 +11508,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
11463
11508
|
readonly stateMessage: string;
|
|
11464
11509
|
} & {
|
|
11465
11510
|
controller: AbortController;
|
|
11511
|
+
} & {
|
|
11512
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
11513
|
+
setError(err: string | null): void;
|
|
11466
11514
|
} & {
|
|
11467
11515
|
runSQL: () => Promise<void>;
|
|
11468
11516
|
runHTTP: () => Promise<void>;
|
|
@@ -11609,6 +11657,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
11609
11657
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11610
11658
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11611
11659
|
}, {
|
|
11660
|
+
readonly query: any;
|
|
11612
11661
|
readonly valid: boolean;
|
|
11613
11662
|
readonly json: {
|
|
11614
11663
|
id: string;
|
|
@@ -11815,6 +11864,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
11815
11864
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11816
11865
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11817
11866
|
}, {
|
|
11867
|
+
readonly query: any;
|
|
11818
11868
|
readonly valid: boolean;
|
|
11819
11869
|
readonly json: {
|
|
11820
11870
|
id: string;
|
|
@@ -11937,6 +11987,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
11937
11987
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11938
11988
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
11939
11989
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11990
|
+
readonly query: any;
|
|
11940
11991
|
readonly valid: boolean;
|
|
11941
11992
|
readonly json: {
|
|
11942
11993
|
id: string;
|
|
@@ -12120,6 +12171,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
12120
12171
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12121
12172
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12122
12173
|
}, {
|
|
12174
|
+
readonly query: any;
|
|
12123
12175
|
readonly valid: boolean;
|
|
12124
12176
|
readonly json: {
|
|
12125
12177
|
id: string;
|
|
@@ -12327,6 +12379,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
12327
12379
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12328
12380
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12329
12381
|
}, {
|
|
12382
|
+
readonly query: any;
|
|
12330
12383
|
readonly valid: boolean;
|
|
12331
12384
|
readonly json: {
|
|
12332
12385
|
id: string;
|
|
@@ -12528,6 +12581,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
12528
12581
|
readonly stateMessage: string;
|
|
12529
12582
|
} & {
|
|
12530
12583
|
controller: AbortController;
|
|
12584
|
+
} & {
|
|
12585
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
12586
|
+
setError(err: string | null): void;
|
|
12531
12587
|
} & {
|
|
12532
12588
|
runSQL: () => Promise<void>;
|
|
12533
12589
|
runHTTP: () => Promise<void>;
|
|
@@ -12662,6 +12718,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
12662
12718
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12663
12719
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12664
12720
|
}, {
|
|
12721
|
+
readonly query: any;
|
|
12665
12722
|
readonly valid: boolean;
|
|
12666
12723
|
readonly json: {
|
|
12667
12724
|
id: string;
|
|
@@ -12864,6 +12921,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
12864
12921
|
readonly stateMessage: string;
|
|
12865
12922
|
} & {
|
|
12866
12923
|
controller: AbortController;
|
|
12924
|
+
} & {
|
|
12925
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
12926
|
+
setError(err: string | null): void;
|
|
12867
12927
|
} & {
|
|
12868
12928
|
runSQL: () => Promise<void>;
|
|
12869
12929
|
runHTTP: () => Promise<void>;
|
|
@@ -13011,6 +13071,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
13011
13071
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13012
13072
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13013
13073
|
}, {
|
|
13074
|
+
readonly query: any;
|
|
13014
13075
|
readonly valid: boolean;
|
|
13015
13076
|
readonly json: {
|
|
13016
13077
|
id: string;
|
|
@@ -13217,6 +13278,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
13217
13278
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13218
13279
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13219
13280
|
}, {
|
|
13281
|
+
readonly query: any;
|
|
13220
13282
|
readonly valid: boolean;
|
|
13221
13283
|
readonly json: {
|
|
13222
13284
|
id: string;
|
|
@@ -13339,6 +13401,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
13339
13401
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13340
13402
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
13341
13403
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
13404
|
+
readonly query: any;
|
|
13342
13405
|
readonly valid: boolean;
|
|
13343
13406
|
readonly json: {
|
|
13344
13407
|
id: string;
|
|
@@ -13522,6 +13585,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
13522
13585
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13523
13586
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13524
13587
|
}, {
|
|
13588
|
+
readonly query: any;
|
|
13525
13589
|
readonly valid: boolean;
|
|
13526
13590
|
readonly json: {
|
|
13527
13591
|
id: string;
|
|
@@ -13729,6 +13793,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
13729
13793
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13730
13794
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13731
13795
|
}, {
|
|
13796
|
+
readonly query: any;
|
|
13732
13797
|
readonly valid: boolean;
|
|
13733
13798
|
readonly json: {
|
|
13734
13799
|
id: string;
|
|
@@ -13930,6 +13995,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
13930
13995
|
readonly stateMessage: string;
|
|
13931
13996
|
} & {
|
|
13932
13997
|
controller: AbortController;
|
|
13998
|
+
} & {
|
|
13999
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
14000
|
+
setError(err: string | null): void;
|
|
13933
14001
|
} & {
|
|
13934
14002
|
runSQL: () => Promise<void>;
|
|
13935
14003
|
runHTTP: () => Promise<void>;
|
|
@@ -14064,6 +14132,7 @@ export declare const useRenderPanelContext: () => {
|
|
|
14064
14132
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
14065
14133
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
14066
14134
|
}, {
|
|
14135
|
+
readonly query: any;
|
|
14067
14136
|
readonly valid: boolean;
|
|
14068
14137
|
readonly json: {
|
|
14069
14138
|
id: string;
|
|
@@ -14266,6 +14335,9 @@ export declare const useRenderPanelContext: () => {
|
|
|
14266
14335
|
readonly stateMessage: string;
|
|
14267
14336
|
} & {
|
|
14268
14337
|
controller: AbortController;
|
|
14338
|
+
} & {
|
|
14339
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
14340
|
+
setError(err: string | null): void;
|
|
14269
14341
|
} & {
|
|
14270
14342
|
runSQL: () => Promise<void>;
|
|
14271
14343
|
runHTTP: () => Promise<void>;
|
|
@@ -17865,6 +17937,7 @@ export declare const useEditPanelContext: () => {
|
|
|
17865
17937
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
17866
17938
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
17867
17939
|
}, {
|
|
17940
|
+
readonly query: any;
|
|
17868
17941
|
readonly valid: boolean;
|
|
17869
17942
|
readonly json: {
|
|
17870
17943
|
id: string;
|
|
@@ -18071,6 +18144,7 @@ export declare const useEditPanelContext: () => {
|
|
|
18071
18144
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
18072
18145
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
18073
18146
|
}, {
|
|
18147
|
+
readonly query: any;
|
|
18074
18148
|
readonly valid: boolean;
|
|
18075
18149
|
readonly json: {
|
|
18076
18150
|
id: string;
|
|
@@ -18193,6 +18267,7 @@ export declare const useEditPanelContext: () => {
|
|
|
18193
18267
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
18194
18268
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
18195
18269
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
18270
|
+
readonly query: any;
|
|
18196
18271
|
readonly valid: boolean;
|
|
18197
18272
|
readonly json: {
|
|
18198
18273
|
id: string;
|
|
@@ -18376,6 +18451,7 @@ export declare const useEditPanelContext: () => {
|
|
|
18376
18451
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
18377
18452
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
18378
18453
|
}, {
|
|
18454
|
+
readonly query: any;
|
|
18379
18455
|
readonly valid: boolean;
|
|
18380
18456
|
readonly json: {
|
|
18381
18457
|
id: string;
|
|
@@ -18583,6 +18659,7 @@ export declare const useEditPanelContext: () => {
|
|
|
18583
18659
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
18584
18660
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
18585
18661
|
}, {
|
|
18662
|
+
readonly query: any;
|
|
18586
18663
|
readonly valid: boolean;
|
|
18587
18664
|
readonly json: {
|
|
18588
18665
|
id: string;
|
|
@@ -18784,6 +18861,9 @@ export declare const useEditPanelContext: () => {
|
|
|
18784
18861
|
readonly stateMessage: string;
|
|
18785
18862
|
} & {
|
|
18786
18863
|
controller: AbortController;
|
|
18864
|
+
} & {
|
|
18865
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
18866
|
+
setError(err: string | null): void;
|
|
18787
18867
|
} & {
|
|
18788
18868
|
runSQL: () => Promise<void>;
|
|
18789
18869
|
runHTTP: () => Promise<void>;
|
|
@@ -18918,6 +18998,7 @@ export declare const useEditPanelContext: () => {
|
|
|
18918
18998
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
18919
18999
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
18920
19000
|
}, {
|
|
19001
|
+
readonly query: any;
|
|
18921
19002
|
readonly valid: boolean;
|
|
18922
19003
|
readonly json: {
|
|
18923
19004
|
id: string;
|
|
@@ -19120,6 +19201,9 @@ export declare const useEditPanelContext: () => {
|
|
|
19120
19201
|
readonly stateMessage: string;
|
|
19121
19202
|
} & {
|
|
19122
19203
|
controller: AbortController;
|
|
19204
|
+
} & {
|
|
19205
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
19206
|
+
setError(err: string | null): void;
|
|
19123
19207
|
} & {
|
|
19124
19208
|
runSQL: () => Promise<void>;
|
|
19125
19209
|
runHTTP: () => Promise<void>;
|
|
@@ -19266,6 +19350,7 @@ export declare const useEditPanelContext: () => {
|
|
|
19266
19350
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
19267
19351
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
19268
19352
|
}, {
|
|
19353
|
+
readonly query: any;
|
|
19269
19354
|
readonly valid: boolean;
|
|
19270
19355
|
readonly json: {
|
|
19271
19356
|
id: string;
|
|
@@ -19472,6 +19557,7 @@ export declare const useEditPanelContext: () => {
|
|
|
19472
19557
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
19473
19558
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
19474
19559
|
}, {
|
|
19560
|
+
readonly query: any;
|
|
19475
19561
|
readonly valid: boolean;
|
|
19476
19562
|
readonly json: {
|
|
19477
19563
|
id: string;
|
|
@@ -19594,6 +19680,7 @@ export declare const useEditPanelContext: () => {
|
|
|
19594
19680
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
19595
19681
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
19596
19682
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
19683
|
+
readonly query: any;
|
|
19597
19684
|
readonly valid: boolean;
|
|
19598
19685
|
readonly json: {
|
|
19599
19686
|
id: string;
|
|
@@ -19777,6 +19864,7 @@ export declare const useEditPanelContext: () => {
|
|
|
19777
19864
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
19778
19865
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
19779
19866
|
}, {
|
|
19867
|
+
readonly query: any;
|
|
19780
19868
|
readonly valid: boolean;
|
|
19781
19869
|
readonly json: {
|
|
19782
19870
|
id: string;
|
|
@@ -19984,6 +20072,7 @@ export declare const useEditPanelContext: () => {
|
|
|
19984
20072
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
19985
20073
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
19986
20074
|
}, {
|
|
20075
|
+
readonly query: any;
|
|
19987
20076
|
readonly valid: boolean;
|
|
19988
20077
|
readonly json: {
|
|
19989
20078
|
id: string;
|
|
@@ -20185,6 +20274,9 @@ export declare const useEditPanelContext: () => {
|
|
|
20185
20274
|
readonly stateMessage: string;
|
|
20186
20275
|
} & {
|
|
20187
20276
|
controller: AbortController;
|
|
20277
|
+
} & {
|
|
20278
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
20279
|
+
setError(err: string | null): void;
|
|
20188
20280
|
} & {
|
|
20189
20281
|
runSQL: () => Promise<void>;
|
|
20190
20282
|
runHTTP: () => Promise<void>;
|
|
@@ -20319,6 +20411,7 @@ export declare const useEditPanelContext: () => {
|
|
|
20319
20411
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
20320
20412
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
20321
20413
|
}, {
|
|
20414
|
+
readonly query: any;
|
|
20322
20415
|
readonly valid: boolean;
|
|
20323
20416
|
readonly json: {
|
|
20324
20417
|
id: string;
|
|
@@ -20521,6 +20614,9 @@ export declare const useEditPanelContext: () => {
|
|
|
20521
20614
|
readonly stateMessage: string;
|
|
20522
20615
|
} & {
|
|
20523
20616
|
controller: AbortController;
|
|
20617
|
+
} & {
|
|
20618
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
20619
|
+
setError(err: string | null): void;
|
|
20524
20620
|
} & {
|
|
20525
20621
|
runSQL: () => Promise<void>;
|
|
20526
20622
|
runHTTP: () => Promise<void>;
|
|
@@ -20668,6 +20764,7 @@ export declare const useEditPanelContext: () => {
|
|
|
20668
20764
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
20669
20765
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
20670
20766
|
}, {
|
|
20767
|
+
readonly query: any;
|
|
20671
20768
|
readonly valid: boolean;
|
|
20672
20769
|
readonly json: {
|
|
20673
20770
|
id: string;
|
|
@@ -20874,6 +20971,7 @@ export declare const useEditPanelContext: () => {
|
|
|
20874
20971
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
20875
20972
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
20876
20973
|
}, {
|
|
20974
|
+
readonly query: any;
|
|
20877
20975
|
readonly valid: boolean;
|
|
20878
20976
|
readonly json: {
|
|
20879
20977
|
id: string;
|
|
@@ -20996,6 +21094,7 @@ export declare const useEditPanelContext: () => {
|
|
|
20996
21094
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
20997
21095
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
20998
21096
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
21097
|
+
readonly query: any;
|
|
20999
21098
|
readonly valid: boolean;
|
|
21000
21099
|
readonly json: {
|
|
21001
21100
|
id: string;
|
|
@@ -21179,6 +21278,7 @@ export declare const useEditPanelContext: () => {
|
|
|
21179
21278
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
21180
21279
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
21181
21280
|
}, {
|
|
21281
|
+
readonly query: any;
|
|
21182
21282
|
readonly valid: boolean;
|
|
21183
21283
|
readonly json: {
|
|
21184
21284
|
id: string;
|
|
@@ -21386,6 +21486,7 @@ export declare const useEditPanelContext: () => {
|
|
|
21386
21486
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
21387
21487
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
21388
21488
|
}, {
|
|
21489
|
+
readonly query: any;
|
|
21389
21490
|
readonly valid: boolean;
|
|
21390
21491
|
readonly json: {
|
|
21391
21492
|
id: string;
|
|
@@ -21587,6 +21688,9 @@ export declare const useEditPanelContext: () => {
|
|
|
21587
21688
|
readonly stateMessage: string;
|
|
21588
21689
|
} & {
|
|
21589
21690
|
controller: AbortController;
|
|
21691
|
+
} & {
|
|
21692
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
21693
|
+
setError(err: string | null): void;
|
|
21590
21694
|
} & {
|
|
21591
21695
|
runSQL: () => Promise<void>;
|
|
21592
21696
|
runHTTP: () => Promise<void>;
|
|
@@ -21721,6 +21825,7 @@ export declare const useEditPanelContext: () => {
|
|
|
21721
21825
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
21722
21826
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
21723
21827
|
}, {
|
|
21828
|
+
readonly query: any;
|
|
21724
21829
|
readonly valid: boolean;
|
|
21725
21830
|
readonly json: {
|
|
21726
21831
|
id: string;
|
|
@@ -21923,6 +22028,9 @@ export declare const useEditPanelContext: () => {
|
|
|
21923
22028
|
readonly stateMessage: string;
|
|
21924
22029
|
} & {
|
|
21925
22030
|
controller: AbortController;
|
|
22031
|
+
} & {
|
|
22032
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
22033
|
+
setError(err: string | null): void;
|
|
21926
22034
|
} & {
|
|
21927
22035
|
runSQL: () => Promise<void>;
|
|
21928
22036
|
runHTTP: () => Promise<void>;
|
|
@@ -25022,6 +25130,7 @@ export declare const useEditPanelContext: () => {
|
|
|
25022
25130
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
25023
25131
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
25024
25132
|
}, {
|
|
25133
|
+
readonly query: any;
|
|
25025
25134
|
readonly valid: boolean;
|
|
25026
25135
|
readonly json: {
|
|
25027
25136
|
id: string;
|
|
@@ -25228,6 +25337,7 @@ export declare const useEditPanelContext: () => {
|
|
|
25228
25337
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
25229
25338
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
25230
25339
|
}, {
|
|
25340
|
+
readonly query: any;
|
|
25231
25341
|
readonly valid: boolean;
|
|
25232
25342
|
readonly json: {
|
|
25233
25343
|
id: string;
|
|
@@ -25350,6 +25460,7 @@ export declare const useEditPanelContext: () => {
|
|
|
25350
25460
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
25351
25461
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
25352
25462
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
25463
|
+
readonly query: any;
|
|
25353
25464
|
readonly valid: boolean;
|
|
25354
25465
|
readonly json: {
|
|
25355
25466
|
id: string;
|
|
@@ -25533,6 +25644,7 @@ export declare const useEditPanelContext: () => {
|
|
|
25533
25644
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
25534
25645
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
25535
25646
|
}, {
|
|
25647
|
+
readonly query: any;
|
|
25536
25648
|
readonly valid: boolean;
|
|
25537
25649
|
readonly json: {
|
|
25538
25650
|
id: string;
|
|
@@ -25740,6 +25852,7 @@ export declare const useEditPanelContext: () => {
|
|
|
25740
25852
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
25741
25853
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
25742
25854
|
}, {
|
|
25855
|
+
readonly query: any;
|
|
25743
25856
|
readonly valid: boolean;
|
|
25744
25857
|
readonly json: {
|
|
25745
25858
|
id: string;
|
|
@@ -25941,6 +26054,9 @@ export declare const useEditPanelContext: () => {
|
|
|
25941
26054
|
readonly stateMessage: string;
|
|
25942
26055
|
} & {
|
|
25943
26056
|
controller: AbortController;
|
|
26057
|
+
} & {
|
|
26058
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
26059
|
+
setError(err: string | null): void;
|
|
25944
26060
|
} & {
|
|
25945
26061
|
runSQL: () => Promise<void>;
|
|
25946
26062
|
runHTTP: () => Promise<void>;
|
|
@@ -26075,6 +26191,7 @@ export declare const useEditPanelContext: () => {
|
|
|
26075
26191
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
26076
26192
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
26077
26193
|
}, {
|
|
26194
|
+
readonly query: any;
|
|
26078
26195
|
readonly valid: boolean;
|
|
26079
26196
|
readonly json: {
|
|
26080
26197
|
id: string;
|
|
@@ -26277,6 +26394,9 @@ export declare const useEditPanelContext: () => {
|
|
|
26277
26394
|
readonly stateMessage: string;
|
|
26278
26395
|
} & {
|
|
26279
26396
|
controller: AbortController;
|
|
26397
|
+
} & {
|
|
26398
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
26399
|
+
setError(err: string | null): void;
|
|
26280
26400
|
} & {
|
|
26281
26401
|
runSQL: () => Promise<void>;
|
|
26282
26402
|
runHTTP: () => Promise<void>;
|
|
@@ -26423,6 +26543,7 @@ export declare const useEditPanelContext: () => {
|
|
|
26423
26543
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
26424
26544
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
26425
26545
|
}, {
|
|
26546
|
+
readonly query: any;
|
|
26426
26547
|
readonly valid: boolean;
|
|
26427
26548
|
readonly json: {
|
|
26428
26549
|
id: string;
|
|
@@ -26629,6 +26750,7 @@ export declare const useEditPanelContext: () => {
|
|
|
26629
26750
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
26630
26751
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
26631
26752
|
}, {
|
|
26753
|
+
readonly query: any;
|
|
26632
26754
|
readonly valid: boolean;
|
|
26633
26755
|
readonly json: {
|
|
26634
26756
|
id: string;
|
|
@@ -26751,6 +26873,7 @@ export declare const useEditPanelContext: () => {
|
|
|
26751
26873
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
26752
26874
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
26753
26875
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
26876
|
+
readonly query: any;
|
|
26754
26877
|
readonly valid: boolean;
|
|
26755
26878
|
readonly json: {
|
|
26756
26879
|
id: string;
|
|
@@ -26934,6 +27057,7 @@ export declare const useEditPanelContext: () => {
|
|
|
26934
27057
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
26935
27058
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
26936
27059
|
}, {
|
|
27060
|
+
readonly query: any;
|
|
26937
27061
|
readonly valid: boolean;
|
|
26938
27062
|
readonly json: {
|
|
26939
27063
|
id: string;
|
|
@@ -27141,6 +27265,7 @@ export declare const useEditPanelContext: () => {
|
|
|
27141
27265
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
27142
27266
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
27143
27267
|
}, {
|
|
27268
|
+
readonly query: any;
|
|
27144
27269
|
readonly valid: boolean;
|
|
27145
27270
|
readonly json: {
|
|
27146
27271
|
id: string;
|
|
@@ -27342,6 +27467,9 @@ export declare const useEditPanelContext: () => {
|
|
|
27342
27467
|
readonly stateMessage: string;
|
|
27343
27468
|
} & {
|
|
27344
27469
|
controller: AbortController;
|
|
27470
|
+
} & {
|
|
27471
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
27472
|
+
setError(err: string | null): void;
|
|
27345
27473
|
} & {
|
|
27346
27474
|
runSQL: () => Promise<void>;
|
|
27347
27475
|
runHTTP: () => Promise<void>;
|
|
@@ -27476,6 +27604,7 @@ export declare const useEditPanelContext: () => {
|
|
|
27476
27604
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
27477
27605
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
27478
27606
|
}, {
|
|
27607
|
+
readonly query: any;
|
|
27479
27608
|
readonly valid: boolean;
|
|
27480
27609
|
readonly json: {
|
|
27481
27610
|
id: string;
|
|
@@ -27678,6 +27807,9 @@ export declare const useEditPanelContext: () => {
|
|
|
27678
27807
|
readonly stateMessage: string;
|
|
27679
27808
|
} & {
|
|
27680
27809
|
controller: AbortController;
|
|
27810
|
+
} & {
|
|
27811
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
27812
|
+
setError(err: string | null): void;
|
|
27681
27813
|
} & {
|
|
27682
27814
|
runSQL: () => Promise<void>;
|
|
27683
27815
|
runHTTP: () => Promise<void>;
|
|
@@ -27825,6 +27957,7 @@ export declare const useEditPanelContext: () => {
|
|
|
27825
27957
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
27826
27958
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
27827
27959
|
}, {
|
|
27960
|
+
readonly query: any;
|
|
27828
27961
|
readonly valid: boolean;
|
|
27829
27962
|
readonly json: {
|
|
27830
27963
|
id: string;
|
|
@@ -28031,6 +28164,7 @@ export declare const useEditPanelContext: () => {
|
|
|
28031
28164
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
28032
28165
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
28033
28166
|
}, {
|
|
28167
|
+
readonly query: any;
|
|
28034
28168
|
readonly valid: boolean;
|
|
28035
28169
|
readonly json: {
|
|
28036
28170
|
id: string;
|
|
@@ -28153,6 +28287,7 @@ export declare const useEditPanelContext: () => {
|
|
|
28153
28287
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
28154
28288
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
28155
28289
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
28290
|
+
readonly query: any;
|
|
28156
28291
|
readonly valid: boolean;
|
|
28157
28292
|
readonly json: {
|
|
28158
28293
|
id: string;
|
|
@@ -28336,6 +28471,7 @@ export declare const useEditPanelContext: () => {
|
|
|
28336
28471
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
28337
28472
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
28338
28473
|
}, {
|
|
28474
|
+
readonly query: any;
|
|
28339
28475
|
readonly valid: boolean;
|
|
28340
28476
|
readonly json: {
|
|
28341
28477
|
id: string;
|
|
@@ -28543,6 +28679,7 @@ export declare const useEditPanelContext: () => {
|
|
|
28543
28679
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
28544
28680
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
28545
28681
|
}, {
|
|
28682
|
+
readonly query: any;
|
|
28546
28683
|
readonly valid: boolean;
|
|
28547
28684
|
readonly json: {
|
|
28548
28685
|
id: string;
|
|
@@ -28744,6 +28881,9 @@ export declare const useEditPanelContext: () => {
|
|
|
28744
28881
|
readonly stateMessage: string;
|
|
28745
28882
|
} & {
|
|
28746
28883
|
controller: AbortController;
|
|
28884
|
+
} & {
|
|
28885
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
28886
|
+
setError(err: string | null): void;
|
|
28747
28887
|
} & {
|
|
28748
28888
|
runSQL: () => Promise<void>;
|
|
28749
28889
|
runHTTP: () => Promise<void>;
|
|
@@ -28878,6 +29018,7 @@ export declare const useEditPanelContext: () => {
|
|
|
28878
29018
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
28879
29019
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
28880
29020
|
}, {
|
|
29021
|
+
readonly query: any;
|
|
28881
29022
|
readonly valid: boolean;
|
|
28882
29023
|
readonly json: {
|
|
28883
29024
|
id: string;
|
|
@@ -29080,6 +29221,9 @@ export declare const useEditPanelContext: () => {
|
|
|
29080
29221
|
readonly stateMessage: string;
|
|
29081
29222
|
} & {
|
|
29082
29223
|
controller: AbortController;
|
|
29224
|
+
} & {
|
|
29225
|
+
setData(data: string[][] | number[][] | import("..").AnyObject[]): void;
|
|
29226
|
+
setError(err: string | null): void;
|
|
29083
29227
|
} & {
|
|
29084
29228
|
runSQL: () => Promise<void>;
|
|
29085
29229
|
runHTTP: () => Promise<void>;
|