@devtable/dashboard 10.26.0 → 10.28.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 (28) hide show
  1. package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +8 -0
  2. package/dist/components/plugins/plugin-context.d.ts +8 -0
  3. package/dist/components/view/view-component/preview/index.d.ts +2 -2
  4. package/dist/components/view/view-component/preview/tabs.d.ts +2 -2
  5. package/dist/components/view/view-component/render/index.d.ts +2 -2
  6. package/dist/components/view/view-component/render/tabs.d.ts +2 -2
  7. package/dist/components/view/view-editor.d.ts +2 -2
  8. package/dist/components/view/view-render.d.ts +2 -2
  9. package/dist/contexts/panel-context.d.ts +16 -0
  10. package/dist/dashboard-editor/model/filters/index.d.ts +7 -0
  11. package/dist/dashboard-editor/model/panels/panel.d.ts +4 -0
  12. package/dist/dashboard-editor/model/panels/panels.d.ts +32 -0
  13. package/dist/dashboard-editor/model/queries/index.d.ts +13 -0
  14. package/dist/dashboard-editor/model/views/index.d.ts +100 -5
  15. package/dist/dashboard.es.js +3468 -3445
  16. package/dist/dashboard.umd.js +64 -64
  17. package/dist/model/meta-model/dashboard/content/filter/filter.d.ts +1 -0
  18. package/dist/model/render-model/dashboard/content/filters/filters.d.ts +7 -0
  19. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +4 -0
  20. package/dist/model/render-model/dashboard/content/panels/panels.d.ts +28 -0
  21. package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +2 -0
  22. package/dist/model/render-model/dashboard/content/queries/queries.d.ts +13 -0
  23. package/dist/model/render-model/dashboard/content/queries/query.d.ts +2 -0
  24. package/dist/model/render-model/dashboard/content/views/index.d.ts +1 -0
  25. package/dist/model/render-model/dashboard/content/views/view.d.ts +232 -0
  26. package/dist/model/render-model/dashboard/content/views/views.d.ts +74 -0
  27. package/dist/stats.html +1 -1
  28. package/package.json +1 -1
@@ -1973,6 +1973,8 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
1973
1973
  context: string[];
1974
1974
  filters: any[];
1975
1975
  };
1976
+ readonly queries: any;
1977
+ readonly inUse: any;
1976
1978
  } & {
1977
1979
  readonly formattedSQL: any;
1978
1980
  readonly typedAsSQL: boolean;
@@ -2037,6 +2039,8 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
2037
2039
  context: string[];
2038
2040
  filters: any[];
2039
2041
  };
2042
+ readonly queries: any;
2043
+ readonly inUse: any;
2040
2044
  } & {
2041
2045
  readonly formattedSQL: any;
2042
2046
  readonly typedAsSQL: boolean;
@@ -3656,6 +3660,8 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
3656
3660
  context: string[];
3657
3661
  filters: any[];
3658
3662
  };
3663
+ readonly queries: any;
3664
+ readonly inUse: any;
3659
3665
  } & {
3660
3666
  readonly formattedSQL: any;
3661
3667
  readonly typedAsSQL: boolean;
@@ -3720,6 +3726,8 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
3720
3726
  context: string[];
3721
3727
  filters: any[];
3722
3728
  };
