@devtable/dashboard 10.55.1 → 10.56.1
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 +284 -0
- package/dist/components/panel/settings/common/data-field-selector.d.ts +1 -1
- package/dist/components/plugins/plugin-context.d.ts +318 -2
- package/dist/contexts/panel-context.d.ts +608 -8
- package/dist/dashboard-editor/model/panels/panel.d.ts +159 -1
- package/dist/dashboard.es.js +508 -461
- package/dist/dashboard.umd.js +74 -74
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +142 -0
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -2313,6 +2313,148 @@ export declare const useRenderPanelContext: () => {
|
|
|
2313
2313
|
} & {
|
|
2314
2314
|
afterCreate(): void;
|
|
2315
2315
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
2316
|
+
queryByID(queryID: string): ({
|
|
2317
|
+
id: string;
|
|
2318
|
+
name: string;
|
|
2319
|
+
type: import('../model').DataSourceType;
|
|
2320
|
+
key: string;
|
|
2321
|
+
sql: string;
|
|
2322
|
+
pre_process: string;
|
|
2323
|
+
post_process: string;
|
|
2324
|
+
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]>>;
|
|
2325
|
+
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]>>;
|
|
2326
|
+
state: string;
|
|
2327
|
+
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]>>);
|
|
2328
|
+
error: any;
|
|
2329
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2330
|
+
readonly valid: boolean;
|
|
2331
|
+
readonly json: {
|
|
2332
|
+
id: string;
|
|
2333
|
+
key: string;
|
|
2334
|
+
sql: string;
|
|
2335
|
+
name: string;
|
|
2336
|
+
type: import('../model').DataSourceType;
|
|
2337
|
+
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]>>;
|
|
2338
|
+
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]>>;
|
|
2339
|
+
pre_process: string;
|
|
2340
|
+
post_process: string;
|
|
2341
|
+
};
|
|
2342
|
+
} & {
|
|
2343
|
+
setName(name: string): void;
|
|
2344
|
+
setKey(key: string): void;
|
|
2345
|
+
setType(type: import('../model').DataSourceType): void;
|
|
2346
|
+
setSQL(sql: string): void;
|
|
2347
|
+
setRunBy(v: string[]): void;
|
|
2348
|
+
setReactTo(v: string[]): void;
|
|
2349
|
+
setPreProcess(v: string): void;
|
|
2350
|
+
setPostProcess(v: string): void;
|
|
2351
|
+
} & {
|
|
2352
|
+
readonly rootModel: any;
|
|
2353
|
+
readonly contentModel: any;
|
|
2354
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
2355
|
+
readonly unmetRunByConditions: string[];
|
|
2356
|
+
} & {
|
|
2357
|
+
readonly payload: any;
|
|
2358
|
+
readonly formattedSQL: any;
|
|
2359
|
+
readonly httpConfigString: string;
|
|
2360
|
+
readonly typedAsSQL: boolean;
|
|
2361
|
+
readonly typedAsHTTP: boolean;
|
|
2362
|
+
readonly reQueryKey: string;
|
|
2363
|
+
readonly runByConditionsMet: boolean;
|
|
2364
|
+
readonly conditionNames: {
|
|
2365
|
+
context: string[];
|
|
2366
|
+
filters: any[];
|
|
2367
|
+
};
|
|
2368
|
+
readonly queries: any;
|
|
2369
|
+
readonly inUse: any;
|
|
2370
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
2371
|
+
} & {
|
|
2372
|
+
readonly datasource: any;
|
|
2373
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
2374
|
+
} & {
|
|
2375
|
+
readonly stateMessage: string;
|
|
2376
|
+
} & {
|
|
2377
|
+
controller: AbortController;
|
|
2378
|
+
} & {
|
|
2379
|
+
runSQL: () => Promise<void>;
|
|
2380
|
+
runHTTP: () => Promise<void>;
|
|
2381
|
+
} & {
|
|
2382
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
2383
|
+
beforeDestroy(): void;
|
|
2384
|
+
} & {
|
|
2385
|
+
afterCreate(): void;
|
|
2386
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2387
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2388
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2389
|
+
type: import("mobx-state-tree").ISimpleType<import('../model').DataSourceType>;
|
|
2390
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
2391
|
+
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
2392
|
+
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2393
|
+
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2394
|
+
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2395
|
+
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2396
|
+
} & {
|
|
2397
|
+
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2398
|
+
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
2399
|
+
error: import("mobx-state-tree").IType<any, any, any>;
|
|
2400
|
+
}, {
|
|
2401
|
+
readonly valid: boolean;
|
|
2402
|
+
readonly json: {
|
|
2403
|
+
id: string;
|
|
2404
|
+
key: string;
|
|
2405
|
+
sql: string;
|
|
2406
|
+
name: string;
|
|
2407
|
+
type: import('../model').DataSourceType;
|
|
2408
|
+
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]>>;
|
|
2409
|
+
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]>>;
|
|
2410
|
+
pre_process: string;
|
|
2411
|
+
post_process: string;
|
|
2412
|
+
};
|
|
2413
|
+
} & {
|
|
2414
|
+
setName(name: string): void;
|
|
2415
|
+
setKey(key: string): void;
|
|
2416
|
+
setType(type: import('../model').DataSourceType): void;
|
|
2417
|
+
setSQL(sql: string): void;
|
|
2418
|
+
setRunBy(v: string[]): void;
|
|
2419
|
+
setReactTo(v: string[]): void;
|
|
2420
|
+
setPreProcess(v: string): void;
|
|
2421
|
+
setPostProcess(v: string): void;
|
|
2422
|
+
} & {
|
|
2423
|
+
readonly rootModel: any;
|
|
2424
|
+
readonly contentModel: any;
|
|
2425
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
2426
|
+
readonly unmetRunByConditions: string[];
|
|
2427
|
+
} & {
|
|
2428
|
+
readonly payload: any;
|
|
2429
|
+
readonly formattedSQL: any;
|
|
2430
|
+
readonly httpConfigString: string;
|
|
2431
|
+
readonly typedAsSQL: boolean;
|
|
2432
|
+
readonly typedAsHTTP: boolean;
|
|
2433
|
+
readonly reQueryKey: string;
|
|
2434
|
+
readonly runByConditionsMet: boolean;
|
|
2435
|
+
readonly conditionNames: {
|
|
2436
|
+
context: string[];
|
|
2437
|
+
filters: any[];
|
|
2438
|
+
};
|
|
2439
|
+
readonly queries: any;
|
|
2440
|
+
readonly inUse: any;
|
|
2441
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
2442
|
+
} & {
|
|
2443
|
+
readonly datasource: any;
|
|
2444
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
2445
|
+
} & {
|
|
2446
|
+
readonly stateMessage: string;
|
|
2447
|
+
} & {
|
|
2448
|
+
controller: AbortController;
|
|
2449
|
+
} & {
|
|
2450
|
+
runSQL: () => Promise<void>;
|
|
2451
|
+
runHTTP: () => Promise<void>;
|
|
2452
|
+
} & {
|
|
2453
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
2454
|
+
beforeDestroy(): void;
|
|
2455
|
+
} & {
|
|
2456
|
+
afterCreate(): void;
|
|
2457
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
2316
2458
|
readonly data: TPanelData;
|
|
2317
2459
|
readonly variableStrings: Record<string, React.ReactNode>;
|
|
2318
2460
|
readonly dataLoading: boolean;
|
|
@@ -4513,6 +4655,148 @@ export declare const useRenderPanelContext: () => {
|
|
|
4513
4655
|
} & {
|
|
4514
4656
|
afterCreate(): void;
|
|
4515
4657
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
4658
|
+
queryByID(queryID: string): ({
|
|
4659
|
+
id: string;
|
|
4660
|
+
name: string;
|
|
4661
|
+
type: import('../model').DataSourceType;
|
|
4662
|
+
key: string;
|
|
4663
|
+
sql: string;
|
|
4664
|
+
pre_process: string;
|
|
4665
|
+
post_process: string;
|
|
4666
|
+
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]>>;
|
|
4667
|
+
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]>>;
|
|
4668
|
+
state: string;
|
|
4669
|
+
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]>>);
|
|
4670
|
+
error: any;
|
|
4671
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4672
|
+
readonly valid: boolean;
|
|
4673
|
+
readonly json: {
|
|
4674
|
+
id: string;
|
|
4675
|
+
key: string;
|
|
4676
|
+
sql: string;
|
|
4677
|
+
name: string;
|
|
4678
|
+
type: import('../model').DataSourceType;
|
|
4679
|
+
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]>>;
|
|
4680
|
+
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]>>;
|
|
4681
|
+
pre_process: string;
|
|
4682
|
+
post_process: string;
|
|
4683
|
+
};
|
|
4684
|
+
} & {
|
|
4685
|
+
setName(name: string): void;
|
|
4686
|
+
setKey(key: string): void;
|
|
4687
|
+
setType(type: import('../model').DataSourceType): void;
|
|
4688
|
+
setSQL(sql: string): void;
|
|
4689
|
+
setRunBy(v: string[]): void;
|
|
4690
|
+
setReactTo(v: string[]): void;
|
|
4691
|
+
setPreProcess(v: string): void;
|
|
4692
|
+
setPostProcess(v: string): void;
|
|
4693
|
+
} & {
|
|
4694
|
+
readonly rootModel: any;
|
|
4695
|
+
readonly contentModel: any;
|
|
4696
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
4697
|
+
readonly unmetRunByConditions: string[];
|
|
4698
|
+
} & {
|
|
4699
|
+
readonly payload: any;
|
|
4700
|
+
readonly formattedSQL: any;
|
|
4701
|
+
readonly httpConfigString: string;
|
|
4702
|
+
readonly typedAsSQL: boolean;
|
|
4703
|
+
readonly typedAsHTTP: boolean;
|
|
4704
|
+
readonly reQueryKey: string;
|
|
4705
|
+
readonly runByConditionsMet: boolean;
|
|
4706
|
+
readonly conditionNames: {
|
|
4707
|
+
context: string[];
|
|
4708
|
+
filters: any[];
|
|
4709
|
+
};
|
|
4710
|
+
readonly queries: any;
|
|
4711
|
+
readonly inUse: any;
|
|
4712
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
4713
|
+
} & {
|
|
4714
|
+
readonly datasource: any;
|
|
4715
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
4716
|
+
} & {
|
|
4717
|
+
readonly stateMessage: string;
|
|
4718
|
+
} & {
|
|
4719
|
+
controller: AbortController;
|
|
4720
|
+
} & {
|
|
4721
|
+
runSQL: () => Promise<void>;
|
|
4722
|
+
runHTTP: () => Promise<void>;
|
|
4723
|
+
} & {
|
|
4724
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
4725
|
+
beforeDestroy(): void;
|
|
4726
|
+
} & {
|
|
4727
|
+
afterCreate(): void;
|
|
4728
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4729
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4730
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4731
|
+
type: import("mobx-state-tree").ISimpleType<import('../model').DataSourceType>;
|
|
4732
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
4733
|
+
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
4734
|
+
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4735
|
+
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4736
|
+
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4737
|
+
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4738
|
+
} & {
|
|
4739
|
+
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4740
|
+
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
4741
|
+
error: import("mobx-state-tree").IType<any, any, any>;
|
|
4742
|
+
}, {
|
|
4743
|
+
readonly valid: boolean;
|
|
4744
|
+
readonly json: {
|
|
4745
|
+
id: string;
|
|
4746
|
+
key: string;
|
|
4747
|
+
sql: string;
|
|
4748
|
+
name: string;
|
|
4749
|
+
type: import('../model').DataSourceType;
|
|
4750
|
+
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]>>;
|
|
4751
|
+
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]>>;
|
|
4752
|
+
pre_process: string;
|
|
4753
|
+
post_process: string;
|
|
4754
|
+
};
|
|
4755
|
+
} & {
|
|
4756
|
+
setName(name: string): void;
|
|
4757
|
+
setKey(key: string): void;
|
|
4758
|
+
setType(type: import('../model').DataSourceType): void;
|
|
4759
|
+
setSQL(sql: string): void;
|
|
4760
|
+
setRunBy(v: string[]): void;
|
|
4761
|
+
setReactTo(v: string[]): void;
|
|
4762
|
+
setPreProcess(v: string): void;
|
|
4763
|
+
setPostProcess(v: string): void;
|
|
4764
|
+
} & {
|
|
4765
|
+
readonly rootModel: any;
|
|
4766
|
+
readonly contentModel: any;
|
|
4767
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
4768
|
+
readonly unmetRunByConditions: string[];
|
|
4769
|
+
} & {
|
|
4770
|
+
readonly payload: any;
|
|
4771
|
+
readonly formattedSQL: any;
|
|
4772
|
+
readonly httpConfigString: string;
|
|
4773
|
+
readonly typedAsSQL: boolean;
|
|
4774
|
+
readonly typedAsHTTP: boolean;
|
|
4775
|
+
readonly reQueryKey: string;
|
|
4776
|
+
readonly runByConditionsMet: boolean;
|
|
4777
|
+
readonly conditionNames: {
|
|
4778
|
+
context: string[];
|
|
4779
|
+
filters: any[];
|
|
4780
|
+
};
|
|
4781
|
+
readonly queries: any;
|
|
4782
|
+
readonly inUse: any;
|
|
4783
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
4784
|
+
} & {
|
|
4785
|
+
readonly datasource: any;
|
|
4786
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
4787
|
+
} & {
|
|
4788
|
+
readonly stateMessage: string;
|
|
4789
|
+
} & {
|
|
4790
|
+
controller: AbortController;
|
|
4791
|
+
} & {
|
|
4792
|
+
runSQL: () => Promise<void>;
|
|
4793
|
+
runHTTP: () => Promise<void>;
|
|
4794
|
+
} & {
|
|
4795
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
4796
|
+
beforeDestroy(): void;
|
|
4797
|
+
} & {
|
|
4798
|
+
afterCreate(): void;
|
|
4799
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
4516
4800
|
readonly data: TPanelData;
|
|
4517
4801
|
readonly variableStrings: Record<string, React.ReactNode>;
|
|
4518
4802
|
readonly dataLoading: boolean;
|
|
@@ -6999,11 +7283,153 @@ export declare const useEditPanelContext: () => {
|
|
|
6999
7283
|
fallback: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7000
7284
|
}, {}>>>);
|
|
7001
7285
|
};
|
|
7002
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>): void;
|
|
7003
|
-
} & {
|
|
7004
|
-
readonly contentModel: any;
|
|
7005
|
-
} & {
|
|
7006
|
-
readonly queries: ({
|
|
7286
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>): void;
|
|
7287
|
+
} & {
|
|
7288
|
+
readonly contentModel: any;
|
|
7289
|
+
} & {
|
|
7290
|
+
readonly queries: ({
|
|
7291
|
+
id: string;
|
|
7292
|
+
name: string;
|
|
7293
|
+
type: import('../model').DataSourceType;
|
|
7294
|
+
key: string;
|
|
7295
|
+
sql: string;
|
|
7296
|
+
pre_process: string;
|
|
7297
|
+
post_process: string;
|
|
7298
|
+
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]>>;
|
|
7299
|
+
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]>>;
|
|
7300
|
+
state: string;
|
|
7301
|
+
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]>>);
|
|
7302
|
+
error: any;
|
|
7303
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7304
|
+
readonly valid: boolean;
|
|
7305
|
+
readonly json: {
|
|
7306
|
+
id: string;
|
|
7307
|
+
key: string;
|
|
7308
|
+
sql: string;
|
|
7309
|
+
name: string;
|
|
7310
|
+
type: import('../model').DataSourceType;
|
|
7311
|
+
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]>>;
|
|
7312
|
+
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]>>;
|
|
7313
|
+
pre_process: string;
|
|
7314
|
+
post_process: string;
|
|
7315
|
+
};
|
|
7316
|
+
} & {
|
|
7317
|
+
setName(name: string): void;
|
|
7318
|
+
setKey(key: string): void;
|
|
7319
|
+
setType(type: import('../model').DataSourceType): void;
|
|
7320
|
+
setSQL(sql: string): void;
|
|
7321
|
+
setRunBy(v: string[]): void;
|
|
7322
|
+
setReactTo(v: string[]): void;
|
|
7323
|
+
setPreProcess(v: string): void;
|
|
7324
|
+
setPostProcess(v: string): void;
|
|
7325
|
+
} & {
|
|
7326
|
+
readonly rootModel: any;
|
|
7327
|
+
readonly contentModel: any;
|
|
7328
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
7329
|
+
readonly unmetRunByConditions: string[];
|
|
7330
|
+
} & {
|
|
7331
|
+
readonly payload: any;
|
|
7332
|
+
readonly formattedSQL: any;
|
|
7333
|
+
readonly httpConfigString: string;
|
|
7334
|
+
readonly typedAsSQL: boolean;
|
|
7335
|
+
readonly typedAsHTTP: boolean;
|
|
7336
|
+
readonly reQueryKey: string;
|
|
7337
|
+
readonly runByConditionsMet: boolean;
|
|
7338
|
+
readonly conditionNames: {
|
|
7339
|
+
context: string[];
|
|
7340
|
+
filters: any[];
|
|
7341
|
+
};
|
|
7342
|
+
readonly queries: any;
|
|
7343
|
+
readonly inUse: any;
|
|
7344
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
7345
|
+
} & {
|
|
7346
|
+
readonly datasource: any;
|
|
7347
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
7348
|
+
} & {
|
|
7349
|
+
readonly stateMessage: string;
|
|
7350
|
+
} & {
|
|
7351
|
+
controller: AbortController;
|
|
7352
|
+
} & {
|
|
7353
|
+
runSQL: () => Promise<void>;
|
|
7354
|
+
runHTTP: () => Promise<void>;
|
|
7355
|
+
} & {
|
|
7356
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
7357
|
+
beforeDestroy(): void;
|
|
7358
|
+
} & {
|
|
7359
|
+
afterCreate(): void;
|
|
7360
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7361
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7362
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
7363
|
+
type: import("mobx-state-tree").ISimpleType<import('../model').DataSourceType>;
|
|
7364
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
7365
|
+
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
7366
|
+
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7367
|
+
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7368
|
+
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
7369
|
+
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
7370
|
+
} & {
|
|
7371
|
+
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7372
|
+
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
7373
|
+
error: import("mobx-state-tree").IType<any, any, any>;
|
|
7374
|
+
}, {
|
|
7375
|
+
readonly valid: boolean;
|
|
7376
|
+
readonly json: {
|
|
7377
|
+
id: string;
|
|
7378
|
+
key: string;
|
|
7379
|
+
sql: string;
|
|
7380
|
+
name: string;
|
|
7381
|
+
type: import('../model').DataSourceType;
|
|
7382
|
+
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]>>;
|
|
7383
|
+
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]>>;
|
|
7384
|
+
pre_process: string;
|
|
7385
|
+
post_process: string;
|
|
7386
|
+
};
|
|
7387
|
+
} & {
|
|
7388
|
+
setName(name: string): void;
|
|
7389
|
+
setKey(key: string): void;
|
|
7390
|
+
setType(type: import('../model').DataSourceType): void;
|
|
7391
|
+
setSQL(sql: string): void;
|
|
7392
|
+
setRunBy(v: string[]): void;
|
|
7393
|
+
setReactTo(v: string[]): void;
|
|
7394
|
+
setPreProcess(v: string): void;
|
|
7395
|
+
setPostProcess(v: string): void;
|
|
7396
|
+
} & {
|
|
7397
|
+
readonly rootModel: any;
|
|
7398
|
+
readonly contentModel: any;
|
|
7399
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
7400
|
+
readonly unmetRunByConditions: string[];
|
|
7401
|
+
} & {
|
|
7402
|
+
readonly payload: any;
|
|
7403
|
+
readonly formattedSQL: any;
|
|
7404
|
+
readonly httpConfigString: string;
|
|
7405
|
+
readonly typedAsSQL: boolean;
|
|
7406
|
+
readonly typedAsHTTP: boolean;
|
|
7407
|
+
readonly reQueryKey: string;
|
|
7408
|
+
readonly runByConditionsMet: boolean;
|
|
7409
|
+
readonly conditionNames: {
|
|
7410
|
+
context: string[];
|
|
7411
|
+
filters: any[];
|
|
7412
|
+
};
|
|
7413
|
+
readonly queries: any;
|
|
7414
|
+
readonly inUse: any;
|
|
7415
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
7416
|
+
} & {
|
|
7417
|
+
readonly datasource: any;
|
|
7418
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
7419
|
+
} & {
|
|
7420
|
+
readonly stateMessage: string;
|
|
7421
|
+
} & {
|
|
7422
|
+
controller: AbortController;
|
|
7423
|
+
} & {
|
|
7424
|
+
runSQL: () => Promise<void>;
|
|
7425
|
+
runHTTP: () => Promise<void>;
|
|
7426
|
+
} & {
|
|
7427
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
7428
|
+
beforeDestroy(): void;
|
|
7429
|
+
} & {
|
|
7430
|
+
afterCreate(): void;
|
|
7431
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
7432
|
+
queryByID(queryID: string): ({
|
|
7007
7433
|
id: string;
|
|
7008
7434
|
name: string;
|
|
7009
7435
|
type: import('../model').DataSourceType;
|
|
@@ -7144,7 +7570,7 @@ export declare const useEditPanelContext: () => {
|
|
|
7144
7570
|
beforeDestroy(): void;
|
|
7145
7571
|
} & {
|
|
7146
7572
|
afterCreate(): void;
|
|
7147
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)
|
|
7573
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
7148
7574
|
readonly data: TPanelData;
|
|
7149
7575
|
readonly variableStrings: Record<string, React.ReactNode>;
|
|
7150
7576
|
readonly dataLoading: boolean;
|
|
@@ -7468,11 +7894,27 @@ export declare const useEditPanelContext: () => {
|
|
|
7468
7894
|
};
|
|
7469
7895
|
downloadSchema(): void;
|
|
7470
7896
|
} & {
|
|
7471
|
-
readonly
|
|
7897
|
+
readonly realDataFieldOptions: {
|
|
7898
|
+
label: string;
|
|
7899
|
+
value: string;
|
|
7900
|
+
group: string;
|
|
7901
|
+
disabled: boolean;
|
|
7902
|
+
}[];
|
|
7903
|
+
dataFieldOptions(selected: string, clearable: boolean): {
|
|
7472
7904
|
label: string;
|
|
7473
7905
|
value: string;
|
|
7474
7906
|
group: string;
|
|
7907
|
+
disabled: boolean;
|
|
7475
7908
|
}[];
|
|
7909
|
+
explainDataKey(dataKey: string): {
|
|
7910
|
+
queryID: string;
|
|
7911
|
+
queryName: null;
|
|
7912
|
+
columnKey: string;
|
|
7913
|
+
} | {
|
|
7914
|
+
queryID: string;
|
|
7915
|
+
queryName: string;
|
|
7916
|
+
columnKey: string;
|
|
7917
|
+
};
|
|
7476
7918
|
} & {
|
|
7477
7919
|
removeSelf(): void;
|
|
7478
7920
|
} & {
|
|
@@ -9355,6 +9797,148 @@ export declare const useEditPanelContext: () => {
|
|
|
9355
9797
|
} & {
|
|
9356
9798
|
afterCreate(): void;
|
|
9357
9799
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
9800
|
+
queryByID(queryID: string): ({
|
|
9801
|
+
id: string;
|
|
9802
|
+
name: string;
|
|
9803
|
+
type: import('../model').DataSourceType;
|
|
9804
|
+
key: string;
|
|
9805
|
+
sql: string;
|
|
9806
|
+
pre_process: string;
|
|
9807
|
+
post_process: string;
|
|
9808
|
+
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]>>;
|
|
9809
|
+
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]>>;
|
|
9810
|
+
state: string;
|
|
9811
|
+
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]>>);
|
|
9812
|
+
error: any;
|
|
9813
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9814
|
+
readonly valid: boolean;
|
|
9815
|
+
readonly json: {
|
|
9816
|
+
id: string;
|
|
9817
|
+
key: string;
|
|
9818
|
+
sql: string;
|
|
9819
|
+
name: string;
|
|
9820
|
+
type: import('../model').DataSourceType;
|
|
9821
|
+
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]>>;
|
|
9822
|
+
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]>>;
|
|
9823
|
+
pre_process: string;
|
|
9824
|
+
post_process: string;
|
|
9825
|
+
};
|
|
9826
|
+
} & {
|
|
9827
|
+
setName(name: string): void;
|
|
9828
|
+
setKey(key: string): void;
|
|
9829
|
+
setType(type: import('../model').DataSourceType): void;
|
|
9830
|
+
setSQL(sql: string): void;
|
|
9831
|
+
setRunBy(v: string[]): void;
|
|
9832
|
+
setReactTo(v: string[]): void;
|
|
9833
|
+
setPreProcess(v: string): void;
|
|
9834
|
+
setPostProcess(v: string): void;
|
|
9835
|
+
} & {
|
|
9836
|
+
readonly rootModel: any;
|
|
9837
|
+
readonly contentModel: any;
|
|
9838
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
9839
|
+
readonly unmetRunByConditions: string[];
|
|
9840
|
+
} & {
|
|
9841
|
+
readonly payload: any;
|
|
9842
|
+
readonly formattedSQL: any;
|
|
9843
|
+
readonly httpConfigString: string;
|
|
9844
|
+
readonly typedAsSQL: boolean;
|
|
9845
|
+
readonly typedAsHTTP: boolean;
|
|
9846
|
+
readonly reQueryKey: string;
|
|
9847
|
+
readonly runByConditionsMet: boolean;
|
|
9848
|
+
readonly conditionNames: {
|
|
9849
|
+
context: string[];
|
|
9850
|
+
filters: any[];
|
|
9851
|
+
};
|
|
9852
|
+
readonly queries: any;
|
|
9853
|
+
readonly inUse: any;
|
|
9854
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
9855
|
+
} & {
|
|
9856
|
+
readonly datasource: any;
|
|
9857
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
9858
|
+
} & {
|
|
9859
|
+
readonly stateMessage: string;
|
|
9860
|
+
} & {
|
|
9861
|
+
controller: AbortController;
|
|
9862
|
+
} & {
|
|
9863
|
+
runSQL: () => Promise<void>;
|
|
9864
|
+
runHTTP: () => Promise<void>;
|
|
9865
|
+
} & {
|
|
9866
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
9867
|
+
beforeDestroy(): void;
|
|
9868
|
+
} & {
|
|
9869
|
+
afterCreate(): void;
|
|
9870
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9871
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9872
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
9873
|
+
type: import("mobx-state-tree").ISimpleType<import('../model').DataSourceType>;
|
|
9874
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
9875
|
+
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
9876
|
+
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
9877
|
+
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
9878
|
+
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
9879
|
+
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
9880
|
+
} & {
|
|
9881
|
+
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
9882
|
+
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
9883
|
+
error: import("mobx-state-tree").IType<any, any, any>;
|
|
9884
|
+
}, {
|
|
9885
|
+
readonly valid: boolean;
|
|
9886
|
+
readonly json: {
|
|
9887
|
+
id: string;
|
|
9888
|
+
key: string;
|
|
9889
|
+
sql: string;
|
|
9890
|
+
name: string;
|
|
9891
|
+
type: import('../model').DataSourceType;
|
|
9892
|
+
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]>>;
|
|
9893
|
+
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]>>;
|
|
9894
|
+
pre_process: string;
|
|
9895
|
+
post_process: string;
|
|
9896
|
+
};
|
|
9897
|
+
} & {
|
|
9898
|
+
setName(name: string): void;
|
|
9899
|
+
setKey(key: string): void;
|
|
9900
|
+
setType(type: import('../model').DataSourceType): void;
|
|
9901
|
+
setSQL(sql: string): void;
|
|
9902
|
+
setRunBy(v: string[]): void;
|
|
9903
|
+
setReactTo(v: string[]): void;
|
|
9904
|
+
setPreProcess(v: string): void;
|
|
9905
|
+
setPostProcess(v: string): void;
|
|
9906
|
+
} & {
|
|
9907
|
+
readonly rootModel: any;
|
|
9908
|
+
readonly contentModel: any;
|
|
9909
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
9910
|
+
readonly unmetRunByConditions: string[];
|
|
9911
|
+
} & {
|
|
9912
|
+
readonly payload: any;
|
|
9913
|
+
readonly formattedSQL: any;
|
|
9914
|
+
readonly httpConfigString: string;
|
|
9915
|
+
readonly typedAsSQL: boolean;
|
|
9916
|
+
readonly typedAsHTTP: boolean;
|
|
9917
|
+
readonly reQueryKey: string;
|
|
9918
|
+
readonly runByConditionsMet: boolean;
|
|
9919
|
+
readonly conditionNames: {
|
|
9920
|
+
context: string[];
|
|
9921
|
+
filters: any[];
|
|
9922
|
+
};
|
|
9923
|
+
readonly queries: any;
|
|
9924
|
+
readonly inUse: any;
|
|
9925
|
+
readonly dependencies: import("../utils/usage").DependencyInfo[];
|
|
9926
|
+
} & {
|
|
9927
|
+
readonly datasource: any;
|
|
9928
|
+
readonly additionalQueryInfo: import("..").TAdditionalQueryInfo;
|
|
9929
|
+
} & {
|
|
9930
|
+
readonly stateMessage: string;
|
|
9931
|
+
} & {
|
|
9932
|
+
controller: AbortController;
|
|
9933
|
+
} & {
|
|
9934
|
+
runSQL: () => Promise<void>;
|
|
9935
|
+
runHTTP: () => Promise<void>;
|
|
9936
|
+
} & {
|
|
9937
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
9938
|
+
beforeDestroy(): void;
|
|
9939
|
+
} & {
|
|
9940
|
+
afterCreate(): void;
|
|
9941
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
9358
9942
|
readonly data: TPanelData;
|
|
9359
9943
|
readonly variableStrings: Record<string, React.ReactNode>;
|
|
9360
9944
|
readonly dataLoading: boolean;
|
|
@@ -9678,11 +10262,27 @@ export declare const useEditPanelContext: () => {
|
|
|
9678
10262
|
};
|
|
9679
10263
|
downloadSchema(): void;
|
|
9680
10264
|
} & {
|
|
9681
|
-
readonly
|
|
10265
|
+
readonly realDataFieldOptions: {
|
|
10266
|
+
label: string;
|
|
10267
|
+
value: string;
|
|
10268
|
+
group: string;
|
|
10269
|
+
disabled: boolean;
|
|
10270
|
+
}[];
|
|
10271
|
+
dataFieldOptions(selected: string, clearable: boolean): {
|
|
9682
10272
|
label: string;
|
|
9683
10273
|
value: string;
|
|
9684
10274
|
group: string;
|
|
10275
|
+
disabled: boolean;
|
|
9685
10276
|
}[];
|
|
10277
|
+
explainDataKey(dataKey: string): {
|
|
10278
|
+
queryID: string;
|
|
10279
|
+
queryName: null;
|
|
10280
|
+
columnKey: string;
|
|
10281
|
+
} | {
|
|
10282
|
+
queryID: string;
|
|
10283
|
+
queryName: string;
|
|
10284
|
+
columnKey: string;
|
|
10285
|
+
};
|
|
9686
10286
|
} & {
|
|
9687
10287
|
removeSelf(): void;
|
|
9688
10288
|
} & {
|