@devtable/dashboard 8.37.0 → 8.38.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 (27) hide show
  1. package/dist/contexts/panel-context.d.ts +1 -1
  2. package/dist/dashboard.es.js +7301 -7234
  3. package/dist/dashboard.umd.js +65 -65
  4. package/dist/main/dashboard-editor/settings/content/edit-panel/change-view-of-panel.d.ts +6 -3
  5. package/dist/main/dashboard-editor/settings/content/edit-panel/panel-editor.d.ts +1 -1
  6. package/dist/main/dashboard-editor/settings/content/edit-panel/variable-config/model.d.ts +1 -1
  7. package/dist/main/dashboard-editor/settings/content/edit-view/edit-view-form/index.d.ts +915 -0
  8. package/dist/main/full-screen-panel.d.ts +1 -1
  9. package/dist/main/use-panel-full-screen.d.ts +2 -4
  10. package/dist/model/filters/filter/checkbox.d.ts +3 -0
  11. package/dist/model/index.d.ts +1 -0
  12. package/dist/model/panels/index.d.ts +9765 -0
  13. package/dist/model/{views/view/panels → panels}/panel.d.ts +13 -12
  14. package/dist/model/views/index.d.ts +3916 -0
  15. package/dist/model/views/view/index.d.ts +4 -12721
  16. package/dist/panel/index.d.ts +1 -1
  17. package/dist/plugins/instance-migrator/index.d.ts +1 -1
  18. package/dist/plugins/plugin-context.d.ts +2 -4
  19. package/dist/plugins/plugin-data-migrator/plugin-data-migrator.d.ts +1 -1
  20. package/dist/types/dashboard.d.ts +2 -1
  21. package/dist/types/plugin/index.d.ts +1 -1
  22. package/package.json +1 -1
  23. package/dist/model/views/view/panels/index.d.ts +0 -4227
  24. /package/dist/model/{views/view/panels → panels}/layout.d.ts +0 -0
  25. /package/dist/model/{views/view/panels → panels}/style/border.d.ts +0 -0
  26. /package/dist/model/{views/view/panels → panels}/style/index.d.ts +0 -0
  27. /package/dist/model/{views/view/panels → panels}/viz.d.ts +0 -0
