@devtable/dashboard 10.40.0 → 10.42.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.
Files changed (30) hide show
  1. package/dist/api-caller/index.d.ts +5 -2
  2. package/dist/api-caller/request.d.ts +25 -8
  3. package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +70 -10
  4. package/dist/components/plugins/plugin-context.d.ts +70 -10
  5. package/dist/components/plugins/viz-manager/components.d.ts +1 -3
  6. package/dist/contexts/panel-context.d.ts +140 -20
  7. package/dist/dashboard-editor/model/datasources/columns.d.ts +0 -1
  8. package/dist/dashboard-editor/model/datasources/datasource.d.ts +10 -7
  9. package/dist/dashboard-editor/model/datasources/index.d.ts +13 -16
  10. package/dist/dashboard-editor/model/datasources/indexes.d.ts +0 -1
  11. package/dist/dashboard-editor/model/datasources/table-data.d.ts +1 -1
  12. package/dist/dashboard-editor/model/datasources/tables.d.ts +0 -1
  13. package/dist/dashboard-editor/model/panels/panel.d.ts +31 -5
  14. package/dist/dashboard-editor/model/panels/panels.d.ts +290 -41
  15. package/dist/dashboard-editor/model/queries/index.d.ts +7 -7
  16. package/dist/dashboard-editor/ui/settings/content/data-preview/index.d.ts +2 -1
  17. package/dist/dashboard-editor/ui/settings/content/edit-panel/panel-config/name.d.ts +3 -0
  18. package/dist/dashboard.es.js +2302 -2295
  19. package/dist/dashboard.umd.js +61 -121
  20. package/dist/model/meta-model/dashboard/content/panel/index.d.ts +1 -0
  21. package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +29 -3
  22. package/dist/model/meta-model/dashboard/content/panel/title.d.ts +9 -0
  23. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +31 -5
  24. package/dist/model/render-model/dashboard/content/panels/panels.d.ts +259 -36
  25. package/dist/model/render-model/dashboard/content/queries/queries.d.ts +5 -5
  26. package/dist/model/render-model/dashboard/content/queries/query.d.ts +2 -1
  27. package/dist/stats.html +1 -1
  28. package/dist/types/dashboard.d.ts +4 -1
  29. package/dist/types/plugin/index.d.ts +0 -9
  30. package/package.json +1 -1
@@ -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
- title: import("mobx-state-tree").ISimpleType<string>;
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: string;
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
- setTitle(title: string): void;
678
+ setName(name: string): void;
653
679
  setDescription(description: string): void;
654
680
  addQueryID(queryID: string): void;
655
681
  removeQueryID(queryID: string): void;
@@ -1598,12 +1624,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
1598
1624
  readonly rootModel: any;
1599
1625
  readonly contentModel: any;
1600
1626
  readonly payload: any;
1601
- readonly dashboardState: import("../../../..").TDashboardState;
1602
1627
  readonly formattedSQL: any;
1603
1628
  readonly typedAsSQL: boolean;
1604
1629
  readonly typedAsHTTP: boolean;
1605
1630
  readonly datasource: any;
1606
1631
  readonly httpConfigString: string;