3729
+ readonly queries: any;
3730
+ readonly inUse: any;
3723
3731
  } & {
3724
3732
  readonly formattedSQL: any;
3725
3733
  readonly typedAsSQL: boolean;
@@ -1989,6 +1989,8 @@ export declare const tokens: {
1989
1989
  context: string[];
1990
1990
  filters: any[];
1991
1991
  };
1992
+ readonly queries: any;
1993
+ readonly inUse: any;
1992
1994
  } & {
1993
1995
  readonly formattedSQL: any;
1994
1996
  readonly typedAsSQL: boolean;
@@ -2053,6 +2055,8 @@ export declare const tokens: {
2053
2055
  context: string[];
2054
2056
  filters: any[];
2055
2057
  };
2058
+ readonly queries: any;
2059
+ readonly inUse: any;
2056
2060
  } & {
2057
2061
  readonly formattedSQL: any;
2058
2062
  readonly typedAsSQL: boolean;
@@ -3682,6 +3686,8 @@ export declare const tokens: {
3682
3686
  context: string[];
3683
3687
  filters: any[];
3684
3688
  };
3689
+ readonly queries: any;
3690
+ readonly inUse: any;
3685
3691
  } & {
3686
3692
  readonly formattedSQL: any;
3687
3693
  readonly typedAsSQL: boolean;
@@ -3746,6 +3752,8 @@ export declare const tokens: {
3746
3752
  context: string[];
3747
3753
  filters: any[];
3748
3754
  };
3755
+ readonly queries: any;
3756
+ readonly inUse: any;
3749
3757
  } & {
3750
3758
  readonly formattedSQL: any;
3751
3759
  readonly typedAsSQL: boolean;
@@ -1,7 +1,7 @@
1
1
  import { ReactNode } from './react';
2
- import { ViewMetaInstance } from '~/model';
2
+ import { ViewRenderModelInstance } from '~/model';
3
3
  export declare const PreviewViewComponent: (({ view, children }: {
4
- view: ViewMetaInstance;
4
+ view: ViewRenderModelInstance;
5
5
  children: ReactNode;
6
6
  }) => import('./react/jsx-runtime').JSX.Element) & {
7
7
  displayName: string;
@@ -1,6 +1,6 @@
1
- import { ViewMetaInstance } from '~/model';
1
+ import { ViewRenderModelInstance } from '~/model';
2
2
  export declare const PreviewViewTabs: (({ view }: {
3
- view: ViewMetaInstance;
3
+ view: ViewRenderModelInstance;
4
4
  }) => import('./react/jsx-runtime').JSX.Element) & {
5
5
  displayName: string;
6
6
  };
@@ -1,7 +1,7 @@
1
1
  import { ReactNode } from './react';
2
- import { ViewMetaInstance } from '~/model';
2
+ import { ViewRenderModelInstance } from '~/model';
3
3
  export declare const RenderViewComponent: (({ view, children }: {
4
- view: ViewMetaInstance;
4
+ view: ViewRenderModelInstance;
5
5
  children: ReactNode;
6
6
  }) => import('./react/jsx-runtime').JSX.Element) & {
7
7
  displayName: string;
@@ -1,6 +1,6 @@
1
- import { ViewMetaInstance } from '~/model';
1
+ import { ViewRenderModelInstance } from '~/model';
2
2
  export declare const RenderViewTabs: (({ view }: {
3
- view: ViewMetaInstance;
3
+ view: ViewRenderModelInstance;
4
4
  }) => import('./react/jsx-runtime').JSX.Element) & {
5
5
  displayName: string;
6
6
  };
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
- import { ViewMetaInstance } from '~/model';
2
+ import { ViewRenderModelInstance } from '~/model';
3
3
  interface IDashboardViewEditor {
4
- view: ViewMetaInstance;
4
+ view: ViewRenderModelInstance;
5
5
  }
6
6
  export declare const DashboardViewEditor: import('./react').FunctionComponent<IDashboardViewEditor>;
7
7
  export {};
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
- import { ViewMetaInstance } from '~/model';
2
+ import { ViewRenderModelInstance } from '~/model';
3
3
  interface IDashboardViewRender {
4
- view: ViewMetaInstance;
4
+ view: ViewRenderModelInstance;
5
5
  }
6
6
  export declare const DashboardViewRender: import('./react').FunctionComponent<IDashboardViewRender>;
7
7
  export {};
@@ -1979,6 +1979,8 @@ export declare const useRenderPanelContext: () => {
1979
1979
  context: string[];
1980
1980
  filters: any[];
1981
1981
  };
1982
+ readonly queries: any;
1983
+ readonly inUse: any;
1982
1984
  } & {
1983
1985
  readonly formattedSQL: any;
1984
1986
  readonly typedAsSQL: boolean;
@@ -2043,6 +2045,8 @@ export declare const useRenderPanelContext: () => {
2043
2045
  context: string[];
2044
2046
  filters: any[];
2045
2047
  };
2048
+ readonly queries: any;
2049
+ readonly inUse: any;
2046
2050
  } & {
2047
2051
  readonly formattedSQL: any;
2048
2052
  readonly typedAsSQL: boolean;
@@ -3662,6 +3666,8 @@ export declare const useRenderPanelContext: () => {
3662
3666
  context: string[];
3663
3667
  filters: any[];
3664
3668
  };
3669
+ readonly queries: any;
3670
+ readonly inUse: any;
3665
3671
  } & {
3666
3672
  readonly formattedSQL: any;
3667
3673
  readonly typedAsSQL: boolean;
@@ -3726,6 +3732,8 @@ export declare const useRenderPanelContext: () => {
3726
3732
  context: string[];
3727
3733
  filters: any[];
3728
3734
  };
3735
+ readonly queries: any;
3736
+ readonly inUse: any;
3729
3737
  } & {
3730
3738
  readonly formattedSQL: any;
3731
3739
  readonly typedAsSQL: boolean;
@@ -5730,6 +5738,8 @@ export declare const useEditPanelContext: () => {
5730
5738
  context: string[];
5731
5739
  filters: any[];
5732
5740
  };
5741
+ readonly queries: any;
5742
+ readonly inUse: any;
5733
5743
  } & {
5734
5744
  readonly formattedSQL: any;
5735
5745
  readonly typedAsSQL: boolean;
@@ -5794,6 +5804,8 @@ export declare const useEditPanelContext: () => {
5794
5804
  context: string[];
5795
5805
  filters: any[];
5796
5806
  };
5807
+ readonly queries: any;
5808
+ readonly inUse: any;
5797
5809
  } & {
5798
5810
  readonly formattedSQL: any;
5799
5811
  readonly typedAsSQL: boolean;
@@ -7423,6 +7435,8 @@ export declare const useEditPanelContext: () => {
7423
7435
  context: string[];
7424
7436
  filters: any[];
7425
7437
  };
7438
+ readonly queries: any;
7439
+ readonly inUse: any;
7426
7440
  } & {
7427
7441
  readonly formattedSQL: any;
7428
7442
  readonly typedAsSQL: boolean;
@@ -7487,6 +7501,8 @@ export declare const useEditPanelContext: () => {
7487
7501
  context: string[];
7488
7502
  filters: any[];
7489
7503
  };
7504
+ readonly queries: any;
7505
+ readonly inUse: any;
7490
7506
  } & {
7491
7507
  readonly formattedSQL: any;
7492
7508
  readonly typedAsSQL: boolean;
@@ -87,6 +87,7 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
87
87
  auto_submit: boolean;
88
88
  visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
89
89
  };
90
+ readonly visibleInViewsIDSet: Set<string>;
90
91
  readonly should_auto_submit: boolean;
91
92
  requiredAndPass(value: any): any;
92
93
  } & {
@@ -136,6 +137,7 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
136
137
  auto_submit: boolean;
137
138
  visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
138
139
  };
140
+ readonly visibleInViewsIDSet: Set<string>;
139
141
  readonly should_auto_submit: boolean;
140
142
  requiredAndPass(value: any): any;
141
143
  } & {
@@ -230,6 +232,7 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
230
232
  auto_submit: boolean;
231
233
  visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
232
234
  };
