@devtable/dashboard 6.6.0 → 6.8.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/dashboard.es.js +4061 -3833
  2. package/dist/dashboard.umd.js +19 -18
  3. package/dist/definition-editor/minimal-monaco-editor.d.ts +9 -0
  4. package/dist/definition-editor/query-editor/editor.d.ts +0 -1
  5. package/dist/definition-editor/query-editor/form.d.ts +0 -1
  6. package/dist/definition-editor/sql-snippet-editor/item-editor.d.ts +11 -0
  7. package/dist/main/use-panel-full-screen.d.ts +16 -36
  8. package/dist/model/queries/index.d.ts +21 -45
  9. package/dist/model/queries/mute-query.d.ts +3 -1
  10. package/dist/model/queries/query.d.ts +6 -10
  11. package/dist/model/sql-snippets/index.d.ts +27 -0
  12. package/dist/model/sql-snippets/sql-snippet.d.ts +1 -0
  13. package/dist/model/sql-snippets/types.d.ts +3 -0
  14. package/dist/model/views/view/index.d.ts +72 -162
  15. package/dist/model/views/view/panels/index.d.ts +24 -54
  16. package/dist/model/views/view/panels/panel.d.ts +8 -18
  17. package/dist/plugins/plugin-context.d.ts +16 -36
  18. package/dist/plugins/viz-components/cartesian/panel/scatter-size-select/dynamic-size-function-editor.d.ts +8 -0
  19. package/dist/plugins/viz-components/cartesian/panel/scatter-size-select/dynamic.d.ts +9 -0
  20. package/dist/plugins/viz-components/cartesian/panel/scatter-size-select/get-echarts-symbol-size.d.ts +3 -0
  21. package/dist/plugins/viz-components/cartesian/panel/scatter-size-select/index.d.ts +11 -0
  22. package/dist/plugins/viz-components/cartesian/panel/scatter-size-select/static.d.ts +8 -0
  23. package/dist/plugins/viz-components/cartesian/panel/scatter-size-select/types.d.ts +13 -0
  24. package/dist/plugins/viz-components/cartesian/panel/series/fields.scatter.d.ts +3 -1
  25. package/dist/plugins/viz-components/cartesian/type.d.ts +2 -1
  26. package/dist/style.css +1 -1
  27. package/dist/types/dashboard.d.ts +2 -2
  28. package/package.json +2 -1