1632
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
1607
1633
  } & {
1608
1634
  readonly stateMessage: string;
1609
1635
  } & {
@@ -1668,12 +1694,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
1668
1694
  readonly rootModel: any;
1669
1695
  readonly contentModel: any;
1670
1696
  readonly payload: any;
1671
- readonly dashboardState: import("../../../..").TDashboardState;
1672
1697
  readonly formattedSQL: any;
1673
1698
  readonly typedAsSQL: boolean;
1674
1699
  readonly typedAsHTTP: boolean;
1675
1700
  readonly datasource: any;
1676
1701
  readonly httpConfigString: string;
1702
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
1677
1703
  } & {
1678
1704
  readonly stateMessage: string;
1679
1705
  } & {
@@ -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: string;
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
- title: string;
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: string;
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
- setTitle(title: string): void;
3070
+ setName(name: string): void;
2994
3071
  setDescription(description: string): void;
2995
3072
  addQueryID(queryID: string): void;
2996
3073
  removeQueryID(queryID: string): void;
@@ -3939,12 +4016,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
3939
4016
  readonly rootModel: any;
3940
4017
  readonly contentModel: any;
3941
4018
  readonly payload: any;
3942
- readonly dashboardState: import("../../../..").TDashboardState;
3943
4019
  readonly formattedSQL: any;
3944
4020
  readonly typedAsSQL: boolean;
3945
4021
  readonly typedAsHTTP: boolean;
3946
4022
  readonly datasource: any;
3947
4023
  readonly httpConfigString: string;
4024
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
3948
4025
  } & {
3949
4026
  readonly stateMessage: string;
3950
4027
  } & {
@@ -4009,12 +4086,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
4009
4086
  readonly rootModel: any;
4010
4087
  readonly contentModel: any;
4011
4088
  readonly payload: any;
4012
- readonly dashboardState: import("../../../..").TDashboardState;
4013
4089
  readonly formattedSQL: any;
4014
4090
  readonly typedAsSQL: boolean;
4015
4091
  readonly typedAsHTTP: boolean;
4016
4092
  readonly datasource: any;
4017
4093
  readonly httpConfigString: string;
4094
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
4018
4095
  } & {
4019
4096
  readonly stateMessage: string;
4020
4097
  } & {
@@ -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
- title: import("mobx-state-tree").ISimpleType<string>;
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: string;
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
- setTitle(title: string): void;
4791
+ setName(name: string): void;
4689
4792
  setDescription(description: string): void;
4690
4793
  addQueryID(queryID: string): void;
4691
4794
  removeQueryID(queryID: string): void;
@@ -5634,12 +5737,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
5634
5737
  readonly rootModel: any;
5635
5738
  readonly contentModel: any;
5636
5739
  readonly payload: any;
5637
- readonly dashboardState: import("../../../..").TDashboardState;
5638
5740
  readonly formattedSQL: any;
5639
5741
  readonly typedAsSQL: boolean;
5640
5742
  readonly typedAsHTTP: boolean;
5641
5743
  readonly datasource: any;
5642
5744
  readonly httpConfigString: string;
5745
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
5643
5746
  } & {
5644
5747
  readonly stateMessage: string;
5645
5748
  } & {
@@ -5704,12 +5807,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
5704
5807
  readonly rootModel: any;
5705
5808
  readonly contentModel: any;
5706
5809
  readonly payload: any;
5707
- readonly dashboardState: import("../../../..").TDashboardState;
5708
5810
  readonly formattedSQL: any;
5709
5811
  readonly typedAsSQL: boolean;
5710
5812
  readonly typedAsHTTP: boolean;
5711
5813
  readonly datasource: any;
5712
5814
  readonly httpConfigString: string;
5815
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
5713
5816
  } & {
5714
5817
  readonly stateMessage: string;
5715
5818
  } & {
@@ -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
- title: string;
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: string;
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
- setTitle(title: string): void;
6899
+ setName(name: string): void;
6763
6900
  setDescription(description: string): void;
6764
6901
  addQueryID(queryID: string): void;
6765
6902
  removeQueryID(queryID: string): void;
@@ -7708,12 +7845,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
7708
7845
  readonly rootModel: any;
7709
7846
  readonly contentModel: any;
7710
7847
  readonly payload: any;
7711
- readonly dashboardState: import("../../../..").TDashboardState;
7712
7848
  readonly formattedSQL: any;
7713
7849
  readonly typedAsSQL: boolean;
7714
7850
  readonly typedAsHTTP: boolean;
7715
7851
  readonly datasource: any;
7716
7852
  readonly httpConfigString: string;
7853
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
7717
7854
  } & {
7718
7855
  readonly stateMessage: string;
7719
7856
  } & {
@@ -7778,12 +7915,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
7778
7915
  readonly rootModel: any;
7779
7916
  readonly contentModel: any;
7780
7917
  readonly payload: any;
7781
- readonly dashboardState: import("../../../..").TDashboardState;
7782
7918
  readonly formattedSQL: any;
7783
7919
  readonly typedAsSQL: boolean;
7784
7920
  readonly typedAsHTTP: boolean;
7785
7921
  readonly datasource: any;
7786
7922
  readonly httpConfigString: string;
7923
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
7787
7924
  } & {
7788
7925
  readonly stateMessage: string;
7789
7926
  } & {
@@ -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
- title: import("mobx-state-tree").ISimpleType<string>;
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: string;
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
- setTitle(title: string): void;
8620
+ setName(name: string): void;
8458
8621
  setDescription(description: string): void;
8459
8622
  addQueryID(queryID: string): void;
8460
8623
  removeQueryID(queryID: string): void;
@@ -9403,12 +9566,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
9403
9566
  readonly rootModel: any;
9404
9567
  readonly contentModel: any;
9405
9568
  readonly payload: any;
9406
- readonly dashboardState: import("../../../..").TDashboardState;
9407
9569
  readonly formattedSQL: any;
9408
9570
  readonly typedAsSQL: boolean;
9409
9571
  readonly typedAsHTTP: boolean;
9410
9572
  readonly datasource: any;
9411
9573
  readonly httpConfigString: string;
9574
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
9412
9575
  } & {
9413
9576
  readonly stateMessage: string;
9414
9577
  } & {
@@ -9473,12 +9636,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
9473
9636
  readonly rootModel: any;
9474
9637
  readonly contentModel: any;
9475
9638
  readonly payload: any;
9476
- readonly dashboardState: import("../../../..").TDashboardState;
9477
9639
  readonly formattedSQL: any;
9478
9640
  readonly typedAsSQL: boolean;
9479
9641
  readonly typedAsHTTP: boolean;
9480
9642
  readonly datasource: any;
9481
9643
  readonly httpConfigString: string;
9644
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
9482
9645
  } & {
9483
9646
  readonly stateMessage: string;
9484
9647
  } & {
@@ -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
- title: string;
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: string;
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
- setTitle(title: string): void;
10730
+ setName(name: string): void;
10534
10731
  setDescription(description: string): void;
10535
10732
  addQueryID(queryID: string): void;
10536
10733
  removeQueryID(queryID: string): void;
@@ -11479,12 +11676,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
11479
11676
  readonly rootModel: any;
11480
11677
  readonly contentModel: any;
11481
11678
  readonly payload: any;
11482
- readonly dashboardState: import("../../../..").TDashboardState;
11483
11679
  readonly formattedSQL: any;
11484
11680
  readonly typedAsSQL: boolean;
11485
11681
  readonly typedAsHTTP: boolean;
11486
11682
  readonly datasource: any;
11487
11683
  readonly httpConfigString: string;
11684
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
11488
11685
  } & {
11489
11686
  readonly stateMessage: string;
11490
11687
  } & {
@@ -11549,12 +11746,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
11549
11746
  readonly rootModel: any;
11550
11747
  readonly contentModel: any;
11551
11748
  readonly payload: any;
11552
- readonly dashboardState: import("../../../..").TDashboardState;
11553
11749
  readonly formattedSQL: any;
11554
11750
  readonly typedAsSQL: boolean;
11555
11751
  readonly typedAsHTTP: boolean;
11556
11752
  readonly datasource: any;
11557
11753
  readonly httpConfigString: string;
11754
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
11558
11755
  } & {
11559
11756
  readonly stateMessage: string;
11560
11757
  } & {
@@ -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
- title: import("mobx-state-tree").ISimpleType<string>;
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: string;
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
- setTitle(title: string): void;
12451
+ setName(name: string): void;
12229
12452
  setDescription(description: string): void;
12230
12453
  addQueryID(queryID: string): void;
12231
12454
  removeQueryID(queryID: string): void;
@@ -13174,12 +13397,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
13174
13397
  readonly rootModel: any;
13175
13398
  readonly contentModel: any;
13176
13399
  readonly payload: any;
13177
- readonly dashboardState: import("../../../..").TDashboardState;
13178
13400
  readonly formattedSQL: any;
13179
13401
  readonly typedAsSQL: boolean;
13180
13402
  readonly typedAsHTTP: boolean;
13181
13403
  readonly datasource: any;
13182
13404
  readonly httpConfigString: string;
13405
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
13183
13406
  } & {
13184
13407
  readonly stateMessage: string;
13185
13408
  } & {
@@ -13244,12 +13467,12 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
13244
13467
  readonly rootModel: any;
13245
13468
  readonly contentModel: any;
13246
13469
  readonly payload: any;
13247
- readonly dashboardState: import("../../../..").TDashboardState;
13248
13470
  readonly formattedSQL: any;
13249
13471
  readonly typedAsSQL: boolean;
13250
13472
  readonly typedAsHTTP: boolean;
13251
13473
  readonly datasource: any;
13252
13474
  readonly httpConfigString: string;
13475
+ readonly additionalQueryInfo: import("../../../../..").TAdditionalQueryInfo;
13253
13476
  } & {
13254
13477
  readonly stateMessage: string;
13255
13478
  } & {