235
+ readonly visibleInViewsIDSet: Set<string>;
233
236
  readonly should_auto_submit: boolean;
234
237
  requiredAndPass(value: any): any;
235
238
  } & {
@@ -264,6 +267,7 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
264
267
  auto_submit: boolean;
265
268
  visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
266
269
  };
270
+ readonly visibleInViewsIDSet: Set<string>;
267
271
  readonly should_auto_submit: boolean;
268
272
  requiredAndPass(value: any): any;
269
273
  } & {
@@ -358,6 +362,7 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
358
362
  auto_submit: boolean;
359
363
  visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
360
364
  };
365
+ readonly visibleInViewsIDSet: Set<string>;
361
366
  readonly should_auto_submit: boolean;
362
367
  requiredAndPass(value: any): any;
363
368
  } & {
@@ -393,6 +398,7 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
393
398
  auto_submit: boolean;
394
399
  visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
395
400
  };
401
+ readonly visibleInViewsIDSet: Set<string>;
396
402
  readonly should_auto_submit: boolean;
397
403
  requiredAndPass(value: any): any;
398
404
  } & {
@@ -487,6 +493,7 @@ export declare const FiltersModel: import("mobx-state-tree").IModelType<{
487
493
  auto_submit: boolean;
488
494
  visibleInViewsIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>>;
489
495
  };
496
+ readonly visibleInViewsIDSet: Set<string>;
490
497
  readonly should_auto_submit: boolean;
491
498
  requiredAndPass(value: any): any;
492
499
  } & {
@@ -1591,6 +1591,8 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
1591
1591
  context: string[];
1592
1592
  filters: any[];
1593
1593
  };
