@devtable/dashboard 10.40.0 → 10.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +66 -6
- package/dist/components/plugins/plugin-context.d.ts +66 -6
- package/dist/components/plugins/viz-manager/components.d.ts +1 -3
- package/dist/contexts/panel-context.d.ts +132 -12
- package/dist/dashboard-editor/model/panels/panel.d.ts +29 -3
- package/dist/dashboard-editor/model/panels/panels.d.ts +274 -25
- package/dist/dashboard-editor/ui/settings/content/data-preview/index.d.ts +2 -1
- package/dist/dashboard-editor/ui/settings/content/edit-panel/panel-config/name.d.ts +3 -0
- package/dist/dashboard.es.js +1604 -1572
- package/dist/dashboard.umd.js +61 -61
- package/dist/model/meta-model/dashboard/content/panel/index.d.ts +1 -0
- package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +29 -3
- package/dist/model/meta-model/dashboard/content/panel/title.d.ts +9 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +29 -3
- package/dist/model/render-model/dashboard/content/panels/panels.d.ts +245 -22
- package/dist/stats.html +1 -1
- package/dist/types/dashboard.d.ts +4 -1
- package/dist/types/plugin/index.d.ts +0 -9
- package/package.json +1 -1
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
import { VariableMetaInstance, VariableMetaSnapshotIn } from './variable';
|
|
2
2
|
export declare const PanelMeta: import("mobx-state-tree").IModelType<{
|
|
3
3
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4
|
-
|
|
4
|
+
name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5
|
+
title: import("mobx-state-tree").IModelType<{
|
|
6
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7
|
+
}, {
|
|
8
|
+
readonly json: {
|
|
9
|
+
show: boolean;
|
|
10
|
+
};
|
|
11
|
+
} & {
|
|
12
|
+
setShow(v: boolean): void;
|
|
13
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5
14
|
description: import("mobx-state-tree").ISimpleType<string>;
|
|
6
15
|
layout: import("mobx-state-tree").IModelType<{
|
|
7
16
|
x: import("mobx-state-tree").ISimpleType<number>;
|
|
@@ -385,12 +394,29 @@ export declare const PanelMeta: import("mobx-state-tree").IModelType<{
|
|
|
385
394
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
386
395
|
type: string;
|
|
387
396
|
};
|
|
397
|
+
name: string;
|
|
388
398
|
style: {
|
|
389
399
|
border: {
|
|
390
400
|
enabled: boolean;
|
|
391
401
|
};
|
|
392
402
|
};
|
|
393
|
-
title:
|
|
403
|
+
title: {
|
|
404
|
+
show: boolean;
|
|
405
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
406
|
+
readonly json: {
|
|
407
|
+
show: boolean;
|
|
408
|
+
};
|
|
409
|
+
} & {
|
|
410
|
+
setShow(v: boolean): void;
|
|
411
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
412
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
413
|
+
}, {
|
|
414
|
+
readonly json: {
|
|
415
|
+
show: boolean;
|
|
416
|
+
};
|
|
417
|
+
} & {
|
|
418
|
+
setShow(v: boolean): void;
|
|
419
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
394
420
|
layout: {
|
|
395
421
|
h: number;
|
|
396
422
|
w: number;
|
|
@@ -648,7 +674,7 @@ export declare const PanelMeta: import("mobx-state-tree").IModelType<{
|
|
|
648
674
|
readonly queryIDSet: Set<string>;
|
|
649
675
|
} & {
|
|
650
676
|
setID(id: string): void;
|
|
651
|
-
|
|
677
|
+
setName(name: string): void;
|
|
652
678
|
setDescription(description: string): void;
|
|
653
679
|
addQueryID(queryID: string): void;
|
|
654
680
|
removeQueryID(queryID: string): void;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const PanelTitleMeta: import("mobx-state-tree").IModelType<{
|
|
2
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3
|
+
}, {
|
|
4
|
+
readonly json: {
|
|
5
|
+
show: boolean;
|
|
6
|
+
};
|
|
7
|
+
} & {
|
|
8
|
+
setShow(v: boolean): void;
|
|
9
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
import { Instance, SnapshotIn } from 'mobx-state-tree';
|
|
2
2
|
export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
3
3
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4
|
-
|
|
4
|
+
name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
5
|
+
title: import("mobx-state-tree").IModelType<{
|
|
6
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7
|
+
}, {
|
|
8
|
+
readonly json: {
|
|
9
|
+
show: boolean;
|
|
10
|
+
};
|
|
11
|
+
} & {
|
|
12
|
+
setShow(v: boolean): void;
|
|
13
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
5
14
|
description: import("mobx-state-tree").ISimpleType<string>;
|
|
6
15
|
layout: import("mobx-state-tree").IModelType<{
|
|
7
16
|
x: import("mobx-state-tree").ISimpleType<number>;
|
|
@@ -385,12 +394,29 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
385
394
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
386
395
|
type: string;
|
|
387
396
|
};
|
|
397
|
+
name: string;
|
|
388
398
|
style: {
|
|
389
399
|
border: {
|
|
390
400
|
enabled: boolean;
|
|
391
401
|
};
|
|
392
402
|
};
|
|
393
|
-
title:
|
|
403
|
+
title: {
|
|
404
|
+
show: boolean;
|
|
405
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
406
|
+
readonly json: {
|
|
407
|
+
show: boolean;
|
|
408
|
+
};
|
|
409
|
+
} & {
|
|
410
|
+
setShow(v: boolean): void;
|
|
411
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
412
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
413
|
+
}, {
|
|
414
|
+
readonly json: {
|
|
415
|
+
show: boolean;
|
|
416
|
+
};
|
|
417
|
+
} & {
|
|
418
|
+
setShow(v: boolean): void;
|
|
419
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
394
420
|
layout: {
|
|
395
421
|
h: number;
|
|
396
422
|
w: number;
|
|
@@ -648,7 +674,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
648
674
|
readonly queryIDSet: Set<string>;
|
|
649
675
|
} & {
|
|
650
676
|
setID(id: string): void;
|
|
651
|
-
|
|
677
|
+
setName(name: string): void;
|
|
652
678
|
setDescription(description: string): void;
|
|
653
679
|
addQueryID(queryID: string): void;
|
|
654
680
|
removeQueryID(queryID: string): void;
|
|
@@ -2,7 +2,16 @@ import { Instance } from 'mobx-state-tree';
|
|
|
2
2
|
export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
3
3
|
list: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
4
4
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5
|
-
|
|
5
|
+
name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
6
|
+
title: import("mobx-state-tree").IModelType<{
|
|
7
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
8
|
+
}, {
|
|
9
|
+
readonly json: {
|
|
10
|
+
show: boolean;
|
|
11
|
+
};
|
|
12
|
+
} & {
|
|
13
|
+
setShow(v: boolean): void;
|
|
14
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
6
15
|
description: import("mobx-state-tree").ISimpleType<string>;
|
|
7
16
|
layout: import("mobx-state-tree").IModelType<{
|
|
8
17
|
x: import("mobx-state-tree").ISimpleType<number>;
|
|
@@ -386,12 +395,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
386
395
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
387
396
|
type: string;
|
|
388
397
|
};
|
|
398
|
+
name: string;
|
|
389
399
|
style: {
|
|
390
400
|
border: {
|
|
391
401
|
enabled: boolean;
|
|
392
402
|
};
|
|
393
403
|
};
|
|
394
|
-
title:
|
|
404
|
+
title: {
|
|
405
|
+
show: boolean;
|
|
406
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
407
|
+
readonly json: {
|
|
408
|
+
show: boolean;
|
|
409
|
+
};
|
|
410
|
+
} & {
|
|
411
|
+
setShow(v: boolean): void;
|
|
412
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
413
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
414
|
+
}, {
|
|
415
|
+
readonly json: {
|
|
416
|
+
show: boolean;
|
|
417
|
+
};
|
|
418
|
+
} & {
|
|
419
|
+
setShow(v: boolean): void;
|
|
420
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
395
421
|
layout: {
|
|
396
422
|
h: number;
|
|
397
423
|
w: number;
|
|
@@ -649,7 +675,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
649
675
|
readonly queryIDSet: Set<string>;
|
|
650
676
|
} & {
|
|
651
677
|
setID(id: string): void;
|
|
652
|
-
|
|
678
|
+
setName(name: string): void;
|
|
653
679
|
setDescription(description: string): void;
|
|
654
680
|
addQueryID(queryID: string): void;
|
|
655
681
|
removeQueryID(queryID: string): void;
|
|
@@ -1703,12 +1729,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1703
1729
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
1704
1730
|
type: string;
|
|
1705
1731
|
};
|
|
1732
|
+
name: string;
|
|
1706
1733
|
style: {
|
|
1707
1734
|
border: {
|
|
1708
1735
|
enabled: boolean;
|
|
1709
1736
|
};
|
|
1710
1737
|
};
|
|
1711
|
-
title:
|
|
1738
|
+
title: {
|
|
1739
|
+
show: boolean;
|
|
1740
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1741
|
+
readonly json: {
|
|
1742
|
+
show: boolean;
|
|
1743
|
+
};
|
|
1744
|
+
} & {
|
|
1745
|
+
setShow(v: boolean): void;
|
|
1746
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1747
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1748
|
+
}, {
|
|
1749
|
+
readonly json: {
|
|
1750
|
+
show: boolean;
|
|
1751
|
+
};
|
|
1752
|
+
} & {
|
|
1753
|
+
setShow(v: boolean): void;
|
|
1754
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1712
1755
|
layout: {
|
|
1713
1756
|
h: number;
|
|
1714
1757
|
w: number;
|
|
@@ -1965,7 +2008,24 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1965
2008
|
}[];
|
|
1966
2009
|
findByID<T = {
|
|
1967
2010
|
id: string;
|
|
1968
|
-
|
|
2011
|
+
name: string;
|
|
2012
|
+
title: {
|
|
2013
|
+
show: boolean;
|
|
2014
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2015
|
+
readonly json: {
|
|
2016
|
+
show: boolean;
|
|
2017
|
+
};
|
|
2018
|
+
} & {
|
|
2019
|
+
setShow(v: boolean): void;
|
|
2020
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2021
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2022
|
+
}, {
|
|
2023
|
+
readonly json: {
|
|
2024
|
+
show: boolean;
|
|
2025
|
+
};
|
|
2026
|
+
} & {
|
|
2027
|
+
setShow(v: boolean): void;
|
|
2028
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1969
2029
|
description: string;
|
|
1970
2030
|
layout: {
|
|
1971
2031
|
x: number;
|
|
@@ -2727,12 +2787,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2727
2787
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
2728
2788
|
type: string;
|
|
2729
2789
|
};
|
|
2790
|
+
name: string;
|
|
2730
2791
|
style: {
|
|
2731
2792
|
border: {
|
|
2732
2793
|
enabled: boolean;
|
|
2733
2794
|
};
|
|
2734
2795
|
};
|
|
2735
|
-
title:
|
|
2796
|
+
title: {
|
|
2797
|
+
show: boolean;
|
|
2798
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2799
|
+
readonly json: {
|
|
2800
|
+
show: boolean;
|
|
2801
|
+
};
|
|
2802
|
+
} & {
|
|
2803
|
+
setShow(v: boolean): void;
|
|
2804
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2805
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2806
|
+
}, {
|
|
2807
|
+
readonly json: {
|
|
2808
|
+
show: boolean;
|
|
2809
|
+
};
|
|
2810
|
+
} & {
|
|
2811
|
+
setShow(v: boolean): void;
|
|
2812
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2736
2813
|
layout: {
|
|
2737
2814
|
h: number;
|
|
2738
2815
|
w: number;
|
|
@@ -2990,7 +3067,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
2990
3067
|
readonly queryIDSet: Set<string>;
|
|
2991
3068
|
} & {
|
|
2992
3069
|
setID(id: string): void;
|
|
2993
|
-
|
|
3070
|
+
setName(name: string): void;
|
|
2994
3071
|
setDescription(description: string): void;
|
|
2995
3072
|
addQueryID(queryID: string): void;
|
|
2996
3073
|
removeQueryID(queryID: string): void;
|
|
@@ -4038,7 +4115,16 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4038
4115
|
downloadData(): void;
|
|
4039
4116
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4040
4117
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4041
|
-
|
|
4118
|
+
name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4119
|
+
title: import("mobx-state-tree").IModelType<{
|
|
4120
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4121
|
+
}, {
|
|
4122
|
+
readonly json: {
|
|
4123
|
+
show: boolean;
|
|
4124
|
+
};
|
|
4125
|
+
} & {
|
|
4126
|
+
setShow(v: boolean): void;
|
|
4127
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
4042
4128
|
description: import("mobx-state-tree").ISimpleType<string>;
|
|
4043
4129
|
layout: import("mobx-state-tree").IModelType<{
|
|
4044
4130
|
x: import("mobx-state-tree").ISimpleType<number>;
|
|
@@ -4422,12 +4508,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4422
4508
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
4423
4509
|
type: string;
|
|
4424
4510
|
};
|
|
4511
|
+
name: string;
|
|
4425
4512
|
style: {
|
|
4426
4513
|
border: {
|
|
4427
4514
|
enabled: boolean;
|
|
4428
4515
|
};
|
|
4429
4516
|
};
|
|
4430
|
-
title:
|
|
4517
|
+
title: {
|
|
4518
|
+
show: boolean;
|
|
4519
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4520
|
+
readonly json: {
|
|
4521
|
+
show: boolean;
|
|
4522
|
+
};
|
|
4523
|
+
} & {
|
|
4524
|
+
setShow(v: boolean): void;
|
|
4525
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4526
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4527
|
+
}, {
|
|
4528
|
+
readonly json: {
|
|
4529
|
+
show: boolean;
|
|
4530
|
+
};
|
|
4531
|
+
} & {
|
|
4532
|
+
setShow(v: boolean): void;
|
|
4533
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
4431
4534
|
layout: {
|
|
4432
4535
|
h: number;
|
|
4433
4536
|
w: number;
|
|
@@ -4685,7 +4788,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4685
4788
|
readonly queryIDSet: Set<string>;
|
|
4686
4789
|
} & {
|
|
4687
4790
|
setID(id: string): void;
|
|
4688
|
-
|
|
4791
|
+
setName(name: string): void;
|
|
4689
4792
|
setDescription(description: string): void;
|
|
4690
4793
|
addQueryID(queryID: string): void;
|
|
4691
4794
|
removeQueryID(queryID: string): void;
|
|
@@ -5734,7 +5837,24 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5734
5837
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>(id: string): T | undefined;
|
|
5735
5838
|
readonly idMap: Map<string, {
|
|
5736
5839
|
id: string;
|
|
5737
|
-
|
|
5840
|
+
name: string;
|
|
5841
|
+
title: {
|
|
5842
|
+
show: boolean;
|
|
5843
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5844
|
+
readonly json: {
|
|
5845
|
+
show: boolean;
|
|
5846
|
+
};
|
|
5847
|
+
} & {
|
|
5848
|
+
setShow(v: boolean): void;
|
|
5849
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5850
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5851
|
+
}, {
|
|
5852
|
+
readonly json: {
|
|
5853
|
+
show: boolean;
|
|
5854
|
+
};
|
|
5855
|
+
} & {
|
|
5856
|
+
setShow(v: boolean): void;
|
|
5857
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
5738
5858
|
description: string;
|
|
5739
5859
|
layout: {
|
|
5740
5860
|
x: number;
|
|
@@ -6496,12 +6616,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6496
6616
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
6497
6617
|
type: string;
|
|
6498
6618
|
};
|
|
6619
|
+
name: string;
|
|
6499
6620
|
style: {
|
|
6500
6621
|
border: {
|
|
6501
6622
|
enabled: boolean;
|
|
6502
6623
|
};
|
|
6503
6624
|
};
|
|
6504
|
-
title:
|
|
6625
|
+
title: {
|
|
6626
|
+
show: boolean;
|
|
6627
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6628
|
+
readonly json: {
|
|
6629
|
+
show: boolean;
|
|
6630
|
+
};
|
|
6631
|
+
} & {
|
|
6632
|
+
setShow(v: boolean): void;
|
|
6633
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6634
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
6635
|
+
}, {
|
|
6636
|
+
readonly json: {
|
|
6637
|
+
show: boolean;
|
|
6638
|
+
};
|
|
6639
|
+
} & {
|
|
6640
|
+
setShow(v: boolean): void;
|
|
6641
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
6505
6642
|
layout: {
|
|
6506
6643
|
h: number;
|
|
6507
6644
|
w: number;
|
|
@@ -6759,7 +6896,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
6759
6896
|
readonly queryIDSet: Set<string>;
|
|
6760
6897
|
} & {
|
|
6761
6898
|
setID(id: string): void;
|
|
6762
|
-
|
|
6899
|
+
setName(name: string): void;
|
|
6763
6900
|
setDescription(description: string): void;
|
|
6764
6901
|
addQueryID(queryID: string): void;
|
|
6765
6902
|
removeQueryID(queryID: string): void;
|
|
@@ -7807,7 +7944,16 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
7807
7944
|
downloadData(): void;
|
|
7808
7945
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7809
7946
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7810
|
-
|
|
7947
|
+
name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
7948
|
+
title: import("mobx-state-tree").IModelType<{
|
|
7949
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7950
|
+
}, {
|
|
7951
|
+
readonly json: {
|
|
7952
|
+
show: boolean;
|
|
7953
|
+
};
|
|
7954
|
+
} & {
|
|
7955
|
+
setShow(v: boolean): void;
|
|
7956
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
7811
7957
|
description: import("mobx-state-tree").ISimpleType<string>;
|
|
7812
7958
|
layout: import("mobx-state-tree").IModelType<{
|
|
7813
7959
|
x: import("mobx-state-tree").ISimpleType<number>;
|
|
@@ -8191,12 +8337,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
8191
8337
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
8192
8338
|
type: string;
|
|
8193
8339
|
};
|
|
8340
|
+
name: string;
|
|
8194
8341
|
style: {
|
|
8195
8342
|
border: {
|
|
8196
8343
|
enabled: boolean;
|
|
8197
8344
|
};
|
|
8198
8345
|
};
|
|
8199
|
-
title:
|
|
8346
|
+
title: {
|
|
8347
|
+
show: boolean;
|
|
8348
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8349
|
+
readonly json: {
|
|
8350
|
+
show: boolean;
|
|
8351
|
+
};
|
|
8352
|
+
} & {
|
|
8353
|
+
setShow(v: boolean): void;
|
|
8354
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8355
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
8356
|
+
}, {
|
|
8357
|
+
readonly json: {
|
|
8358
|
+
show: boolean;
|
|
8359
|
+
};
|
|
8360
|
+
} & {
|
|
8361
|
+
setShow(v: boolean): void;
|
|
8362
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
8200
8363
|
layout: {
|
|
8201
8364
|
h: number;
|
|
8202
8365
|
w: number;
|
|
@@ -8454,7 +8617,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
8454
8617
|
readonly queryIDSet: Set<string>;
|
|
8455
8618
|
} & {
|
|
8456
8619
|
setID(id: string): void;
|
|
8457
|
-
|
|
8620
|
+
setName(name: string): void;
|
|
8458
8621
|
setDescription(description: string): void;
|
|
8459
8622
|
addQueryID(queryID: string): void;
|
|
8460
8623
|
removeQueryID(queryID: string): void;
|
|
@@ -9505,7 +9668,24 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
9505
9668
|
panelsByIDs(ids: string[]): {
|
|
9506
9669
|
panels: ({
|
|
9507
9670
|
id: string;
|
|
9508
|
-
|
|
9671
|
+
name: string;
|
|
9672
|
+
title: {
|
|
9673
|
+
show: boolean;
|
|
9674
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9675
|
+
readonly json: {
|
|
9676
|
+
show: boolean;
|
|
9677
|
+
};
|
|
9678
|
+
} & {
|
|
9679
|
+
setShow(v: boolean): void;
|
|
9680
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9681
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
9682
|
+
}, {
|
|
9683
|
+
readonly json: {
|
|
9684
|
+
show: boolean;
|
|
9685
|
+
};
|
|
9686
|
+
} & {
|
|
9687
|
+
setShow(v: boolean): void;
|
|
9688
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
9509
9689
|
description: string;
|
|
9510
9690
|
layout: {
|
|
9511
9691
|
x: number;
|
|
@@ -10267,12 +10447,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
10267
10447
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
10268
10448
|
type: string;
|
|
10269
10449
|
};
|
|
10450
|
+
name: string;
|
|
10270
10451
|
style: {
|
|
10271
10452
|
border: {
|
|
10272
10453
|
enabled: boolean;
|
|
10273
10454
|
};
|
|
10274
10455
|
};
|
|
10275
|
-
title:
|
|
10456
|
+
title: {
|
|
10457
|
+
show: boolean;
|
|
10458
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10459
|
+
readonly json: {
|
|
10460
|
+
show: boolean;
|
|
10461
|
+
};
|
|
10462
|
+
} & {
|
|
10463
|
+
setShow(v: boolean): void;
|
|
10464
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10465
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10466
|
+
}, {
|
|
10467
|
+
readonly json: {
|
|
10468
|
+
show: boolean;
|
|
10469
|
+
};
|
|
10470
|
+
} & {
|
|
10471
|
+
setShow(v: boolean): void;
|
|
10472
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
10276
10473
|
layout: {
|
|
10277
10474
|
h: number;
|
|
10278
10475
|
w: number;
|
|
@@ -10530,7 +10727,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
10530
10727
|
readonly queryIDSet: Set<string>;
|
|
10531
10728
|
} & {
|
|
10532
10729
|
setID(id: string): void;
|
|
10533
|
-
|
|
10730
|
+
setName(name: string): void;
|
|
10534
10731
|
setDescription(description: string): void;
|
|
10535
10732
|
addQueryID(queryID: string): void;
|
|
10536
10733
|
removeQueryID(queryID: string): void;
|
|
@@ -11578,7 +11775,16 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
11578
11775
|
downloadData(): void;
|
|
11579
11776
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11580
11777
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
11581
|
-
|
|
11778
|
+
name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
11779
|
+
title: import("mobx-state-tree").IModelType<{
|
|
11780
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
11781
|
+
}, {
|
|
11782
|
+
readonly json: {
|
|
11783
|
+
show: boolean;
|
|
11784
|
+
};
|
|
11785
|
+
} & {
|
|
11786
|
+
setShow(v: boolean): void;
|
|
11787
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
11582
11788
|
description: import("mobx-state-tree").ISimpleType<string>;
|
|
11583
11789
|
layout: import("mobx-state-tree").IModelType<{
|
|
11584
11790
|
x: import("mobx-state-tree").ISimpleType<number>;
|
|
@@ -11962,12 +12168,29 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
11962
12168
|
conf: import("../../../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../../../..").AnyObject, import("../../../../..").AnyObject, import("../../../../..").AnyObject>>;
|
|
11963
12169
|
type: string;
|
|
11964
12170
|
};
|
|
12171
|
+
name: string;
|
|
11965
12172
|
style: {
|
|
11966
12173
|
border: {
|
|
11967
12174
|
enabled: boolean;
|
|
11968
12175
|
};
|
|
11969
12176
|
};
|
|
11970
|
-
title:
|
|
12177
|
+
title: {
|
|
12178
|
+
show: boolean;
|
|
12179
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12180
|
+
readonly json: {
|
|
12181
|
+
show: boolean;
|
|
12182
|
+
};
|
|
12183
|
+
} & {
|
|
12184
|
+
setShow(v: boolean): void;
|
|
12185
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12186
|
+
show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
12187
|
+
}, {
|
|
12188
|
+
readonly json: {
|
|
12189
|
+
show: boolean;
|
|
12190
|
+
};
|
|
12191
|
+
} & {
|
|
12192
|
+
setShow(v: boolean): void;
|
|
12193
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
11971
12194
|
layout: {
|
|
11972
12195
|
h: number;
|
|
11973
12196
|
w: number;
|
|
@@ -12225,7 +12448,7 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
12225
12448
|
readonly queryIDSet: Set<string>;
|
|
12226
12449
|
} & {
|
|
12227
12450
|
setID(id: string): void;
|
|
12228
|
-
|
|
12451
|
+
setName(name: string): void;
|
|
12229
12452
|
setDescription(description: string): void;
|
|
12230
12453
|
addQueryID(queryID: string): void;
|
|
12231
12454
|
removeQueryID(queryID: string): void;
|