@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
|
@@ -3107,6 +3107,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
3107
3107
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3108
3108
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3109
3109
|
}, {
|
|
3110
|
+
readonly query: any;
|
|
3110
3111
|
readonly valid: boolean;
|
|
3111
3112
|
readonly json: {
|
|
3112
3113
|
id: string;
|
|
@@ -3313,6 +3314,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
3313
3314
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3314
3315
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3315
3316
|
}, {
|
|
3317
|
+
readonly query: any;
|
|
3316
3318
|
readonly valid: boolean;
|
|
3317
3319
|
readonly json: {
|
|
3318
3320
|
id: string;
|
|
@@ -3435,6 +3437,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
3435
3437
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3436
3438
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
3437
3439
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3440
|
+
readonly query: any;
|
|
3438
3441
|
readonly valid: boolean;
|
|
3439
3442
|
readonly json: {
|
|
3440
3443
|
id: string;
|
|
@@ -3618,6 +3621,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
3618
3621
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3619
3622
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3620
3623
|
}, {
|
|
3624
|
+
readonly query: any;
|
|
3621
3625
|
readonly valid: boolean;
|
|
3622
3626
|
readonly json: {
|
|
3623
3627
|
id: string;
|
|
@@ -3825,6 +3829,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
3825
3829
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3826
3830
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3827
3831
|
}, {
|
|
3832
|
+
readonly query: any;
|
|
3828
3833
|
readonly valid: boolean;
|
|
3829
3834
|
readonly json: {
|
|
3830
3835
|
id: string;
|
|
@@ -4026,6 +4031,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4026
4031
|
readonly stateMessage: string;
|
|
4027
4032
|
} & {
|
|
4028
4033
|
controller: AbortController;
|
|
4034
|
+
} & {
|
|
4035
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
4036
|
+
setError(err: string | null): void;
|
|
4029
4037
|
} & {
|
|
4030
4038
|
runSQL: () => Promise<void>;
|
|
4031
4039
|
runHTTP: () => Promise<void>;
|
|
@@ -4160,6 +4168,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4160
4168
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4161
4169
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4162
4170
|
}, {
|
|
4171
|
+
readonly query: any;
|
|
4163
4172
|
readonly valid: boolean;
|
|
4164
4173
|
readonly json: {
|
|
4165
4174
|
id: string;
|
|
@@ -4362,6 +4371,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4362
4371
|
readonly stateMessage: string;
|
|
4363
4372
|
} & {
|
|
4364
4373
|
controller: AbortController;
|
|
4374
|
+
} & {
|
|
4375
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
4376
|
+
setError(err: string | null): void;
|
|
4365
4377
|
} & {
|
|
4366
4378
|
runSQL: () => Promise<void>;
|
|
4367
4379
|
runHTTP: () => Promise<void>;
|
|
@@ -4508,6 +4520,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4508
4520
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4509
4521
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4510
4522
|
}, {
|
|
4523
|
+
readonly query: any;
|
|
4511
4524
|
readonly valid: boolean;
|
|
4512
4525
|
readonly json: {
|
|
4513
4526
|
id: string;
|
|
@@ -4714,6 +4727,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4714
4727
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4715
4728
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4716
4729
|
}, {
|
|
4730
|
+
readonly query: any;
|
|
4717
4731
|
readonly valid: boolean;
|
|
4718
4732
|
readonly json: {
|
|
4719
4733
|
id: string;
|
|
@@ -4836,6 +4850,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4836
4850
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4837
4851
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
4838
4852
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4853
|
+
readonly query: any;
|
|
4839
4854
|
readonly valid: boolean;
|
|
4840
4855
|
readonly json: {
|
|
4841
4856
|
id: string;
|
|
@@ -5019,6 +5034,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
5019
5034
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5020
5035
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5021
5036
|
}, {
|
|
5037
|
+
readonly query: any;
|
|
5022
5038
|
readonly valid: boolean;
|
|
5023
5039
|
readonly json: {
|
|
5024
5040
|
id: string;
|
|
@@ -5226,6 +5242,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
5226
5242
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5227
5243
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5228
5244
|
}, {
|
|
5245
|
+
readonly query: any;
|
|
5229
5246
|
readonly valid: boolean;
|
|
5230
5247
|
readonly json: {
|
|
5231
5248
|
id: string;
|
|
@@ -5427,6 +5444,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
5427
5444
|
readonly stateMessage: string;
|
|
5428
5445
|
} & {
|
|
5429
5446
|
controller: AbortController;
|
|
5447
|
+
} & {
|
|
5448
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
5449
|
+
setError(err: string | null): void;
|
|
5430
5450
|
} & {
|
|
5431
5451
|
runSQL: () => Promise<void>;
|
|
5432
5452
|
runHTTP: () => Promise<void>;
|
|
@@ -5561,6 +5581,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
5561
5581
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5562
5582
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5563
5583
|
}, {
|
|
5584
|
+
readonly query: any;
|
|
5564
5585
|
readonly valid: boolean;
|
|
5565
5586
|
readonly json: {
|
|
5566
5587
|
id: string;
|
|
@@ -5763,6 +5784,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
5763
5784
|
readonly stateMessage: string;
|
|
5764
5785
|
} & {
|
|
5765
5786
|
controller: AbortController;
|
|
5787
|
+
} & {
|
|
5788
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
5789
|
+
setError(err: string | null): void;
|
|
5766
5790
|
} & {
|
|
5767
5791
|
runSQL: () => Promise<void>;
|
|
5768
5792
|
runHTTP: () => Promise<void>;
|
|
@@ -5910,6 +5934,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
5910
5934
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5911
5935
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5912
5936
|
}, {
|
|
5937
|
+
readonly query: any;
|
|
5913
5938
|
readonly valid: boolean;
|
|
5914
5939
|
readonly json: {
|
|
5915
5940
|
id: string;
|
|
@@ -6116,6 +6141,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
6116
6141
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6117
6142
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6118
6143
|
}, {
|
|
6144
|
+
readonly query: any;
|
|
6119
6145
|
readonly valid: boolean;
|
|
6120
6146
|
readonly json: {
|
|
6121
6147
|
id: string;
|
|
@@ -6238,6 +6264,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
6238
6264
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6239
6265
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
6240
6266
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6267
|
+
readonly query: any;
|
|
6241
6268
|
readonly valid: boolean;
|
|
6242
6269
|
readonly json: {
|
|
6243
6270
|
id: string;
|
|
@@ -6421,6 +6448,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
6421
6448
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6422
6449
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6423
6450
|
}, {
|
|
6451
|
+
readonly query: any;
|
|
6424
6452
|
readonly valid: boolean;
|
|
6425
6453
|
readonly json: {
|
|
6426
6454
|
id: string;
|
|
@@ -6628,6 +6656,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
6628
6656
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6629
6657
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6630
6658
|
}, {
|
|
6659
|
+
readonly query: any;
|
|
6631
6660
|
readonly valid: boolean;
|
|
6632
6661
|
readonly json: {
|
|
6633
6662
|
id: string;
|
|
@@ -6829,6 +6858,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
6829
6858
|
readonly stateMessage: string;
|
|
6830
6859
|
} & {
|
|
6831
6860
|
controller: AbortController;
|
|
6861
|
+
} & {
|
|
6862
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
6863
|
+
setError(err: string | null): void;
|
|
6832
6864
|
} & {
|
|
6833
6865
|
runSQL: () => Promise<void>;
|
|
6834
6866
|
runHTTP: () => Promise<void>;
|
|
@@ -6963,6 +6995,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
6963
6995
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6964
6996
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6965
6997
|
}, {
|
|
6998
|
+
readonly query: any;
|
|
6966
6999
|
readonly valid: boolean;
|
|
6967
7000
|
readonly json: {
|
|
6968
7001
|
id: string;
|
|
@@ -7165,6 +7198,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
7165
7198
|
readonly stateMessage: string;
|
|
7166
7199
|
} & {
|
|
7167
7200
|
controller: AbortController;
|
|
7201
|
+
} & {
|
|
7202
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
7203
|
+
setError(err: string | null): void;
|
|
7168
7204
|
} & {
|
|
7169
7205
|
runSQL: () => Promise<void>;
|
|
7170
7206
|
runHTTP: () => Promise<void>;
|
|
@@ -10203,6 +10239,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
10203
10239
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10204
10240
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10205
10241
|
}, {
|
|
10242
|
+
readonly query: any;
|
|
10206
10243
|
readonly valid: boolean;
|
|
10207
10244
|
readonly json: {
|
|
10208
10245
|
id: string;
|
|
@@ -10409,6 +10446,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
10409
10446
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10410
10447
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10411
10448
|
}, {
|
|
10449
|
+
readonly query: any;
|
|
10412
10450
|
readonly valid: boolean;
|
|
10413
10451
|
readonly json: {
|
|
10414
10452
|
id: string;
|
|
@@ -10531,6 +10569,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
10531
10569
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10532
10570
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
10533
10571
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10572
|
+
readonly query: any;
|
|
10534
10573
|
readonly valid: boolean;
|
|
10535
10574
|
readonly json: {
|
|
10536
10575
|
id: string;
|
|
@@ -10714,6 +10753,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
10714
10753
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10715
10754
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10716
10755
|
}, {
|
|
10756
|
+
readonly query: any;
|
|
10717
10757
|
readonly valid: boolean;
|
|
10718
10758
|
readonly json: {
|
|
10719
10759
|
id: string;
|
|
@@ -10921,6 +10961,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
10921
10961
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
10922
10962
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
10923
10963
|
}, {
|
|
10964
|
+
readonly query: any;
|
|
10924
10965
|
readonly valid: boolean;
|
|
10925
10966
|
readonly json: {
|
|
10926
10967
|
id: string;
|
|
@@ -11122,6 +11163,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
11122
11163
|
readonly stateMessage: string;
|
|
11123
11164
|
} & {
|
|
11124
11165
|
controller: AbortController;
|
|
11166
|
+
} & {
|
|
11167
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
11168
|
+
setError(err: string | null): void;
|
|
11125
11169
|
} & {
|
|
11126
11170
|
runSQL: () => Promise<void>;
|
|
11127
11171
|
runHTTP: () => Promise<void>;
|
|
@@ -11256,6 +11300,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
11256
11300
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11257
11301
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11258
11302
|
}, {
|
|
11303
|
+
readonly query: any;
|
|
11259
11304
|
readonly valid: boolean;
|
|
11260
11305
|
readonly json: {
|
|
11261
11306
|
id: string;
|
|
@@ -11458,6 +11503,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
11458
11503
|
readonly stateMessage: string;
|
|
11459
11504
|
} & {
|
|
11460
11505
|
controller: AbortController;
|
|
11506
|
+
} & {
|
|
11507
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
11508
|
+
setError(err: string | null): void;
|
|
11461
11509
|
} & {
|
|
11462
11510
|
runSQL: () => Promise<void>;
|
|
11463
11511
|
runHTTP: () => Promise<void>;
|
|
@@ -11604,6 +11652,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
11604
11652
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11605
11653
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11606
11654
|
}, {
|
|
11655
|
+
readonly query: any;
|
|
11607
11656
|
readonly valid: boolean;
|
|
11608
11657
|
readonly json: {
|
|
11609
11658
|
id: string;
|
|
@@ -11810,6 +11859,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
11810
11859
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11811
11860
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11812
11861
|
}, {
|
|
11862
|
+
readonly query: any;
|
|
11813
11863
|
readonly valid: boolean;
|
|
11814
11864
|
readonly json: {
|
|
11815
11865
|
id: string;
|
|
@@ -11932,6 +11982,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
11932
11982
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11933
11983
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
11934
11984
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11985
|
+
readonly query: any;
|
|
11935
11986
|
readonly valid: boolean;
|
|
11936
11987
|
readonly json: {
|
|
11937
11988
|
id: string;
|
|
@@ -12115,6 +12166,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
12115
12166
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12116
12167
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12117
12168
|
}, {
|
|
12169
|
+
readonly query: any;
|
|
12118
12170
|
readonly valid: boolean;
|
|
12119
12171
|
readonly json: {
|
|
12120
12172
|
id: string;
|
|
@@ -12322,6 +12374,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
12322
12374
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12323
12375
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12324
12376
|
}, {
|
|
12377
|
+
readonly query: any;
|
|
12325
12378
|
readonly valid: boolean;
|
|
12326
12379
|
readonly json: {
|
|
12327
12380
|
id: string;
|
|
@@ -12523,6 +12576,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
12523
12576
|
readonly stateMessage: string;
|
|
12524
12577
|
} & {
|
|
12525
12578
|
controller: AbortController;
|
|
12579
|
+
} & {
|
|
12580
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
12581
|
+
setError(err: string | null): void;
|
|
12526
12582
|
} & {
|
|
12527
12583
|
runSQL: () => Promise<void>;
|
|
12528
12584
|
runHTTP: () => Promise<void>;
|
|
@@ -12657,6 +12713,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
12657
12713
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
12658
12714
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
12659
12715
|
}, {
|
|
12716
|
+
readonly query: any;
|
|
12660
12717
|
readonly valid: boolean;
|
|
12661
12718
|
readonly json: {
|
|
12662
12719
|
id: string;
|
|
@@ -12859,6 +12916,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
12859
12916
|
readonly stateMessage: string;
|
|
12860
12917
|
} & {
|
|
12861
12918
|
controller: AbortController;
|
|
12919
|
+
} & {
|
|
12920
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
12921
|
+
setError(err: string | null): void;
|
|
12862
12922
|
} & {
|
|
12863
12923
|
runSQL: () => Promise<void>;
|
|
12864
12924
|
runHTTP: () => Promise<void>;
|
|
@@ -13006,6 +13066,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
13006
13066
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13007
13067
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13008
13068
|
}, {
|
|
13069
|
+
readonly query: any;
|
|
13009
13070
|
readonly valid: boolean;
|
|
13010
13071
|
readonly json: {
|
|
13011
13072
|
id: string;
|
|
@@ -13212,6 +13273,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
13212
13273
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13213
13274
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13214
13275
|
}, {
|
|
13276
|
+
readonly query: any;
|
|
13215
13277
|
readonly valid: boolean;
|
|
13216
13278
|
readonly json: {
|
|
13217
13279
|
id: string;
|
|
@@ -13334,6 +13396,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
13334
13396
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13335
13397
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
13336
13398
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
13399
|
+
readonly query: any;
|
|
13337
13400
|
readonly valid: boolean;
|
|
13338
13401
|
readonly json: {
|
|
13339
13402
|
id: string;
|
|
@@ -13517,6 +13580,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
13517
13580
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13518
13581
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13519
13582
|
}, {
|
|
13583
|
+
readonly query: any;
|
|
13520
13584
|
readonly valid: boolean;
|
|
13521
13585
|
readonly json: {
|
|
13522
13586
|
id: string;
|
|
@@ -13724,6 +13788,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
13724
13788
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
13725
13789
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
13726
13790
|
}, {
|
|
13791
|
+
readonly query: any;
|
|
13727
13792
|
readonly valid: boolean;
|
|
13728
13793
|
readonly json: {
|
|
13729
13794
|
id: string;
|
|
@@ -13925,6 +13990,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
13925
13990
|
readonly stateMessage: string;
|
|
13926
13991
|
} & {
|
|
13927
13992
|
controller: AbortController;
|
|
13993
|
+
} & {
|
|
13994
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
13995
|
+
setError(err: string | null): void;
|
|
13928
13996
|
} & {
|
|
13929
13997
|
runSQL: () => Promise<void>;
|
|
13930
13998
|
runHTTP: () => Promise<void>;
|
|
@@ -14059,6 +14127,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
14059
14127
|
stepKeyFormat: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
14060
14128
|
}, {}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
14061
14129
|
}, {
|
|
14130
|
+
readonly query: any;
|
|
14062
14131
|
readonly valid: boolean;
|
|
14063
14132
|
readonly json: {
|
|
14064
14133
|
id: string;
|
|
@@ -14261,6 +14330,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
14261
14330
|
readonly stateMessage: string;
|
|
14262
14331
|
} & {
|
|
14263
14332
|
controller: AbortController;
|
|
14333
|
+
} & {
|
|
14334
|
+
setData(data: string[][] | number[][] | import("../../../..").AnyObject[]): void;
|
|
14335
|
+
setError(err: string | null): void;
|
|
14264
14336
|
} & {
|
|
14265
14337
|
runSQL: () => Promise<void>;
|
|
14266
14338
|
runHTTP: () => Promise<void>;
|