@@ -193,6 +193,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
193
193
  }, {
194
194
  readonly query: ({
195
195
  id: string;
196
+ name: string;
196
197
  type: import("../../queries/types").DataSourceType;
197
198
  key: string;
198
199
  sql: string;
@@ -201,8 +202,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
201
202
  error: any;
202
203
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
203
204
  readonly valid: string;
204
- readonly configurations: {
205
+ readonly json: {
205
206
  id: string;
207
+ name: string;
206
208
  type: import("../../queries/types").DataSourceType;
207
209
  key: string;
208
210
  sql: string;
@@ -210,14 +212,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
210
212
  } & {
211
213
  readonly formattedSQL: any;
212
214
  } & {
213
- readonly json: {
214
- id: string;
215
- type: import("../../queries/types").DataSourceType;
216
- key: string;
217
- sql: string;
218
- };
219
- } & {
220
- setID(id: string): void;
215
+ setName(name: string): void;
221
216
  setKey(key: string): void;
222
217
  setType(type: import("../../queries/types").DataSourceType): void;
223
218
  setSQL(sql: string): void;
@@ -226,6 +221,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
226
221
  afterCreate(): void;
227
222
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
228
223
  id: import("mobx-state-tree").ISimpleType<string>;
224
+ name: import("mobx-state-tree").ISimpleType<string>;
229
225
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
230
226
  key: import("mobx-state-tree").ISimpleType<string>;
231
227
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -235,8 +231,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
235
231
  error: import("mobx-state-tree").IType<any, any, any>;
236
232
  }, {
237
233
  readonly valid: string;
238
- readonly configurations: {
234
+ readonly json: {
239
235
  id: string;
236
+ name: string;
240
237
  type: import("../../queries/types").DataSourceType;
241
238
  key: string;
242
239
  sql: string;
@@ -244,14 +241,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
244
241
  } & {
245
242
  readonly formattedSQL: any;
246
243
  } & {
247
- readonly json: {
248
- id: string;
249
- type: import("../../queries/types").DataSourceType;
250
- key: string;
251
- sql: string;
252
- };
253
- } & {
254
- setID(id: string): void;
244
+ setName(name: string): void;
255
245
  setKey(key: string): void;
256
246
  setType(type: import("../../queries/types").DataSourceType): void;
257
247
  setSQL(sql: string): void;
@@ -1249,6 +1239,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
1249
1239
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1250
1240
  readonly query: ({
1251
1241
  id: string;
1242
+ name: string;
1252
1243
  type: import("../../queries/types").DataSourceType;
1253
1244
  key: string;
1254
1245
  sql: string;
@@ -1257,8 +1248,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
1257
1248
  error: any;
1258
1249
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1259
1250
  readonly valid: string;
1260
- readonly configurations: {
1251
+ readonly json: {
1261
1252
  id: string;
1253
+ name: string;
1262
1254
  type: import("../../queries/types").DataSourceType;
1263
1255
  key: string;
1264
1256
  sql: string;
@@ -1266,14 +1258,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
1266
1258
  } & {
1267
1259
  readonly formattedSQL: any;
1268
1260
  } & {
1269
- readonly json: {
1270
- id: string;
1271
- type: import("../../queries/types").DataSourceType;
1272
- key: string;
1273
- sql: string;
1274
- };
1275
- } & {
1276
- setID(id: string): void;
1261
+ setName(name: string): void;
1277
1262
  setKey(key: string): void;
1278
1263
  setType(type: import("../../queries/types").DataSourceType): void;
1279
1264
  setSQL(sql: string): void;
@@ -1282,6 +1267,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
1282
1267
  afterCreate(): void;
1283
1268
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1284
1269
  id: import("mobx-state-tree").ISimpleType<string>;
1270
+ name: import("mobx-state-tree").ISimpleType<string>;
1285
1271
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
1286
1272
  key: import("mobx-state-tree").ISimpleType<string>;
1287
1273
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -1291,8 +1277,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
1291
1277
  error: import("mobx-state-tree").IType<any, any, any>;
1292
1278
  }, {
1293
1279
  readonly valid: string;
1294
- readonly configurations: {
1280
+ readonly json: {
1295
1281
  id: string;
1282
+ name: string;
1296
1283
  type: import("../../queries/types").DataSourceType;
1297
1284
  key: string;
1298
1285
  sql: string;
@@ -1300,14 +1287,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
1300
1287
  } & {
1301
1288
  readonly formattedSQL: any;
1302
1289
  } & {
1303
- readonly json: {
1304
- id: string;
1305
- type: import("../../queries/types").DataSourceType;
1306
- key: string;
1307
- sql: string;
1308
- };
1309
- } & {
1310
- setID(id: string): void;
1290
+ setName(name: string): void;
1311
1291
  setKey(key: string): void;
1312
1292
  setType(type: import("../../queries/types").DataSourceType): void;
1313
1293
  setSQL(sql: string): void;
@@ -2023,6 +2003,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2023
2003
  }, {
2024
2004
  readonly query: ({
2025
2005
  id: string;
2006
+ name: string;
2026
2007
  type: import("../../queries/types").DataSourceType;
2027
2008
  key: string;
2028
2009
  sql: string;
@@ -2031,8 +2012,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2031
2012
  error: any;
2032
2013
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2033
2014
  readonly valid: string;
2034
- readonly configurations: {
2015
+ readonly json: {
2035
2016
  id: string;
2017
+ name: string;
2036
2018
  type: import("../../queries/types").DataSourceType;
2037
2019
  key: string;
2038
2020
  sql: string;
@@ -2040,14 +2022,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2040
2022
  } & {
2041
2023
  readonly formattedSQL: any;
2042
2024
  } & {
2043
- readonly json: {
2044
- id: string;
2045
- type: import("../../queries/types").DataSourceType;
2046
- key: string;
2047
- sql: string;
2048
- };
2049
- } & {
2050
- setID(id: string): void;
2025
+ setName(name: string): void;
2051
2026
  setKey(key: string): void;
2052
2027
  setType(type: import("../../queries/types").DataSourceType): void;
2053
2028
  setSQL(sql: string): void;
@@ -2056,6 +2031,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2056
2031
  afterCreate(): void;
2057
2032
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
2058
2033
  id: import("mobx-state-tree").ISimpleType<string>;
2034
+ name: import("mobx-state-tree").ISimpleType<string>;
2059
2035
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
2060
2036
  key: import("mobx-state-tree").ISimpleType<string>;
2061
2037
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -2065,8 +2041,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2065
2041
  error: import("mobx-state-tree").IType<any, any, any>;
2066
2042
  }, {
2067
2043
  readonly valid: string;
2068
- readonly configurations: {
2044
+ readonly json: {
2069
2045
  id: string;
2046
+ name: string;
2070
2047
  type: import("../../queries/types").DataSourceType;
2071
2048
  key: string;
2072
2049
  sql: string;
@@ -2074,14 +2051,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2074
2051
  } & {
2075
2052
  readonly formattedSQL: any;
2076
2053
  } & {
2077
- readonly json: {
2078
- id: string;
2079
- type: import("../../queries/types").DataSourceType;
2080
- key: string;
2081
- sql: string;
2082
- };
2083
- } & {
2084
- setID(id: string): void;
2054
+ setName(name: string): void;
2085
2055
  setKey(key: string): void;
2086
2056
  setType(type: import("../../queries/types").DataSourceType): void;
2087
2057
  setSQL(sql: string): void;
@@ -2982,6 +2952,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2982
2952
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2983
2953
  readonly query: ({
2984
2954
  id: string;
2955
+ name: string;
2985
2956
  type: import("../../queries/types").DataSourceType;
2986
2957
  key: string;
2987
2958
  sql: string;
@@ -2990,8 +2961,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2990
2961
  error: any;
2991
2962
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2992
2963
  readonly valid: string;
2993
- readonly configurations: {
2964
+ readonly json: {
2994
2965
  id: string;
2966
+ name: string;
2995
2967
  type: import("../../queries/types").DataSourceType;
2996
2968
  key: string;
2997
2969
  sql: string;
@@ -2999,14 +2971,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
2999
2971
  } & {
3000
2972
  readonly formattedSQL: any;
3001
2973
  } & {
3002
- readonly json: {
3003
- id: string;
3004
- type: import("../../queries/types").DataSourceType;
3005
- key: string;
3006
- sql: string;
3007
- };
3008
- } & {
3009
- setID(id: string): void;
2974
+ setName(name: string): void;
3010
2975
  setKey(key: string): void;
3011
2976
  setType(type: import("../../queries/types").DataSourceType): void;
3012
2977
  setSQL(sql: string): void;
@@ -3015,6 +2980,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3015
2980
  afterCreate(): void;
3016
2981
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
3017
2982
  id: import("mobx-state-tree").ISimpleType<string>;
2983
+ name: import("mobx-state-tree").ISimpleType<string>;
3018
2984
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
3019
2985
  key: import("mobx-state-tree").ISimpleType<string>;
3020
2986
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -3024,8 +2990,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3024
2990
  error: import("mobx-state-tree").IType<any, any, any>;
3025
2991
  }, {
3026
2992
  readonly valid: string;
3027
- readonly configurations: {
2993
+ readonly json: {
3028
2994
  id: string;
2995
+ name: string;
3029
2996
  type: import("../../queries/types").DataSourceType;
3030
2997
  key: string;
3031
2998
  sql: string;
@@ -3033,14 +3000,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3033
3000
  } & {
3034
3001
  readonly formattedSQL: any;
3035
3002
  } & {
3036
- readonly json: {
3037
- id: string;
3038
- type: import("../../queries/types").DataSourceType;
3039
- key: string;
3040
- sql: string;
3041
- };
3042
- } & {
3043
- setID(id: string): void;
3003
+ setName(name: string): void;
3044
3004
  setKey(key: string): void;
3045
3005
  setType(type: import("../../queries/types").DataSourceType): void;
3046
3006
  setSQL(sql: string): void;
@@ -3756,6 +3716,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3756
3716
  }, {
3757
3717
  readonly query: ({
3758
3718
  id: string;
3719
+ name: string;
3759
3720
  type: import("../../queries/types").DataSourceType;
3760
3721
  key: string;
3761
3722
  sql: string;
@@ -3764,8 +3725,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3764
3725
  error: any;
3765
3726
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3766
3727
  readonly valid: string;
3767
- readonly configurations: {
3728
+ readonly json: {
3768
3729
  id: string;
3730
+ name: string;
3769
3731
  type: import("../../queries/types").DataSourceType;
3770
3732
  key: string;
3771
3733
  sql: string;
@@ -3773,14 +3735,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3773
3735
  } & {
3774
3736
  readonly formattedSQL: any;
3775
3737
  } & {
3776
- readonly json: {
3777
- id: string;
3778
- type: import("../../queries/types").DataSourceType;
3779
- key: string;
3780
- sql: string;
3781
- };
3782
- } & {
3783
- setID(id: string): void;
3738
+ setName(name: string): void;
3784
3739
  setKey(key: string): void;
3785
3740
  setType(type: import("../../queries/types").DataSourceType): void;
3786
3741
  setSQL(sql: string): void;
@@ -3789,6 +3744,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3789
3744
  afterCreate(): void;
3790
3745
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
3791
3746
  id: import("mobx-state-tree").ISimpleType<string>;
3747
+ name: import("mobx-state-tree").ISimpleType<string>;
3792
3748
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
3793
3749
  key: import("mobx-state-tree").ISimpleType<string>;
3794
3750
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -3798,8 +3754,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3798
3754
  error: import("mobx-state-tree").IType<any, any, any>;
3799
3755
  }, {
3800
3756
  readonly valid: string;
3801
- readonly configurations: {
3757
+ readonly json: {
3802
3758
  id: string;
3759
+ name: string;
3803
3760
  type: import("../../queries/types").DataSourceType;
3804
3761
  key: string;
3805
3762
  sql: string;
@@ -3807,14 +3764,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
3807
3764
  } & {
3808
3765
  readonly formattedSQL: any;
3809
3766
  } & {
3810
- readonly json: {
3811
- id: string;
3812
- type: import("../../queries/types").DataSourceType;
3813
- key: string;
3814
- sql: string;
3815
- };
3816
- } & {
3817
- setID(id: string): void;
3767
+ setName(name: string): void;
3818
3768
  setKey(key: string): void;
3819
3769
  setType(type: import("../../queries/types").DataSourceType): void;
3820
3770
  setSQL(sql: string): void;
@@ -4715,6 +4665,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
4715
4665
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4716
4666
  readonly query: ({
4717
4667
  id: string;
4668
+ name: string;
4718
4669
  type: import("../../queries/types").DataSourceType;
4719
4670
  key: string;
4720
4671
  sql: string;
@@ -4723,8 +4674,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
4723
4674
  error: any;
4724
4675
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4725
4676
  readonly valid: string;
4726
- readonly configurations: {
4677
+ readonly json: {
4727
4678
  id: string;
4679
+ name: string;
4728
4680
  type: import("../../queries/types").DataSourceType;
4729
4681
  key: string;
4730
4682
  sql: string;
@@ -4732,14 +4684,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
4732
4684
  } & {
4733
4685
  readonly formattedSQL: any;
4734
4686
  } & {
4735
- readonly json: {
4736
- id: string;
4737
- type: import("../../queries/types").DataSourceType;
4738
- key: string;
4739
- sql: string;
4740
- };
4741
- } & {
4742
- setID(id: string): void;
4687
+ setName(name: string): void;
4743
4688
  setKey(key: string): void;
4744
4689
  setType(type: import("../../queries/types").DataSourceType): void;
4745
4690
  setSQL(sql: string): void;
@@ -4748,6 +4693,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
4748
4693
  afterCreate(): void;
4749
4694
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
4750
4695
  id: import("mobx-state-tree").ISimpleType<string>;
4696
+ name: import("mobx-state-tree").ISimpleType<string>;
4751
4697
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
4752
4698
  key: import("mobx-state-tree").ISimpleType<string>;
4753
4699
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -4757,8 +4703,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
4757
4703
  error: import("mobx-state-tree").IType<any, any, any>;
4758
4704
  }, {
4759
4705
  readonly valid: string;
4760
- readonly configurations: {
4706
+ readonly json: {
4761
4707
  id: string;
4708
+ name: string;
4762
4709
  type: import("../../queries/types").DataSourceType;
4763
4710
  key: string;
4764
4711
  sql: string;
@@ -4766,14 +4713,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
4766
4713
  } & {
4767
4714
  readonly formattedSQL: any;
4768
4715
  } & {
4769
- readonly json: {
4770
- id: string;
4771
- type: import("../../queries/types").DataSourceType;
4772
- key: string;
4773
- sql: string;
4774
- };
4775
- } & {
4776
- setID(id: string): void;
4716
+ setName(name: string): void;
4777
4717
  setKey(key: string): void;
4778
4718
  setType(type: import("../../queries/types").DataSourceType): void;
4779
4719
  setSQL(sql: string): void;
@@ -5489,6 +5429,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
5489
5429
  }, {
5490
5430
  readonly query: ({
5491
5431
  id: string;
5432
+ name: string;
5492
5433
  type: import("../../queries/types").DataSourceType;
5493
5434
  key: string;
5494
5435
  sql: string;
@@ -5497,8 +5438,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
5497
5438
  error: any;
5498
5439
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
5499
5440
  readonly valid: string;
5500
- readonly configurations: {
5441
+ readonly json: {
5501
5442
  id: string;
5443
+ name: string;
5502
5444
  type: import("../../queries/types").DataSourceType;
5503
5445
  key: string;
5504
5446
  sql: string;
@@ -5506,14 +5448,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
5506
5448
  } & {
5507
5449
  readonly formattedSQL: any;
5508
5450
  } & {
5509
- readonly json: {
5510
- id: string;
5511
- type: import("../../queries/types").DataSourceType;
5512
- key: string;
5513
- sql: string;
5514
- };
5515
- } & {
5516
- setID(id: string): void;
5451
+ setName(name: string): void;
5517
5452
  setKey(key: string): void;
5518
5453
  setType(type: import("../../queries/types").DataSourceType): void;
5519
5454
  setSQL(sql: string): void;
@@ -5522,6 +5457,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
5522
5457
  afterCreate(): void;
5523
5458
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
5524
5459
  id: import("mobx-state-tree").ISimpleType<string>;
5460
+ name: import("mobx-state-tree").ISimpleType<string>;
5525
5461
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
5526
5462
  key: import("mobx-state-tree").ISimpleType<string>;
5527
5463
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -5531,8 +5467,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
5531
5467
  error: import("mobx-state-tree").IType<any, any, any>;
5532
5468
  }, {
5533
5469
  readonly valid: string;
5534
- readonly configurations: {
5470
+ readonly json: {
5535
5471
  id: string;
5472
+ name: string;
5536
5473
  type: import("../../queries/types").DataSourceType;
5537
5474
  key: string;
5538
5475
  sql: string;
@@ -5540,14 +5477,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
5540
5477
  } & {
5541
5478
  readonly formattedSQL: any;
5542
5479
  } & {
5543
- readonly json: {
5544
- id: string;
5545
- type: import("../../queries/types").DataSourceType;
5546
- key: string;
5547
- sql: string;
5548
- };
5549
- } & {
5550
- setID(id: string): void;
5480
+ setName(name: string): void;
5551
5481
  setKey(key: string): void;
5552
5482
  setType(type: import("../../queries/types").DataSourceType): void;
5553
5483
  setSQL(sql: string): void;
@@ -6450,6 +6380,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
6450
6380
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6451
6381
  readonly query: ({
6452
6382
  id: string;
6383
+ name: string;
6453
6384
  type: import("../../queries/types").DataSourceType;
6454
6385
  key: string;
6455
6386
  sql: string;
@@ -6458,8 +6389,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
6458
6389
  error: any;
6459
6390
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6460
6391
  readonly valid: string;
6461
- readonly configurations: {
6392
+ readonly json: {
6462
6393
  id: string;
6394
+ name: string;
6463
6395
  type: import("../../queries/types").DataSourceType;
6464
6396
  key: string;
6465
6397
  sql: string;
@@ -6467,14 +6399,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
6467
6399
  } & {
6468
6400
  readonly formattedSQL: any;
6469
6401
  } & {
6470
- readonly json: {
6471
- id: string;
6472
- type: import("../../queries/types").DataSourceType;
6473
- key: string;
6474
- sql: string;
6475
- };
6476
- } & {
6477
- setID(id: string): void;
6402
+ setName(name: string): void;
6478
6403
  setKey(key: string): void;
6479
6404
  setType(type: import("../../queries/types").DataSourceType): void;
6480
6405
  setSQL(sql: string): void;
@@ -6483,6 +6408,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
6483
6408
  afterCreate(): void;
6484
6409
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
6485
6410
  id: import("mobx-state-tree").ISimpleType<string>;
6411
+ name: import("mobx-state-tree").ISimpleType<string>;
6486
6412
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
6487
6413
  key: import("mobx-state-tree").ISimpleType<string>;
6488
6414
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -6492,8 +6418,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
6492
6418
  error: import("mobx-state-tree").IType<any, any, any>;
6493
6419
  }, {
6494
6420
  readonly valid: string;
6495
- readonly configurations: {
6421
+ readonly json: {
6496
6422
  id: string;
6423
+ name: string;
6497
6424
  type: import("../../queries/types").DataSourceType;
6498
6425
  key: string;
6499
6426
  sql: string;
@@ -6501,14 +6428,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
6501
6428
  } & {
6502
6429
  readonly formattedSQL: any;
6503
6430
  } & {
6504
- readonly json: {
6505
- id: string;
6506
- type: import("../../queries/types").DataSourceType;
6507
- key: string;
6508
- sql: string;
6509
- };
6510
- } & {
6511
- setID(id: string): void;
6431
+ setName(name: string): void;
6512
6432
  setKey(key: string): void;
6513
6433
  setType(type: import("../../queries/types").DataSourceType): void;
6514
6434
  setSQL(sql: string): void;
@@ -7224,6 +7144,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
7224
7144
  }, {
7225
7145
  readonly query: ({
7226
7146
  id: string;
7147
+ name: string;
7227
7148
  type: import("../../queries/types").DataSourceType;
7228
7149
  key: string;
7229
7150
  sql: string;
@@ -7232,8 +7153,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
7232
7153
  error: any;
7233
7154
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
7234
7155
  readonly valid: string;
7235
- readonly configurations: {
7156
+ readonly json: {
7236
7157
  id: string;
7158
+ name: string;
7237
7159
  type: import("../../queries/types").DataSourceType;
7238
7160
  key: string;
7239
7161
  sql: string;
@@ -7241,14 +7163,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
7241
7163
  } & {
7242
7164
  readonly formattedSQL: any;
7243
7165
  } & {
7244
- readonly json: {
7245
- id: string;
7246
- type: import("../../queries/types").DataSourceType;
7247
- key: string;
7248
- sql: string;
7249
- };
7250
- } & {
7251
- setID(id: string): void;
7166
+ setName(name: string): void;
7252
7167
  setKey(key: string): void;
7253
7168
  setType(type: import("../../queries/types").DataSourceType): void;
7254
7169
  setSQL(sql: string): void;
@@ -7257,6 +7172,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
7257
7172
  afterCreate(): void;
7258
7173
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
7259
7174
  id: import("mobx-state-tree").ISimpleType<string>;
7175
+ name: import("mobx-state-tree").ISimpleType<string>;
7260
7176
  type: import("mobx-state-tree").ISimpleType<import("../../queries/types").DataSourceType>;
7261
7177
  key: import("mobx-state-tree").ISimpleType<string>;
7262
7178
  sql: import("mobx-state-tree").ISimpleType<string>;
@@ -7266,8 +7182,9 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
7266
7182
  error: import("mobx-state-tree").IType<any, any, any>;
7267
7183
  }, {
7268
7184
  readonly valid: string;
7269
- readonly configurations: {
7185
+ readonly json: {
7270
7186
  id: string;
7187
+ name: string;
7271
7188
  type: import("../../queries/types").DataSourceType;
7272
7189
  key: string;
7273
7190
  sql: string;
@@ -7275,14 +7192,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
7275
7192
  } & {
7276
7193
  readonly formattedSQL: any;
7277
7194
  } & {
7278
- readonly json: {
7279
- id: string;
7280
- type: import("../../queries/types").DataSourceType;
7281
- key: string;
7282
- sql: string;
7283
- };
7284
- } & {
7285
- setID(id: string): void;
7195
+ setName(name: string): void;
7286
7196
  setKey(key: string): void;
7287
7197
  setType(type: import("../../queries/types").DataSourceType): void;
7288
7198
  setSQL(sql: string): void;