@devtable/dashboard 10.62.2 → 11.0.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/api-caller/request.d.ts +1 -1
- package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +74 -8
- package/dist/components/plugins/plugin-context.d.ts +74 -8
- package/dist/components/plugins/viz-components/pareto-chart/option/index.d.ts +2 -2
- package/dist/components/plugins/viz-components/pareto-chart/option/mark-line-and-area.d.ts +2 -2
- package/dist/components/plugins/viz-components/pareto-chart/option/series.d.ts +2 -2
- package/dist/contexts/panel-context.d.ts +148 -16
- package/dist/dashboard-editor/model/datasources/datasource.d.ts +1 -1
- package/dist/dashboard-editor/model/datasources/index.d.ts +3 -3
- package/dist/dashboard-editor/model/panels/panel.d.ts +37 -4
- package/dist/dashboard-editor/model/queries/index.d.ts +2 -556
- package/dist/dashboard-editor/model/queries/queries.d.ts +788 -0
- package/dist/dashboard-editor/model/queries/query.d.ts +86 -0
- package/dist/dashboard-editor/ui/settings/content/data-preview/data-table-with-pagination.d.ts +1 -4
- package/dist/dashboard-editor/ui/settings/content/edit-query/query-editor-form/index.d.ts +2 -2
- package/dist/dashboard-editor/ui/settings/content/edit-query/query-editor-form/tabs/transform/index.d.ts +10 -0
- package/dist/dashboard.es.js +3707 -3618
- package/dist/dashboard.umd.js +80 -79
- package/dist/model/meta-model/dashboard/content/initial-content.d.ts +1 -1
- package/dist/model/meta-model/dashboard/content/query/query.d.ts +3 -0
- package/dist/model/meta-model/dashboard/content/query/types.d.ts +2 -1
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +37 -4
- package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +4 -0
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +48 -6
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +9 -1
- package/dist/stats.html +1 -1
- package/dist/utils/error-boundary.d.ts +3 -0
- package/package.json +1 -1
|
@@ -17,7 +17,7 @@ export type TQueryPayload = {
|
|
|
17
17
|
} & TAdditionalQueryInfo;
|
|
18
18
|
export type TQueryStructureRequest = {
|
|
19
19
|
query_type: 'TABLES' | 'COLUMNS' | 'DATA' | 'INDEXES' | 'COUNT';
|
|
20
|
-
type:
|
|
20
|
+
type: DataSourceType.Postgresql | DataSourceType.MySQL;
|
|
21
21
|
key: string;
|
|
22
22
|
table_schema: string;
|
|
23
23
|
table_name: string;
|
|
@@ -2192,6 +2192,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2192
2192
|
post_process: string;
|
|
2193
2193
|
run_by: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2194
2194
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2195
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2195
2196
|
state: string;
|
|
2196
2197
|
data: (string[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>) | (number[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>);
|
|
2197
2198
|
error: any;
|
|
@@ -2207,6 +2208,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2207
2208
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2208
2209
|
pre_process: string;
|
|
2209
2210
|
post_process: string;
|
|
2211
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2210
2212
|
};
|
|
2211
2213
|
} & {
|
|
2212
2214
|
setName(name: string): void;
|
|
@@ -2217,6 +2219,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2217
2219
|
setReactTo(v: string[]): void;
|
|
2218
2220
|
setPreProcess(v: string): void;
|
|
2219
2221
|
setPostProcess(v: string): void;
|
|
2222
|
+
setDependantQueryIDs(v: string[]): void;
|
|
2220
2223
|
} & {
|
|
2221
2224
|
readonly rootModel: any;
|
|
2222
2225
|
readonly contentModel: any;
|
|
@@ -2228,6 +2231,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2228
2231
|
readonly httpConfigString: string;
|
|
2229
2232
|
readonly typedAsSQL: boolean;
|
|
2230
2233
|
readonly typedAsHTTP: boolean;
|
|
2234
|
+
readonly isTransform: boolean;
|
|
2231
2235
|
readonly reQueryKey: string;
|
|
2232
2236
|
readonly runByConditionsMet: boolean;
|
|
2233
2237
|
readonly conditionNames: {
|
|
@@ -2240,6 +2244,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2240
2244
|
} & {
|
|
2241
2245
|
readonly datasource: any;
|
|
2242
2246
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
2247
|
+
readonly depQueryModels: any;
|
|
2248
|
+
readonly depQueryModelStates: any;
|
|
2249
|
+
readonly depQueryModelStatesString: any;
|
|
2243
2250
|
} & {
|
|
2244
2251
|
readonly stateMessage: string;
|
|
2245
2252
|
} & {
|
|
@@ -2247,8 +2254,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2247
2254
|
} & {
|
|
2248
2255
|
runSQL: () => Promise<void>;
|
|
2249
2256
|
runHTTP: () => Promise<void>;
|
|
2257
|
+
runTransformation(): void;
|
|
2250
2258
|
} & {
|
|
2251
|
-
fetchData: (force: boolean) =>
|
|
2259
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
2252
2260
|
beforeDestroy(): void;
|
|
2253
2261
|
} & {
|
|
2254
2262
|
afterCreate(): void;
|
|
@@ -2262,6 +2270,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2262
2270
|
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2263
2271
|
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2264
2272
|
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2273
|
+
dep_query_ids: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2265
2274
|
} & {
|
|
2266
2275
|
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2267
2276
|
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
@@ -2278,6 +2287,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2278
2287
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2279
2288
|
pre_process: string;
|
|
2280
2289
|
post_process: string;
|
|
2290
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2281
2291
|
};
|
|
2282
2292
|
} & {
|
|
2283
2293
|
setName(name: string): void;
|
|
@@ -2288,6 +2298,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2288
2298
|
setReactTo(v: string[]): void;
|
|
2289
2299
|
setPreProcess(v: string): void;
|
|
2290
2300
|
setPostProcess(v: string): void;
|
|
2301
|
+
setDependantQueryIDs(v: string[]): void;
|
|
2291
2302
|
} & {
|
|
2292
2303
|
readonly rootModel: any;
|
|
2293
2304
|
readonly contentModel: any;
|
|
@@ -2299,6 +2310,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2299
2310
|
readonly httpConfigString: string;
|
|
2300
2311
|
readonly typedAsSQL: boolean;
|
|
2301
2312
|
readonly typedAsHTTP: boolean;
|
|
2313
|
+
readonly isTransform: boolean;
|
|
2302
2314
|
readonly reQueryKey: string;
|
|
2303
2315
|
readonly runByConditionsMet: boolean;
|
|
2304
2316
|
readonly conditionNames: {
|
|
@@ -2311,6 +2323,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2311
2323
|
} & {
|
|
2312
2324
|
readonly datasource: any;
|
|
2313
2325
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
2326
|
+
readonly depQueryModels: any;
|
|
2327
|
+
readonly depQueryModelStates: any;
|
|
2328
|
+
readonly depQueryModelStatesString: any;
|
|
2314
2329
|
} & {
|
|
2315
2330
|
readonly stateMessage: string;
|
|
2316
2331
|
} & {
|
|
@@ -2318,8 +2333,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2318
2333
|
} & {
|
|
2319
2334
|
runSQL: () => Promise<void>;
|
|
2320
2335
|
runHTTP: () => Promise<void>;
|
|
2336
|
+
runTransformation(): void;
|
|
2321
2337
|
} & {
|
|
2322
|
-
fetchData: (force: boolean) =>
|
|
2338
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
2323
2339
|
beforeDestroy(): void;
|
|
2324
2340
|
} & {
|
|
2325
2341
|
afterCreate(): void;
|
|
@@ -2334,6 +2350,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2334
2350
|
post_process: string;
|
|
2335
2351
|
run_by: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2336
2352
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2353
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2337
2354
|
state: string;
|
|
2338
2355
|
data: (string[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>) | (number[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>);
|
|
2339
2356
|
error: any;
|
|
@@ -2349,6 +2366,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2349
2366
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2350
2367
|
pre_process: string;
|
|
2351
2368
|
post_process: string;
|
|
2369
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2352
2370
|
};
|
|
2353
2371
|
} & {
|
|
2354
2372
|
setName(name: string): void;
|
|
@@ -2359,6 +2377,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2359
2377
|
setReactTo(v: string[]): void;
|
|
2360
2378
|
setPreProcess(v: string): void;
|
|
2361
2379
|
setPostProcess(v: string): void;
|
|
2380
|
+
setDependantQueryIDs(v: string[]): void;
|
|
2362
2381
|
} & {
|
|
2363
2382
|
readonly rootModel: any;
|
|
2364
2383
|
readonly contentModel: any;
|
|
@@ -2370,6 +2389,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2370
2389
|
readonly httpConfigString: string;
|
|
2371
2390
|
readonly typedAsSQL: boolean;
|
|
2372
2391
|
readonly typedAsHTTP: boolean;
|
|
2392
|
+
readonly isTransform: boolean;
|
|
2373
2393
|
readonly reQueryKey: string;
|
|
2374
2394
|
readonly runByConditionsMet: boolean;
|
|
2375
2395
|
readonly conditionNames: {
|
|
@@ -2382,6 +2402,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2382
2402
|
} & {
|
|
2383
2403
|
readonly datasource: any;
|
|
2384
2404
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
2405
|
+
readonly depQueryModels: any;
|
|
2406
|
+
readonly depQueryModelStates: any;
|
|
2407
|
+
readonly depQueryModelStatesString: any;
|
|
2385
2408
|
} & {
|
|
2386
2409
|
readonly stateMessage: string;
|
|
2387
2410
|
} & {
|
|
@@ -2389,8 +2412,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2389
2412
|
} & {
|
|
2390
2413
|
runSQL: () => Promise<void>;
|
|
2391
2414
|
runHTTP: () => Promise<void>;
|
|
2415
|
+
runTransformation(): void;
|
|
2392
2416
|
} & {
|
|
2393
|
-
fetchData: (force: boolean) =>
|
|
2417
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
2394
2418
|
beforeDestroy(): void;
|
|
2395
2419
|
} & {
|
|
2396
2420
|
afterCreate(): void;
|
|
@@ -2404,6 +2428,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2404
2428
|
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2405
2429
|
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2406
2430
|
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2431
|
+
dep_query_ids: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2407
2432
|
} & {
|
|
2408
2433
|
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2409
2434
|
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
@@ -2420,6 +2445,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2420
2445
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2421
2446
|
pre_process: string;
|
|
2422
2447
|
post_process: string;
|
|
2448
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2423
2449
|
};
|
|
2424
2450
|
} & {
|
|
2425
2451
|
setName(name: string): void;
|
|
@@ -2430,6 +2456,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2430
2456
|
setReactTo(v: string[]): void;
|
|
2431
2457
|
setPreProcess(v: string): void;
|
|
2432
2458
|
setPostProcess(v: string): void;
|
|
2459
|
+
setDependantQueryIDs(v: string[]): void;
|
|
2433
2460
|
} & {
|
|
2434
2461
|
readonly rootModel: any;
|
|
2435
2462
|
readonly contentModel: any;
|
|
@@ -2441,6 +2468,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2441
2468
|
readonly httpConfigString: string;
|
|
2442
2469
|
readonly typedAsSQL: boolean;
|
|
2443
2470
|
readonly typedAsHTTP: boolean;
|
|
2471
|
+
readonly isTransform: boolean;
|
|
2444
2472
|
readonly reQueryKey: string;
|
|
2445
2473
|
readonly runByConditionsMet: boolean;
|
|
2446
2474
|
readonly conditionNames: {
|
|
@@ -2453,6 +2481,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2453
2481
|
} & {
|
|
2454
2482
|
readonly datasource: any;
|
|
2455
2483
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
2484
|
+
readonly depQueryModels: any;
|
|
2485
|
+
readonly depQueryModelStates: any;
|
|
2486
|
+
readonly depQueryModelStatesString: any;
|
|
2456
2487
|
} & {
|
|
2457
2488
|
readonly stateMessage: string;
|
|
2458
2489
|
} & {
|
|
@@ -2460,8 +2491,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2460
2491
|
} & {
|
|
2461
2492
|
runSQL: () => Promise<void>;
|
|
2462
2493
|
runHTTP: () => Promise<void>;
|
|
2494
|
+
runTransformation(): void;
|
|
2463
2495
|
} & {
|
|
2464
|
-
fetchData: (force: boolean) =>
|
|
2496
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
2465
2497
|
beforeDestroy(): void;
|
|
2466
2498
|
} & {
|
|
2467
2499
|
afterCreate(): void;
|
|
@@ -2787,6 +2819,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
2787
2819
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2788
2820
|
pre_process: string;
|
|
2789
2821
|
post_process: string;
|
|
2822
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
2790
2823
|
}[];
|
|
2791
2824
|
};
|
|
2792
2825
|
downloadSchema(): void;
|
|
@@ -4549,6 +4582,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4549
4582
|
post_process: string;
|
|
4550
4583
|
run_by: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4551
4584
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4585
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4552
4586
|
state: string;
|
|
4553
4587
|
data: (string[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>) | (number[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>);
|
|
4554
4588
|
error: any;
|
|
@@ -4564,6 +4598,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4564
4598
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4565
4599
|
pre_process: string;
|
|
4566
4600
|
post_process: string;
|
|
4601
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4567
4602
|
};
|
|
4568
4603
|
} & {
|
|
4569
4604
|
setName(name: string): void;
|
|
@@ -4574,6 +4609,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4574
4609
|
setReactTo(v: string[]): void;
|
|
4575
4610
|
setPreProcess(v: string): void;
|
|
4576
4611
|
setPostProcess(v: string): void;
|
|
4612
|
+
setDependantQueryIDs(v: string[]): void;
|
|
4577
4613
|
} & {
|
|
4578
4614
|
readonly rootModel: any;
|
|
4579
4615
|
readonly contentModel: any;
|
|
@@ -4585,6 +4621,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4585
4621
|
readonly httpConfigString: string;
|
|
4586
4622
|
readonly typedAsSQL: boolean;
|
|
4587
4623
|
readonly typedAsHTTP: boolean;
|
|
4624
|
+
readonly isTransform: boolean;
|
|
4588
4625
|
readonly reQueryKey: string;
|
|
4589
4626
|
readonly runByConditionsMet: boolean;
|
|
4590
4627
|
readonly conditionNames: {
|
|
@@ -4597,6 +4634,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4597
4634
|
} & {
|
|
4598
4635
|
readonly datasource: any;
|
|
4599
4636
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
4637
|
+
readonly depQueryModels: any;
|
|
4638
|
+
readonly depQueryModelStates: any;
|
|
4639
|
+
readonly depQueryModelStatesString: any;
|
|
4600
4640
|
} & {
|
|
4601
4641
|
readonly stateMessage: string;
|
|
4602
4642
|
} & {
|
|
@@ -4604,8 +4644,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4604
4644
|
} & {
|
|
4605
4645
|
runSQL: () => Promise<void>;
|
|
4606
4646
|
runHTTP: () => Promise<void>;
|
|
4647
|
+
runTransformation(): void;
|
|
4607
4648
|
} & {
|
|
4608
|
-
fetchData: (force: boolean) =>
|
|
4649
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
4609
4650
|
beforeDestroy(): void;
|
|
4610
4651
|
} & {
|
|
4611
4652
|
afterCreate(): void;
|
|
@@ -4619,6 +4660,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4619
4660
|
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4620
4661
|
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4621
4662
|
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4663
|
+
dep_query_ids: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4622
4664
|
} & {
|
|
4623
4665
|
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4624
4666
|
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
@@ -4635,6 +4677,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4635
4677
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4636
4678
|
pre_process: string;
|
|
4637
4679
|
post_process: string;
|
|
4680
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4638
4681
|
};
|
|
4639
4682
|
} & {
|
|
4640
4683
|
setName(name: string): void;
|
|
@@ -4645,6 +4688,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4645
4688
|
setReactTo(v: string[]): void;
|
|
4646
4689
|
setPreProcess(v: string): void;
|
|
4647
4690
|
setPostProcess(v: string): void;
|
|
4691
|
+
setDependantQueryIDs(v: string[]): void;
|
|
4648
4692
|
} & {
|
|
4649
4693
|
readonly rootModel: any;
|
|
4650
4694
|
readonly contentModel: any;
|
|
@@ -4656,6 +4700,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4656
4700
|
readonly httpConfigString: string;
|
|
4657
4701
|
readonly typedAsSQL: boolean;
|
|
4658
4702
|
readonly typedAsHTTP: boolean;
|
|
4703
|
+
readonly isTransform: boolean;
|
|
4659
4704
|
readonly reQueryKey: string;
|
|
4660
4705
|
readonly runByConditionsMet: boolean;
|
|
4661
4706
|
readonly conditionNames: {
|
|
@@ -4668,6 +4713,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4668
4713
|
} & {
|
|
4669
4714
|
readonly datasource: any;
|
|
4670
4715
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
4716
|
+
readonly depQueryModels: any;
|
|
4717
|
+
readonly depQueryModelStates: any;
|
|
4718
|
+
readonly depQueryModelStatesString: any;
|
|
4671
4719
|
} & {
|
|
4672
4720
|
readonly stateMessage: string;
|
|
4673
4721
|
} & {
|
|
@@ -4675,8 +4723,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4675
4723
|
} & {
|
|
4676
4724
|
runSQL: () => Promise<void>;
|
|
4677
4725
|
runHTTP: () => Promise<void>;
|
|
4726
|
+
runTransformation(): void;
|
|
4678
4727
|
} & {
|
|
4679
|
-
fetchData: (force: boolean) =>
|
|
4728
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
4680
4729
|
beforeDestroy(): void;
|
|
4681
4730
|
} & {
|
|
4682
4731
|
afterCreate(): void;
|
|
@@ -4691,6 +4740,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4691
4740
|
post_process: string;
|
|
4692
4741
|
run_by: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4693
4742
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4743
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4694
4744
|
state: string;
|
|
4695
4745
|
data: (string[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>) | (number[][] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>>);
|
|
4696
4746
|
error: any;
|
|
@@ -4706,6 +4756,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4706
4756
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4707
4757
|
pre_process: string;
|
|
4708
4758
|
post_process: string;
|
|
4759
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4709
4760
|
};
|
|
4710
4761
|
} & {
|
|
4711
4762
|
setName(name: string): void;
|
|
@@ -4716,6 +4767,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4716
4767
|
setReactTo(v: string[]): void;
|
|
4717
4768
|
setPreProcess(v: string): void;
|
|
4718
4769
|
setPostProcess(v: string): void;
|
|
4770
|
+
setDependantQueryIDs(v: string[]): void;
|
|
4719
4771
|
} & {
|
|
4720
4772
|
readonly rootModel: any;
|
|
4721
4773
|
readonly contentModel: any;
|
|
@@ -4727,6 +4779,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4727
4779
|
readonly httpConfigString: string;
|
|
4728
4780
|
readonly typedAsSQL: boolean;
|
|
4729
4781
|
readonly typedAsHTTP: boolean;
|
|
4782
|
+
readonly isTransform: boolean;
|
|
4730
4783
|
readonly reQueryKey: string;
|
|
4731
4784
|
readonly runByConditionsMet: boolean;
|
|
4732
4785
|
readonly conditionNames: {
|
|
@@ -4739,6 +4792,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4739
4792
|
} & {
|
|
4740
4793
|
readonly datasource: any;
|
|
4741
4794
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
4795
|
+
readonly depQueryModels: any;
|
|
4796
|
+
readonly depQueryModelStates: any;
|
|
4797
|
+
readonly depQueryModelStatesString: any;
|
|
4742
4798
|
} & {
|
|
4743
4799
|
readonly stateMessage: string;
|
|
4744
4800
|
} & {
|
|
@@ -4746,8 +4802,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4746
4802
|
} & {
|
|
4747
4803
|
runSQL: () => Promise<void>;
|
|
4748
4804
|
runHTTP: () => Promise<void>;
|
|
4805
|
+
runTransformation(): void;
|
|
4749
4806
|
} & {
|
|
4750
|
-
fetchData: (force: boolean) =>
|
|
4807
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
4751
4808
|
beforeDestroy(): void;
|
|
4752
4809
|
} & {
|
|
4753
4810
|
afterCreate(): void;
|
|
@@ -4761,6 +4818,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4761
4818
|
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4762
4819
|
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4763
4820
|
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4821
|
+
dep_query_ids: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4764
4822
|
} & {
|
|
4765
4823
|
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4766
4824
|
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
@@ -4777,6 +4835,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4777
4835
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4778
4836
|
pre_process: string;
|
|
4779
4837
|
post_process: string;
|
|
4838
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
4780
4839
|
};
|
|
4781
4840
|
} & {
|
|
4782
4841
|
setName(name: string): void;
|
|
@@ -4787,6 +4846,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4787
4846
|
setReactTo(v: string[]): void;
|
|
4788
4847
|
setPreProcess(v: string): void;
|
|
4789
4848
|
setPostProcess(v: string): void;
|
|
4849
|
+
setDependantQueryIDs(v: string[]): void;
|
|
4790
4850
|
} & {
|
|
4791
4851
|
readonly rootModel: any;
|
|
4792
4852
|
readonly contentModel: any;
|
|
@@ -4798,6 +4858,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4798
4858
|
readonly httpConfigString: string;
|
|
4799
4859
|
readonly typedAsSQL: boolean;
|
|
4800
4860
|
readonly typedAsHTTP: boolean;
|
|
4861
|
+
readonly isTransform: boolean;
|
|
4801
4862
|
readonly reQueryKey: string;
|
|
4802
4863
|
readonly runByConditionsMet: boolean;
|
|
4803
4864
|
readonly conditionNames: {
|
|
@@ -4810,6 +4871,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4810
4871
|
} & {
|
|
4811
4872
|
readonly datasource: any;
|
|
4812
4873
|
readonly additionalQueryInfo: import("../../../..").TAdditionalQueryInfo;
|
|
4874
|
+
readonly depQueryModels: any;
|
|
4875
|
+
readonly depQueryModelStates: any;
|
|
4876
|
+
readonly depQueryModelStatesString: any;
|
|
4813
4877
|
} & {
|
|
4814
4878
|
readonly stateMessage: string;
|
|
4815
4879
|
} & {
|
|
@@ -4817,8 +4881,9 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
4817
4881
|
} & {
|
|
4818
4882
|
runSQL: () => Promise<void>;
|
|
4819
4883
|
runHTTP: () => Promise<void>;
|
|
4884
|
+
runTransformation(): void;
|
|
4820
4885
|
} & {
|
|
4821
|
-
fetchData: (force: boolean) =>
|
|
4886
|
+
fetchData: (force: boolean) => void | Promise<void>;
|
|
4822
4887
|
beforeDestroy(): void;
|
|
4823
4888
|
} & {
|
|
4824
4889
|
afterCreate(): void;
|
|
@@ -5144,6 +5209,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
|
|
|
5144
5209
|
react_to: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
5145
5210
|
pre_process: string;
|
|
5146
5211
|
post_process: string;
|
|
5212
|
+
dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
|
|
5147
5213
|
}[];
|
|
5148
5214
|
};
|
|
5149
5215
|
downloadSchema(): void;
|