@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
@@ -4,7 +4,16 @@ import { PanelModelInstance, PanelModelSnapshotIn } from './panel';
4
4
  export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5
5
  list: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
6
6
  id: import("mobx-state-tree").ISimpleType<string>;
7
- title: import("mobx-state-tree").ISimpleType<string>;
7
+ name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
8
+ title: import("mobx-state-tree").IModelType<{
9
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10
+ }, {
11
+ readonly json: {
12
+ show: boolean;
13
+ };
14
+ } & {
15
+ setShow(v: boolean): void;
16
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
8
17
  description: import("mobx-state-tree").ISimpleType<string>;
9
18
  layout: import("mobx-state-tree").IModelType<{
10
19
  x: import("mobx-state-tree").ISimpleType<number>;
@@ -388,12 +397,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
388
397
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
389
398
  type: string;
390
399
  };
400
+ name: string;
391
401
  style: {
392
402
  border: {
393
403
  enabled: boolean;
394
404
  };
395
405
  };
396
- title: string;
406
+ title: {
407
+ show: boolean;
408
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
409
+ readonly json: {
410
+ show: boolean;
411
+ };
412
+ } & {
413
+ setShow(v: boolean): void;
414
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
415
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
416
+ }, {
417
+ readonly json: {
418
+ show: boolean;
419
+ };
420
+ } & {
421
+ setShow(v: boolean): void;
422
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
397
423
  layout: {
398
424
  h: number;
399
425
  w: number;
@@ -651,7 +677,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
651
677
  readonly queryIDSet: Set<string>;
652
678
  } & {
653
679
  setID(id: string): void;
654
- setTitle(title: string): void;
680
+ setName(name: string): void;
655
681
  setDescription(description: string): void;
656
682
  addQueryID(queryID: string): void;
657
683
  removeQueryID(queryID: string): void;
@@ -1600,12 +1626,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
1600
1626
  readonly rootModel: any;
1601
1627
  readonly contentModel: any;
1602
1628
  readonly payload: any;
1603
- readonly dashboardState: import("~/model").TDashboardState;
1604
1629
  readonly formattedSQL: any;
1605
1630
  readonly typedAsSQL: boolean;
1606
1631
  readonly typedAsHTTP: boolean;
1607
1632
  readonly datasource: any;
1608
1633
  readonly httpConfigString: string;
1634
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
1609
1635
  } & {
1610
1636
  readonly stateMessage: string;
1611
1637
  } & {
@@ -1670,12 +1696,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
1670
1696
  readonly rootModel: any;
1671
1697
  readonly contentModel: any;
1672
1698
  readonly payload: any;
1673
- readonly dashboardState: import("~/model").TDashboardState;
1674
1699
  readonly formattedSQL: any;
1675
1700
  readonly typedAsSQL: boolean;
1676
1701
  readonly typedAsHTTP: boolean;
1677
1702
  readonly datasource: any;
1678
1703
  readonly httpConfigString: string;
1704
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
1679
1705
  } & {
1680
1706
  readonly stateMessage: string;
1681
1707
  } & {
@@ -1701,7 +1727,16 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
1701
1727
  } & {
1702
1728
  list: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1703
1729
  id: import("mobx-state-tree").ISimpleType<string>;
1704
- title: import("mobx-state-tree").ISimpleType<string>;
1730
+ name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1731
+ title: import("mobx-state-tree").IModelType<{
1732
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1733
+ }, {
1734
+ readonly json: {
1735
+ show: boolean;
1736
+ };
1737
+ } & {
1738
+ setShow(v: boolean): void;
1739
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
1705
1740
  description: import("mobx-state-tree").ISimpleType<string>;
1706
1741
  layout: import("mobx-state-tree").IModelType<{
1707
1742
  x: import("mobx-state-tree").ISimpleType<number>;
@@ -2085,12 +2120,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
2085
2120
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
2086
2121
  type: string;
2087
2122
  };
2123
+ name: string;
2088
2124
  style: {
2089
2125
  border: {
2090
2126
  enabled: boolean;
2091
2127
  };
2092
2128
  };
2093
- title: string;
2129
+ title: {
2130
+ show: boolean;
2131
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2132
+ readonly json: {
2133
+ show: boolean;
2134
+ };
2135
+ } & {
2136
+ setShow(v: boolean): void;
2137
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
2138
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2139
+ }, {
2140
+ readonly json: {
2141
+ show: boolean;
2142
+ };
2143
+ } & {
2144
+ setShow(v: boolean): void;
2145
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2094
2146
  layout: {
2095
2147
  h: number;
2096
2148
  w: number;
@@ -2348,7 +2400,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
2348
2400
  readonly queryIDSet: Set<string>;
2349
2401
  } & {
2350
2402
  setID(id: string): void;
2351
- setTitle(title: string): void;
2403
+ setName(name: string): void;
2352
2404
  setDescription(description: string): void;
2353
2405
  addQueryID(queryID: string): void;
2354
2406
  removeQueryID(queryID: string): void;
@@ -3297,12 +3349,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
3297
3349
  readonly rootModel: any;
3298
3350
  readonly contentModel: any;
3299
3351
  readonly payload: any;
3300
- readonly dashboardState: import("~/model").TDashboardState;
3301
3352
  readonly formattedSQL: any;
3302
3353
  readonly typedAsSQL: boolean;
3303
3354
  readonly typedAsHTTP: boolean;
3304
3355
  readonly datasource: any;
3305
3356
  readonly httpConfigString: string;
3357
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
3306
3358
  } & {
3307
3359
  readonly stateMessage: string;
3308
3360
  } & {
@@ -3367,12 +3419,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
3367
3419
  readonly rootModel: any;
3368
3420
  readonly contentModel: any;
3369
3421
  readonly payload: any;
3370
- readonly dashboardState: import("~/model").TDashboardState;
3371
3422
  readonly formattedSQL: any;
3372
3423
  readonly typedAsSQL: boolean;
3373
3424
  readonly typedAsHTTP: boolean;
3374
3425
  readonly datasource: any;
3375
3426
  readonly httpConfigString: string;
3427
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
3376
3428
  } & {
3377
3429
  readonly stateMessage: string;
3378
3430
  } & {
@@ -3412,12 +3464,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
3412
3464
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
3413
3465
  type: string;
3414
3466
  };
3467
+ name: string;
3415
3468
  style: {
3416
3469
  border: {
3417
3470
  enabled: boolean;
3418
3471
  };
3419
3472
  };
3420
- title: string;
3473
+ title: {
3474
+ show: boolean;
3475
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3476
+ readonly json: {
3477
+ show: boolean;
3478
+ };
3479
+ } & {
3480
+ setShow(v: boolean): void;
3481
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
3482
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3483
+ }, {
3484
+ readonly json: {
3485
+ show: boolean;
3486
+ };
3487
+ } & {
3488
+ setShow(v: boolean): void;
3489
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3421
3490
  layout: {
3422
3491
  h: number;
3423
3492
  w: number;
@@ -3674,7 +3743,24 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
3674
3743
  }[];
3675
3744
  findByID<T = {
3676
3745
  id: string;
3677
- title: string;
3746
+ name: string;
3747
+ title: {
3748
+ show: boolean;
3749
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3750
+ readonly json: {
3751
+ show: boolean;
3752
+ };
3753
+ } & {
3754
+ setShow(v: boolean): void;
3755
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
3756
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3757
+ }, {
3758
+ readonly json: {
3759
+ show: boolean;
3760
+ };
3761
+ } & {
3762
+ setShow(v: boolean): void;
3763
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3678
3764
  description: string;
3679
3765
  layout: {
3680
3766
  x: number;
@@ -4436,12 +4522,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
4436
4522
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
4437
4523
  type: string;
4438
4524
  };
4525
+ name: string;
4439
4526
  style: {
4440
4527
  border: {
4441
4528
  enabled: boolean;
4442
4529
  };
4443
4530
  };
4444
- title: string;
4531
+ title: {
4532
+ show: boolean;
4533
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4534
+ readonly json: {
4535
+ show: boolean;
4536
+ };
4537
+ } & {
4538
+ setShow(v: boolean): void;
4539
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
4540
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
4541
+ }, {
4542
+ readonly json: {
4543
+ show: boolean;
4544
+ };
4545
+ } & {
4546
+ setShow(v: boolean): void;
4547
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
4445
4548
  layout: {
4446
4549
  h: number;
4447
4550
  w: number;
@@ -4699,7 +4802,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
4699
4802
  readonly queryIDSet: Set<string>;
4700
4803
  } & {
4701
4804
  setID(id: string): void;
4702
- setTitle(title: string): void;
4805
+ setName(name: string): void;
4703
4806
  setDescription(description: string): void;
4704
4807
  addQueryID(queryID: string): void;
4705
4808
  removeQueryID(queryID: string): void;
@@ -5648,12 +5751,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5648
5751
  readonly rootModel: any;
5649
5752
  readonly contentModel: any;
5650
5753
  readonly payload: any;
5651
- readonly dashboardState: import("~/model").TDashboardState;
5652
5754
  readonly formattedSQL: any;
5653
5755
  readonly typedAsSQL: boolean;
5654
5756
  readonly typedAsHTTP: boolean;
5655
5757
  readonly datasource: any;
5656
5758
  readonly httpConfigString: string;
5759
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
5657
5760
  } & {
5658
5761
  readonly stateMessage: string;
5659
5762
  } & {
@@ -5718,12 +5821,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5718
5821
  readonly rootModel: any;
5719
5822
  readonly contentModel: any;
5720
5823
  readonly payload: any;
5721
- readonly dashboardState: import("~/model").TDashboardState;
5722
5824
  readonly formattedSQL: any;
5723
5825
  readonly typedAsSQL: boolean;
5724
5826
  readonly typedAsHTTP: boolean;
5725
5827
  readonly datasource: any;
5726
5828
  readonly httpConfigString: string;
5829
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
5727
5830
  } & {
5728
5831
  readonly stateMessage: string;
5729
5832
  } & {
@@ -5747,7 +5850,16 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5747
5850
  downloadData(): void;
5748
5851
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
5749
5852
  id: import("mobx-state-tree").ISimpleType<string>;
5750
- title: import("mobx-state-tree").ISimpleType<string>;
5853
+ name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
5854
+ title: import("mobx-state-tree").IModelType<{
5855
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
5856
+ }, {
5857
+ readonly json: {
5858
+ show: boolean;
5859
+ };
5860
+ } & {
5861
+ setShow(v: boolean): void;
5862
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
5751
5863
  description: import("mobx-state-tree").ISimpleType<string>;
5752
5864
  layout: import("mobx-state-tree").IModelType<{
5753
5865
  x: import("mobx-state-tree").ISimpleType<number>;
@@ -6131,12 +6243,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
6131
6243
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
6132
6244
  type: string;
6133
6245
  };
6246
+ name: string;
6134
6247
  style: {
6135
6248
  border: {
6136
6249
  enabled: boolean;
6137
6250
  };
6138
6251
  };
6139
- title: string;
6252
+ title: {
6253
+ show: boolean;
6254
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6255
+ readonly json: {
6256
+ show: boolean;
6257
+ };
6258
+ } & {
6259
+ setShow(v: boolean): void;
6260
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
6261
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6262
+ }, {
6263
+ readonly json: {
6264
+ show: boolean;
6265
+ };
6266
+ } & {
6267
+ setShow(v: boolean): void;
6268
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
6140
6269
  layout: {
6141
6270
  h: number;
6142
6271
  w: number;
@@ -6394,7 +6523,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
6394
6523
  readonly queryIDSet: Set<string>;
6395
6524
  } & {
6396
6525
  setID(id: string): void;
6397
- setTitle(title: string): void;
6526
+ setName(name: string): void;
6398
6527
  setDescription(description: string): void;
6399
6528
  addQueryID(queryID: string): void;
6400
6529
  removeQueryID(queryID: string): void;
@@ -7343,12 +7472,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
7343
7472
  readonly rootModel: any;
7344
7473
  readonly contentModel: any;
7345
7474
  readonly payload: any;
7346
- readonly dashboardState: import("~/model").TDashboardState;
7347
7475
  readonly formattedSQL: any;
7348
7476
  readonly typedAsSQL: boolean;
7349
7477
  readonly typedAsHTTP: boolean;
7350
7478
  readonly datasource: any;
7351
7479
  readonly httpConfigString: string;
7480
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
7352
7481
  } & {
7353
7482
  readonly stateMessage: string;
7354
7483
  } & {
@@ -7413,12 +7542,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
7413
7542
  readonly rootModel: any;
7414
7543
  readonly contentModel: any;
7415
7544
  readonly payload: any;
7416
- readonly dashboardState: import("~/model").TDashboardState;
7417
7545
  readonly formattedSQL: any;
7418
7546
  readonly typedAsSQL: boolean;
7419
7547
  readonly typedAsHTTP: boolean;
7420
7548
  readonly datasource: any;
7421
7549
  readonly httpConfigString: string;
7550
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
7422
7551
  } & {
7423
7552
  readonly stateMessage: string;
7424
7553
  } & {
@@ -7443,7 +7572,24 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
7443
7572
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>(id: string): T | undefined;
7444
7573
  readonly idMap: Map<string, {
7445
7574
  id: string;
7446
- title: string;
7575
+ name: string;
7576
+ title: {
7577
+ show: boolean;
7578
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
7579
+ readonly json: {
7580
+ show: boolean;
7581
+ };
7582
+ } & {
7583
+ setShow(v: boolean): void;
7584
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
7585
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
7586
+ }, {
7587
+ readonly json: {
7588
+ show: boolean;
7589
+ };
7590
+ } & {
7591
+ setShow(v: boolean): void;
7592
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
7447
7593
  description: string;
7448
7594
  layout: {
7449
7595
  x: number;
@@ -8205,12 +8351,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
8205
8351
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
8206
8352
  type: string;
8207
8353
  };
8354
+ name: string;
8208
8355
  style: {
8209
8356
  border: {
8210
8357
  enabled: boolean;
8211
8358
  };
8212
8359
  };
8213
- title: string;
8360
+ title: {
8361
+ show: boolean;
8362
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
8363
+ readonly json: {
8364
+ show: boolean;
8365
+ };
8366
+ } & {
8367
+ setShow(v: boolean): void;
8368
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
8369
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
8370
+ }, {
8371
+ readonly json: {
8372
+ show: boolean;
8373
+ };
8374
+ } & {
8375
+ setShow(v: boolean): void;
8376
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
8214
8377
  layout: {
8215
8378
  h: number;
8216
8379
  w: number;
@@ -8468,7 +8631,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
8468
8631
  readonly queryIDSet: Set<string>;
8469
8632
  } & {
8470
8633
  setID(id: string): void;
8471
- setTitle(title: string): void;
8634
+ setName(name: string): void;
8472
8635
  setDescription(description: string): void;
8473
8636
  addQueryID(queryID: string): void;
8474
8637
  removeQueryID(queryID: string): void;
@@ -9417,12 +9580,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9417
9580
  readonly rootModel: any;
9418
9581
  readonly contentModel: any;
9419
9582
  readonly payload: any;
9420
- readonly dashboardState: import("~/model").TDashboardState;
9421
9583
  readonly formattedSQL: any;
9422
9584
  readonly typedAsSQL: boolean;
9423
9585
  readonly typedAsHTTP: boolean;
9424
9586
  readonly datasource: any;
9425
9587
  readonly httpConfigString: string;
9588
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
9426
9589
  } & {
9427
9590
  readonly stateMessage: string;
9428
9591
  } & {
@@ -9487,12 +9650,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9487
9650
  readonly rootModel: any;
9488
9651
  readonly contentModel: any;
9489
9652
  readonly payload: any;
9490
- readonly dashboardState: import("~/model").TDashboardState;
9491
9653
  readonly formattedSQL: any;
9492
9654
  readonly typedAsSQL: boolean;
9493
9655
  readonly typedAsHTTP: boolean;
9494
9656
  readonly datasource: any;
9495
9657
  readonly httpConfigString: string;
9658
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
9496
9659
  } & {
9497
9660
  readonly stateMessage: string;
9498
9661
  } & {
@@ -9516,7 +9679,16 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9516
9679
  downloadData(): void;
9517
9680
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
9518
9681
  id: import("mobx-state-tree").ISimpleType<string>;
9519
- title: import("mobx-state-tree").ISimpleType<string>;
9682
+ name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
9683
+ title: import("mobx-state-tree").IModelType<{
9684
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
9685
+ }, {
9686
+ readonly json: {
9687
+ show: boolean;
9688
+ };
9689
+ } & {
9690
+ setShow(v: boolean): void;
9691
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
9520
9692
  description: import("mobx-state-tree").ISimpleType<string>;
9521
9693
  layout: import("mobx-state-tree").IModelType<{
9522
9694
  x: import("mobx-state-tree").ISimpleType<number>;
@@ -9900,12 +10072,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9900
10072
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
9901
10073
  type: string;
9902
10074
  };
10075
+ name: string;
9903
10076
  style: {
9904
10077
  border: {
9905
10078
  enabled: boolean;
9906
10079
  };
9907
10080
  };
9908
- title: string;
10081
+ title: {
10082
+ show: boolean;
10083
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
10084
+ readonly json: {
10085
+ show: boolean;
10086
+ };
10087
+ } & {
10088
+ setShow(v: boolean): void;
10089
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
10090
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10091
+ }, {
10092
+ readonly json: {
10093
+ show: boolean;
10094
+ };
10095
+ } & {
10096
+ setShow(v: boolean): void;
10097
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
9909
10098
  layout: {
9910
10099
  h: number;
9911
10100
  w: number;
@@ -10163,7 +10352,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
10163
10352
  readonly queryIDSet: Set<string>;
10164
10353
  } & {
10165
10354
  setID(id: string): void;
10166
- setTitle(title: string): void;
10355
+ setName(name: string): void;
10167
10356
  setDescription(description: string): void;
10168
10357
  addQueryID(queryID: string): void;
10169
10358
  removeQueryID(queryID: string): void;
@@ -11112,12 +11301,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11112
11301
  readonly rootModel: any;
11113
11302
  readonly contentModel: any;
11114
11303
  readonly payload: any;
11115
- readonly dashboardState: import("~/model").TDashboardState;
11116
11304
  readonly formattedSQL: any;
11117
11305
  readonly typedAsSQL: boolean;
11118
11306
  readonly typedAsHTTP: boolean;
11119
11307
  readonly datasource: any;
11120
11308
  readonly httpConfigString: string;
11309
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
11121
11310
  } & {
11122
11311
  readonly stateMessage: string;
11123
11312
  } & {
@@ -11182,12 +11371,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11182
11371
  readonly rootModel: any;
11183
11372
  readonly contentModel: any;
11184
11373
  readonly payload: any;
11185
- readonly dashboardState: import("~/model").TDashboardState;
11186
11374
  readonly formattedSQL: any;
11187
11375
  readonly typedAsSQL: boolean;
11188
11376
  readonly typedAsHTTP: boolean;
11189
11377
  readonly datasource: any;
11190
11378
  readonly httpConfigString: string;
11379
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
11191
11380
  } & {
11192
11381
  readonly stateMessage: string;
11193
11382
  } & {
@@ -11214,7 +11403,24 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11214
11403
  panelsByIDs(ids: string[]): {
11215
11404
  panels: ({
11216
11405
  id: string;
11217
- title: string;
11406
+ name: string;
11407
+ title: {
11408
+ show: boolean;
11409
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11410
+ readonly json: {
11411
+ show: boolean;
11412
+ };
11413
+ } & {
11414
+ setShow(v: boolean): void;
11415
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
11416
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
11417
+ }, {
11418
+ readonly json: {
11419
+ show: boolean;
11420
+ };
11421
+ } & {
11422
+ setShow(v: boolean): void;
11423
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
11218
11424
  description: string;
11219
11425
  layout: {
11220
11426
  x: number;
@@ -11976,12 +12182,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11976
12182
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
11977
12183
  type: string;
11978
12184
  };
12185
+ name: string;
11979
12186
  style: {
11980
12187
  border: {
11981
12188
  enabled: boolean;
11982
12189
  };
11983
12190
  };
11984
- title: string;
12191
+ title: {
12192
+ show: boolean;
12193
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
12194
+ readonly json: {
12195
+ show: boolean;
12196
+ };
12197
+ } & {
12198
+ setShow(v: boolean): void;
12199
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12200
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
12201
+ }, {
12202
+ readonly json: {
12203
+ show: boolean;
12204
+ };
12205
+ } & {
12206
+ setShow(v: boolean): void;
12207
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
11985
12208
  layout: {
11986
12209
  h: number;
11987
12210
  w: number;
@@ -12239,7 +12462,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
12239
12462
  readonly queryIDSet: Set<string>;
12240
12463
  } & {
12241
12464
  setID(id: string): void;
12242
- setTitle(title: string): void;
12465
+ setName(name: string): void;
12243
12466
  setDescription(description: string): void;
12244
12467
  addQueryID(queryID: string): void;
12245
12468
  removeQueryID(queryID: string): void;
@@ -13188,12 +13411,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
13188
13411
  readonly rootModel: any;
13189
13412
  readonly contentModel: any;
13190
13413
  readonly payload: any;
13191
- readonly dashboardState: import("~/model").TDashboardState;
13192
13414
  readonly formattedSQL: any;
13193
13415
  readonly typedAsSQL: boolean;
13194
13416
  readonly typedAsHTTP: boolean;
13195
13417
  readonly datasource: any;
13196
13418
  readonly httpConfigString: string;
13419
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
13197
13420
  } & {
13198
13421
  readonly stateMessage: string;
13199
13422
  } & {
@@ -13258,12 +13481,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
13258
13481
  readonly rootModel: any;
13259
13482
  readonly contentModel: any;
13260
13483
  readonly payload: any;
13261
- readonly dashboardState: import("~/model").TDashboardState;
13262
13484
  readonly formattedSQL: any;
13263
13485
  readonly typedAsSQL: boolean;
13264
13486
  readonly typedAsHTTP: boolean;
13265
13487
  readonly datasource: any;
13266
13488
  readonly httpConfigString: string;
13489
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
13267
13490
  } & {
13268
13491
  readonly stateMessage: string;
13269
13492
  } & {
@@ -13287,7 +13510,16 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
13287
13510
  downloadData(): void;
13288
13511
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
13289
13512
  id: import("mobx-state-tree").ISimpleType<string>;
13290
- title: import("mobx-state-tree").ISimpleType<string>;
13513
+ name: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
13514
+ title: import("mobx-state-tree").IModelType<{
13515
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
13516
+ }, {
13517
+ readonly json: {
13518
+ show: boolean;
13519
+ };
13520
+ } & {
13521
+ setShow(v: boolean): void;
13522
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
13291
13523
  description: import("mobx-state-tree").ISimpleType<string>;
13292
13524
  layout: import("mobx-state-tree").IModelType<{
13293
13525
  x: import("mobx-state-tree").ISimpleType<number>;
@@ -13671,12 +13903,29 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
13671
13903
  conf: import("../../..").AnyObject & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IType<import("../../..").AnyObject, import("../../..").AnyObject, import("../../..").AnyObject>>;
13672
13904
  type: string;
13673
13905
  };
13906
+ name: string;
13674
13907
  style: {
13675
13908
  border: {
13676
13909
  enabled: boolean;
13677
13910
  };
13678
13911
  };
13679
- title: string;
13912
+ title: {
13913
+ show: boolean;
13914
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
13915
+ readonly json: {
13916
+ show: boolean;
13917
+ };
13918
+ } & {
13919
+ setShow(v: boolean): void;
13920
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
13921
+ show: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
13922
+ }, {
13923
+ readonly json: {
13924
+ show: boolean;
13925
+ };
13926
+ } & {
13927
+ setShow(v: boolean): void;
13928
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
13680
13929
  layout: {
13681
13930
  h: number;
13682
13931
  w: number;
@@ -13934,7 +14183,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
13934
14183
  readonly queryIDSet: Set<string>;
13935
14184
  } & {
13936
14185
  setID(id: string): void;
13937
- setTitle(title: string): void;
14186
+ setName(name: string): void;
13938
14187
  setDescription(description: string): void;
13939
14188
  addQueryID(queryID: string): void;
13940
14189
  removeQueryID(queryID: string): void;
@@ -14883,12 +15132,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
14883
15132
  readonly rootModel: any;
14884
15133
  readonly contentModel: any;
14885
15134
  readonly payload: any;
14886
- readonly dashboardState: import("~/model").TDashboardState;
14887
15135
  readonly formattedSQL: any;
14888
15136
  readonly typedAsSQL: boolean;
14889
15137
  readonly typedAsHTTP: boolean;
14890
15138
  readonly datasource: any;
14891
15139
  readonly httpConfigString: string;
15140
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
14892
15141
  } & {
14893
15142
  readonly stateMessage: string;
14894
15143
  } & {
@@ -14953,12 +15202,12 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
14953
15202
  readonly rootModel: any;
14954
15203
  readonly contentModel: any;
14955
15204
  readonly payload: any;
14956
- readonly dashboardState: import("~/model").TDashboardState;
14957
15205
  readonly formattedSQL: any;
14958
15206
  readonly typedAsSQL: boolean;
14959
15207
  readonly typedAsHTTP: boolean;
14960
15208
  readonly datasource: any;
14961
15209
  readonly httpConfigString: string;
15210
+ readonly additionalQueryInfo: import("../../..").TAdditionalQueryInfo;
14962
15211
  } & {
14963
15212
  readonly stateMessage: string;
14964
15213
  } & {