@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
|
@@ -2323,6 +2323,148 @@ export declare const tokens: {
|
|
|
2323
2323
|
} & {
|
|
2324
2324
|
afterCreate(): void;
|
|
2325
2325
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
2326
|
+
queryByID(queryID: string): ({
|
|
2327
|
+
id: string;
|
|
2328
|
+
name: string;
|
|
2329
|
+
type: import("../../model").DataSourceType;
|
|
2330
|
+
key: string;
|
|
2331
|
+
sql: string;
|
|
2332
|
+
pre_process: string;
|
|
2333
|
+
post_process: string;
|
|
2334
|
+
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]>>;
|
|
2335
|
+
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]>>;
|
|
2336
|
+
state: string;
|
|
2337
|
+
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]>>);
|
|
2338
|
+
error: any;
|
|
2339
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2340
|
+
readonly valid: boolean;
|
|
2341
|
+
readonly json: {
|
|
2342
|
+
id: string;
|
|
2343
|
+
key: string;
|
|
2344
|
+
sql: string;
|
|
2345
|
+
name: string;
|
|
2346
|
+
type: import("../../model").DataSourceType;
|
|
2347
|
+
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]>>;
|
|
2348
|
+
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]>>;
|
|
2349
|
+
pre_process: string;
|
|
2350
|
+
post_process: string;
|
|
2351
|
+
};
|
|
2352
|
+
} & {
|
|
2353
|
+
setName(name: string): void;
|
|
2354
|
+
setKey(key: string): void;
|
|
2355
|
+
setType(type: import("../../model").DataSourceType): void;
|
|
2356
|
+
setSQL(sql: string): void;
|
|
2357
|
+
setRunBy(v: string[]): void;
|
|
2358
|
+
setReactTo(v: string[]): void;
|
|
2359
|
+
setPreProcess(v: string): void;
|
|
2360
|
+
setPostProcess(v: string): void;
|
|
2361
|
+
} & {
|
|
2362
|
+
readonly rootModel: any;
|
|
2363
|
+
readonly contentModel: any;
|
|
2364
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
2365
|
+
readonly unmetRunByConditions: string[];
|
|
2366
|
+
} & {
|
|
2367
|
+
readonly payload: any;
|
|
2368
|
+
readonly formattedSQL: any;
|
|
2369
|
+
readonly httpConfigString: string;
|
|
2370
|
+
readonly typedAsSQL: boolean;
|
|
2371
|
+
readonly typedAsHTTP: boolean;
|
|
2372
|
+
readonly reQueryKey: string;
|
|
2373
|
+
readonly runByConditionsMet: boolean;
|
|
2374
|
+
readonly conditionNames: {
|
|
2375
|
+
context: string[];
|
|
2376
|
+
filters: any[];
|
|
2377
|
+
};
|
|
2378
|
+
readonly queries: any;
|
|
2379
|
+
readonly inUse: any;
|
|
2380
|
+
readonly dependencies: import("../../utils/usage").DependencyInfo[];
|
|
2381
|
+
} & {
|
|
2382
|
+
readonly datasource: any;
|
|
2383
|
+
readonly additionalQueryInfo: import("../..").TAdditionalQueryInfo;
|
|
2384
|
+
} & {
|
|
2385
|
+
readonly stateMessage: string;
|
|
2386
|
+
} & {
|
|
2387
|
+
controller: AbortController;
|
|
2388
|
+
} & {
|
|
2389
|
+
runSQL: () => Promise<void>;
|
|
2390
|
+
runHTTP: () => Promise<void>;
|
|
2391
|
+
} & {
|
|
2392
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
2393
|
+
beforeDestroy(): void;
|
|
2394
|
+
} & {
|
|
2395
|
+
afterCreate(): void;
|
|
2396
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2397
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2398
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2399
|
+
type: import("mobx-state-tree").ISimpleType<import("../../model").DataSourceType>;
|
|
2400
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
2401
|
+
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
2402
|
+
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2403
|
+
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2404
|
+
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2405
|
+
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2406
|
+
} & {
|
|
2407
|
+
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2408
|
+
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
2409
|
+
error: import("mobx-state-tree").IType<any, any, any>;
|
|
2410
|
+
}, {
|
|
2411
|
+
readonly valid: boolean;
|
|
2412
|
+
readonly json: {
|
|
2413
|
+
id: string;
|
|
2414
|
+
key: string;
|
|
2415
|
+
sql: string;
|
|
2416
|
+
name: string;
|
|
2417
|
+
type: import("../../model").DataSourceType;
|
|
2418
|
+
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]>>;
|
|
2419
|
+
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]>>;
|
|
2420
|
+
pre_process: string;
|
|
2421
|
+
post_process: string;
|
|
2422
|
+
};
|
|
2423
|
+
} & {
|
|
2424
|
+
setName(name: string): void;
|
|
2425
|
+
setKey(key: string): void;
|
|
2426
|
+
setType(type: import("../../model").DataSourceType): void;
|
|
2427
|
+
setSQL(sql: string): void;
|
|
2428
|
+
setRunBy(v: string[]): void;
|
|
2429
|
+
setReactTo(v: string[]): void;
|
|
2430
|
+
setPreProcess(v: string): void;
|
|
2431
|
+
setPostProcess(v: string): void;
|
|
2432
|
+
} & {
|
|
2433
|
+
readonly rootModel: any;
|
|
2434
|
+
readonly contentModel: any;
|
|
2435
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
2436
|
+
readonly unmetRunByConditions: string[];
|
|
2437
|
+
} & {
|
|
2438
|
+
readonly payload: any;
|
|
2439
|
+
readonly formattedSQL: any;
|
|
2440
|
+
readonly httpConfigString: string;
|
|
2441
|
+
readonly typedAsSQL: boolean;
|
|
2442
|
+
readonly typedAsHTTP: boolean;
|
|
2443
|
+
readonly reQueryKey: string;
|
|
2444
|
+
readonly runByConditionsMet: boolean;
|
|
2445
|
+
readonly conditionNames: {
|
|
2446
|
+
context: string[];
|
|
2447
|
+
filters: any[];
|
|
2448
|
+
};
|
|
2449
|
+
readonly queries: any;
|
|
2450
|
+
readonly inUse: any;
|
|
2451
|
+
readonly dependencies: import("../../utils/usage").DependencyInfo[];
|
|
2452
|
+
} & {
|
|
2453
|
+
readonly datasource: any;
|
|
2454
|
+
readonly additionalQueryInfo: import("../..").TAdditionalQueryInfo;
|
|
2455
|
+
} & {
|
|
2456
|
+
readonly stateMessage: string;
|
|
2457
|
+
} & {
|
|
2458
|
+
controller: AbortController;
|
|
2459
|
+
} & {
|
|
2460
|
+
runSQL: () => Promise<void>;
|
|
2461
|
+
runHTTP: () => Promise<void>;
|
|
2462
|
+
} & {
|
|
2463
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
2464
|
+
beforeDestroy(): void;
|
|
2465
|
+
} & {
|
|
2466
|
+
afterCreate(): void;
|
|
2467
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
2326
2468
|
readonly data: TPanelData;
|
|
2327
2469
|
readonly variableStrings: Record<string, import('./react').ReactNode>;
|
|
2328
2470
|
readonly dataLoading: boolean;
|
|
@@ -2646,11 +2788,27 @@ export declare const tokens: {
|
|
|
2646
2788
|
};
|
|
2647
2789
|
downloadSchema(): void;
|
|
2648
2790
|
} & {
|
|
2649
|
-
readonly
|
|
2791
|
+
readonly realDataFieldOptions: {
|
|
2650
2792
|
label: string;
|
|
2651
2793
|
value: string;
|
|
2652
2794
|
group: string;
|
|
2795
|
+
disabled: boolean;
|
|
2653
2796
|
}[];
|
|
2797
|
+
dataFieldOptions(selected: string, clearable: boolean): {
|
|
2798
|
+
label: string;
|
|
2799
|
+
value: string;
|
|
2800
|
+
group: string;
|
|
2801
|
+
disabled: boolean;
|
|
2802
|
+
}[];
|
|
2803
|
+
explainDataKey(dataKey: string): {
|
|
2804
|
+
queryID: string;
|
|
2805
|
+
queryName: null;
|
|
2806
|
+
columnKey: string;
|
|
2807
|
+
} | {
|
|
2808
|
+
queryID: string;
|
|
2809
|
+
queryName: string;
|
|
2810
|
+
columnKey: string;
|
|
2811
|
+
};
|
|
2654
2812
|
} & {
|
|
2655
2813
|
removeSelf(): void;
|
|
2656
2814
|
} & {
|
|
@@ -4533,6 +4691,148 @@ export declare const tokens: {
|
|
|
4533
4691
|
} & {
|
|
4534
4692
|
afterCreate(): void;
|
|
4535
4693
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
4694
|
+
queryByID(queryID: string): ({
|
|
4695
|
+
id: string;
|
|
4696
|
+
name: string;
|
|
4697
|
+
type: import("../../model").DataSourceType;
|
|
4698
|
+
key: string;
|
|
4699
|
+
sql: string;
|
|
4700
|
+
pre_process: string;
|
|
4701
|
+
post_process: string;
|
|
4702
|
+
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]>>;
|
|
4703
|
+
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]>>;
|
|
4704
|
+
state: string;
|
|
4705
|
+
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]>>);
|
|
4706
|
+
error: any;
|
|
4707
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4708
|
+
readonly valid: boolean;
|
|
4709
|
+
readonly json: {
|
|
4710
|
+
id: string;
|
|
4711
|
+
key: string;
|
|
4712
|
+
sql: string;
|
|
4713
|
+
name: string;
|
|
4714
|
+
type: import("../../model").DataSourceType;
|
|
4715
|
+
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]>>;
|
|
4716
|
+
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]>>;
|
|
4717
|
+
pre_process: string;
|
|
4718
|
+
post_process: string;
|
|
4719
|
+
};
|
|
4720
|
+
} & {
|
|
4721
|
+
setName(name: string): void;
|
|
4722
|
+
setKey(key: string): void;
|
|
4723
|
+
setType(type: import("../../model").DataSourceType): void;
|
|
4724
|
+
setSQL(sql: string): void;
|
|
4725
|
+
setRunBy(v: string[]): void;
|
|
4726
|
+
setReactTo(v: string[]): void;
|
|
4727
|
+
setPreProcess(v: string): void;
|
|
4728
|
+
setPostProcess(v: string): void;
|
|
4729
|
+
} & {
|
|
4730
|
+
readonly rootModel: any;
|
|
4731
|
+
readonly contentModel: any;
|
|
4732
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
4733
|
+
readonly unmetRunByConditions: string[];
|
|
4734
|
+
} & {
|
|
4735
|
+
readonly payload: any;
|
|
4736
|
+
readonly formattedSQL: any;
|
|
4737
|
+
readonly httpConfigString: string;
|
|
4738
|
+
readonly typedAsSQL: boolean;
|
|
4739
|
+
readonly typedAsHTTP: boolean;
|
|
4740
|
+
readonly reQueryKey: string;
|
|
4741
|
+
readonly runByConditionsMet: boolean;
|
|
4742
|
+
readonly conditionNames: {
|
|
4743
|
+
context: string[];
|
|
4744
|
+
filters: any[];
|
|
4745
|
+
};
|
|
4746
|
+
readonly queries: any;
|
|
4747
|
+
readonly inUse: any;
|
|
4748
|
+
readonly dependencies: import("../../utils/usage").DependencyInfo[];
|
|
4749
|
+
} & {
|
|
4750
|
+
readonly datasource: any;
|
|
4751
|
+
readonly additionalQueryInfo: import("../..").TAdditionalQueryInfo;
|
|
4752
|
+
} & {
|
|
4753
|
+
readonly stateMessage: string;
|
|
4754
|
+
} & {
|
|
4755
|
+
controller: AbortController;
|
|
4756
|
+
} & {
|
|
4757
|
+
runSQL: () => Promise<void>;
|
|
4758
|
+
runHTTP: () => Promise<void>;
|
|
4759
|
+
} & {
|
|
4760
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
4761
|
+
beforeDestroy(): void;
|
|
4762
|
+
} & {
|
|
4763
|
+
afterCreate(): void;
|
|
4764
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4765
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4766
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4767
|
+
type: import("mobx-state-tree").ISimpleType<import("../../model").DataSourceType>;
|
|
4768
|
+
key: import("mobx-state-tree").ISimpleType<string>;
|
|
4769
|
+
sql: import("mobx-state-tree").ISimpleType<string>;
|
|
4770
|
+
pre_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4771
|
+
post_process: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4772
|
+
run_by: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4773
|
+
react_to: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4774
|
+
} & {
|
|
4775
|
+
state: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4776
|
+
data: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<string[][] | number[][] | null | undefined, string[][] | number[][], string[][] | number[][]>, [undefined]>;
|
|
4777
|
+
error: import("mobx-state-tree").IType<any, any, any>;
|
|
4778
|
+
}, {
|
|
4779
|
+
readonly valid: boolean;
|
|
4780
|
+
readonly json: {
|
|
4781
|
+
id: string;
|
|
4782
|
+
key: string;
|
|
4783
|
+
sql: string;
|
|
4784
|
+
name: string;
|
|
4785
|
+
type: import("../../model").DataSourceType;
|
|
4786
|
+
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]>>;
|
|
4787
|
+
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]>>;
|
|
4788
|
+
pre_process: string;
|
|
4789
|
+
post_process: string;
|
|
4790
|
+
};
|
|
4791
|
+
} & {
|
|
4792
|
+
setName(name: string): void;
|
|
4793
|
+
setKey(key: string): void;
|
|
4794
|
+
setType(type: import("../../model").DataSourceType): void;
|
|
4795
|
+
setSQL(sql: string): void;
|
|
4796
|
+
setRunBy(v: string[]): void;
|
|
4797
|
+
setReactTo(v: string[]): void;
|
|
4798
|
+
setPreProcess(v: string): void;
|
|
4799
|
+
setPostProcess(v: string): void;
|
|
4800
|
+
} & {
|
|
4801
|
+
readonly rootModel: any;
|
|
4802
|
+
readonly contentModel: any;
|
|
4803
|
+
readonly conditionOptions: import("@mantine/core").SelectItem[];
|
|
4804
|
+
readonly unmetRunByConditions: string[];
|
|
4805
|
+
} & {
|
|
4806
|
+
readonly payload: any;
|
|
4807
|
+
readonly formattedSQL: any;
|
|
4808
|
+
readonly httpConfigString: string;
|
|
4809
|
+
readonly typedAsSQL: boolean;
|
|
4810
|
+
readonly typedAsHTTP: boolean;
|
|
4811
|
+
readonly reQueryKey: string;
|
|
4812
|
+
readonly runByConditionsMet: boolean;
|
|
4813
|
+
readonly conditionNames: {
|
|
4814
|
+
context: string[];
|
|
4815
|
+
filters: any[];
|
|
4816
|
+
};
|
|
4817
|
+
readonly queries: any;
|
|
4818
|
+
readonly inUse: any;
|
|
4819
|
+
readonly dependencies: import("../../utils/usage").DependencyInfo[];
|
|
4820
|
+
} & {
|
|
4821
|
+
readonly datasource: any;
|
|
4822
|
+
readonly additionalQueryInfo: import("../..").TAdditionalQueryInfo;
|
|
4823
|
+
} & {
|
|
4824
|
+
readonly stateMessage: string;
|
|
4825
|
+
} & {
|
|
4826
|
+
controller: AbortController;
|
|
4827
|
+
} & {
|
|
4828
|
+
runSQL: () => Promise<void>;
|
|
4829
|
+
runHTTP: () => Promise<void>;
|
|
4830
|
+
} & {
|
|
4831
|
+
fetchData: (force: boolean) => Promise<void> | undefined;
|
|
4832
|
+
beforeDestroy(): void;
|
|
4833
|
+
} & {
|
|
4834
|
+
afterCreate(): void;
|
|
4835
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
4536
4836
|
readonly data: TPanelData;
|
|
4537
4837
|
readonly variableStrings: Record<string, import('./react').ReactNode>;
|
|
4538
4838
|
readonly dataLoading: boolean;
|
|
@@ -4856,11 +5156,27 @@ export declare const tokens: {
|
|
|
4856
5156
|
};
|
|
4857
5157
|
downloadSchema(): void;
|
|
4858
5158
|
} & {
|
|
4859
|
-
readonly
|
|
5159
|
+
readonly realDataFieldOptions: {
|
|
4860
5160
|
label: string;
|
|
4861
5161
|
value: string;
|
|
4862
5162
|
group: string;
|
|
5163
|
+
disabled: boolean;
|
|
4863
5164
|
}[];
|
|
5165
|
+
dataFieldOptions(selected: string, clearable: boolean): {
|
|
5166
|
+
label: string;
|
|
5167
|
+
value: string;
|
|
5168
|
+
group: string;
|
|
5169
|
+
disabled: boolean;
|
|
5170
|
+
}[];
|
|
5171
|
+
explainDataKey(dataKey: string): {
|
|
5172
|
+
queryID: string;
|
|
5173
|
+
queryName: null;
|
|
5174
|
+
columnKey: string;
|
|
5175
|
+
} | {
|
|
5176
|
+
queryID: string;
|
|
5177
|
+
queryName: string;
|
|
5178
|
+
columnKey: string;
|
|
5179
|
+
};
|
|
4864
5180
|
} & {
|
|
4865
5181
|
removeSelf(): void;
|
|
4866
5182
|
} & {
|