@@ -0,0 +1,3916 @@
1
+ import { Instance, SnapshotIn } from 'mobx-state-tree';
2
+ import { EViewComponentType, IDashboardView } from '~/types';
3
+ import { ViewModelInstance } from './view';
4
+ import { IViewConfigModel_DivisionIn } from './view/division';
5
+ import { IViewConfigModel_ModalIn } from './view/modal';
6
+ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
7
+ current: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
8
+ id: import("mobx-state-tree").ISimpleType<string>;
9
+ name: import("mobx-state-tree").ISimpleType<string>;
10
+ type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
11
+ config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
12
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
13
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
14
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
15
+ width: import("mobx-state-tree").ISimpleType<string>;
16
+ height: import("mobx-state-tree").ISimpleType<string>;
17
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
18
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
19
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
20
+ }, {
21
+ readonly json: {
22
+ enabled: boolean;
23
+ func_content: string;
24
+ };
25
+ readonly value: any;
26
+ } & {
27
+ setEnabled(v: boolean): void;
28
+ setFuncContent(v: string): void;
29
+ replace({ enabled, func_content }: {
30
+ enabled: boolean;
31
+ func_content: string;
32
+ }): void;
33
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
34
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
35
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
36
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
37
+ id: import("mobx-state-tree").ISimpleType<string>;
38
+ name: import("mobx-state-tree").ISimpleType<string>;
39
+ view_id: import("mobx-state-tree").ISimpleType<string>;
40
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
41
+ }, {
42
+ readonly json: {
43
+ id: string;
44
+ name: string;
45
+ color: string;
46
+ view_id: string;
47
+ };
48
+ } & {
49
+ setName(v: string): void;
50
+ setViewID(v: string): void;
51
+ setColor(v: string): void;
52
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
53
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
54
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
55
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
56
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
57
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
58
+ }> | import("mobx-state-tree").ModelSnapshotType<{
59
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
60
+ width: import("mobx-state-tree").ISimpleType<string>;
61
+ height: import("mobx-state-tree").ISimpleType<string>;
62
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
63
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
64
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
65
+ }, {
66
+ readonly json: {
67
+ enabled: boolean;
68
+ func_content: string;
69
+ };
70
+ readonly value: any;
71
+ } & {
72
+ setEnabled(v: boolean): void;
73
+ setFuncContent(v: string): void;
74
+ replace({ enabled, func_content }: {
75
+ enabled: boolean;
76
+ func_content: string;
77
+ }): void;
78
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
79
+ }> | import("mobx-state-tree").ModelSnapshotType<{
80
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
81
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
82
+ id: import("mobx-state-tree").ISimpleType<string>;
83
+ name: import("mobx-state-tree").ISimpleType<string>;
84
+ view_id: import("mobx-state-tree").ISimpleType<string>;
85
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
86
+ }, {
87
+ readonly json: {
88
+ id: string;
89
+ name: string;
90
+ color: string;
91
+ view_id: string;
92
+ };
93
+ } & {
94
+ setName(v: string): void;
95
+ setViewID(v: string): void;
96
+ setColor(v: string): void;
97
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
98
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
99
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
100
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
101
+ }>, import("mobx-state-tree").ModelInstanceType<{
102
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
103
+ }, {
104
+ readonly json: {
105
+ _name: EViewComponentType.Division;
106
+ };
107
+ }> | import("mobx-state-tree").ModelInstanceType<{
108
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
109
+ width: import("mobx-state-tree").ISimpleType<string>;
110
+ height: import("mobx-state-tree").ISimpleType<string>;
111
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
112
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
113
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
114
+ }, {
115
+ readonly json: {
116
+ enabled: boolean;
117
+ func_content: string;
118
+ };
119
+ readonly value: any;
120
+ } & {
121
+ setEnabled(v: boolean): void;
122
+ setFuncContent(v: string): void;
123
+ replace({ enabled, func_content }: {
124
+ enabled: boolean;
125
+ func_content: string;
126
+ }): void;
127
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
128
+ }, {
129
+ readonly json: {
130
+ _name: EViewComponentType.Modal;
131
+ width: string;
132
+ height: string;
133
+ custom_modal_title: {
134
+ enabled: boolean;
135
+ func_content: string;
136
+ };
137
+ };
138
+ } & {
139
+ setWidth(v: string): void;
140
+ setHeight(v: string): void;
141
+ }> | import("mobx-state-tree").ModelInstanceType<{
142
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
143
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
144
+ id: import("mobx-state-tree").ISimpleType<string>;
145
+ name: import("mobx-state-tree").ISimpleType<string>;
146
+ view_id: import("mobx-state-tree").ISimpleType<string>;
147
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
148
+ }, {
149
+ readonly json: {
150
+ id: string;
151
+ name: string;
152
+ color: string;
153
+ view_id: string;
154
+ };
155
+ } & {
156
+ setName(v: string): void;
157
+ setViewID(v: string): void;
158
+ setColor(v: string): void;
159
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
160
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
161
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
162
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
163
+ }, {
164
+ readonly json: {
165
+ grow: boolean;
166
+ tabs: {
167
+ id: string;
168
+ name: string;
169
+ color: string;
170
+ view_id: string;
171
+ }[];
172
+ _name: EViewComponentType.Modal;
173
+ variant: import("@mantine/core").TabsVariant;
174
+ orientation: import("@mantine/core").TabsOrientation;
175
+ };
176
+ } & {
177
+ setVariant(v: import("@mantine/core").TabsVariant): void;
178
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
179
+ setGrow(v: boolean): void;
180
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
181
+ id: import("mobx-state-tree").ISimpleType<string>;
182
+ name: import("mobx-state-tree").ISimpleType<string>;
183
+ view_id: import("mobx-state-tree").ISimpleType<string>;
184
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
185
+ }>>[]): void;
186
+ addTab(): void;
187
+ removeTab(index: number): void;
188
+ }>>;
189
+ panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
190
+ }, {
191
+ readonly json: {
192
+ id: string;
193
+ name: string;
194
+ type: EViewComponentType;
195
+ config: {
196
+ _name: EViewComponentType.Division;
197
+ } | {
198
+ _name: EViewComponentType.Modal;
199
+ width: string;
200
+ height: string;
201
+ custom_modal_title: {
202
+ enabled: boolean;
203
+ func_content: string;
204
+ };
205
+ } | {
206
+ grow: boolean;
207
+ tabs: {
208
+ id: string;
209
+ name: string;
210
+ color: string;
211
+ view_id: string;
212
+ }[];
213
+ _name: EViewComponentType.Modal;
214
+ variant: import("@mantine/core").TabsVariant;
215
+ orientation: import("@mantine/core").TabsOrientation;
216
+ };
217
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
218
+ };
219
+ } & {
220
+ setName(name: string): void;
221
+ setType(type: EViewComponentType): void;
222
+ appendPanelID(id: string): void;
223
+ removePanelID(id: string): void;
224
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
225
+ visibleViewIDs: import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>;
226
+ idOfVIE: import("mobx-state-tree").ISimpleType<string>;
227
+ }, {
228
+ readonly json: {
229
+ id: string;
230
+ name: string;
231
+ type: EViewComponentType;
232
+ config: {
233
+ _name: EViewComponentType.Division;
234
+ } | {
235
+ _name: EViewComponentType.Modal;
236
+ width: string;
237
+ height: string;
238
+ custom_modal_title: {
239
+ enabled: boolean;
240
+ func_content: string;
241
+ };
242
+ } | {
243
+ grow: boolean;
244
+ tabs: {
245
+ id: string;
246
+ name: string;
247
+ color: string;
248
+ view_id: string;
249
+ }[];
250
+ _name: EViewComponentType.Modal;
251
+ variant: import("@mantine/core").TabsVariant;
252
+ orientation: import("@mantine/core").TabsOrientation;
253
+ };
254
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
255
+ }[];
256
+ findByID(id: string): ({
257
+ id: string;
258
+ name: string;
259
+ type: EViewComponentType;
260
+ config: ({
261
+ _name: EViewComponentType.Division;
262
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
263
+ readonly json: {
264
+ _name: EViewComponentType.Division;
265
+ };
266
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
267
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
268
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
269
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
270
+ width: import("mobx-state-tree").ISimpleType<string>;
271
+ height: import("mobx-state-tree").ISimpleType<string>;
272
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
273
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
274
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
275
+ }, {
276
+ readonly json: {
277
+ enabled: boolean;
278
+ func_content: string;
279
+ };
280
+ readonly value: any;
281
+ } & {
282
+ setEnabled(v: boolean): void;
283
+ setFuncContent(v: string): void;
284
+ replace({ enabled, func_content }: {
285
+ enabled: boolean;
286
+ func_content: string;
287
+ }): void;
288
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
289
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
290
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
291
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
292
+ id: import("mobx-state-tree").ISimpleType<string>;
293
+ name: import("mobx-state-tree").ISimpleType<string>;
294
+ view_id: import("mobx-state-tree").ISimpleType<string>;
295
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
296
+ }, {
297
+ readonly json: {
298
+ id: string;
299
+ name: string;
300
+ color: string;
301
+ view_id: string;
302
+ };
303
+ } & {
304
+ setName(v: string): void;
305
+ setViewID(v: string): void;
306
+ setColor(v: string): void;
307
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
308
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
309
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
310
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
311
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
312
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
313
+ }> | import("mobx-state-tree").ModelSnapshotType<{
314
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
315
+ width: import("mobx-state-tree").ISimpleType<string>;
316
+ height: import("mobx-state-tree").ISimpleType<string>;
317
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
318
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
319
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
320
+ }, {
321
+ readonly json: {
322
+ enabled: boolean;
323
+ func_content: string;
324
+ };
325
+ readonly value: any;
326
+ } & {
327
+ setEnabled(v: boolean): void;
328
+ setFuncContent(v: string): void;
329
+ replace({ enabled, func_content }: {
330
+ enabled: boolean;
331
+ func_content: string;
332
+ }): void;
333
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
334
+ }> | import("mobx-state-tree").ModelSnapshotType<{
335
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
336
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
337
+ id: import("mobx-state-tree").ISimpleType<string>;
338
+ name: import("mobx-state-tree").ISimpleType<string>;
339
+ view_id: import("mobx-state-tree").ISimpleType<string>;
340
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
341
+ }, {
342
+ readonly json: {
343
+ id: string;
344
+ name: string;
345
+ color: string;
346
+ view_id: string;
347
+ };
348
+ } & {
349
+ setName(v: string): void;
350
+ setViewID(v: string): void;
351
+ setColor(v: string): void;
352
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
353
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
354
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
355
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
356
+ }>, import("mobx-state-tree").ModelInstanceType<{
357
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
358
+ }, {
359
+ readonly json: {
360
+ _name: EViewComponentType.Division;
361
+ };
362
+ }> | import("mobx-state-tree").ModelInstanceType<{
363
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
364
+ width: import("mobx-state-tree").ISimpleType<string>;
365
+ height: import("mobx-state-tree").ISimpleType<string>;
366
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
367
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
368
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
369
+ }, {
370
+ readonly json: {
371
+ enabled: boolean;
372
+ func_content: string;
373
+ };
374
+ readonly value: any;
375
+ } & {
376
+ setEnabled(v: boolean): void;
377
+ setFuncContent(v: string): void;
378
+ replace({ enabled, func_content }: {
379
+ enabled: boolean;
380
+ func_content: string;
381
+ }): void;
382
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
383
+ }, {
384
+ readonly json: {
385
+ _name: EViewComponentType.Modal;
386
+ width: string;
387
+ height: string;
388
+ custom_modal_title: {
389
+ enabled: boolean;
390
+ func_content: string;
391
+ };
392
+ };
393
+ } & {
394
+ setWidth(v: string): void;
395
+ setHeight(v: string): void;
396
+ }> | import("mobx-state-tree").ModelInstanceType<{
397
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
398
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
399
+ id: import("mobx-state-tree").ISimpleType<string>;
400
+ name: import("mobx-state-tree").ISimpleType<string>;
401
+ view_id: import("mobx-state-tree").ISimpleType<string>;
402
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
403
+ }, {
404
+ readonly json: {
405
+ id: string;
406
+ name: string;
407
+ color: string;
408
+ view_id: string;
409
+ };
410
+ } & {
411
+ setName(v: string): void;
412
+ setViewID(v: string): void;
413
+ setColor(v: string): void;
414
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
415
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
416
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
417
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
418
+ }, {
419
+ readonly json: {
420
+ grow: boolean;
421
+ tabs: {
422
+ id: string;
423
+ name: string;
424
+ color: string;
425
+ view_id: string;
426
+ }[];
427
+ _name: EViewComponentType.Modal;
428
+ variant: import("@mantine/core").TabsVariant;
429
+ orientation: import("@mantine/core").TabsOrientation;
430
+ };
431
+ } & {
432
+ setVariant(v: import("@mantine/core").TabsVariant): void;
433
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
434
+ setGrow(v: boolean): void;
435
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
436
+ id: import("mobx-state-tree").ISimpleType<string>;
437
+ name: import("mobx-state-tree").ISimpleType<string>;
438
+ view_id: import("mobx-state-tree").ISimpleType<string>;
439
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
440
+ }>>[]): void;
441
+ addTab(): void;
442
+ removeTab(index: number): void;
443
+ }>>>) | ({
444
+ _name: EViewComponentType.Modal;
445
+ width: string;
446
+ height: string;
447
+ custom_modal_title: {
448
+ enabled: boolean;
449
+ func_content: string;
450
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
451
+ readonly json: {
452
+ enabled: boolean;
453
+ func_content: string;
454
+ };
455
+ readonly value: any;
456
+ } & {
457
+ setEnabled(v: boolean): void;
458
+ setFuncContent(v: string): void;
459
+ replace({ enabled, func_content }: {
460
+ enabled: boolean;
461
+ func_content: string;
462
+ }): void;
463
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
464
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
465
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
466
+ }, {
467
+ readonly json: {
468
+ enabled: boolean;
469
+ func_content: string;
470
+ };
471
+ readonly value: any;
472
+ } & {
473
+ setEnabled(v: boolean): void;
474
+ setFuncContent(v: string): void;
475
+ replace({ enabled, func_content }: {
476
+ enabled: boolean;
477
+ func_content: string;
478
+ }): void;
479
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
480
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
481
+ readonly json: {
482
+ _name: EViewComponentType.Modal;
483
+ width: string;
484
+ height: string;
485
+ custom_modal_title: {
486
+ enabled: boolean;
487
+ func_content: string;
488
+ };
489
+ };
490
+ } & {
491
+ setWidth(v: string): void;
492
+ setHeight(v: string): void;
493
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
494
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
495
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
496
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
497
+ width: import("mobx-state-tree").ISimpleType<string>;
498
+ height: import("mobx-state-tree").ISimpleType<string>;
499
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
500
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
501
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
502
+ }, {
503
+ readonly json: {
504
+ enabled: boolean;
505
+ func_content: string;
506
+ };
507
+ readonly value: any;
508
+ } & {
509
+ setEnabled(v: boolean): void;
510
+ setFuncContent(v: string): void;
511
+ replace({ enabled, func_content }: {
512
+ enabled: boolean;
513
+ func_content: string;
514
+ }): void;
515
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
516
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
517
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
518
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
519
+ id: import("mobx-state-tree").ISimpleType<string>;
520
+ name: import("mobx-state-tree").ISimpleType<string>;
521
+ view_id: import("mobx-state-tree").ISimpleType<string>;
522
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
523
+ }, {
524
+ readonly json: {
525
+ id: string;
526
+ name: string;
527
+ color: string;
528
+ view_id: string;
529
+ };
530
+ } & {
531
+ setName(v: string): void;
532
+ setViewID(v: string): void;
533
+ setColor(v: string): void;
534
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
535
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
536
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
537
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
538
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
539
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
540
+ }> | import("mobx-state-tree").ModelSnapshotType<{
541
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
542
+ width: import("mobx-state-tree").ISimpleType<string>;
543
+ height: import("mobx-state-tree").ISimpleType<string>;
544
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
545
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
546
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
547
+ }, {
548
+ readonly json: {
549
+ enabled: boolean;
550
+ func_content: string;
551
+ };
552
+ readonly value: any;
553
+ } & {
554
+ setEnabled(v: boolean): void;
555
+ setFuncContent(v: string): void;
556
+ replace({ enabled, func_content }: {
557
+ enabled: boolean;
558
+ func_content: string;
559
+ }): void;
560
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
561
+ }> | import("mobx-state-tree").ModelSnapshotType<{
562
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
563
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
564
+ id: import("mobx-state-tree").ISimpleType<string>;
565
+ name: import("mobx-state-tree").ISimpleType<string>;
566
+ view_id: import("mobx-state-tree").ISimpleType<string>;
567
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
568
+ }, {
569
+ readonly json: {
570
+ id: string;
571
+ name: string;
572
+ color: string;
573
+ view_id: string;
574
+ };
575
+ } & {
576
+ setName(v: string): void;
577
+ setViewID(v: string): void;
578
+ setColor(v: string): void;
579
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
580
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
581
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
582
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
583
+ }>, import("mobx-state-tree").ModelInstanceType<{
584
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
585
+ }, {
586
+ readonly json: {
587
+ _name: EViewComponentType.Division;
588
+ };
589
+ }> | import("mobx-state-tree").ModelInstanceType<{
590
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
591
+ width: import("mobx-state-tree").ISimpleType<string>;
592
+ height: import("mobx-state-tree").ISimpleType<string>;
593
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
594
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
595
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
596
+ }, {
597
+ readonly json: {
598
+ enabled: boolean;
599
+ func_content: string;
600
+ };
601
+ readonly value: any;
602
+ } & {
603
+ setEnabled(v: boolean): void;
604
+ setFuncContent(v: string): void;
605
+ replace({ enabled, func_content }: {
606
+ enabled: boolean;
607
+ func_content: string;
608
+ }): void;
609
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
610
+ }, {
611
+ readonly json: {
612
+ _name: EViewComponentType.Modal;
613
+ width: string;
614
+ height: string;
615
+ custom_modal_title: {
616
+ enabled: boolean;
617
+ func_content: string;
618
+ };
619
+ };
620
+ } & {
621
+ setWidth(v: string): void;
622
+ setHeight(v: string): void;
623
+ }> | import("mobx-state-tree").ModelInstanceType<{
624
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
625
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
626
+ id: import("mobx-state-tree").ISimpleType<string>;
627
+ name: import("mobx-state-tree").ISimpleType<string>;
628
+ view_id: import("mobx-state-tree").ISimpleType<string>;
629
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
630
+ }, {
631
+ readonly json: {
632
+ id: string;
633
+ name: string;
634
+ color: string;
635
+ view_id: string;
636
+ };
637
+ } & {
638
+ setName(v: string): void;
639
+ setViewID(v: string): void;
640
+ setColor(v: string): void;
641
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
642
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
643
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
644
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
645
+ }, {
646
+ readonly json: {
647
+ grow: boolean;
648
+ tabs: {
649
+ id: string;
650
+ name: string;
651
+ color: string;
652
+ view_id: string;
653
+ }[];
654
+ _name: EViewComponentType.Modal;
655
+ variant: import("@mantine/core").TabsVariant;
656
+ orientation: import("@mantine/core").TabsOrientation;
657
+ };
658
+ } & {
659
+ setVariant(v: import("@mantine/core").TabsVariant): void;
660
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
661
+ setGrow(v: boolean): void;
662
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
663
+ id: import("mobx-state-tree").ISimpleType<string>;
664
+ name: import("mobx-state-tree").ISimpleType<string>;
665
+ view_id: import("mobx-state-tree").ISimpleType<string>;
666
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
667
+ }>>[]): void;
668
+ addTab(): void;
669
+ removeTab(index: number): void;
670
+ }>>>) | ({
671
+ _name: EViewComponentType.Modal;
672
+ tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
673
+ id: import("mobx-state-tree").ISimpleType<string>;
674
+ name: import("mobx-state-tree").ISimpleType<string>;
675
+ view_id: import("mobx-state-tree").ISimpleType<string>;
676
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
677
+ }, {
678
+ readonly json: {
679
+ id: string;
680
+ name: string;
681
+ color: string;
682
+ view_id: string;
683
+ };
684
+ } & {
685
+ setName(v: string): void;
686
+ setViewID(v: string): void;
687
+ setColor(v: string): void;
688
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
689
+ id: import("mobx-state-tree").ISimpleType<string>;
690
+ name: import("mobx-state-tree").ISimpleType<string>;
691
+ view_id: import("mobx-state-tree").ISimpleType<string>;
692
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
693
+ }, {
694
+ readonly json: {
695
+ id: string;
696
+ name: string;
697
+ color: string;
698
+ view_id: string;
699
+ };
700
+ } & {
701
+ setName(v: string): void;
702
+ setViewID(v: string): void;
703
+ setColor(v: string): void;
704
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
705
+ variant: import("@mantine/core").TabsVariant;
706
+ orientation: import("@mantine/core").TabsOrientation;
707
+ grow: boolean;
708
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
709
+ readonly json: {
710
+ grow: boolean;
711
+ tabs: {
712
+ id: string;
713
+ name: string;
714
+ color: string;
715
+ view_id: string;
716
+ }[];
717
+ _name: EViewComponentType.Modal;
718
+ variant: import("@mantine/core").TabsVariant;
719
+ orientation: import("@mantine/core").TabsOrientation;
720
+ };
721
+ } & {
722
+ setVariant(v: import("@mantine/core").TabsVariant): void;
723
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
724
+ setGrow(v: boolean): void;
725
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
726
+ id: import("mobx-state-tree").ISimpleType<string>;
727
+ name: import("mobx-state-tree").ISimpleType<string>;
728
+ view_id: import("mobx-state-tree").ISimpleType<string>;
729
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
730
+ }>>[]): void;
731
+ addTab(): void;
732
+ removeTab(index: number): void;
733
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
734
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
735
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
736
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
737
+ width: import("mobx-state-tree").ISimpleType<string>;
738
+ height: import("mobx-state-tree").ISimpleType<string>;
739
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
740
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
741
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
742
+ }, {
743
+ readonly json: {
744
+ enabled: boolean;
745
+ func_content: string;
746
+ };
747
+ readonly value: any;
748
+ } & {
749
+ setEnabled(v: boolean): void;
750
+ setFuncContent(v: string): void;
751
+ replace({ enabled, func_content }: {
752
+ enabled: boolean;
753
+ func_content: string;
754
+ }): void;
755
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
756
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
757
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
758
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
759
+ id: import("mobx-state-tree").ISimpleType<string>;
760
+ name: import("mobx-state-tree").ISimpleType<string>;
761
+ view_id: import("mobx-state-tree").ISimpleType<string>;
762
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
763
+ }, {
764
+ readonly json: {
765
+ id: string;
766
+ name: string;
767
+ color: string;
768
+ view_id: string;
769
+ };
770
+ } & {
771
+ setName(v: string): void;
772
+ setViewID(v: string): void;
773
+ setColor(v: string): void;
774
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
775
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
776
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
777
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
778
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
779
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
780
+ }> | import("mobx-state-tree").ModelSnapshotType<{
781
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
782
+ width: import("mobx-state-tree").ISimpleType<string>;
783
+ height: import("mobx-state-tree").ISimpleType<string>;
784
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
785
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
786
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
787
+ }, {
788
+ readonly json: {
789
+ enabled: boolean;
790
+ func_content: string;
791
+ };
792
+ readonly value: any;
793
+ } & {
794
+ setEnabled(v: boolean): void;
795
+ setFuncContent(v: string): void;
796
+ replace({ enabled, func_content }: {
797
+ enabled: boolean;
798
+ func_content: string;
799
+ }): void;
800
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
801
+ }> | import("mobx-state-tree").ModelSnapshotType<{
802
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
803
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
804
+ id: import("mobx-state-tree").ISimpleType<string>;
805
+ name: import("mobx-state-tree").ISimpleType<string>;
806
+ view_id: import("mobx-state-tree").ISimpleType<string>;
807
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
808
+ }, {
809
+ readonly json: {
810
+ id: string;
811
+ name: string;
812
+ color: string;
813
+ view_id: string;
814
+ };
815
+ } & {
816
+ setName(v: string): void;
817
+ setViewID(v: string): void;
818
+ setColor(v: string): void;
819
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
820
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
821
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
822
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
823
+ }>, import("mobx-state-tree").ModelInstanceType<{
824
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
825
+ }, {
826
+ readonly json: {
827
+ _name: EViewComponentType.Division;
828
+ };
829
+ }> | import("mobx-state-tree").ModelInstanceType<{
830
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
831
+ width: import("mobx-state-tree").ISimpleType<string>;
832
+ height: import("mobx-state-tree").ISimpleType<string>;
833
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
834
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
835
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
836
+ }, {
837
+ readonly json: {
838
+ enabled: boolean;
839
+ func_content: string;
840
+ };
841
+ readonly value: any;
842
+ } & {
843
+ setEnabled(v: boolean): void;
844
+ setFuncContent(v: string): void;
845
+ replace({ enabled, func_content }: {
846
+ enabled: boolean;
847
+ func_content: string;
848
+ }): void;
849
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
850
+ }, {
851
+ readonly json: {
852
+ _name: EViewComponentType.Modal;
853
+ width: string;
854
+ height: string;
855
+ custom_modal_title: {
856
+ enabled: boolean;
857
+ func_content: string;
858
+ };
859
+ };
860
+ } & {
861
+ setWidth(v: string): void;
862
+ setHeight(v: string): void;
863
+ }> | import("mobx-state-tree").ModelInstanceType<{
864
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
865
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
866
+ id: import("mobx-state-tree").ISimpleType<string>;
867
+ name: import("mobx-state-tree").ISimpleType<string>;
868
+ view_id: import("mobx-state-tree").ISimpleType<string>;
869
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
870
+ }, {
871
+ readonly json: {
872
+ id: string;
873
+ name: string;
874
+ color: string;
875
+ view_id: string;
876
+ };
877
+ } & {
878
+ setName(v: string): void;
879
+ setViewID(v: string): void;
880
+ setColor(v: string): void;
881
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
882
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
883
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
884
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
885
+ }, {
886
+ readonly json: {
887
+ grow: boolean;
888
+ tabs: {
889
+ id: string;
890
+ name: string;
891
+ color: string;
892
+ view_id: string;
893
+ }[];
894
+ _name: EViewComponentType.Modal;
895
+ variant: import("@mantine/core").TabsVariant;
896
+ orientation: import("@mantine/core").TabsOrientation;
897
+ };
898
+ } & {
899
+ setVariant(v: import("@mantine/core").TabsVariant): void;
900
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
901
+ setGrow(v: boolean): void;
902
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
903
+ id: import("mobx-state-tree").ISimpleType<string>;
904
+ name: import("mobx-state-tree").ISimpleType<string>;
905
+ view_id: import("mobx-state-tree").ISimpleType<string>;
906
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
907
+ }>>[]): void;
908
+ addTab(): void;
909
+ removeTab(index: number): void;
910
+ }>>>);
911
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
912
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
913
+ readonly json: {
914
+ id: string;
915
+ name: string;
916
+ type: EViewComponentType;
917
+ config: {
918
+ _name: EViewComponentType.Division;
919
+ } | {
920
+ _name: EViewComponentType.Modal;
921
+ width: string;
922
+ height: string;
923
+ custom_modal_title: {
924
+ enabled: boolean;
925
+ func_content: string;
926
+ };
927
+ } | {
928
+ grow: boolean;
929
+ tabs: {
930
+ id: string;
931
+ name: string;
932
+ color: string;
933
+ view_id: string;
934
+ }[];
935
+ _name: EViewComponentType.Modal;
936
+ variant: import("@mantine/core").TabsVariant;
937
+ orientation: import("@mantine/core").TabsOrientation;
938
+ };
939
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
940
+ };
941
+ } & {
942
+ setName(name: string): void;
943
+ setType(type: EViewComponentType): void;
944
+ appendPanelID(id: string): void;
945
+ removePanelID(id: string): void;
946
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
947
+ id: import("mobx-state-tree").ISimpleType<string>;
948
+ name: import("mobx-state-tree").ISimpleType<string>;
949
+ type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
950
+ config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
951
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
952
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
953
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
954
+ width: import("mobx-state-tree").ISimpleType<string>;
955
+ height: import("mobx-state-tree").ISimpleType<string>;
956
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
957
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
958
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
959
+ }, {
960
+ readonly json: {
961
+ enabled: boolean;
962
+ func_content: string;
963
+ };
964
+ readonly value: any;
965
+ } & {
966
+ setEnabled(v: boolean): void;
967
+ setFuncContent(v: string): void;
968
+ replace({ enabled, func_content }: {
969
+ enabled: boolean;
970
+ func_content: string;
971
+ }): void;
972
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
973
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
974
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
975
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
976
+ id: import("mobx-state-tree").ISimpleType<string>;
977
+ name: import("mobx-state-tree").ISimpleType<string>;
978
+ view_id: import("mobx-state-tree").ISimpleType<string>;
979
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
980
+ }, {
981
+ readonly json: {
982
+ id: string;
983
+ name: string;
984
+ color: string;
985
+ view_id: string;
986
+ };
987
+ } & {
988
+ setName(v: string): void;
989
+ setViewID(v: string): void;
990
+ setColor(v: string): void;
991
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
992
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
993
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
994
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
995
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
996
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
997
+ }> | import("mobx-state-tree").ModelSnapshotType<{
998
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
999
+ width: import("mobx-state-tree").ISimpleType<string>;
1000
+ height: import("mobx-state-tree").ISimpleType<string>;
1001
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1002
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1003
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1004
+ }, {
1005
+ readonly json: {
1006
+ enabled: boolean;
1007
+ func_content: string;
1008
+ };
1009
+ readonly value: any;
1010
+ } & {
1011
+ setEnabled(v: boolean): void;
1012
+ setFuncContent(v: string): void;
1013
+ replace({ enabled, func_content }: {
1014
+ enabled: boolean;
1015
+ func_content: string;
1016
+ }): void;
1017
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1018
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1019
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1020
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1021
+ id: import("mobx-state-tree").ISimpleType<string>;
1022
+ name: import("mobx-state-tree").ISimpleType<string>;
1023
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1024
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1025
+ }, {
1026
+ readonly json: {
1027
+ id: string;
1028
+ name: string;
1029
+ color: string;
1030
+ view_id: string;
1031
+ };
1032
+ } & {
1033
+ setName(v: string): void;
1034
+ setViewID(v: string): void;
1035
+ setColor(v: string): void;
1036
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1037
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1038
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1039
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1040
+ }>, import("mobx-state-tree").ModelInstanceType<{
1041
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1042
+ }, {
1043
+ readonly json: {
1044
+ _name: EViewComponentType.Division;
1045
+ };
1046
+ }> | import("mobx-state-tree").ModelInstanceType<{
1047
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1048
+ width: import("mobx-state-tree").ISimpleType<string>;
1049
+ height: import("mobx-state-tree").ISimpleType<string>;
1050
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1051
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1052
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1053
+ }, {
1054
+ readonly json: {
1055
+ enabled: boolean;
1056
+ func_content: string;
1057
+ };
1058
+ readonly value: any;
1059
+ } & {
1060
+ setEnabled(v: boolean): void;
1061
+ setFuncContent(v: string): void;
1062
+ replace({ enabled, func_content }: {
1063
+ enabled: boolean;
1064
+ func_content: string;
1065
+ }): void;
1066
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1067
+ }, {
1068
+ readonly json: {
1069
+ _name: EViewComponentType.Modal;
1070
+ width: string;
1071
+ height: string;
1072
+ custom_modal_title: {
1073
+ enabled: boolean;
1074
+ func_content: string;
1075
+ };
1076
+ };
1077
+ } & {
1078
+ setWidth(v: string): void;
1079
+ setHeight(v: string): void;
1080
+ }> | import("mobx-state-tree").ModelInstanceType<{
1081
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1082
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1083
+ id: import("mobx-state-tree").ISimpleType<string>;
1084
+ name: import("mobx-state-tree").ISimpleType<string>;
1085
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1086
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1087
+ }, {
1088
+ readonly json: {
1089
+ id: string;
1090
+ name: string;
1091
+ color: string;
1092
+ view_id: string;
1093
+ };
1094
+ } & {
1095
+ setName(v: string): void;
1096
+ setViewID(v: string): void;
1097
+ setColor(v: string): void;
1098
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1099
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1100
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1101
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1102
+ }, {
1103
+ readonly json: {
1104
+ grow: boolean;
1105
+ tabs: {
1106
+ id: string;
1107
+ name: string;
1108
+ color: string;
1109
+ view_id: string;
1110
+ }[];
1111
+ _name: EViewComponentType.Modal;
1112
+ variant: import("@mantine/core").TabsVariant;
1113
+ orientation: import("@mantine/core").TabsOrientation;
1114
+ };
1115
+ } & {
1116
+ setVariant(v: import("@mantine/core").TabsVariant): void;
1117
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
1118
+ setGrow(v: boolean): void;
1119
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1120
+ id: import("mobx-state-tree").ISimpleType<string>;
1121
+ name: import("mobx-state-tree").ISimpleType<string>;
1122
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1123
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1124
+ }>>[]): void;
1125
+ addTab(): void;
1126
+ removeTab(index: number): void;
1127
+ }>>;
1128
+ panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
1129
+ }, {
1130
+ readonly json: {
1131
+ id: string;
1132
+ name: string;
1133
+ type: EViewComponentType;
1134
+ config: {
1135
+ _name: EViewComponentType.Division;
1136
+ } | {
1137
+ _name: EViewComponentType.Modal;
1138
+ width: string;
1139
+ height: string;
1140
+ custom_modal_title: {
1141
+ enabled: boolean;
1142
+ func_content: string;
1143
+ };
1144
+ } | {
1145
+ grow: boolean;
1146
+ tabs: {
1147
+ id: string;
1148
+ name: string;
1149
+ color: string;
1150
+ view_id: string;
1151
+ }[];
1152
+ _name: EViewComponentType.Modal;
1153
+ variant: import("@mantine/core").TabsVariant;
1154
+ orientation: import("@mantine/core").TabsOrientation;
1155
+ };
1156
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
1157
+ };
1158
+ } & {
1159
+ setName(name: string): void;
1160
+ setType(type: EViewComponentType): void;
1161
+ appendPanelID(id: string): void;
1162
+ removePanelID(id: string): void;
1163
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
1164
+ readonly isVIETheFirstView: boolean;
1165
+ readonly firstVisibleView: ({
1166
+ id: string;
1167
+ name: string;
1168
+ type: EViewComponentType;
1169
+ config: ({
1170
+ _name: EViewComponentType.Division;
1171
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1172
+ readonly json: {
1173
+ _name: EViewComponentType.Division;
1174
+ };
1175
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1176
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1177
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1178
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1179
+ width: import("mobx-state-tree").ISimpleType<string>;
1180
+ height: import("mobx-state-tree").ISimpleType<string>;
1181
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1182
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1183
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1184
+ }, {
1185
+ readonly json: {
1186
+ enabled: boolean;
1187
+ func_content: string;
1188
+ };
1189
+ readonly value: any;
1190
+ } & {
1191
+ setEnabled(v: boolean): void;
1192
+ setFuncContent(v: string): void;
1193
+ replace({ enabled, func_content }: {
1194
+ enabled: boolean;
1195
+ func_content: string;
1196
+ }): void;
1197
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1198
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1199
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1200
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1201
+ id: import("mobx-state-tree").ISimpleType<string>;
1202
+ name: import("mobx-state-tree").ISimpleType<string>;
1203
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1204
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1205
+ }, {
1206
+ readonly json: {
1207
+ id: string;
1208
+ name: string;
1209
+ color: string;
1210
+ view_id: string;
1211
+ };
1212
+ } & {
1213
+ setName(v: string): void;
1214
+ setViewID(v: string): void;
1215
+ setColor(v: string): void;
1216
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1217
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1218
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1219
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1220
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
1221
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1222
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1223
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1224
+ width: import("mobx-state-tree").ISimpleType<string>;
1225
+ height: import("mobx-state-tree").ISimpleType<string>;
1226
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1227
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1228
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1229
+ }, {
1230
+ readonly json: {
1231
+ enabled: boolean;
1232
+ func_content: string;
1233
+ };
1234
+ readonly value: any;
1235
+ } & {
1236
+ setEnabled(v: boolean): void;
1237
+ setFuncContent(v: string): void;
1238
+ replace({ enabled, func_content }: {
1239
+ enabled: boolean;
1240
+ func_content: string;
1241
+ }): void;
1242
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1243
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1244
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1245
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1246
+ id: import("mobx-state-tree").ISimpleType<string>;
1247
+ name: import("mobx-state-tree").ISimpleType<string>;
1248
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1249
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1250
+ }, {
1251
+ readonly json: {
1252
+ id: string;
1253
+ name: string;
1254
+ color: string;
1255
+ view_id: string;
1256
+ };
1257
+ } & {
1258
+ setName(v: string): void;
1259
+ setViewID(v: string): void;
1260
+ setColor(v: string): void;
1261
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1262
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1263
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1264
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1265
+ }>, import("mobx-state-tree").ModelInstanceType<{
1266
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1267
+ }, {
1268
+ readonly json: {
1269
+ _name: EViewComponentType.Division;
1270
+ };
1271
+ }> | import("mobx-state-tree").ModelInstanceType<{
1272
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1273
+ width: import("mobx-state-tree").ISimpleType<string>;
1274
+ height: import("mobx-state-tree").ISimpleType<string>;
1275
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1276
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1277
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1278
+ }, {
1279
+ readonly json: {
1280
+ enabled: boolean;
1281
+ func_content: string;
1282
+ };
1283
+ readonly value: any;
1284
+ } & {
1285
+ setEnabled(v: boolean): void;
1286
+ setFuncContent(v: string): void;
1287
+ replace({ enabled, func_content }: {
1288
+ enabled: boolean;
1289
+ func_content: string;
1290
+ }): void;
1291
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1292
+ }, {
1293
+ readonly json: {
1294
+ _name: EViewComponentType.Modal;
1295
+ width: string;
1296
+ height: string;
1297
+ custom_modal_title: {
1298
+ enabled: boolean;
1299
+ func_content: string;
1300
+ };
1301
+ };
1302
+ } & {
1303
+ setWidth(v: string): void;
1304
+ setHeight(v: string): void;
1305
+ }> | import("mobx-state-tree").ModelInstanceType<{
1306
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1307
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1308
+ id: import("mobx-state-tree").ISimpleType<string>;
1309
+ name: import("mobx-state-tree").ISimpleType<string>;
1310
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1311
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1312
+ }, {
1313
+ readonly json: {
1314
+ id: string;
1315
+ name: string;
1316
+ color: string;
1317
+ view_id: string;
1318
+ };
1319
+ } & {
1320
+ setName(v: string): void;
1321
+ setViewID(v: string): void;
1322
+ setColor(v: string): void;
1323
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1324
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1325
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1326
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1327
+ }, {
1328
+ readonly json: {
1329
+ grow: boolean;
1330
+ tabs: {
1331
+ id: string;
1332
+ name: string;
1333
+ color: string;
1334
+ view_id: string;
1335
+ }[];
1336
+ _name: EViewComponentType.Modal;
1337
+ variant: import("@mantine/core").TabsVariant;
1338
+ orientation: import("@mantine/core").TabsOrientation;
1339
+ };
1340
+ } & {
1341
+ setVariant(v: import("@mantine/core").TabsVariant): void;
1342
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
1343
+ setGrow(v: boolean): void;
1344
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1345
+ id: import("mobx-state-tree").ISimpleType<string>;
1346
+ name: import("mobx-state-tree").ISimpleType<string>;
1347
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1348
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1349
+ }>>[]): void;
1350
+ addTab(): void;
1351
+ removeTab(index: number): void;
1352
+ }>>>) | ({
1353
+ _name: EViewComponentType.Modal;
1354
+ width: string;
1355
+ height: string;
1356
+ custom_modal_title: {
1357
+ enabled: boolean;
1358
+ func_content: string;
1359
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1360
+ readonly json: {
1361
+ enabled: boolean;
1362
+ func_content: string;
1363
+ };
1364
+ readonly value: any;
1365
+ } & {
1366
+ setEnabled(v: boolean): void;
1367
+ setFuncContent(v: string): void;
1368
+ replace({ enabled, func_content }: {
1369
+ enabled: boolean;
1370
+ func_content: string;
1371
+ }): void;
1372
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1373
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1374
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1375
+ }, {
1376
+ readonly json: {
1377
+ enabled: boolean;
1378
+ func_content: string;
1379
+ };
1380
+ readonly value: any;
1381
+ } & {
1382
+ setEnabled(v: boolean): void;
1383
+ setFuncContent(v: string): void;
1384
+ replace({ enabled, func_content }: {
1385
+ enabled: boolean;
1386
+ func_content: string;
1387
+ }): void;
1388
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
1389
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1390
+ readonly json: {
1391
+ _name: EViewComponentType.Modal;
1392
+ width: string;
1393
+ height: string;
1394
+ custom_modal_title: {
1395
+ enabled: boolean;
1396
+ func_content: string;
1397
+ };
1398
+ };
1399
+ } & {
1400
+ setWidth(v: string): void;
1401
+ setHeight(v: string): void;
1402
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1403
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1404
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1405
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1406
+ width: import("mobx-state-tree").ISimpleType<string>;
1407
+ height: import("mobx-state-tree").ISimpleType<string>;
1408
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1409
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1410
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1411
+ }, {
1412
+ readonly json: {
1413
+ enabled: boolean;
1414
+ func_content: string;
1415
+ };
1416
+ readonly value: any;
1417
+ } & {
1418
+ setEnabled(v: boolean): void;
1419
+ setFuncContent(v: string): void;
1420
+ replace({ enabled, func_content }: {
1421
+ enabled: boolean;
1422
+ func_content: string;
1423
+ }): void;
1424
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1425
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1426
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1427
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1428
+ id: import("mobx-state-tree").ISimpleType<string>;
1429
+ name: import("mobx-state-tree").ISimpleType<string>;
1430
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1431
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1432
+ }, {
1433
+ readonly json: {
1434
+ id: string;
1435
+ name: string;
1436
+ color: string;
1437
+ view_id: string;
1438
+ };
1439
+ } & {
1440
+ setName(v: string): void;
1441
+ setViewID(v: string): void;
1442
+ setColor(v: string): void;
1443
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1444
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1445
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1446
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1447
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
1448
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1449
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1450
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1451
+ width: import("mobx-state-tree").ISimpleType<string>;
1452
+ height: import("mobx-state-tree").ISimpleType<string>;
1453
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1454
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1455
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1456
+ }, {
1457
+ readonly json: {
1458
+ enabled: boolean;
1459
+ func_content: string;
1460
+ };
1461
+ readonly value: any;
1462
+ } & {
1463
+ setEnabled(v: boolean): void;
1464
+ setFuncContent(v: string): void;
1465
+ replace({ enabled, func_content }: {
1466
+ enabled: boolean;
1467
+ func_content: string;
1468
+ }): void;
1469
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1470
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1471
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1472
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1473
+ id: import("mobx-state-tree").ISimpleType<string>;
1474
+ name: import("mobx-state-tree").ISimpleType<string>;
1475
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1476
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1477
+ }, {
1478
+ readonly json: {
1479
+ id: string;
1480
+ name: string;
1481
+ color: string;
1482
+ view_id: string;
1483
+ };
1484
+ } & {
1485
+ setName(v: string): void;
1486
+ setViewID(v: string): void;
1487
+ setColor(v: string): void;
1488
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1489
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1490
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1491
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1492
+ }>, import("mobx-state-tree").ModelInstanceType<{
1493
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1494
+ }, {
1495
+ readonly json: {
1496
+ _name: EViewComponentType.Division;
1497
+ };
1498
+ }> | import("mobx-state-tree").ModelInstanceType<{
1499
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1500
+ width: import("mobx-state-tree").ISimpleType<string>;
1501
+ height: import("mobx-state-tree").ISimpleType<string>;
1502
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1503
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1504
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1505
+ }, {
1506
+ readonly json: {
1507
+ enabled: boolean;
1508
+ func_content: string;
1509
+ };
1510
+ readonly value: any;
1511
+ } & {
1512
+ setEnabled(v: boolean): void;
1513
+ setFuncContent(v: string): void;
1514
+ replace({ enabled, func_content }: {
1515
+ enabled: boolean;
1516
+ func_content: string;
1517
+ }): void;
1518
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1519
+ }, {
1520
+ readonly json: {
1521
+ _name: EViewComponentType.Modal;
1522
+ width: string;
1523
+ height: string;
1524
+ custom_modal_title: {
1525
+ enabled: boolean;
1526
+ func_content: string;
1527
+ };
1528
+ };
1529
+ } & {
1530
+ setWidth(v: string): void;
1531
+ setHeight(v: string): void;
1532
+ }> | import("mobx-state-tree").ModelInstanceType<{
1533
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1534
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1535
+ id: import("mobx-state-tree").ISimpleType<string>;
1536
+ name: import("mobx-state-tree").ISimpleType<string>;
1537
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1538
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1539
+ }, {
1540
+ readonly json: {
1541
+ id: string;
1542
+ name: string;
1543
+ color: string;
1544
+ view_id: string;
1545
+ };
1546
+ } & {
1547
+ setName(v: string): void;
1548
+ setViewID(v: string): void;
1549
+ setColor(v: string): void;
1550
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1551
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1552
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1553
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1554
+ }, {
1555
+ readonly json: {
1556
+ grow: boolean;
1557
+ tabs: {
1558
+ id: string;
1559
+ name: string;
1560
+ color: string;
1561
+ view_id: string;
1562
+ }[];
1563
+ _name: EViewComponentType.Modal;
1564
+ variant: import("@mantine/core").TabsVariant;
1565
+ orientation: import("@mantine/core").TabsOrientation;
1566
+ };
1567
+ } & {
1568
+ setVariant(v: import("@mantine/core").TabsVariant): void;
1569
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
1570
+ setGrow(v: boolean): void;
1571
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1572
+ id: import("mobx-state-tree").ISimpleType<string>;
1573
+ name: import("mobx-state-tree").ISimpleType<string>;
1574
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1575
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1576
+ }>>[]): void;
1577
+ addTab(): void;
1578
+ removeTab(index: number): void;
1579
+ }>>>) | ({
1580
+ _name: EViewComponentType.Modal;
1581
+ tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
1582
+ id: import("mobx-state-tree").ISimpleType<string>;
1583
+ name: import("mobx-state-tree").ISimpleType<string>;
1584
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1585
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1586
+ }, {
1587
+ readonly json: {
1588
+ id: string;
1589
+ name: string;
1590
+ color: string;
1591
+ view_id: string;
1592
+ };
1593
+ } & {
1594
+ setName(v: string): void;
1595
+ setViewID(v: string): void;
1596
+ setColor(v: string): void;
1597
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1598
+ id: import("mobx-state-tree").ISimpleType<string>;
1599
+ name: import("mobx-state-tree").ISimpleType<string>;
1600
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1601
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1602
+ }, {
1603
+ readonly json: {
1604
+ id: string;
1605
+ name: string;
1606
+ color: string;
1607
+ view_id: string;
1608
+ };
1609
+ } & {
1610
+ setName(v: string): void;
1611
+ setViewID(v: string): void;
1612
+ setColor(v: string): void;
1613
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
1614
+ variant: import("@mantine/core").TabsVariant;
1615
+ orientation: import("@mantine/core").TabsOrientation;
1616
+ grow: boolean;
1617
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1618
+ readonly json: {
1619
+ grow: boolean;
1620
+ tabs: {
1621
+ id: string;
1622
+ name: string;
1623
+ color: string;
1624
+ view_id: string;
1625
+ }[];
1626
+ _name: EViewComponentType.Modal;
1627
+ variant: import("@mantine/core").TabsVariant;
1628
+ orientation: import("@mantine/core").TabsOrientation;
1629
+ };
1630
+ } & {
1631
+ setVariant(v: import("@mantine/core").TabsVariant): void;
1632
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
1633
+ setGrow(v: boolean): void;
1634
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1635
+ id: import("mobx-state-tree").ISimpleType<string>;
1636
+ name: import("mobx-state-tree").ISimpleType<string>;
1637
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1638
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1639
+ }>>[]): void;
1640
+ addTab(): void;
1641
+ removeTab(index: number): void;
1642
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1643
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1644
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1645
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1646
+ width: import("mobx-state-tree").ISimpleType<string>;
1647
+ height: import("mobx-state-tree").ISimpleType<string>;
1648
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1649
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1650
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1651
+ }, {
1652
+ readonly json: {
1653
+ enabled: boolean;
1654
+ func_content: string;
1655
+ };
1656
+ readonly value: any;
1657
+ } & {
1658
+ setEnabled(v: boolean): void;
1659
+ setFuncContent(v: string): void;
1660
+ replace({ enabled, func_content }: {
1661
+ enabled: boolean;
1662
+ func_content: string;
1663
+ }): void;
1664
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1665
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1666
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1667
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1668
+ id: import("mobx-state-tree").ISimpleType<string>;
1669
+ name: import("mobx-state-tree").ISimpleType<string>;
1670
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1671
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1672
+ }, {
1673
+ readonly json: {
1674
+ id: string;
1675
+ name: string;
1676
+ color: string;
1677
+ view_id: string;
1678
+ };
1679
+ } & {
1680
+ setName(v: string): void;
1681
+ setViewID(v: string): void;
1682
+ setColor(v: string): void;
1683
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1684
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1685
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1686
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1687
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
1688
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1689
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1690
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1691
+ width: import("mobx-state-tree").ISimpleType<string>;
1692
+ height: import("mobx-state-tree").ISimpleType<string>;
1693
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1694
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1695
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1696
+ }, {
1697
+ readonly json: {
1698
+ enabled: boolean;
1699
+ func_content: string;
1700
+ };
1701
+ readonly value: any;
1702
+ } & {
1703
+ setEnabled(v: boolean): void;
1704
+ setFuncContent(v: string): void;
1705
+ replace({ enabled, func_content }: {
1706
+ enabled: boolean;
1707
+ func_content: string;
1708
+ }): void;
1709
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1710
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1711
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1712
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1713
+ id: import("mobx-state-tree").ISimpleType<string>;
1714
+ name: import("mobx-state-tree").ISimpleType<string>;
1715
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1716
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1717
+ }, {
1718
+ readonly json: {
1719
+ id: string;
1720
+ name: string;
1721
+ color: string;
1722
+ view_id: string;
1723
+ };
1724
+ } & {
1725
+ setName(v: string): void;
1726
+ setViewID(v: string): void;
1727
+ setColor(v: string): void;
1728
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1729
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1730
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1731
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1732
+ }>, import("mobx-state-tree").ModelInstanceType<{
1733
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1734
+ }, {
1735
+ readonly json: {
1736
+ _name: EViewComponentType.Division;
1737
+ };
1738
+ }> | import("mobx-state-tree").ModelInstanceType<{
1739
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1740
+ width: import("mobx-state-tree").ISimpleType<string>;
1741
+ height: import("mobx-state-tree").ISimpleType<string>;
1742
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1743
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1744
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1745
+ }, {
1746
+ readonly json: {
1747
+ enabled: boolean;
1748
+ func_content: string;
1749
+ };
1750
+ readonly value: any;
1751
+ } & {
1752
+ setEnabled(v: boolean): void;
1753
+ setFuncContent(v: string): void;
1754
+ replace({ enabled, func_content }: {
1755
+ enabled: boolean;
1756
+ func_content: string;
1757
+ }): void;
1758
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1759
+ }, {
1760
+ readonly json: {
1761
+ _name: EViewComponentType.Modal;
1762
+ width: string;
1763
+ height: string;
1764
+ custom_modal_title: {
1765
+ enabled: boolean;
1766
+ func_content: string;
1767
+ };
1768
+ };
1769
+ } & {
1770
+ setWidth(v: string): void;
1771
+ setHeight(v: string): void;
1772
+ }> | import("mobx-state-tree").ModelInstanceType<{
1773
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1774
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1775
+ id: import("mobx-state-tree").ISimpleType<string>;
1776
+ name: import("mobx-state-tree").ISimpleType<string>;
1777
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1778
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1779
+ }, {
1780
+ readonly json: {
1781
+ id: string;
1782
+ name: string;
1783
+ color: string;
1784
+ view_id: string;
1785
+ };
1786
+ } & {
1787
+ setName(v: string): void;
1788
+ setViewID(v: string): void;
1789
+ setColor(v: string): void;
1790
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1791
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1792
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1793
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1794
+ }, {
1795
+ readonly json: {
1796
+ grow: boolean;
1797
+ tabs: {
1798
+ id: string;
1799
+ name: string;
1800
+ color: string;
1801
+ view_id: string;
1802
+ }[];
1803
+ _name: EViewComponentType.Modal;
1804
+ variant: import("@mantine/core").TabsVariant;
1805
+ orientation: import("@mantine/core").TabsOrientation;
1806
+ };
1807
+ } & {
1808
+ setVariant(v: import("@mantine/core").TabsVariant): void;
1809
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
1810
+ setGrow(v: boolean): void;
1811
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1812
+ id: import("mobx-state-tree").ISimpleType<string>;
1813
+ name: import("mobx-state-tree").ISimpleType<string>;
1814
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1815
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1816
+ }>>[]): void;
1817
+ addTab(): void;
1818
+ removeTab(index: number): void;
1819
+ }>>>);
1820
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
1821
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1822
+ readonly json: {
1823
+ id: string;
1824
+ name: string;
1825
+ type: EViewComponentType;
1826
+ config: {
1827
+ _name: EViewComponentType.Division;
1828
+ } | {
1829
+ _name: EViewComponentType.Modal;
1830
+ width: string;
1831
+ height: string;
1832
+ custom_modal_title: {
1833
+ enabled: boolean;
1834
+ func_content: string;
1835
+ };
1836
+ } | {
1837
+ grow: boolean;
1838
+ tabs: {
1839
+ id: string;
1840
+ name: string;
1841
+ color: string;
1842
+ view_id: string;
1843
+ }[];
1844
+ _name: EViewComponentType.Modal;
1845
+ variant: import("@mantine/core").TabsVariant;
1846
+ orientation: import("@mantine/core").TabsOrientation;
1847
+ };
1848
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
1849
+ };
1850
+ } & {
1851
+ setName(name: string): void;
1852
+ setType(type: EViewComponentType): void;
1853
+ appendPanelID(id: string): void;
1854
+ removePanelID(id: string): void;
1855
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
1856
+ id: import("mobx-state-tree").ISimpleType<string>;
1857
+ name: import("mobx-state-tree").ISimpleType<string>;
1858
+ type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
1859
+ config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1860
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1861
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1862
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1863
+ width: import("mobx-state-tree").ISimpleType<string>;
1864
+ height: import("mobx-state-tree").ISimpleType<string>;
1865
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1866
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1867
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1868
+ }, {
1869
+ readonly json: {
1870
+ enabled: boolean;
1871
+ func_content: string;
1872
+ };
1873
+ readonly value: any;
1874
+ } & {
1875
+ setEnabled(v: boolean): void;
1876
+ setFuncContent(v: string): void;
1877
+ replace({ enabled, func_content }: {
1878
+ enabled: boolean;
1879
+ func_content: string;
1880
+ }): void;
1881
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1882
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1883
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1884
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1885
+ id: import("mobx-state-tree").ISimpleType<string>;
1886
+ name: import("mobx-state-tree").ISimpleType<string>;
1887
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1888
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1889
+ }, {
1890
+ readonly json: {
1891
+ id: string;
1892
+ name: string;
1893
+ color: string;
1894
+ view_id: string;
1895
+ };
1896
+ } & {
1897
+ setName(v: string): void;
1898
+ setViewID(v: string): void;
1899
+ setColor(v: string): void;
1900
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1901
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1902
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1903
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1904
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
1905
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1906
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1907
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1908
+ width: import("mobx-state-tree").ISimpleType<string>;
1909
+ height: import("mobx-state-tree").ISimpleType<string>;
1910
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1911
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1912
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1913
+ }, {
1914
+ readonly json: {
1915
+ enabled: boolean;
1916
+ func_content: string;
1917
+ };
1918
+ readonly value: any;
1919
+ } & {
1920
+ setEnabled(v: boolean): void;
1921
+ setFuncContent(v: string): void;
1922
+ replace({ enabled, func_content }: {
1923
+ enabled: boolean;
1924
+ func_content: string;
1925
+ }): void;
1926
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1927
+ }> | import("mobx-state-tree").ModelSnapshotType<{
1928
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1929
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1930
+ id: import("mobx-state-tree").ISimpleType<string>;
1931
+ name: import("mobx-state-tree").ISimpleType<string>;
1932
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1933
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1934
+ }, {
1935
+ readonly json: {
1936
+ id: string;
1937
+ name: string;
1938
+ color: string;
1939
+ view_id: string;
1940
+ };
1941
+ } & {
1942
+ setName(v: string): void;
1943
+ setViewID(v: string): void;
1944
+ setColor(v: string): void;
1945
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
1946
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
1947
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
1948
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1949
+ }>, import("mobx-state-tree").ModelInstanceType<{
1950
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1951
+ }, {
1952
+ readonly json: {
1953
+ _name: EViewComponentType.Division;
1954
+ };
1955
+ }> | import("mobx-state-tree").ModelInstanceType<{
1956
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1957
+ width: import("mobx-state-tree").ISimpleType<string>;
1958
+ height: import("mobx-state-tree").ISimpleType<string>;
1959
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
1960
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1961
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1962
+ }, {
1963
+ readonly json: {
1964
+ enabled: boolean;
1965
+ func_content: string;
1966
+ };
1967
+ readonly value: any;
1968
+ } & {
1969
+ setEnabled(v: boolean): void;
1970
+ setFuncContent(v: string): void;
1971
+ replace({ enabled, func_content }: {
1972
+ enabled: boolean;
1973
+ func_content: string;
1974
+ }): void;
1975
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
1976
+ }, {
1977
+ readonly json: {
1978
+ _name: EViewComponentType.Modal;
1979
+ width: string;
1980
+ height: string;
1981
+ custom_modal_title: {
1982
+ enabled: boolean;
1983
+ func_content: string;
1984
+ };
1985
+ };
1986
+ } & {
1987
+ setWidth(v: string): void;
1988
+ setHeight(v: string): void;
1989
+ }> | import("mobx-state-tree").ModelInstanceType<{
1990
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1991
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
1992
+ id: import("mobx-state-tree").ISimpleType<string>;
1993
+ name: import("mobx-state-tree").ISimpleType<string>;
1994
+ view_id: import("mobx-state-tree").ISimpleType<string>;
1995
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
1996
+ }, {
1997
+ readonly json: {
1998
+ id: string;
1999
+ name: string;
2000
+ color: string;
2001
+ view_id: string;
2002
+ };
2003
+ } & {
2004
+ setName(v: string): void;
2005
+ setViewID(v: string): void;
2006
+ setColor(v: string): void;
2007
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2008
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2009
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2010
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2011
+ }, {
2012
+ readonly json: {
2013
+ grow: boolean;
2014
+ tabs: {
2015
+ id: string;
2016
+ name: string;
2017
+ color: string;
2018
+ view_id: string;
2019
+ }[];
2020
+ _name: EViewComponentType.Modal;
2021
+ variant: import("@mantine/core").TabsVariant;
2022
+ orientation: import("@mantine/core").TabsOrientation;
2023
+ };
2024
+ } & {
2025
+ setVariant(v: import("@mantine/core").TabsVariant): void;
2026
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
2027
+ setGrow(v: boolean): void;
2028
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2029
+ id: import("mobx-state-tree").ISimpleType<string>;
2030
+ name: import("mobx-state-tree").ISimpleType<string>;
2031
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2032
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2033
+ }>>[]): void;
2034
+ addTab(): void;
2035
+ removeTab(index: number): void;
2036
+ }>>;
2037
+ panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
2038
+ }, {
2039
+ readonly json: {
2040
+ id: string;
2041
+ name: string;
2042
+ type: EViewComponentType;
2043
+ config: {
2044
+ _name: EViewComponentType.Division;
2045
+ } | {
2046
+ _name: EViewComponentType.Modal;
2047
+ width: string;
2048
+ height: string;
2049
+ custom_modal_title: {
2050
+ enabled: boolean;
2051
+ func_content: string;
2052
+ };
2053
+ } | {
2054
+ grow: boolean;
2055
+ tabs: {
2056
+ id: string;
2057
+ name: string;
2058
+ color: string;
2059
+ view_id: string;
2060
+ }[];
2061
+ _name: EViewComponentType.Modal;
2062
+ variant: import("@mantine/core").TabsVariant;
2063
+ orientation: import("@mantine/core").TabsOrientation;
2064
+ };
2065
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
2066
+ };
2067
+ } & {
2068
+ setName(name: string): void;
2069
+ setType(type: EViewComponentType): void;
2070
+ appendPanelID(id: string): void;
2071
+ removePanelID(id: string): void;
2072
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
2073
+ readonly visibleViews: ({
2074
+ id: string;
2075
+ name: string;
2076
+ type: EViewComponentType;
2077
+ config: ({
2078
+ _name: EViewComponentType.Division;
2079
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2080
+ readonly json: {
2081
+ _name: EViewComponentType.Division;
2082
+ };
2083
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2084
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2085
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2086
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2087
+ width: import("mobx-state-tree").ISimpleType<string>;
2088
+ height: import("mobx-state-tree").ISimpleType<string>;
2089
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2090
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2091
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2092
+ }, {
2093
+ readonly json: {
2094
+ enabled: boolean;
2095
+ func_content: string;
2096
+ };
2097
+ readonly value: any;
2098
+ } & {
2099
+ setEnabled(v: boolean): void;
2100
+ setFuncContent(v: string): void;
2101
+ replace({ enabled, func_content }: {
2102
+ enabled: boolean;
2103
+ func_content: string;
2104
+ }): void;
2105
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2106
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2107
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2108
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2109
+ id: import("mobx-state-tree").ISimpleType<string>;
2110
+ name: import("mobx-state-tree").ISimpleType<string>;
2111
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2112
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2113
+ }, {
2114
+ readonly json: {
2115
+ id: string;
2116
+ name: string;
2117
+ color: string;
2118
+ view_id: string;
2119
+ };
2120
+ } & {
2121
+ setName(v: string): void;
2122
+ setViewID(v: string): void;
2123
+ setColor(v: string): void;
2124
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2125
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2126
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2127
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2128
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
2129
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2130
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2131
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2132
+ width: import("mobx-state-tree").ISimpleType<string>;
2133
+ height: import("mobx-state-tree").ISimpleType<string>;
2134
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2135
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2136
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2137
+ }, {
2138
+ readonly json: {
2139
+ enabled: boolean;
2140
+ func_content: string;
2141
+ };
2142
+ readonly value: any;
2143
+ } & {
2144
+ setEnabled(v: boolean): void;
2145
+ setFuncContent(v: string): void;
2146
+ replace({ enabled, func_content }: {
2147
+ enabled: boolean;
2148
+ func_content: string;
2149
+ }): void;
2150
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2151
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2152
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2153
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2154
+ id: import("mobx-state-tree").ISimpleType<string>;
2155
+ name: import("mobx-state-tree").ISimpleType<string>;
2156
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2157
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2158
+ }, {
2159
+ readonly json: {
2160
+ id: string;
2161
+ name: string;
2162
+ color: string;
2163
+ view_id: string;
2164
+ };
2165
+ } & {
2166
+ setName(v: string): void;
2167
+ setViewID(v: string): void;
2168
+ setColor(v: string): void;
2169
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2170
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2171
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2172
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2173
+ }>, import("mobx-state-tree").ModelInstanceType<{
2174
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2175
+ }, {
2176
+ readonly json: {
2177
+ _name: EViewComponentType.Division;
2178
+ };
2179
+ }> | import("mobx-state-tree").ModelInstanceType<{
2180
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2181
+ width: import("mobx-state-tree").ISimpleType<string>;
2182
+ height: import("mobx-state-tree").ISimpleType<string>;
2183
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2184
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2185
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2186
+ }, {
2187
+ readonly json: {
2188
+ enabled: boolean;
2189
+ func_content: string;
2190
+ };
2191
+ readonly value: any;
2192
+ } & {
2193
+ setEnabled(v: boolean): void;
2194
+ setFuncContent(v: string): void;
2195
+ replace({ enabled, func_content }: {
2196
+ enabled: boolean;
2197
+ func_content: string;
2198
+ }): void;
2199
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2200
+ }, {
2201
+ readonly json: {
2202
+ _name: EViewComponentType.Modal;
2203
+ width: string;
2204
+ height: string;
2205
+ custom_modal_title: {
2206
+ enabled: boolean;
2207
+ func_content: string;
2208
+ };
2209
+ };
2210
+ } & {
2211
+ setWidth(v: string): void;
2212
+ setHeight(v: string): void;
2213
+ }> | import("mobx-state-tree").ModelInstanceType<{
2214
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2215
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2216
+ id: import("mobx-state-tree").ISimpleType<string>;
2217
+ name: import("mobx-state-tree").ISimpleType<string>;
2218
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2219
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2220
+ }, {
2221
+ readonly json: {
2222
+ id: string;
2223
+ name: string;
2224
+ color: string;
2225
+ view_id: string;
2226
+ };
2227
+ } & {
2228
+ setName(v: string): void;
2229
+ setViewID(v: string): void;
2230
+ setColor(v: string): void;
2231
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2232
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2233
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2234
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2235
+ }, {
2236
+ readonly json: {
2237
+ grow: boolean;
2238
+ tabs: {
2239
+ id: string;
2240
+ name: string;
2241
+ color: string;
2242
+ view_id: string;
2243
+ }[];
2244
+ _name: EViewComponentType.Modal;
2245
+ variant: import("@mantine/core").TabsVariant;
2246
+ orientation: import("@mantine/core").TabsOrientation;
2247
+ };
2248
+ } & {
2249
+ setVariant(v: import("@mantine/core").TabsVariant): void;
2250
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
2251
+ setGrow(v: boolean): void;
2252
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2253
+ id: import("mobx-state-tree").ISimpleType<string>;
2254
+ name: import("mobx-state-tree").ISimpleType<string>;
2255
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2256
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2257
+ }>>[]): void;
2258
+ addTab(): void;
2259
+ removeTab(index: number): void;
2260
+ }>>>) | ({
2261
+ _name: EViewComponentType.Modal;
2262
+ width: string;
2263
+ height: string;
2264
+ custom_modal_title: {
2265
+ enabled: boolean;
2266
+ func_content: string;
2267
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2268
+ readonly json: {
2269
+ enabled: boolean;
2270
+ func_content: string;
2271
+ };
2272
+ readonly value: any;
2273
+ } & {
2274
+ setEnabled(v: boolean): void;
2275
+ setFuncContent(v: string): void;
2276
+ replace({ enabled, func_content }: {
2277
+ enabled: boolean;
2278
+ func_content: string;
2279
+ }): void;
2280
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2281
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2282
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2283
+ }, {
2284
+ readonly json: {
2285
+ enabled: boolean;
2286
+ func_content: string;
2287
+ };
2288
+ readonly value: any;
2289
+ } & {
2290
+ setEnabled(v: boolean): void;
2291
+ setFuncContent(v: string): void;
2292
+ replace({ enabled, func_content }: {
2293
+ enabled: boolean;
2294
+ func_content: string;
2295
+ }): void;
2296
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
2297
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2298
+ readonly json: {
2299
+ _name: EViewComponentType.Modal;
2300
+ width: string;
2301
+ height: string;
2302
+ custom_modal_title: {
2303
+ enabled: boolean;
2304
+ func_content: string;
2305
+ };
2306
+ };
2307
+ } & {
2308
+ setWidth(v: string): void;
2309
+ setHeight(v: string): void;
2310
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2311
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2312
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2313
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2314
+ width: import("mobx-state-tree").ISimpleType<string>;
2315
+ height: import("mobx-state-tree").ISimpleType<string>;
2316
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2317
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2318
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2319
+ }, {
2320
+ readonly json: {
2321
+ enabled: boolean;
2322
+ func_content: string;
2323
+ };
2324
+ readonly value: any;
2325
+ } & {
2326
+ setEnabled(v: boolean): void;
2327
+ setFuncContent(v: string): void;
2328
+ replace({ enabled, func_content }: {
2329
+ enabled: boolean;
2330
+ func_content: string;
2331
+ }): void;
2332
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2333
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2334
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2335
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2336
+ id: import("mobx-state-tree").ISimpleType<string>;
2337
+ name: import("mobx-state-tree").ISimpleType<string>;
2338
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2339
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2340
+ }, {
2341
+ readonly json: {
2342
+ id: string;
2343
+ name: string;
2344
+ color: string;
2345
+ view_id: string;
2346
+ };
2347
+ } & {
2348
+ setName(v: string): void;
2349
+ setViewID(v: string): void;
2350
+ setColor(v: string): void;
2351
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2352
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2353
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2354
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2355
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
2356
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2357
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2358
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2359
+ width: import("mobx-state-tree").ISimpleType<string>;
2360
+ height: import("mobx-state-tree").ISimpleType<string>;
2361
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2362
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2363
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2364
+ }, {
2365
+ readonly json: {
2366
+ enabled: boolean;
2367
+ func_content: string;
2368
+ };
2369
+ readonly value: any;
2370
+ } & {
2371
+ setEnabled(v: boolean): void;
2372
+ setFuncContent(v: string): void;
2373
+ replace({ enabled, func_content }: {
2374
+ enabled: boolean;
2375
+ func_content: string;
2376
+ }): void;
2377
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2378
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2379
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2380
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2381
+ id: import("mobx-state-tree").ISimpleType<string>;
2382
+ name: import("mobx-state-tree").ISimpleType<string>;
2383
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2384
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2385
+ }, {
2386
+ readonly json: {
2387
+ id: string;
2388
+ name: string;
2389
+ color: string;
2390
+ view_id: string;
2391
+ };
2392
+ } & {
2393
+ setName(v: string): void;
2394
+ setViewID(v: string): void;
2395
+ setColor(v: string): void;
2396
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2397
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2398
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2399
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2400
+ }>, import("mobx-state-tree").ModelInstanceType<{
2401
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2402
+ }, {
2403
+ readonly json: {
2404
+ _name: EViewComponentType.Division;
2405
+ };
2406
+ }> | import("mobx-state-tree").ModelInstanceType<{
2407
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2408
+ width: import("mobx-state-tree").ISimpleType<string>;
2409
+ height: import("mobx-state-tree").ISimpleType<string>;
2410
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2411
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2412
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2413
+ }, {
2414
+ readonly json: {
2415
+ enabled: boolean;
2416
+ func_content: string;
2417
+ };
2418
+ readonly value: any;
2419
+ } & {
2420
+ setEnabled(v: boolean): void;
2421
+ setFuncContent(v: string): void;
2422
+ replace({ enabled, func_content }: {
2423
+ enabled: boolean;
2424
+ func_content: string;
2425
+ }): void;
2426
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2427
+ }, {
2428
+ readonly json: {
2429
+ _name: EViewComponentType.Modal;
2430
+ width: string;
2431
+ height: string;
2432
+ custom_modal_title: {
2433
+ enabled: boolean;
2434
+ func_content: string;
2435
+ };
2436
+ };
2437
+ } & {
2438
+ setWidth(v: string): void;
2439
+ setHeight(v: string): void;
2440
+ }> | import("mobx-state-tree").ModelInstanceType<{
2441
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2442
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2443
+ id: import("mobx-state-tree").ISimpleType<string>;
2444
+ name: import("mobx-state-tree").ISimpleType<string>;
2445
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2446
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2447
+ }, {
2448
+ readonly json: {
2449
+ id: string;
2450
+ name: string;
2451
+ color: string;
2452
+ view_id: string;
2453
+ };
2454
+ } & {
2455
+ setName(v: string): void;
2456
+ setViewID(v: string): void;
2457
+ setColor(v: string): void;
2458
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2459
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2460
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2461
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2462
+ }, {
2463
+ readonly json: {
2464
+ grow: boolean;
2465
+ tabs: {
2466
+ id: string;
2467
+ name: string;
2468
+ color: string;
2469
+ view_id: string;
2470
+ }[];
2471
+ _name: EViewComponentType.Modal;
2472
+ variant: import("@mantine/core").TabsVariant;
2473
+ orientation: import("@mantine/core").TabsOrientation;
2474
+ };
2475
+ } & {
2476
+ setVariant(v: import("@mantine/core").TabsVariant): void;
2477
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
2478
+ setGrow(v: boolean): void;
2479
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2480
+ id: import("mobx-state-tree").ISimpleType<string>;
2481
+ name: import("mobx-state-tree").ISimpleType<string>;
2482
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2483
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2484
+ }>>[]): void;
2485
+ addTab(): void;
2486
+ removeTab(index: number): void;
2487
+ }>>>) | ({
2488
+ _name: EViewComponentType.Modal;
2489
+ tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
2490
+ id: import("mobx-state-tree").ISimpleType<string>;
2491
+ name: import("mobx-state-tree").ISimpleType<string>;
2492
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2493
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2494
+ }, {
2495
+ readonly json: {
2496
+ id: string;
2497
+ name: string;
2498
+ color: string;
2499
+ view_id: string;
2500
+ };
2501
+ } & {
2502
+ setName(v: string): void;
2503
+ setViewID(v: string): void;
2504
+ setColor(v: string): void;
2505
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2506
+ id: import("mobx-state-tree").ISimpleType<string>;
2507
+ name: import("mobx-state-tree").ISimpleType<string>;
2508
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2509
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2510
+ }, {
2511
+ readonly json: {
2512
+ id: string;
2513
+ name: string;
2514
+ color: string;
2515
+ view_id: string;
2516
+ };
2517
+ } & {
2518
+ setName(v: string): void;
2519
+ setViewID(v: string): void;
2520
+ setColor(v: string): void;
2521
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
2522
+ variant: import("@mantine/core").TabsVariant;
2523
+ orientation: import("@mantine/core").TabsOrientation;
2524
+ grow: boolean;
2525
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2526
+ readonly json: {
2527
+ grow: boolean;
2528
+ tabs: {
2529
+ id: string;
2530
+ name: string;
2531
+ color: string;
2532
+ view_id: string;
2533
+ }[];
2534
+ _name: EViewComponentType.Modal;
2535
+ variant: import("@mantine/core").TabsVariant;
2536
+ orientation: import("@mantine/core").TabsOrientation;
2537
+ };
2538
+ } & {
2539
+ setVariant(v: import("@mantine/core").TabsVariant): void;
2540
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
2541
+ setGrow(v: boolean): void;
2542
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2543
+ id: import("mobx-state-tree").ISimpleType<string>;
2544
+ name: import("mobx-state-tree").ISimpleType<string>;
2545
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2546
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2547
+ }>>[]): void;
2548
+ addTab(): void;
2549
+ removeTab(index: number): void;
2550
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2551
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2552
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2553
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2554
+ width: import("mobx-state-tree").ISimpleType<string>;
2555
+ height: import("mobx-state-tree").ISimpleType<string>;
2556
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2557
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2558
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2559
+ }, {
2560
+ readonly json: {
2561
+ enabled: boolean;
2562
+ func_content: string;
2563
+ };
2564
+ readonly value: any;
2565
+ } & {
2566
+ setEnabled(v: boolean): void;
2567
+ setFuncContent(v: string): void;
2568
+ replace({ enabled, func_content }: {
2569
+ enabled: boolean;
2570
+ func_content: string;
2571
+ }): void;
2572
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2573
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2574
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2575
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2576
+ id: import("mobx-state-tree").ISimpleType<string>;
2577
+ name: import("mobx-state-tree").ISimpleType<string>;
2578
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2579
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2580
+ }, {
2581
+ readonly json: {
2582
+ id: string;
2583
+ name: string;
2584
+ color: string;
2585
+ view_id: string;
2586
+ };
2587
+ } & {
2588
+ setName(v: string): void;
2589
+ setViewID(v: string): void;
2590
+ setColor(v: string): void;
2591
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2592
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2593
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2594
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2595
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
2596
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2597
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2598
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2599
+ width: import("mobx-state-tree").ISimpleType<string>;
2600
+ height: import("mobx-state-tree").ISimpleType<string>;
2601
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2602
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2603
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2604
+ }, {
2605
+ readonly json: {
2606
+ enabled: boolean;
2607
+ func_content: string;
2608
+ };
2609
+ readonly value: any;
2610
+ } & {
2611
+ setEnabled(v: boolean): void;
2612
+ setFuncContent(v: string): void;
2613
+ replace({ enabled, func_content }: {
2614
+ enabled: boolean;
2615
+ func_content: string;
2616
+ }): void;
2617
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2618
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2619
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2620
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2621
+ id: import("mobx-state-tree").ISimpleType<string>;
2622
+ name: import("mobx-state-tree").ISimpleType<string>;
2623
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2624
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2625
+ }, {
2626
+ readonly json: {
2627
+ id: string;
2628
+ name: string;
2629
+ color: string;
2630
+ view_id: string;
2631
+ };
2632
+ } & {
2633
+ setName(v: string): void;
2634
+ setViewID(v: string): void;
2635
+ setColor(v: string): void;
2636
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2637
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2638
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2639
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2640
+ }>, import("mobx-state-tree").ModelInstanceType<{
2641
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2642
+ }, {
2643
+ readonly json: {
2644
+ _name: EViewComponentType.Division;
2645
+ };
2646
+ }> | import("mobx-state-tree").ModelInstanceType<{
2647
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2648
+ width: import("mobx-state-tree").ISimpleType<string>;
2649
+ height: import("mobx-state-tree").ISimpleType<string>;
2650
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2651
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2652
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2653
+ }, {
2654
+ readonly json: {
2655
+ enabled: boolean;
2656
+ func_content: string;
2657
+ };
2658
+ readonly value: any;
2659
+ } & {
2660
+ setEnabled(v: boolean): void;
2661
+ setFuncContent(v: string): void;
2662
+ replace({ enabled, func_content }: {
2663
+ enabled: boolean;
2664
+ func_content: string;
2665
+ }): void;
2666
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2667
+ }, {
2668
+ readonly json: {
2669
+ _name: EViewComponentType.Modal;
2670
+ width: string;
2671
+ height: string;
2672
+ custom_modal_title: {
2673
+ enabled: boolean;
2674
+ func_content: string;
2675
+ };
2676
+ };
2677
+ } & {
2678
+ setWidth(v: string): void;
2679
+ setHeight(v: string): void;
2680
+ }> | import("mobx-state-tree").ModelInstanceType<{
2681
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2682
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2683
+ id: import("mobx-state-tree").ISimpleType<string>;
2684
+ name: import("mobx-state-tree").ISimpleType<string>;
2685
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2686
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2687
+ }, {
2688
+ readonly json: {
2689
+ id: string;
2690
+ name: string;
2691
+ color: string;
2692
+ view_id: string;
2693
+ };
2694
+ } & {
2695
+ setName(v: string): void;
2696
+ setViewID(v: string): void;
2697
+ setColor(v: string): void;
2698
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2699
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2700
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2701
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2702
+ }, {
2703
+ readonly json: {
2704
+ grow: boolean;
2705
+ tabs: {
2706
+ id: string;
2707
+ name: string;
2708
+ color: string;
2709
+ view_id: string;
2710
+ }[];
2711
+ _name: EViewComponentType.Modal;
2712
+ variant: import("@mantine/core").TabsVariant;
2713
+ orientation: import("@mantine/core").TabsOrientation;
2714
+ };
2715
+ } & {
2716
+ setVariant(v: import("@mantine/core").TabsVariant): void;
2717
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
2718
+ setGrow(v: boolean): void;
2719
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2720
+ id: import("mobx-state-tree").ISimpleType<string>;
2721
+ name: import("mobx-state-tree").ISimpleType<string>;
2722
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2723
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2724
+ }>>[]): void;
2725
+ addTab(): void;
2726
+ removeTab(index: number): void;
2727
+ }>>>);
2728
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
2729
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2730
+ readonly json: {
2731
+ id: string;
2732
+ name: string;
2733
+ type: EViewComponentType;
2734
+ config: {
2735
+ _name: EViewComponentType.Division;
2736
+ } | {
2737
+ _name: EViewComponentType.Modal;
2738
+ width: string;
2739
+ height: string;
2740
+ custom_modal_title: {
2741
+ enabled: boolean;
2742
+ func_content: string;
2743
+ };
2744
+ } | {
2745
+ grow: boolean;
2746
+ tabs: {
2747
+ id: string;
2748
+ name: string;
2749
+ color: string;
2750
+ view_id: string;
2751
+ }[];
2752
+ _name: EViewComponentType.Modal;
2753
+ variant: import("@mantine/core").TabsVariant;
2754
+ orientation: import("@mantine/core").TabsOrientation;
2755
+ };
2756
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
2757
+ };
2758
+ } & {
2759
+ setName(name: string): void;
2760
+ setType(type: EViewComponentType): void;
2761
+ appendPanelID(id: string): void;
2762
+ removePanelID(id: string): void;
2763
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
2764
+ id: import("mobx-state-tree").ISimpleType<string>;
2765
+ name: import("mobx-state-tree").ISimpleType<string>;
2766
+ type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
2767
+ config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2768
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2769
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2770
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2771
+ width: import("mobx-state-tree").ISimpleType<string>;
2772
+ height: import("mobx-state-tree").ISimpleType<string>;
2773
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2774
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2775
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2776
+ }, {
2777
+ readonly json: {
2778
+ enabled: boolean;
2779
+ func_content: string;
2780
+ };
2781
+ readonly value: any;
2782
+ } & {
2783
+ setEnabled(v: boolean): void;
2784
+ setFuncContent(v: string): void;
2785
+ replace({ enabled, func_content }: {
2786
+ enabled: boolean;
2787
+ func_content: string;
2788
+ }): void;
2789
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2790
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2791
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2792
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2793
+ id: import("mobx-state-tree").ISimpleType<string>;
2794
+ name: import("mobx-state-tree").ISimpleType<string>;
2795
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2796
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2797
+ }, {
2798
+ readonly json: {
2799
+ id: string;
2800
+ name: string;
2801
+ color: string;
2802
+ view_id: string;
2803
+ };
2804
+ } & {
2805
+ setName(v: string): void;
2806
+ setViewID(v: string): void;
2807
+ setColor(v: string): void;
2808
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2809
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2810
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2811
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2812
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
2813
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2814
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2815
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2816
+ width: import("mobx-state-tree").ISimpleType<string>;
2817
+ height: import("mobx-state-tree").ISimpleType<string>;
2818
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2819
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2820
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2821
+ }, {
2822
+ readonly json: {
2823
+ enabled: boolean;
2824
+ func_content: string;
2825
+ };
2826
+ readonly value: any;
2827
+ } & {
2828
+ setEnabled(v: boolean): void;
2829
+ setFuncContent(v: string): void;
2830
+ replace({ enabled, func_content }: {
2831
+ enabled: boolean;
2832
+ func_content: string;
2833
+ }): void;
2834
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2835
+ }> | import("mobx-state-tree").ModelSnapshotType<{
2836
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2837
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2838
+ id: import("mobx-state-tree").ISimpleType<string>;
2839
+ name: import("mobx-state-tree").ISimpleType<string>;
2840
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2841
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2842
+ }, {
2843
+ readonly json: {
2844
+ id: string;
2845
+ name: string;
2846
+ color: string;
2847
+ view_id: string;
2848
+ };
2849
+ } & {
2850
+ setName(v: string): void;
2851
+ setViewID(v: string): void;
2852
+ setColor(v: string): void;
2853
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2854
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2855
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2856
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2857
+ }>, import("mobx-state-tree").ModelInstanceType<{
2858
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2859
+ }, {
2860
+ readonly json: {
2861
+ _name: EViewComponentType.Division;
2862
+ };
2863
+ }> | import("mobx-state-tree").ModelInstanceType<{
2864
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2865
+ width: import("mobx-state-tree").ISimpleType<string>;
2866
+ height: import("mobx-state-tree").ISimpleType<string>;
2867
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2868
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2869
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2870
+ }, {
2871
+ readonly json: {
2872
+ enabled: boolean;
2873
+ func_content: string;
2874
+ };
2875
+ readonly value: any;
2876
+ } & {
2877
+ setEnabled(v: boolean): void;
2878
+ setFuncContent(v: string): void;
2879
+ replace({ enabled, func_content }: {
2880
+ enabled: boolean;
2881
+ func_content: string;
2882
+ }): void;
2883
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
2884
+ }, {
2885
+ readonly json: {
2886
+ _name: EViewComponentType.Modal;
2887
+ width: string;
2888
+ height: string;
2889
+ custom_modal_title: {
2890
+ enabled: boolean;
2891
+ func_content: string;
2892
+ };
2893
+ };
2894
+ } & {
2895
+ setWidth(v: string): void;
2896
+ setHeight(v: string): void;
2897
+ }> | import("mobx-state-tree").ModelInstanceType<{
2898
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2899
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
2900
+ id: import("mobx-state-tree").ISimpleType<string>;
2901
+ name: import("mobx-state-tree").ISimpleType<string>;
2902
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2903
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2904
+ }, {
2905
+ readonly json: {
2906
+ id: string;
2907
+ name: string;
2908
+ color: string;
2909
+ view_id: string;
2910
+ };
2911
+ } & {
2912
+ setName(v: string): void;
2913
+ setViewID(v: string): void;
2914
+ setColor(v: string): void;
2915
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
2916
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
2917
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
2918
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2919
+ }, {
2920
+ readonly json: {
2921
+ grow: boolean;
2922
+ tabs: {
2923
+ id: string;
2924
+ name: string;
2925
+ color: string;
2926
+ view_id: string;
2927
+ }[];
2928
+ _name: EViewComponentType.Modal;
2929
+ variant: import("@mantine/core").TabsVariant;
2930
+ orientation: import("@mantine/core").TabsOrientation;
2931
+ };
2932
+ } & {
2933
+ setVariant(v: import("@mantine/core").TabsVariant): void;
2934
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
2935
+ setGrow(v: boolean): void;
2936
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2937
+ id: import("mobx-state-tree").ISimpleType<string>;
2938
+ name: import("mobx-state-tree").ISimpleType<string>;
2939
+ view_id: import("mobx-state-tree").ISimpleType<string>;
2940
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
2941
+ }>>[]): void;
2942
+ addTab(): void;
2943
+ removeTab(index: number): void;
2944
+ }>>;
2945
+ panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
2946
+ }, {
2947
+ readonly json: {
2948
+ id: string;
2949
+ name: string;
2950
+ type: EViewComponentType;
2951
+ config: {
2952
+ _name: EViewComponentType.Division;
2953
+ } | {
2954
+ _name: EViewComponentType.Modal;
2955
+ width: string;
2956
+ height: string;
2957
+ custom_modal_title: {
2958
+ enabled: boolean;
2959
+ func_content: string;
2960
+ };
2961
+ } | {
2962
+ grow: boolean;
2963
+ tabs: {
2964
+ id: string;
2965
+ name: string;
2966
+ color: string;
2967
+ view_id: string;
2968
+ }[];
2969
+ _name: EViewComponentType.Modal;
2970
+ variant: import("@mantine/core").TabsVariant;
2971
+ orientation: import("@mantine/core").TabsOrientation;
2972
+ };
2973
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
2974
+ };
2975
+ } & {
2976
+ setName(name: string): void;
2977
+ setType(type: EViewComponentType): void;
2978
+ appendPanelID(id: string): void;
2979
+ removePanelID(id: string): void;
2980
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
2981
+ readonly VIE: ({
2982
+ id: string;
2983
+ name: string;
2984
+ type: EViewComponentType;
2985
+ config: ({
2986
+ _name: EViewComponentType.Division;
2987
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2988
+ readonly json: {
2989
+ _name: EViewComponentType.Division;
2990
+ };
2991
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2992
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2993
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2994
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2995
+ width: import("mobx-state-tree").ISimpleType<string>;
2996
+ height: import("mobx-state-tree").ISimpleType<string>;
2997
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
2998
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2999
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3000
+ }, {
3001
+ readonly json: {
3002
+ enabled: boolean;
3003
+ func_content: string;
3004
+ };
3005
+ readonly value: any;
3006
+ } & {
3007
+ setEnabled(v: boolean): void;
3008
+ setFuncContent(v: string): void;
3009
+ replace({ enabled, func_content }: {
3010
+ enabled: boolean;
3011
+ func_content: string;
3012
+ }): void;
3013
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3014
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3015
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3016
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3017
+ id: import("mobx-state-tree").ISimpleType<string>;
3018
+ name: import("mobx-state-tree").ISimpleType<string>;
3019
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3020
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3021
+ }, {
3022
+ readonly json: {
3023
+ id: string;
3024
+ name: string;
3025
+ color: string;
3026
+ view_id: string;
3027
+ };
3028
+ } & {
3029
+ setName(v: string): void;
3030
+ setViewID(v: string): void;
3031
+ setColor(v: string): void;
3032
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3033
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3034
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3035
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3036
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
3037
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3038
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3039
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3040
+ width: import("mobx-state-tree").ISimpleType<string>;
3041
+ height: import("mobx-state-tree").ISimpleType<string>;
3042
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3043
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3044
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3045
+ }, {
3046
+ readonly json: {
3047
+ enabled: boolean;
3048
+ func_content: string;
3049
+ };
3050
+ readonly value: any;
3051
+ } & {
3052
+ setEnabled(v: boolean): void;
3053
+ setFuncContent(v: string): void;
3054
+ replace({ enabled, func_content }: {
3055
+ enabled: boolean;
3056
+ func_content: string;
3057
+ }): void;
3058
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3059
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3060
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3061
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3062
+ id: import("mobx-state-tree").ISimpleType<string>;
3063
+ name: import("mobx-state-tree").ISimpleType<string>;
3064
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3065
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3066
+ }, {
3067
+ readonly json: {
3068
+ id: string;
3069
+ name: string;
3070
+ color: string;
3071
+ view_id: string;
3072
+ };
3073
+ } & {
3074
+ setName(v: string): void;
3075
+ setViewID(v: string): void;
3076
+ setColor(v: string): void;
3077
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3078
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3079
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3080
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3081
+ }>, import("mobx-state-tree").ModelInstanceType<{
3082
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3083
+ }, {
3084
+ readonly json: {
3085
+ _name: EViewComponentType.Division;
3086
+ };
3087
+ }> | import("mobx-state-tree").ModelInstanceType<{
3088
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3089
+ width: import("mobx-state-tree").ISimpleType<string>;
3090
+ height: import("mobx-state-tree").ISimpleType<string>;
3091
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3092
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3093
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3094
+ }, {
3095
+ readonly json: {
3096
+ enabled: boolean;
3097
+ func_content: string;
3098
+ };
3099
+ readonly value: any;
3100
+ } & {
3101
+ setEnabled(v: boolean): void;
3102
+ setFuncContent(v: string): void;
3103
+ replace({ enabled, func_content }: {
3104
+ enabled: boolean;
3105
+ func_content: string;
3106
+ }): void;
3107
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3108
+ }, {
3109
+ readonly json: {
3110
+ _name: EViewComponentType.Modal;
3111
+ width: string;
3112
+ height: string;
3113
+ custom_modal_title: {
3114
+ enabled: boolean;
3115
+ func_content: string;
3116
+ };
3117
+ };
3118
+ } & {
3119
+ setWidth(v: string): void;
3120
+ setHeight(v: string): void;
3121
+ }> | import("mobx-state-tree").ModelInstanceType<{
3122
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3123
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3124
+ id: import("mobx-state-tree").ISimpleType<string>;
3125
+ name: import("mobx-state-tree").ISimpleType<string>;
3126
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3127
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3128
+ }, {
3129
+ readonly json: {
3130
+ id: string;
3131
+ name: string;
3132
+ color: string;
3133
+ view_id: string;
3134
+ };
3135
+ } & {
3136
+ setName(v: string): void;
3137
+ setViewID(v: string): void;
3138
+ setColor(v: string): void;
3139
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3140
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3141
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3142
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3143
+ }, {
3144
+ readonly json: {
3145
+ grow: boolean;
3146
+ tabs: {
3147
+ id: string;
3148
+ name: string;
3149
+ color: string;
3150
+ view_id: string;
3151
+ }[];
3152
+ _name: EViewComponentType.Modal;
3153
+ variant: import("@mantine/core").TabsVariant;
3154
+ orientation: import("@mantine/core").TabsOrientation;
3155
+ };
3156
+ } & {
3157
+ setVariant(v: import("@mantine/core").TabsVariant): void;
3158
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
3159
+ setGrow(v: boolean): void;
3160
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3161
+ id: import("mobx-state-tree").ISimpleType<string>;
3162
+ name: import("mobx-state-tree").ISimpleType<string>;
3163
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3164
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3165
+ }>>[]): void;
3166
+ addTab(): void;
3167
+ removeTab(index: number): void;
3168
+ }>>>) | ({
3169
+ _name: EViewComponentType.Modal;
3170
+ width: string;
3171
+ height: string;
3172
+ custom_modal_title: {
3173
+ enabled: boolean;
3174
+ func_content: string;
3175
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3176
+ readonly json: {
3177
+ enabled: boolean;
3178
+ func_content: string;
3179
+ };
3180
+ readonly value: any;
3181
+ } & {
3182
+ setEnabled(v: boolean): void;
3183
+ setFuncContent(v: string): void;
3184
+ replace({ enabled, func_content }: {
3185
+ enabled: boolean;
3186
+ func_content: string;
3187
+ }): void;
3188
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3189
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3190
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3191
+ }, {
3192
+ readonly json: {
3193
+ enabled: boolean;
3194
+ func_content: string;
3195
+ };
3196
+ readonly value: any;
3197
+ } & {
3198
+ setEnabled(v: boolean): void;
3199
+ setFuncContent(v: string): void;
3200
+ replace({ enabled, func_content }: {
3201
+ enabled: boolean;
3202
+ func_content: string;
3203
+ }): void;
3204
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
3205
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3206
+ readonly json: {
3207
+ _name: EViewComponentType.Modal;
3208
+ width: string;
3209
+ height: string;
3210
+ custom_modal_title: {
3211
+ enabled: boolean;
3212
+ func_content: string;
3213
+ };
3214
+ };
3215
+ } & {
3216
+ setWidth(v: string): void;
3217
+ setHeight(v: string): void;
3218
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3219
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3220
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3221
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3222
+ width: import("mobx-state-tree").ISimpleType<string>;
3223
+ height: import("mobx-state-tree").ISimpleType<string>;
3224
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3225
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3226
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3227
+ }, {
3228
+ readonly json: {
3229
+ enabled: boolean;
3230
+ func_content: string;
3231
+ };
3232
+ readonly value: any;
3233
+ } & {
3234
+ setEnabled(v: boolean): void;
3235
+ setFuncContent(v: string): void;
3236
+ replace({ enabled, func_content }: {
3237
+ enabled: boolean;
3238
+ func_content: string;
3239
+ }): void;
3240
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3241
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3242
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3243
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3244
+ id: import("mobx-state-tree").ISimpleType<string>;
3245
+ name: import("mobx-state-tree").ISimpleType<string>;
3246
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3247
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3248
+ }, {
3249
+ readonly json: {
3250
+ id: string;
3251
+ name: string;
3252
+ color: string;
3253
+ view_id: string;
3254
+ };
3255
+ } & {
3256
+ setName(v: string): void;
3257
+ setViewID(v: string): void;
3258
+ setColor(v: string): void;
3259
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3260
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3261
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3262
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3263
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
3264
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3265
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3266
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3267
+ width: import("mobx-state-tree").ISimpleType<string>;
3268
+ height: import("mobx-state-tree").ISimpleType<string>;
3269
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3270
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3271
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3272
+ }, {
3273
+ readonly json: {
3274
+ enabled: boolean;
3275
+ func_content: string;
3276
+ };
3277
+ readonly value: any;
3278
+ } & {
3279
+ setEnabled(v: boolean): void;
3280
+ setFuncContent(v: string): void;
3281
+ replace({ enabled, func_content }: {
3282
+ enabled: boolean;
3283
+ func_content: string;
3284
+ }): void;
3285
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3286
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3287
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3288
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3289
+ id: import("mobx-state-tree").ISimpleType<string>;
3290
+ name: import("mobx-state-tree").ISimpleType<string>;
3291
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3292
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3293
+ }, {
3294
+ readonly json: {
3295
+ id: string;
3296
+ name: string;
3297
+ color: string;
3298
+ view_id: string;
3299
+ };
3300
+ } & {
3301
+ setName(v: string): void;
3302
+ setViewID(v: string): void;
3303
+ setColor(v: string): void;
3304
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3305
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3306
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3307
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3308
+ }>, import("mobx-state-tree").ModelInstanceType<{
3309
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3310
+ }, {
3311
+ readonly json: {
3312
+ _name: EViewComponentType.Division;
3313
+ };
3314
+ }> | import("mobx-state-tree").ModelInstanceType<{
3315
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3316
+ width: import("mobx-state-tree").ISimpleType<string>;
3317
+ height: import("mobx-state-tree").ISimpleType<string>;
3318
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3319
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3320
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3321
+ }, {
3322
+ readonly json: {
3323
+ enabled: boolean;
3324
+ func_content: string;
3325
+ };
3326
+ readonly value: any;
3327
+ } & {
3328
+ setEnabled(v: boolean): void;
3329
+ setFuncContent(v: string): void;
3330
+ replace({ enabled, func_content }: {
3331
+ enabled: boolean;
3332
+ func_content: string;
3333
+ }): void;
3334
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3335
+ }, {
3336
+ readonly json: {
3337
+ _name: EViewComponentType.Modal;
3338
+ width: string;
3339
+ height: string;
3340
+ custom_modal_title: {
3341
+ enabled: boolean;
3342
+ func_content: string;
3343
+ };
3344
+ };
3345
+ } & {
3346
+ setWidth(v: string): void;
3347
+ setHeight(v: string): void;
3348
+ }> | import("mobx-state-tree").ModelInstanceType<{
3349
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3350
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3351
+ id: import("mobx-state-tree").ISimpleType<string>;
3352
+ name: import("mobx-state-tree").ISimpleType<string>;
3353
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3354
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3355
+ }, {
3356
+ readonly json: {
3357
+ id: string;
3358
+ name: string;
3359
+ color: string;
3360
+ view_id: string;
3361
+ };
3362
+ } & {
3363
+ setName(v: string): void;
3364
+ setViewID(v: string): void;
3365
+ setColor(v: string): void;
3366
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3367
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3368
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3369
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3370
+ }, {
3371
+ readonly json: {
3372
+ grow: boolean;
3373
+ tabs: {
3374
+ id: string;
3375
+ name: string;
3376
+ color: string;
3377
+ view_id: string;
3378
+ }[];
3379
+ _name: EViewComponentType.Modal;
3380
+ variant: import("@mantine/core").TabsVariant;
3381
+ orientation: import("@mantine/core").TabsOrientation;
3382
+ };
3383
+ } & {
3384
+ setVariant(v: import("@mantine/core").TabsVariant): void;
3385
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
3386
+ setGrow(v: boolean): void;
3387
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3388
+ id: import("mobx-state-tree").ISimpleType<string>;
3389
+ name: import("mobx-state-tree").ISimpleType<string>;
3390
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3391
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3392
+ }>>[]): void;
3393
+ addTab(): void;
3394
+ removeTab(index: number): void;
3395
+ }>>>) | ({
3396
+ _name: EViewComponentType.Modal;
3397
+ tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
3398
+ id: import("mobx-state-tree").ISimpleType<string>;
3399
+ name: import("mobx-state-tree").ISimpleType<string>;
3400
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3401
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3402
+ }, {
3403
+ readonly json: {
3404
+ id: string;
3405
+ name: string;
3406
+ color: string;
3407
+ view_id: string;
3408
+ };
3409
+ } & {
3410
+ setName(v: string): void;
3411
+ setViewID(v: string): void;
3412
+ setColor(v: string): void;
3413
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3414
+ id: import("mobx-state-tree").ISimpleType<string>;
3415
+ name: import("mobx-state-tree").ISimpleType<string>;
3416
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3417
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3418
+ }, {
3419
+ readonly json: {
3420
+ id: string;
3421
+ name: string;
3422
+ color: string;
3423
+ view_id: string;
3424
+ };
3425
+ } & {
3426
+ setName(v: string): void;
3427
+ setViewID(v: string): void;
3428
+ setColor(v: string): void;
3429
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
3430
+ variant: import("@mantine/core").TabsVariant;
3431
+ orientation: import("@mantine/core").TabsOrientation;
3432
+ grow: boolean;
3433
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3434
+ readonly json: {
3435
+ grow: boolean;
3436
+ tabs: {
3437
+ id: string;
3438
+ name: string;
3439
+ color: string;
3440
+ view_id: string;
3441
+ }[];
3442
+ _name: EViewComponentType.Modal;
3443
+ variant: import("@mantine/core").TabsVariant;
3444
+ orientation: import("@mantine/core").TabsOrientation;
3445
+ };
3446
+ } & {
3447
+ setVariant(v: import("@mantine/core").TabsVariant): void;
3448
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
3449
+ setGrow(v: boolean): void;
3450
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3451
+ id: import("mobx-state-tree").ISimpleType<string>;
3452
+ name: import("mobx-state-tree").ISimpleType<string>;
3453
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3454
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3455
+ }>>[]): void;
3456
+ addTab(): void;
3457
+ removeTab(index: number): void;
3458
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3459
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3460
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3461
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3462
+ width: import("mobx-state-tree").ISimpleType<string>;
3463
+ height: import("mobx-state-tree").ISimpleType<string>;
3464
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3465
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3466
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3467
+ }, {
3468
+ readonly json: {
3469
+ enabled: boolean;
3470
+ func_content: string;
3471
+ };
3472
+ readonly value: any;
3473
+ } & {
3474
+ setEnabled(v: boolean): void;
3475
+ setFuncContent(v: string): void;
3476
+ replace({ enabled, func_content }: {
3477
+ enabled: boolean;
3478
+ func_content: string;
3479
+ }): void;
3480
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3481
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3482
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3483
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3484
+ id: import("mobx-state-tree").ISimpleType<string>;
3485
+ name: import("mobx-state-tree").ISimpleType<string>;
3486
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3487
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3488
+ }, {
3489
+ readonly json: {
3490
+ id: string;
3491
+ name: string;
3492
+ color: string;
3493
+ view_id: string;
3494
+ };
3495
+ } & {
3496
+ setName(v: string): void;
3497
+ setViewID(v: string): void;
3498
+ setColor(v: string): void;
3499
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3500
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3501
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3502
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3503
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
3504
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3505
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3506
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3507
+ width: import("mobx-state-tree").ISimpleType<string>;
3508
+ height: import("mobx-state-tree").ISimpleType<string>;
3509
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3510
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3511
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3512
+ }, {
3513
+ readonly json: {
3514
+ enabled: boolean;
3515
+ func_content: string;
3516
+ };
3517
+ readonly value: any;
3518
+ } & {
3519
+ setEnabled(v: boolean): void;
3520
+ setFuncContent(v: string): void;
3521
+ replace({ enabled, func_content }: {
3522
+ enabled: boolean;
3523
+ func_content: string;
3524
+ }): void;
3525
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3526
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3527
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3528
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3529
+ id: import("mobx-state-tree").ISimpleType<string>;
3530
+ name: import("mobx-state-tree").ISimpleType<string>;
3531
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3532
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3533
+ }, {
3534
+ readonly json: {
3535
+ id: string;
3536
+ name: string;
3537
+ color: string;
3538
+ view_id: string;
3539
+ };
3540
+ } & {
3541
+ setName(v: string): void;
3542
+ setViewID(v: string): void;
3543
+ setColor(v: string): void;
3544
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3545
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3546
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3547
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3548
+ }>, import("mobx-state-tree").ModelInstanceType<{
3549
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3550
+ }, {
3551
+ readonly json: {
3552
+ _name: EViewComponentType.Division;
3553
+ };
3554
+ }> | import("mobx-state-tree").ModelInstanceType<{
3555
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3556
+ width: import("mobx-state-tree").ISimpleType<string>;
3557
+ height: import("mobx-state-tree").ISimpleType<string>;
3558
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3559
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3560
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3561
+ }, {
3562
+ readonly json: {
3563
+ enabled: boolean;
3564
+ func_content: string;
3565
+ };
3566
+ readonly value: any;
3567
+ } & {
3568
+ setEnabled(v: boolean): void;
3569
+ setFuncContent(v: string): void;
3570
+ replace({ enabled, func_content }: {
3571
+ enabled: boolean;
3572
+ func_content: string;
3573
+ }): void;
3574
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3575
+ }, {
3576
+ readonly json: {
3577
+ _name: EViewComponentType.Modal;
3578
+ width: string;
3579
+ height: string;
3580
+ custom_modal_title: {
3581
+ enabled: boolean;
3582
+ func_content: string;
3583
+ };
3584
+ };
3585
+ } & {
3586
+ setWidth(v: string): void;
3587
+ setHeight(v: string): void;
3588
+ }> | import("mobx-state-tree").ModelInstanceType<{
3589
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3590
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3591
+ id: import("mobx-state-tree").ISimpleType<string>;
3592
+ name: import("mobx-state-tree").ISimpleType<string>;
3593
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3594
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3595
+ }, {
3596
+ readonly json: {
3597
+ id: string;
3598
+ name: string;
3599
+ color: string;
3600
+ view_id: string;
3601
+ };
3602
+ } & {
3603
+ setName(v: string): void;
3604
+ setViewID(v: string): void;
3605
+ setColor(v: string): void;
3606
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3607
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3608
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3609
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3610
+ }, {
3611
+ readonly json: {
3612
+ grow: boolean;
3613
+ tabs: {
3614
+ id: string;
3615
+ name: string;
3616
+ color: string;
3617
+ view_id: string;
3618
+ }[];
3619
+ _name: EViewComponentType.Modal;
3620
+ variant: import("@mantine/core").TabsVariant;
3621
+ orientation: import("@mantine/core").TabsOrientation;
3622
+ };
3623
+ } & {
3624
+ setVariant(v: import("@mantine/core").TabsVariant): void;
3625
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
3626
+ setGrow(v: boolean): void;
3627
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3628
+ id: import("mobx-state-tree").ISimpleType<string>;
3629
+ name: import("mobx-state-tree").ISimpleType<string>;
3630
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3631
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3632
+ }>>[]): void;
3633
+ addTab(): void;
3634
+ removeTab(index: number): void;
3635
+ }>>>);
3636
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
3637
+ } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3638
+ readonly json: {
3639
+ id: string;
3640
+ name: string;
3641
+ type: EViewComponentType;
3642
+ config: {
3643
+ _name: EViewComponentType.Division;
3644
+ } | {
3645
+ _name: EViewComponentType.Modal;
3646
+ width: string;
3647
+ height: string;
3648
+ custom_modal_title: {
3649
+ enabled: boolean;
3650
+ func_content: string;
3651
+ };
3652
+ } | {
3653
+ grow: boolean;
3654
+ tabs: {
3655
+ id: string;
3656
+ name: string;
3657
+ color: string;
3658
+ view_id: string;
3659
+ }[];
3660
+ _name: EViewComponentType.Modal;
3661
+ variant: import("@mantine/core").TabsVariant;
3662
+ orientation: import("@mantine/core").TabsOrientation;
3663
+ };
3664
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
3665
+ };
3666
+ } & {
3667
+ setName(name: string): void;
3668
+ setType(type: EViewComponentType): void;
3669
+ appendPanelID(id: string): void;
3670
+ removePanelID(id: string): void;
3671
+ } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
3672
+ id: import("mobx-state-tree").ISimpleType<string>;
3673
+ name: import("mobx-state-tree").ISimpleType<string>;
3674
+ type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
3675
+ config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3676
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3677
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3678
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3679
+ width: import("mobx-state-tree").ISimpleType<string>;
3680
+ height: import("mobx-state-tree").ISimpleType<string>;
3681
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3682
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3683
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3684
+ }, {
3685
+ readonly json: {
3686
+ enabled: boolean;
3687
+ func_content: string;
3688
+ };
3689
+ readonly value: any;
3690
+ } & {
3691
+ setEnabled(v: boolean): void;
3692
+ setFuncContent(v: string): void;
3693
+ replace({ enabled, func_content }: {
3694
+ enabled: boolean;
3695
+ func_content: string;
3696
+ }): void;
3697
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3698
+ }>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3699
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3700
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3701
+ id: import("mobx-state-tree").ISimpleType<string>;
3702
+ name: import("mobx-state-tree").ISimpleType<string>;
3703
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3704
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3705
+ }, {
3706
+ readonly json: {
3707
+ id: string;
3708
+ name: string;
3709
+ color: string;
3710
+ view_id: string;
3711
+ };
3712
+ } & {
3713
+ setName(v: string): void;
3714
+ setViewID(v: string): void;
3715
+ setColor(v: string): void;
3716
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3717
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3718
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3719
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3720
+ }>>, import("mobx-state-tree").ModelSnapshotType<{
3721
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3722
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3723
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3724
+ width: import("mobx-state-tree").ISimpleType<string>;
3725
+ height: import("mobx-state-tree").ISimpleType<string>;
3726
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3727
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3728
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3729
+ }, {
3730
+ readonly json: {
3731
+ enabled: boolean;
3732
+ func_content: string;
3733
+ };
3734
+ readonly value: any;
3735
+ } & {
3736
+ setEnabled(v: boolean): void;
3737
+ setFuncContent(v: string): void;
3738
+ replace({ enabled, func_content }: {
3739
+ enabled: boolean;
3740
+ func_content: string;
3741
+ }): void;
3742
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3743
+ }> | import("mobx-state-tree").ModelSnapshotType<{
3744
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3745
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3746
+ id: import("mobx-state-tree").ISimpleType<string>;
3747
+ name: import("mobx-state-tree").ISimpleType<string>;
3748
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3749
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3750
+ }, {
3751
+ readonly json: {
3752
+ id: string;
3753
+ name: string;
3754
+ color: string;
3755
+ view_id: string;
3756
+ };
3757
+ } & {
3758
+ setName(v: string): void;
3759
+ setViewID(v: string): void;
3760
+ setColor(v: string): void;
3761
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3762
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3763
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3764
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3765
+ }>, import("mobx-state-tree").ModelInstanceType<{
3766
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3767
+ }, {
3768
+ readonly json: {
3769
+ _name: EViewComponentType.Division;
3770
+ };
3771
+ }> | import("mobx-state-tree").ModelInstanceType<{
3772
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3773
+ width: import("mobx-state-tree").ISimpleType<string>;
3774
+ height: import("mobx-state-tree").ISimpleType<string>;
3775
+ custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
3776
+ enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3777
+ func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3778
+ }, {
3779
+ readonly json: {
3780
+ enabled: boolean;
3781
+ func_content: string;
3782
+ };
3783
+ readonly value: any;
3784
+ } & {
3785
+ setEnabled(v: boolean): void;
3786
+ setFuncContent(v: string): void;
3787
+ replace({ enabled, func_content }: {
3788
+ enabled: boolean;
3789
+ func_content: string;
3790
+ }): void;
3791
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
3792
+ }, {
3793
+ readonly json: {
3794
+ _name: EViewComponentType.Modal;
3795
+ width: string;
3796
+ height: string;
3797
+ custom_modal_title: {
3798
+ enabled: boolean;
3799
+ func_content: string;
3800
+ };
3801
+ };
3802
+ } & {
3803
+ setWidth(v: string): void;
3804
+ setHeight(v: string): void;
3805
+ }> | import("mobx-state-tree").ModelInstanceType<{
3806
+ _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3807
+ tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
3808
+ id: import("mobx-state-tree").ISimpleType<string>;
3809
+ name: import("mobx-state-tree").ISimpleType<string>;
3810
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3811
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3812
+ }, {
3813
+ readonly json: {
3814
+ id: string;
3815
+ name: string;
3816
+ color: string;
3817
+ view_id: string;
3818
+ };
3819
+ } & {
3820
+ setName(v: string): void;
3821
+ setViewID(v: string): void;
3822
+ setColor(v: string): void;
3823
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
3824
+ variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
3825
+ orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
3826
+ grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3827
+ }, {
3828
+ readonly json: {
3829
+ grow: boolean;
3830
+ tabs: {
3831
+ id: string;
3832
+ name: string;
3833
+ color: string;
3834
+ view_id: string;
3835
+ }[];
3836
+ _name: EViewComponentType.Modal;
3837
+ variant: import("@mantine/core").TabsVariant;
3838
+ orientation: import("@mantine/core").TabsOrientation;
3839
+ };
3840
+ } & {
3841
+ setVariant(v: import("@mantine/core").TabsVariant): void;
3842
+ setOrientation(v: import("@mantine/core").TabsOrientation): void;
3843
+ setGrow(v: boolean): void;
3844
+ setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3845
+ id: import("mobx-state-tree").ISimpleType<string>;
3846
+ name: import("mobx-state-tree").ISimpleType<string>;
3847
+ view_id: import("mobx-state-tree").ISimpleType<string>;
3848
+ color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
3849
+ }>>[]): void;
3850
+ addTab(): void;
3851
+ removeTab(index: number): void;
3852
+ }>>;
3853
+ panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
3854
+ }, {
3855
+ readonly json: {
3856
+ id: string;
3857
+ name: string;
3858
+ type: EViewComponentType;
3859
+ config: {
3860
+ _name: EViewComponentType.Division;
3861
+ } | {
3862
+ _name: EViewComponentType.Modal;
3863
+ width: string;
3864
+ height: string;
3865
+ custom_modal_title: {
3866
+ enabled: boolean;
3867
+ func_content: string;
3868
+ };
3869
+ } | {
3870
+ grow: boolean;
3871
+ tabs: {
3872
+ id: string;
3873
+ name: string;
3874
+ color: string;
3875
+ view_id: string;
3876
+ }[];
3877
+ _name: EViewComponentType.Modal;
3878
+ variant: import("@mantine/core").TabsVariant;
3879
+ orientation: import("@mantine/core").TabsOrientation;
3880
+ };
3881
+ panelIDs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
3882
+ };
3883
+ } & {
3884
+ setName(name: string): void;
3885
+ setType(type: EViewComponentType): void;
3886
+ appendPanelID(id: string): void;
3887
+ removePanelID(id: string): void;
3888
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
3889
+ readonly options: {
3890
+ label: string;
3891
+ value: string;
3892
+ type: EViewComponentType;
3893
+ }[];
3894
+ readonly editorOptions: {
3895
+ readonly label: string;
3896
+ readonly value: string;
3897
+ readonly _type: "view";
3898
+ readonly children: import("../editor").NavOptionType[];
3899
+ }[];
3900
+ } & {
3901
+ replace(current: Array<ViewModelInstance>): void;
3902
+ addANewView(id: string, name: string, type: EViewComponentType, config: IViewConfigModel_DivisionIn | IViewConfigModel_ModalIn): void;
3903
+ append(item: ViewModelInstance): void;
3904
+ remove(index: number): void;
3905
+ removeByID(id: string): void;
3906
+ replaceByIndex(index: number, replacement: ViewModelInstance): void;
3907
+ setIDOfVIE(id: string): void;
3908
+ appendToVisibles(viewID: string): void;
3909
+ } & {
3910
+ addARandomNewView(): void;
3911
+ removeVIE(): void;
3912
+ rmVisibleViewID(id: string): void;
3913
+ }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
3914
+ export declare type ViewsModelInstance = Instance<typeof ViewsModel>;
3915
+ export * from './view';
3916
+ export declare function createDashboardViewsModel(views: IDashboardView[]): SnapshotIn<Instance<typeof ViewsModel>>;