1594
+ readonly queries: any;
1595
+ readonly inUse: any;
1594
1596
  } & {
1595
1597
  readonly formattedSQL: any;
1596
1598
  readonly typedAsSQL: boolean;
@@ -1655,6 +1657,8 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
1655
1657
  context: string[];
1656
1658
  filters: any[];
1657
1659
  };
1660
+ readonly queries: any;
1661
+ readonly inUse: any;
1658
1662
  } & {
1659
1663
  readonly formattedSQL: any;
1660
1664
  readonly typedAsSQL: boolean;
@@ -1594,6 +1594,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
1594
1594
  context: string[];
1595
1595
  filters: any[];
1596
1596
  };
1597
+ readonly queries: any;
1598
+ readonly inUse: any;
1597
1599
  } & {
1598
1600
  readonly formattedSQL: any;
1599
1601
  readonly typedAsSQL: boolean;
@@ -1658,6 +1660,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
1658
1660
  context: string[];
1659
1661
  filters: any[];
1660
1662
  };
1663
+ readonly queries: any;
1664
+ readonly inUse: any;
1661
1665
  } & {
1662
1666
  readonly formattedSQL: any;
1663
1667
  readonly typedAsSQL: boolean;
@@ -3279,6 +3283,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
3279
3283
  context: string[];
3280
3284
  filters: any[];
3281
3285
  };
3286
+ readonly queries: any;
3287
+ readonly inUse: any;
3282
3288
  } & {
3283
3289
  readonly formattedSQL: any;
3284
3290
  readonly typedAsSQL: boolean;
@@ -3343,6 +3349,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
3343
3349
  context: string[];
3344
3350
  filters: any[];
3345
3351
  };
3352
+ readonly queries: any;
3353
+ readonly inUse: any;
3346
3354
  } & {
3347
3355
  readonly formattedSQL: any;
3348
3356
  readonly typedAsSQL: boolean;
@@ -5618,6 +5626,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5618
5626
  context: string[];
5619
5627
  filters: any[];
5620
5628
  };
5629
+ readonly queries: any;
5630
+ readonly inUse: any;
5621
5631
  } & {
5622
5632
  readonly formattedSQL: any;
5623
5633
  readonly typedAsSQL: boolean;
@@ -5682,6 +5692,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5682
5692
  context: string[];
5683
5693
  filters: any[];
5684
5694
  };
5695
+ readonly queries: any;
5696
+ readonly inUse: any;
5685
5697
  } & {
5686
5698
  readonly formattedSQL: any;
5687
5699
  readonly typedAsSQL: boolean;
@@ -7301,6 +7313,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
7301
7313
  context: string[];
7302
7314
  filters: any[];
7303
7315
  };
7316
+ readonly queries: any;
7317
+ readonly inUse: any;
7304
7318
  } & {
7305
7319
  readonly formattedSQL: any;
7306
7320
  readonly typedAsSQL: boolean;
@@ -7365,6 +7379,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
7365
7379
  context: string[];
7366
7380
  filters: any[];
7367
7381
  };
7382
+ readonly queries: any;
7383
+ readonly inUse: any;
7368
7384
  } & {
7369
7385
  readonly formattedSQL: any;
7370
7386
  readonly typedAsSQL: boolean;
@@ -9363,6 +9379,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9363
9379
  context: string[];
9364
9380
  filters: any[];
9365
9381
  };
9382
+ readonly queries: any;
9383
+ readonly inUse: any;
9366
9384
  } & {
9367
9385
  readonly formattedSQL: any;
9368
9386
  readonly typedAsSQL: boolean;
@@ -9427,6 +9445,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9427
9445
  context: string[];
9428
9446
  filters: any[];
9429
9447
  };
9448
+ readonly queries: any;
9449
+ readonly inUse: any;
9430
9450
  } & {
9431
9451
  readonly formattedSQL: any;
9432
9452
  readonly typedAsSQL: boolean;
@@ -11046,6 +11066,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11046
11066
  context: string[];
11047
11067
  filters: any[];
11048
11068
  };
11069
+ readonly queries: any;
11070
+ readonly inUse: any;
11049
11071
  } & {
11050
11072
  readonly formattedSQL: any;
11051
11073
  readonly typedAsSQL: boolean;
@@ -11110,6 +11132,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11110
11132
  context: string[];
11111
11133
  filters: any[];
11112
11134
  };
11135
+ readonly queries: any;
11136
+ readonly inUse: any;
11113
11137
  } & {
11114
11138
  readonly formattedSQL: any;
11115
11139
  readonly typedAsSQL: boolean;
@@ -13110,6 +13134,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
13110
13134
  context: string[];
13111
13135
  filters: any[];
13112
13136
  };
13137
+ readonly queries: any;
13138
+ readonly inUse: any;
13113
13139
  } & {
13114
13140
  readonly formattedSQL: any;
13115
13141
  readonly typedAsSQL: boolean;
@@ -13174,6 +13200,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
13174
13200
  context: string[];
13175
13201
  filters: any[];
13176
13202
  };
13203
+ readonly queries: any;
13204
+ readonly inUse: any;
13177
13205
  } & {
13178
13206
  readonly formattedSQL: any;
13179
13207
  readonly typedAsSQL: boolean;
@@ -14793,6 +14821,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
14793
14821
  context: string[];
14794
14822
  filters: any[];
14795
14823
  };
14824
+ readonly queries: any;
14825
+ readonly inUse: any;
14796
14826
  } & {
14797
14827
  readonly formattedSQL: any;
14798
14828
  readonly typedAsSQL: boolean;
@@ -14857,6 +14887,8 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
14857
14887
  context: string[];
14858
14888
  filters: any[];
14859
14889
  };
14890
+ readonly queries: any;
14891
+ readonly inUse: any;
14860
14892
  } & {
14861
14893
  readonly formattedSQL: any;
14862
14894
  readonly typedAsSQL: boolean;
@@ -47,6 +47,8 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
47
47
  context: string[];
48
48
  filters: any[];
49
49
  };
50
+ readonly queries: any;
51
+ readonly inUse: any;
50
52
  } & {
51
53
  readonly formattedSQL: any;
52
54
  readonly typedAsSQL: boolean;
@@ -113,6 +115,8 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
113
115
  context: string[];
114
116
  filters: any[];
115
117
  };
118
+ readonly queries: any;
119
+ readonly inUse: any;
116
120
  } & {
117
121
  readonly formattedSQL: any;
118
122
  readonly typedAsSQL: boolean;
@@ -177,6 +181,8 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
177
181
  context: string[];
178
182
  filters: any[];
179
183
  };
184
+ readonly queries: any;
185
+ readonly inUse: any;
180
186
  } & {
181
187
  readonly formattedSQL: any;
182
188
  readonly typedAsSQL: boolean;
@@ -241,6 +247,8 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
241
247
  context: string[];
242
248
  filters: any[];
243
249
  };
250
+ readonly queries: any;
251
+ readonly inUse: any;
244
252
  } & {
245
253
  readonly formattedSQL: any;
246
254
  readonly typedAsSQL: boolean;
@@ -305,6 +313,8 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
305
313
  context: string[];
306
314
  filters: any[];
307
315
  };
316
+ readonly queries: any;
317
+ readonly inUse: any;
308
318
  } & {
309
319
  readonly formattedSQL: any;
310
320
  readonly typedAsSQL: boolean;
@@ -335,6 +345,9 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
335
345
  pre_process: string;
336
346
  post_process: string;
337
347
  }[];
348
+ readonly contentModel: import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IAnyStateTreeNode> | (object & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IAnyComplexType>);
349
+ readonly visibleQueryIDSet: Set<string>;
350
+ isQueryInUse(queryID: string): boolean;
338
351
  } & {
339
352
  downloadAllData(): void;
340
353
  downloadDataByQueryIDs(ids: string[]): void;