@devtable/dashboard 10.49.0 → 10.50.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.
- package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +456 -0
- package/dist/components/panel/settings/common/aggregation-selector.d.ts +1 -0
- package/dist/components/plugins/plugin-context.d.ts +455 -0
- package/dist/contexts/panel-context.d.ts +910 -0
- package/dist/dashboard-editor/model/panels/panel.d.ts +209 -0
- package/dist/dashboard-editor/model/views/index.d.ts +857 -857
- package/dist/dashboard-editor/model/views/view.d.ts +14 -14
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/index.d.ts +2 -0
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/model.d.ts +86 -81
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/preview-variables.d.ts +3 -0
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variable-editor.d.ts +8 -0
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variable-field.d.ts +1 -1
- package/dist/{utils/template/editor → dashboard-editor/ui/settings/content/edit-panel/variable-config}/variable-style.d.ts +1 -1
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variables-editor.d.ts +11 -0
- package/dist/dashboard-editor/ui/settings/content/edit-view/edit-view-form/index.d.ts +141 -141
- package/dist/dashboard.es.js +9719 -9703
- package/dist/dashboard.umd.js +82 -82
- package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +69 -0
- package/dist/model/meta-model/dashboard/content/panel/variable.d.ts +39 -0
- package/dist/model/meta-model/dashboard/content/view/view.d.ts +12 -12
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +209 -0
- package/dist/model/render-model/dashboard/content/views/view.d.ts +12 -12
- package/dist/model/render-model/dashboard/content/views/views.d.ts +586 -586
- package/dist/model/utils/draft.d.ts +1 -0
- package/dist/stats.html +1 -1
- package/dist/utils/aggregation.d.ts +11 -7
- package/dist/utils/template/editor/index.d.ts +0 -1
- package/dist/utils/template/render/render-string.d.ts +3 -0
- package/package.json +1 -1
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/styles.d.ts +0 -8
- package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variable-config-panel.d.ts +0 -10
- package/dist/model/render-model/dashboard/content/panels/panels.d.ts +0 -15393
- package/dist/utils/template/editor/variable-field.d.ts +0 -9
|
@@ -8,6 +8,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
8
8
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
9
9
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
10
10
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
11
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
12
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
11
13
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
12
14
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
13
15
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -50,9 +52,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
50
52
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
51
53
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
52
54
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
53
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
54
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
55
55
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
56
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
57
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
56
58
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
57
59
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
58
60
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -95,9 +97,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
95
97
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
96
98
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
97
99
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
98
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
99
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
100
100
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
101
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
102
|
+
}, {
|
|
103
|
+
readonly json: {
|
|
104
|
+
_name: EViewComponentType.Division;
|
|
105
|
+
};
|
|
106
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
101
107
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
102
108
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
103
109
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -178,12 +184,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
178
184
|
}>>[]): void;
|
|
179
185
|
addTab(): void;
|
|
180
186
|
removeTab(index: number): void;
|
|
181
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
182
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
183
|
-
}, {
|
|
184
|
-
readonly json: {
|
|
185
|
-
_name: EViewComponentType.Division;
|
|
186
|
-
};
|
|
187
187
|
}>>;
|
|
188
188
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
189
189
|
} & {
|
|
@@ -194,6 +194,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
194
194
|
name: string;
|
|
195
195
|
type: EViewComponentType;
|
|
196
196
|
config: {
|
|
197
|
+
_name: EViewComponentType.Division;
|
|
198
|
+
} | {
|
|
197
199
|
_name: EViewComponentType.Modal;
|
|
198
200
|
width: string;
|
|
199
201
|
height: string;
|
|
@@ -212,8 +214,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
212
214
|
_name: EViewComponentType.Modal;
|
|
213
215
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
214
216
|
orientation: import("@mantine/core").TabsOrientation;
|
|
215
|
-
} | {
|
|
216
|
-
_name: EViewComponentType.Division;
|
|
217
217
|
};
|
|
218
218
|
panelIDs: string[];
|
|
219
219
|
};
|
|
@@ -240,6 +240,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
240
240
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
241
241
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
242
242
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
243
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
244
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
243
245
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
244
246
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
245
247
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -282,9 +284,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
282
284
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
283
285
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
284
286
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
285
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
286
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
287
287
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
288
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
289
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
288
290
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
289
291
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
290
292
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -327,9 +329,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
327
329
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
328
330
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
329
331
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
330
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
331
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
332
332
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
333
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
334
|
+
}, {
|
|
335
|
+
readonly json: {
|
|
336
|
+
_name: EViewComponentType.Division;
|
|
337
|
+
};
|
|
338
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
333
339
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
334
340
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
335
341
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -410,12 +416,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
410
416
|
}>>[]): void;
|
|
411
417
|
addTab(): void;
|
|
412
418
|
removeTab(index: number): void;
|
|
413
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
414
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
415
|
-
}, {
|
|
416
|
-
readonly json: {
|
|
417
|
-
_name: EViewComponentType.Division;
|
|
418
|
-
};
|
|
419
419
|
}>>;
|
|
420
420
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
421
421
|
} & {
|
|
@@ -426,6 +426,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
426
426
|
name: string;
|
|
427
427
|
type: EViewComponentType;
|
|
428
428
|
config: {
|
|
429
|
+
_name: EViewComponentType.Division;
|
|
430
|
+
} | {
|
|
429
431
|
_name: EViewComponentType.Modal;
|
|
430
432
|
width: string;
|
|
431
433
|
height: string;
|
|
@@ -444,8 +446,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
444
446
|
_name: EViewComponentType.Modal;
|
|
445
447
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
446
448
|
orientation: import("@mantine/core").TabsOrientation;
|
|
447
|
-
} | {
|
|
448
|
-
_name: EViewComponentType.Division;
|
|
449
449
|
};
|
|
450
450
|
panelIDs: string[];
|
|
451
451
|
};
|
|
@@ -471,6 +471,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
471
471
|
name: string;
|
|
472
472
|
type: EViewComponentType;
|
|
473
473
|
config: {
|
|
474
|
+
_name: EViewComponentType.Division;
|
|
475
|
+
} | {
|
|
474
476
|
_name: EViewComponentType.Modal;
|
|
475
477
|
width: string;
|
|
476
478
|
height: string;
|
|
@@ -489,8 +491,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
489
491
|
_name: EViewComponentType.Modal;
|
|
490
492
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
491
493
|
orientation: import("@mantine/core").TabsOrientation;
|
|
492
|
-
} | {
|
|
493
|
-
_name: EViewComponentType.Division;
|
|
494
494
|
};
|
|
495
495
|
panelIDs: string[];
|
|
496
496
|
}[];
|
|
@@ -508,6 +508,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
508
508
|
name: string;
|
|
509
509
|
type: EViewComponentType;
|
|
510
510
|
config: {
|
|
511
|
+
_name: EViewComponentType.Division;
|
|
512
|
+
} | {
|
|
511
513
|
_name: EViewComponentType.Modal;
|
|
512
514
|
width: string;
|
|
513
515
|
height: string;
|
|
@@ -526,8 +528,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
526
528
|
_name: EViewComponentType.Modal;
|
|
527
529
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
528
530
|
orientation: import("@mantine/core").TabsOrientation;
|
|
529
|
-
} | {
|
|
530
|
-
_name: EViewComponentType.Division;
|
|
531
531
|
};
|
|
532
532
|
panelIDs: string[];
|
|
533
533
|
}[];
|
|
@@ -536,56 +536,14 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
536
536
|
name: string;
|
|
537
537
|
type: EViewComponentType;
|
|
538
538
|
config: ({
|
|
539
|
-
_name: EViewComponentType.
|
|
540
|
-
width: string;
|
|
541
|
-
height: string;
|
|
542
|
-
custom_modal_title: {
|
|
543
|
-
enabled: boolean;
|
|
544
|
-
func_content: string;
|
|
545
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
546
|
-
readonly json: {
|
|
547
|
-
enabled: boolean;
|
|
548
|
-
func_content: string;
|
|
549
|
-
};
|
|
550
|
-
readonly value: any;
|
|
551
|
-
} & {
|
|
552
|
-
setEnabled(v: boolean): void;
|
|
553
|
-
setFuncContent(v: string): void;
|
|
554
|
-
replace({ enabled, func_content }: {
|
|
555
|
-
enabled: boolean;
|
|
556
|
-
func_content: string;
|
|
557
|
-
}): void;
|
|
558
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
559
|
-
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
560
|
-
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
561
|
-
}, {
|
|
562
|
-
readonly json: {
|
|
563
|
-
enabled: boolean;
|
|
564
|
-
func_content: string;
|
|
565
|
-
};
|
|
566
|
-
readonly value: any;
|
|
567
|
-
} & {
|
|
568
|
-
setEnabled(v: boolean): void;
|
|
569
|
-
setFuncContent(v: string): void;
|
|
570
|
-
replace({ enabled, func_content }: {
|
|
571
|
-
enabled: boolean;
|
|
572
|
-
func_content: string;
|
|
573
|
-
}): void;
|
|
574
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
539
|
+
_name: EViewComponentType.Division;
|
|
575
540
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
576
541
|
readonly json: {
|
|
577
|
-
_name: EViewComponentType.
|
|
578
|
-
width: string;
|
|
579
|
-
height: string;
|
|
580
|
-
custom_modal_title: {
|
|
581
|
-
enabled: boolean;
|
|
582
|
-
func_content: string;
|
|
583
|
-
};
|
|
542
|
+
_name: EViewComponentType.Division;
|
|
584
543
|
};
|
|
585
|
-
} & {
|
|
586
|
-
setWidth(v: string): void;
|
|
587
|
-
setHeight(v: string): void;
|
|
588
544
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
545
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
546
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
589
547
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
590
548
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
591
549
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -628,9 +586,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
628
586
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
629
587
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
630
588
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
631
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
632
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
633
589
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
590
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
591
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
634
592
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
635
593
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
636
594
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -673,9 +631,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
673
631
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
674
632
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
675
633
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
676
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
677
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
678
634
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
635
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
636
|
+
}, {
|
|
637
|
+
readonly json: {
|
|
638
|
+
_name: EViewComponentType.Division;
|
|
639
|
+
};
|
|
640
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
679
641
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
680
642
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
681
643
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -756,76 +718,59 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
756
718
|
}>>[]): void;
|
|
757
719
|
addTab(): void;
|
|
758
720
|
removeTab(index: number): void;
|
|
759
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
760
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
761
|
-
}, {
|
|
762
|
-
readonly json: {
|
|
763
|
-
_name: EViewComponentType.Division;
|
|
764
|
-
};
|
|
765
721
|
}>>>) | ({
|
|
766
722
|
_name: EViewComponentType.Modal;
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
}
|
|
723
|
+
width: string;
|
|
724
|
+
height: string;
|
|
725
|
+
custom_modal_title: {
|
|
726
|
+
enabled: boolean;
|
|
727
|
+
func_content: string;
|
|
728
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
773
729
|
readonly json: {
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
color: string;
|
|
777
|
-
view_id: string;
|
|
730
|
+
enabled: boolean;
|
|
731
|
+
func_content: string;
|
|
778
732
|
};
|
|
733
|
+
readonly value: any;
|
|
779
734
|
} & {
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
735
|
+
setEnabled(v: boolean): void;
|
|
736
|
+
setFuncContent(v: string): void;
|
|
737
|
+
replace({ enabled, func_content }: {
|
|
738
|
+
enabled: boolean;
|
|
739
|
+
func_content: string;
|
|
740
|
+
}): void;
|
|
741
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
742
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
743
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
788
744
|
}, {
|
|
789
745
|
readonly json: {
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
color: string;
|
|
793
|
-
view_id: string;
|
|
746
|
+
enabled: boolean;
|
|
747
|
+
func_content: string;
|
|
794
748
|
};
|
|
749
|
+
readonly value: any;
|
|
795
750
|
} & {
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
751
|
+
setEnabled(v: boolean): void;
|
|
752
|
+
setFuncContent(v: string): void;
|
|
753
|
+
replace({ enabled, func_content }: {
|
|
754
|
+
enabled: boolean;
|
|
755
|
+
func_content: string;
|
|
756
|
+
}): void;
|
|
757
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
803
758
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
804
759
|
readonly json: {
|
|
805
|
-
grow: boolean;
|
|
806
|
-
tabs: {
|
|
807
|
-
id: string;
|
|
808
|
-
name: string;
|
|
809
|
-
color: string;
|
|
810
|
-
view_id: string;
|
|
811
|
-
}[];
|
|
812
760
|
_name: EViewComponentType.Modal;
|
|
813
|
-
|
|
814
|
-
|
|
761
|
+
width: string;
|
|
762
|
+
height: string;
|
|
763
|
+
custom_modal_title: {
|
|
764
|
+
enabled: boolean;
|
|
765
|
+
func_content: string;
|
|
766
|
+
};
|
|
815
767
|
};
|
|
816
768
|
} & {
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
setGrow(v: boolean): void;
|
|
820
|
-
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
821
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
822
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
823
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
824
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
825
|
-
}>>[]): void;
|
|
826
|
-
addTab(): void;
|
|
827
|
-
removeTab(index: number): void;
|
|
769
|
+
setWidth(v: string): void;
|
|
770
|
+
setHeight(v: string): void;
|
|
828
771
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
772
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
773
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
829
774
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
830
775
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
831
776
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -868,9 +813,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
868
813
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
869
814
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
870
815
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
871
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
872
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
873
816
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
817
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
818
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
874
819
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
875
820
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
876
821
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -913,9 +858,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
913
858
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
914
859
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
915
860
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
916
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
917
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
918
861
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
862
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
863
|
+
}, {
|
|
864
|
+
readonly json: {
|
|
865
|
+
_name: EViewComponentType.Division;
|
|
866
|
+
};
|
|
867
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
919
868
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
920
869
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
921
870
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -996,34 +945,87 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
996
945
|
}>>[]): void;
|
|
997
946
|
addTab(): void;
|
|
998
947
|
removeTab(index: number): void;
|
|
999
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1000
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1001
|
-
}, {
|
|
1002
|
-
readonly json: {
|
|
1003
|
-
_name: EViewComponentType.Division;
|
|
1004
|
-
};
|
|
1005
948
|
}>>>) | ({
|
|
1006
|
-
_name: EViewComponentType.
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1013
|
-
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1014
|
-
height: import("mobx-state-tree").ISimpleType<string>;
|
|
1015
|
-
custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
1016
|
-
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1017
|
-
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
949
|
+
_name: EViewComponentType.Modal;
|
|
950
|
+
tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
951
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
952
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
953
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
954
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1018
955
|
}, {
|
|
1019
956
|
readonly json: {
|
|
1020
|
-
|
|
1021
|
-
|
|
957
|
+
id: string;
|
|
958
|
+
name: string;
|
|
959
|
+
color: string;
|
|
960
|
+
view_id: string;
|
|
1022
961
|
};
|
|
1023
|
-
readonly value: any;
|
|
1024
962
|
} & {
|
|
1025
|
-
|
|
1026
|
-
|
|
963
|
+
setName(v: string): void;
|
|
964
|
+
setViewID(v: string): void;
|
|
965
|
+
setColor(v: string): void;
|
|
966
|
+
}, 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<{
|
|
967
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
968
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
969
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
970
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
971
|
+
}, {
|
|
972
|
+
readonly json: {
|
|
973
|
+
id: string;
|
|
974
|
+
name: string;
|
|
975
|
+
color: string;
|
|
976
|
+
view_id: string;
|
|
977
|
+
};
|
|
978
|
+
} & {
|
|
979
|
+
setName(v: string): void;
|
|
980
|
+
setViewID(v: string): void;
|
|
981
|
+
setColor(v: string): void;
|
|
982
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
983
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
984
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
985
|
+
grow: boolean;
|
|
986
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
987
|
+
readonly json: {
|
|
988
|
+
grow: boolean;
|
|
989
|
+
tabs: {
|
|
990
|
+
id: string;
|
|
991
|
+
name: string;
|
|
992
|
+
color: string;
|
|
993
|
+
view_id: string;
|
|
994
|
+
}[];
|
|
995
|
+
_name: EViewComponentType.Modal;
|
|
996
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
997
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
998
|
+
};
|
|
999
|
+
} & {
|
|
1000
|
+
setVariant(v: import("@mantine/core").TabsVariant): void;
|
|
1001
|
+
setOrientation(v: import("@mantine/core").TabsOrientation): void;
|
|
1002
|
+
setGrow(v: boolean): void;
|
|
1003
|
+
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1004
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1005
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
1006
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
1007
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1008
|
+
}>>[]): void;
|
|
1009
|
+
addTab(): void;
|
|
1010
|
+
removeTab(index: number): void;
|
|
1011
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1012
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1013
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1014
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1015
|
+
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1016
|
+
height: import("mobx-state-tree").ISimpleType<string>;
|
|
1017
|
+
custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
1018
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1019
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1020
|
+
}, {
|
|
1021
|
+
readonly json: {
|
|
1022
|
+
enabled: boolean;
|
|
1023
|
+
func_content: string;
|
|
1024
|
+
};
|
|
1025
|
+
readonly value: any;
|
|
1026
|
+
} & {
|
|
1027
|
+
setEnabled(v: boolean): void;
|
|
1028
|
+
setFuncContent(v: string): void;
|
|
1027
1029
|
replace({ enabled, func_content }: {
|
|
1028
1030
|
enabled: boolean;
|
|
1029
1031
|
func_content: string;
|
|
@@ -1051,9 +1053,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1051
1053
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1052
1054
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1053
1055
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1054
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1055
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1056
1056
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
1057
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1058
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1057
1059
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1058
1060
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1059
1061
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1096,9 +1098,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1096
1098
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1097
1099
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1098
1100
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1099
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1100
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1101
1101
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
1102
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1103
|
+
}, {
|
|
1104
|
+
readonly json: {
|
|
1105
|
+
_name: EViewComponentType.Division;
|
|
1106
|
+
};
|
|
1107
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1102
1108
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1103
1109
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1104
1110
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1179,12 +1185,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1179
1185
|
}>>[]): void;
|
|
1180
1186
|
addTab(): void;
|
|
1181
1187
|
removeTab(index: number): void;
|
|
1182
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1183
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1184
|
-
}, {
|
|
1185
|
-
readonly json: {
|
|
1186
|
-
_name: EViewComponentType.Division;
|
|
1187
|
-
};
|
|
1188
1188
|
}>>>);
|
|
1189
1189
|
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]>>;
|
|
1190
1190
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -1193,6 +1193,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1193
1193
|
name: string;
|
|
1194
1194
|
type: EViewComponentType;
|
|
1195
1195
|
config: {
|
|
1196
|
+
_name: EViewComponentType.Division;
|
|
1197
|
+
} | {
|
|
1196
1198
|
_name: EViewComponentType.Modal;
|
|
1197
1199
|
width: string;
|
|
1198
1200
|
height: string;
|
|
@@ -1211,8 +1213,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1211
1213
|
_name: EViewComponentType.Modal;
|
|
1212
1214
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
1213
1215
|
orientation: import("@mantine/core").TabsOrientation;
|
|
1214
|
-
} | {
|
|
1215
|
-
_name: EViewComponentType.Division;
|
|
1216
1216
|
};
|
|
1217
1217
|
panelIDs: string[];
|
|
1218
1218
|
};
|
|
@@ -1227,6 +1227,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1227
1227
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
1228
1228
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
1229
1229
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1230
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1231
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1230
1232
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1231
1233
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1232
1234
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1269,9 +1271,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1269
1271
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1270
1272
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1271
1273
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1272
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1273
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1274
1274
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
1275
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1276
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1275
1277
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1276
1278
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1277
1279
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1314,9 +1316,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1314
1316
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1315
1317
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1316
1318
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1317
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1318
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1319
1319
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
1320
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1321
|
+
}, {
|
|
1322
|
+
readonly json: {
|
|
1323
|
+
_name: EViewComponentType.Division;
|
|
1324
|
+
};
|
|
1325
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1320
1326
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1321
1327
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1322
1328
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1397,12 +1403,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1397
1403
|
}>>[]): void;
|
|
1398
1404
|
addTab(): void;
|
|
1399
1405
|
removeTab(index: number): void;
|
|
1400
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1401
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1402
|
-
}, {
|
|
1403
|
-
readonly json: {
|
|
1404
|
-
_name: EViewComponentType.Division;
|
|
1405
|
-
};
|
|
1406
1406
|
}>>;
|
|
1407
1407
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
1408
1408
|
}, {
|
|
@@ -1411,6 +1411,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1411
1411
|
name: string;
|
|
1412
1412
|
type: EViewComponentType;
|
|
1413
1413
|
config: {
|
|
1414
|
+
_name: EViewComponentType.Division;
|
|
1415
|
+
} | {
|
|
1414
1416
|
_name: EViewComponentType.Modal;
|
|
1415
1417
|
width: string;
|
|
1416
1418
|
height: string;
|
|
@@ -1429,8 +1431,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1429
1431
|
_name: EViewComponentType.Modal;
|
|
1430
1432
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
1431
1433
|
orientation: import("@mantine/core").TabsOrientation;
|
|
1432
|
-
} | {
|
|
1433
|
-
_name: EViewComponentType.Division;
|
|
1434
1434
|
};
|
|
1435
1435
|
panelIDs: string[];
|
|
1436
1436
|
};
|
|
@@ -1446,56 +1446,14 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1446
1446
|
name: string;
|
|
1447
1447
|
type: EViewComponentType;
|
|
1448
1448
|
config: ({
|
|
1449
|
-
_name: EViewComponentType.
|
|
1450
|
-
width: string;
|
|
1451
|
-
height: string;
|
|
1452
|
-
custom_modal_title: {
|
|
1453
|
-
enabled: boolean;
|
|
1454
|
-
func_content: string;
|
|
1455
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1456
|
-
readonly json: {
|
|
1457
|
-
enabled: boolean;
|
|
1458
|
-
func_content: string;
|
|
1459
|
-
};
|
|
1460
|
-
readonly value: any;
|
|
1461
|
-
} & {
|
|
1462
|
-
setEnabled(v: boolean): void;
|
|
1463
|
-
setFuncContent(v: string): void;
|
|
1464
|
-
replace({ enabled, func_content }: {
|
|
1465
|
-
enabled: boolean;
|
|
1466
|
-
func_content: string;
|
|
1467
|
-
}): void;
|
|
1468
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
1469
|
-
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1470
|
-
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1471
|
-
}, {
|
|
1472
|
-
readonly json: {
|
|
1473
|
-
enabled: boolean;
|
|
1474
|
-
func_content: string;
|
|
1475
|
-
};
|
|
1476
|
-
readonly value: any;
|
|
1477
|
-
} & {
|
|
1478
|
-
setEnabled(v: boolean): void;
|
|
1479
|
-
setFuncContent(v: string): void;
|
|
1480
|
-
replace({ enabled, func_content }: {
|
|
1481
|
-
enabled: boolean;
|
|
1482
|
-
func_content: string;
|
|
1483
|
-
}): void;
|
|
1484
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
1449
|
+
_name: EViewComponentType.Division;
|
|
1485
1450
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1486
1451
|
readonly json: {
|
|
1487
|
-
_name: EViewComponentType.
|
|
1488
|
-
width: string;
|
|
1489
|
-
height: string;
|
|
1490
|
-
custom_modal_title: {
|
|
1491
|
-
enabled: boolean;
|
|
1492
|
-
func_content: string;
|
|
1493
|
-
};
|
|
1452
|
+
_name: EViewComponentType.Division;
|
|
1494
1453
|
};
|
|
1495
|
-
} & {
|
|
1496
|
-
setWidth(v: string): void;
|
|
1497
|
-
setHeight(v: string): void;
|
|
1498
1454
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1455
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1456
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1499
1457
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1500
1458
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1501
1459
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1538,9 +1496,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1538
1496
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1539
1497
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1540
1498
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1541
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1542
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1543
1499
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
1500
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1501
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1544
1502
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1545
1503
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1546
1504
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1583,9 +1541,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1583
1541
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1584
1542
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1585
1543
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1586
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1587
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1588
1544
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
1545
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1546
|
+
}, {
|
|
1547
|
+
readonly json: {
|
|
1548
|
+
_name: EViewComponentType.Division;
|
|
1549
|
+
};
|
|
1550
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1589
1551
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1590
1552
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1591
1553
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1666,99 +1628,82 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1666
1628
|
}>>[]): void;
|
|
1667
1629
|
addTab(): void;
|
|
1668
1630
|
removeTab(index: number): void;
|
|
1669
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1670
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1671
|
-
}, {
|
|
1672
|
-
readonly json: {
|
|
1673
|
-
_name: EViewComponentType.Division;
|
|
1674
|
-
};
|
|
1675
1631
|
}>>>) | ({
|
|
1676
1632
|
_name: EViewComponentType.Modal;
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
}
|
|
1683
|
-
readonly json: {
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
}, {
|
|
1699
|
-
readonly json: {
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
enabled:
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
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
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1760
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1761
|
-
tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
1633
|
+
width: string;
|
|
1634
|
+
height: string;
|
|
1635
|
+
custom_modal_title: {
|
|
1636
|
+
enabled: boolean;
|
|
1637
|
+
func_content: string;
|
|
1638
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1639
|
+
readonly json: {
|
|
1640
|
+
enabled: boolean;
|
|
1641
|
+
func_content: string;
|
|
1642
|
+
};
|
|
1643
|
+
readonly value: any;
|
|
1644
|
+
} & {
|
|
1645
|
+
setEnabled(v: boolean): void;
|
|
1646
|
+
setFuncContent(v: string): void;
|
|
1647
|
+
replace({ enabled, func_content }: {
|
|
1648
|
+
enabled: boolean;
|
|
1649
|
+
func_content: string;
|
|
1650
|
+
}): void;
|
|
1651
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
1652
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1653
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1654
|
+
}, {
|
|
1655
|
+
readonly json: {
|
|
1656
|
+
enabled: boolean;
|
|
1657
|
+
func_content: string;
|
|
1658
|
+
};
|
|
1659
|
+
readonly value: any;
|
|
1660
|
+
} & {
|
|
1661
|
+
setEnabled(v: boolean): void;
|
|
1662
|
+
setFuncContent(v: string): void;
|
|
1663
|
+
replace({ enabled, func_content }: {
|
|
1664
|
+
enabled: boolean;
|
|
1665
|
+
func_content: string;
|
|
1666
|
+
}): void;
|
|
1667
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
1668
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1669
|
+
readonly json: {
|
|
1670
|
+
_name: EViewComponentType.Modal;
|
|
1671
|
+
width: string;
|
|
1672
|
+
height: string;
|
|
1673
|
+
custom_modal_title: {
|
|
1674
|
+
enabled: boolean;
|
|
1675
|
+
func_content: string;
|
|
1676
|
+
};
|
|
1677
|
+
};
|
|
1678
|
+
} & {
|
|
1679
|
+
setWidth(v: string): void;
|
|
1680
|
+
setHeight(v: string): void;
|
|
1681
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1682
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1683
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1684
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1685
|
+
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1686
|
+
height: import("mobx-state-tree").ISimpleType<string>;
|
|
1687
|
+
custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
1688
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1689
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1690
|
+
}, {
|
|
1691
|
+
readonly json: {
|
|
1692
|
+
enabled: boolean;
|
|
1693
|
+
func_content: string;
|
|
1694
|
+
};
|
|
1695
|
+
readonly value: any;
|
|
1696
|
+
} & {
|
|
1697
|
+
setEnabled(v: boolean): void;
|
|
1698
|
+
setFuncContent(v: string): void;
|
|
1699
|
+
replace({ enabled, func_content }: {
|
|
1700
|
+
enabled: boolean;
|
|
1701
|
+
func_content: string;
|
|
1702
|
+
}): void;
|
|
1703
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
1704
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1705
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1706
|
+
tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
1762
1707
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1763
1708
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
1764
1709
|
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1778,9 +1723,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1778
1723
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1779
1724
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1780
1725
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1781
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1782
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1783
1726
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
1727
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1728
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1784
1729
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1785
1730
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1786
1731
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1823,9 +1768,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1823
1768
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1824
1769
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1825
1770
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1826
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1827
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1828
1771
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
1772
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1773
|
+
}, {
|
|
1774
|
+
readonly json: {
|
|
1775
|
+
_name: EViewComponentType.Division;
|
|
1776
|
+
};
|
|
1777
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1829
1778
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1830
1779
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1831
1780
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1906,19 +1855,72 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1906
1855
|
}>>[]): void;
|
|
1907
1856
|
addTab(): void;
|
|
1908
1857
|
removeTab(index: number): void;
|
|
1909
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
1910
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1911
|
-
}, {
|
|
1912
|
-
readonly json: {
|
|
1913
|
-
_name: EViewComponentType.Division;
|
|
1914
|
-
};
|
|
1915
1858
|
}>>>) | ({
|
|
1916
|
-
_name: EViewComponentType.
|
|
1859
|
+
_name: EViewComponentType.Modal;
|
|
1860
|
+
tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
1861
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1862
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
1863
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
1864
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1865
|
+
}, {
|
|
1866
|
+
readonly json: {
|
|
1867
|
+
id: string;
|
|
1868
|
+
name: string;
|
|
1869
|
+
color: string;
|
|
1870
|
+
view_id: string;
|
|
1871
|
+
};
|
|
1872
|
+
} & {
|
|
1873
|
+
setName(v: string): void;
|
|
1874
|
+
setViewID(v: string): void;
|
|
1875
|
+
setColor(v: string): void;
|
|
1876
|
+
}, 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<{
|
|
1877
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1878
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
1879
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
1880
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1881
|
+
}, {
|
|
1882
|
+
readonly json: {
|
|
1883
|
+
id: string;
|
|
1884
|
+
name: string;
|
|
1885
|
+
color: string;
|
|
1886
|
+
view_id: string;
|
|
1887
|
+
};
|
|
1888
|
+
} & {
|
|
1889
|
+
setName(v: string): void;
|
|
1890
|
+
setViewID(v: string): void;
|
|
1891
|
+
setColor(v: string): void;
|
|
1892
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
1893
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
1894
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
1895
|
+
grow: boolean;
|
|
1917
1896
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1918
1897
|
readonly json: {
|
|
1919
|
-
|
|
1898
|
+
grow: boolean;
|
|
1899
|
+
tabs: {
|
|
1900
|
+
id: string;
|
|
1901
|
+
name: string;
|
|
1902
|
+
color: string;
|
|
1903
|
+
view_id: string;
|
|
1904
|
+
}[];
|
|
1905
|
+
_name: EViewComponentType.Modal;
|
|
1906
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
1907
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
1920
1908
|
};
|
|
1909
|
+
} & {
|
|
1910
|
+
setVariant(v: import("@mantine/core").TabsVariant): void;
|
|
1911
|
+
setOrientation(v: import("@mantine/core").TabsOrientation): void;
|
|
1912
|
+
setGrow(v: boolean): void;
|
|
1913
|
+
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1914
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1915
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
1916
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
1917
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
1918
|
+
}>>[]): void;
|
|
1919
|
+
addTab(): void;
|
|
1920
|
+
removeTab(index: number): void;
|
|
1921
1921
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1922
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1923
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1922
1924
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1923
1925
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1924
1926
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -1961,9 +1963,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
1961
1963
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
1962
1964
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
1963
1965
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1964
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
1965
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1966
1966
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
1967
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
1968
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
1967
1969
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
1968
1970
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
1969
1971
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2006,9 +2008,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2006
2008
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2007
2009
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2008
2010
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2009
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2010
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2011
2011
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
2012
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2013
|
+
}, {
|
|
2014
|
+
readonly json: {
|
|
2015
|
+
_name: EViewComponentType.Division;
|
|
2016
|
+
};
|
|
2017
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2012
2018
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2013
2019
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2014
2020
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2089,12 +2095,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2089
2095
|
}>>[]): void;
|
|
2090
2096
|
addTab(): void;
|
|
2091
2097
|
removeTab(index: number): void;
|
|
2092
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2093
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2094
|
-
}, {
|
|
2095
|
-
readonly json: {
|
|
2096
|
-
_name: EViewComponentType.Division;
|
|
2097
|
-
};
|
|
2098
2098
|
}>>>);
|
|
2099
2099
|
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]>>;
|
|
2100
2100
|
tab: string;
|
|
@@ -2104,6 +2104,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2104
2104
|
name: string;
|
|
2105
2105
|
type: EViewComponentType;
|
|
2106
2106
|
config: {
|
|
2107
|
+
_name: EViewComponentType.Division;
|
|
2108
|
+
} | {
|
|
2107
2109
|
_name: EViewComponentType.Modal;
|
|
2108
2110
|
width: string;
|
|
2109
2111
|
height: string;
|
|
@@ -2122,8 +2124,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2122
2124
|
_name: EViewComponentType.Modal;
|
|
2123
2125
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
2124
2126
|
orientation: import("@mantine/core").TabsOrientation;
|
|
2125
|
-
} | {
|
|
2126
|
-
_name: EViewComponentType.Division;
|
|
2127
2127
|
};
|
|
2128
2128
|
panelIDs: string[];
|
|
2129
2129
|
};
|
|
@@ -2147,6 +2147,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2147
2147
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2148
2148
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
2149
2149
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2150
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2151
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2150
2152
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2151
2153
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2152
2154
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2189,9 +2191,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2189
2191
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2190
2192
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2191
2193
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2192
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2193
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2194
2194
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
2195
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2196
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2195
2197
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2196
2198
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2197
2199
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2234,9 +2236,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2234
2236
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2235
2237
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2236
2238
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2237
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2238
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2239
2239
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
2240
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2241
|
+
}, {
|
|
2242
|
+
readonly json: {
|
|
2243
|
+
_name: EViewComponentType.Division;
|
|
2244
|
+
};
|
|
2245
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2240
2246
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2241
2247
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2242
2248
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2317,12 +2323,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2317
2323
|
}>>[]): void;
|
|
2318
2324
|
addTab(): void;
|
|
2319
2325
|
removeTab(index: number): void;
|
|
2320
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2321
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2322
|
-
}, {
|
|
2323
|
-
readonly json: {
|
|
2324
|
-
_name: EViewComponentType.Division;
|
|
2325
|
-
};
|
|
2326
2326
|
}>>;
|
|
2327
2327
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
2328
2328
|
} & {
|
|
@@ -2333,6 +2333,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2333
2333
|
name: string;
|
|
2334
2334
|
type: EViewComponentType;
|
|
2335
2335
|
config: {
|
|
2336
|
+
_name: EViewComponentType.Division;
|
|
2337
|
+
} | {
|
|
2336
2338
|
_name: EViewComponentType.Modal;
|
|
2337
2339
|
width: string;
|
|
2338
2340
|
height: string;
|
|
@@ -2351,8 +2353,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2351
2353
|
_name: EViewComponentType.Modal;
|
|
2352
2354
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
2353
2355
|
orientation: import("@mantine/core").TabsOrientation;
|
|
2354
|
-
} | {
|
|
2355
|
-
_name: EViewComponentType.Division;
|
|
2356
2356
|
};
|
|
2357
2357
|
panelIDs: string[];
|
|
2358
2358
|
};
|
|
@@ -2377,13 +2377,21 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2377
2377
|
name: string;
|
|
2378
2378
|
type: EViewComponentType;
|
|
2379
2379
|
config: ({
|
|
2380
|
-
_name: EViewComponentType.
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2380
|
+
_name: EViewComponentType.Division;
|
|
2381
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2382
|
+
readonly json: {
|
|
2383
|
+
_name: EViewComponentType.Division;
|
|
2384
|
+
};
|
|
2385
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2386
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2387
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2388
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2389
|
+
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2390
|
+
height: import("mobx-state-tree").ISimpleType<string>;
|
|
2391
|
+
custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
2392
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2393
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2394
|
+
}, {
|
|
2387
2395
|
readonly json: {
|
|
2388
2396
|
enabled: boolean;
|
|
2389
2397
|
func_content: string;
|
|
@@ -2396,70 +2404,20 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2396
2404
|
enabled: boolean;
|
|
2397
2405
|
func_content: string;
|
|
2398
2406
|
}): void;
|
|
2399
|
-
}
|
|
2400
|
-
|
|
2401
|
-
|
|
2407
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
2408
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2409
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2410
|
+
tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
2411
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2412
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2413
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
2414
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2402
2415
|
}, {
|
|
2403
2416
|
readonly json: {
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
} & {
|
|
2409
|
-
setEnabled(v: boolean): void;
|
|
2410
|
-
setFuncContent(v: string): void;
|
|
2411
|
-
replace({ enabled, func_content }: {
|
|
2412
|
-
enabled: boolean;
|
|
2413
|
-
func_content: string;
|
|
2414
|
-
}): void;
|
|
2415
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
2416
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2417
|
-
readonly json: {
|
|
2418
|
-
_name: EViewComponentType.Modal;
|
|
2419
|
-
width: string;
|
|
2420
|
-
height: string;
|
|
2421
|
-
custom_modal_title: {
|
|
2422
|
-
enabled: boolean;
|
|
2423
|
-
func_content: string;
|
|
2424
|
-
};
|
|
2425
|
-
};
|
|
2426
|
-
} & {
|
|
2427
|
-
setWidth(v: string): void;
|
|
2428
|
-
setHeight(v: string): void;
|
|
2429
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2430
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2431
|
-
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2432
|
-
height: import("mobx-state-tree").ISimpleType<string>;
|
|
2433
|
-
custom_modal_title: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
2434
|
-
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2435
|
-
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2436
|
-
}, {
|
|
2437
|
-
readonly json: {
|
|
2438
|
-
enabled: boolean;
|
|
2439
|
-
func_content: string;
|
|
2440
|
-
};
|
|
2441
|
-
readonly value: any;
|
|
2442
|
-
} & {
|
|
2443
|
-
setEnabled(v: boolean): void;
|
|
2444
|
-
setFuncContent(v: string): void;
|
|
2445
|
-
replace({ enabled, func_content }: {
|
|
2446
|
-
enabled: boolean;
|
|
2447
|
-
func_content: string;
|
|
2448
|
-
}): void;
|
|
2449
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
2450
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2451
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2452
|
-
tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
2453
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2454
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2455
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
2456
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2457
|
-
}, {
|
|
2458
|
-
readonly json: {
|
|
2459
|
-
id: string;
|
|
2460
|
-
name: string;
|
|
2461
|
-
color: string;
|
|
2462
|
-
view_id: string;
|
|
2417
|
+
id: string;
|
|
2418
|
+
name: string;
|
|
2419
|
+
color: string;
|
|
2420
|
+
view_id: string;
|
|
2463
2421
|
};
|
|
2464
2422
|
} & {
|
|
2465
2423
|
setName(v: string): void;
|
|
@@ -2469,9 +2427,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2469
2427
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2470
2428
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2471
2429
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2472
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2473
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2474
2430
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
2431
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2432
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2475
2433
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2476
2434
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2477
2435
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2514,9 +2472,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2514
2472
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2515
2473
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2516
2474
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2517
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2518
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2519
2475
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
2476
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2477
|
+
}, {
|
|
2478
|
+
readonly json: {
|
|
2479
|
+
_name: EViewComponentType.Division;
|
|
2480
|
+
};
|
|
2481
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2520
2482
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2521
2483
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2522
2484
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2597,76 +2559,59 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2597
2559
|
}>>[]): void;
|
|
2598
2560
|
addTab(): void;
|
|
2599
2561
|
removeTab(index: number): void;
|
|
2600
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2601
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2602
|
-
}, {
|
|
2603
|
-
readonly json: {
|
|
2604
|
-
_name: EViewComponentType.Division;
|
|
2605
|
-
};
|
|
2606
2562
|
}>>>) | ({
|
|
2607
2563
|
_name: EViewComponentType.Modal;
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
}
|
|
2564
|
+
width: string;
|
|
2565
|
+
height: string;
|
|
2566
|
+
custom_modal_title: {
|
|
2567
|
+
enabled: boolean;
|
|
2568
|
+
func_content: string;
|
|
2569
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2614
2570
|
readonly json: {
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
color: string;
|
|
2618
|
-
view_id: string;
|
|
2571
|
+
enabled: boolean;
|
|
2572
|
+
func_content: string;
|
|
2619
2573
|
};
|
|
2574
|
+
readonly value: any;
|
|
2620
2575
|
} & {
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2576
|
+
setEnabled(v: boolean): void;
|
|
2577
|
+
setFuncContent(v: string): void;
|
|
2578
|
+
replace({ enabled, func_content }: {
|
|
2579
|
+
enabled: boolean;
|
|
2580
|
+
func_content: string;
|
|
2581
|
+
}): void;
|
|
2582
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
2583
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2584
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2629
2585
|
}, {
|
|
2630
2586
|
readonly json: {
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
color: string;
|
|
2634
|
-
view_id: string;
|
|
2587
|
+
enabled: boolean;
|
|
2588
|
+
func_content: string;
|
|
2635
2589
|
};
|
|
2590
|
+
readonly value: any;
|
|
2636
2591
|
} & {
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2592
|
+
setEnabled(v: boolean): void;
|
|
2593
|
+
setFuncContent(v: string): void;
|
|
2594
|
+
replace({ enabled, func_content }: {
|
|
2595
|
+
enabled: boolean;
|
|
2596
|
+
func_content: string;
|
|
2597
|
+
}): void;
|
|
2598
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
2644
2599
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2645
2600
|
readonly json: {
|
|
2646
|
-
grow: boolean;
|
|
2647
|
-
tabs: {
|
|
2648
|
-
id: string;
|
|
2649
|
-
name: string;
|
|
2650
|
-
color: string;
|
|
2651
|
-
view_id: string;
|
|
2652
|
-
}[];
|
|
2653
2601
|
_name: EViewComponentType.Modal;
|
|
2654
|
-
|
|
2655
|
-
|
|
2602
|
+
width: string;
|
|
2603
|
+
height: string;
|
|
2604
|
+
custom_modal_title: {
|
|
2605
|
+
enabled: boolean;
|
|
2606
|
+
func_content: string;
|
|
2607
|
+
};
|
|
2656
2608
|
};
|
|
2657
2609
|
} & {
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
setGrow(v: boolean): void;
|
|
2661
|
-
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2662
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2663
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2664
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
2665
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2666
|
-
}>>[]): void;
|
|
2667
|
-
addTab(): void;
|
|
2668
|
-
removeTab(index: number): void;
|
|
2610
|
+
setWidth(v: string): void;
|
|
2611
|
+
setHeight(v: string): void;
|
|
2669
2612
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2613
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2614
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2670
2615
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2671
2616
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2672
2617
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2709,9 +2654,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2709
2654
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2710
2655
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2711
2656
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2712
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2713
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2714
2657
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
2658
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2659
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2715
2660
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2716
2661
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2717
2662
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2754,9 +2699,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2754
2699
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2755
2700
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2756
2701
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2757
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2758
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2759
2702
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
2703
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2704
|
+
}, {
|
|
2705
|
+
readonly json: {
|
|
2706
|
+
_name: EViewComponentType.Division;
|
|
2707
|
+
};
|
|
2708
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2760
2709
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2761
2710
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2762
2711
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2837,19 +2786,72 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2837
2786
|
}>>[]): void;
|
|
2838
2787
|
addTab(): void;
|
|
2839
2788
|
removeTab(index: number): void;
|
|
2840
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2841
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2842
|
-
}, {
|
|
2843
|
-
readonly json: {
|
|
2844
|
-
_name: EViewComponentType.Division;
|
|
2845
|
-
};
|
|
2846
2789
|
}>>>) | ({
|
|
2847
|
-
_name: EViewComponentType.
|
|
2790
|
+
_name: EViewComponentType.Modal;
|
|
2791
|
+
tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
2792
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2793
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2794
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
2795
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2796
|
+
}, {
|
|
2797
|
+
readonly json: {
|
|
2798
|
+
id: string;
|
|
2799
|
+
name: string;
|
|
2800
|
+
color: string;
|
|
2801
|
+
view_id: string;
|
|
2802
|
+
};
|
|
2803
|
+
} & {
|
|
2804
|
+
setName(v: string): void;
|
|
2805
|
+
setViewID(v: string): void;
|
|
2806
|
+
setColor(v: string): void;
|
|
2807
|
+
}, 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<{
|
|
2808
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2809
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2810
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
2811
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2812
|
+
}, {
|
|
2813
|
+
readonly json: {
|
|
2814
|
+
id: string;
|
|
2815
|
+
name: string;
|
|
2816
|
+
color: string;
|
|
2817
|
+
view_id: string;
|
|
2818
|
+
};
|
|
2819
|
+
} & {
|
|
2820
|
+
setName(v: string): void;
|
|
2821
|
+
setViewID(v: string): void;
|
|
2822
|
+
setColor(v: string): void;
|
|
2823
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
2824
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
2825
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
2826
|
+
grow: boolean;
|
|
2848
2827
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2849
2828
|
readonly json: {
|
|
2850
|
-
|
|
2829
|
+
grow: boolean;
|
|
2830
|
+
tabs: {
|
|
2831
|
+
id: string;
|
|
2832
|
+
name: string;
|
|
2833
|
+
color: string;
|
|
2834
|
+
view_id: string;
|
|
2835
|
+
}[];
|
|
2836
|
+
_name: EViewComponentType.Modal;
|
|
2837
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
2838
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
2851
2839
|
};
|
|
2840
|
+
} & {
|
|
2841
|
+
setVariant(v: import("@mantine/core").TabsVariant): void;
|
|
2842
|
+
setOrientation(v: import("@mantine/core").TabsOrientation): void;
|
|
2843
|
+
setGrow(v: boolean): void;
|
|
2844
|
+
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2845
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2846
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
2847
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
2848
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
2849
|
+
}>>[]): void;
|
|
2850
|
+
addTab(): void;
|
|
2851
|
+
removeTab(index: number): void;
|
|
2852
2852
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2853
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2854
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2853
2855
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2854
2856
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2855
2857
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2892,9 +2894,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2892
2894
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2893
2895
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2894
2896
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2895
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
2896
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2897
2897
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
2898
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2899
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2898
2900
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2899
2901
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2900
2902
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -2937,9 +2939,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
2937
2939
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
2938
2940
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
2939
2941
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2940
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
2941
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2942
2942
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
2943
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
2944
|
+
}, {
|
|
2945
|
+
readonly json: {
|
|
2946
|
+
_name: EViewComponentType.Division;
|
|
2947
|
+
};
|
|
2948
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
2943
2949
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
2944
2950
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
2945
2951
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3020,12 +3026,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3020
3026
|
}>>[]): void;
|
|
3021
3027
|
addTab(): void;
|
|
3022
3028
|
removeTab(index: number): void;
|
|
3023
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3024
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3025
|
-
}, {
|
|
3026
|
-
readonly json: {
|
|
3027
|
-
_name: EViewComponentType.Division;
|
|
3028
|
-
};
|
|
3029
3029
|
}>>>);
|
|
3030
3030
|
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]>>;
|
|
3031
3031
|
tab: string;
|
|
@@ -3035,6 +3035,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3035
3035
|
name: string;
|
|
3036
3036
|
type: EViewComponentType;
|
|
3037
3037
|
config: {
|
|
3038
|
+
_name: EViewComponentType.Division;
|
|
3039
|
+
} | {
|
|
3038
3040
|
_name: EViewComponentType.Modal;
|
|
3039
3041
|
width: string;
|
|
3040
3042
|
height: string;
|
|
@@ -3053,8 +3055,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3053
3055
|
_name: EViewComponentType.Modal;
|
|
3054
3056
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
3055
3057
|
orientation: import("@mantine/core").TabsOrientation;
|
|
3056
|
-
} | {
|
|
3057
|
-
_name: EViewComponentType.Division;
|
|
3058
3058
|
};
|
|
3059
3059
|
panelIDs: string[];
|
|
3060
3060
|
};
|
|
@@ -3078,6 +3078,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3078
3078
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3079
3079
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
3080
3080
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3081
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3082
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3081
3083
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3082
3084
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3083
3085
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3120,9 +3122,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3120
3122
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3121
3123
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3122
3124
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3123
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3124
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3125
3125
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
3126
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3127
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3126
3128
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3127
3129
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3128
3130
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3165,9 +3167,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3165
3167
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3166
3168
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3167
3169
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3168
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3169
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3170
3170
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
3171
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3172
|
+
}, {
|
|
3173
|
+
readonly json: {
|
|
3174
|
+
_name: EViewComponentType.Division;
|
|
3175
|
+
};
|
|
3176
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3171
3177
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3172
3178
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3173
3179
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3248,12 +3254,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3248
3254
|
}>>[]): void;
|
|
3249
3255
|
addTab(): void;
|
|
3250
3256
|
removeTab(index: number): void;
|
|
3251
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3252
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3253
|
-
}, {
|
|
3254
|
-
readonly json: {
|
|
3255
|
-
_name: EViewComponentType.Division;
|
|
3256
|
-
};
|
|
3257
3257
|
}>>;
|
|
3258
3258
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
3259
3259
|
} & {
|
|
@@ -3264,6 +3264,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3264
3264
|
name: string;
|
|
3265
3265
|
type: EViewComponentType;
|
|
3266
3266
|
config: {
|
|
3267
|
+
_name: EViewComponentType.Division;
|
|
3268
|
+
} | {
|
|
3267
3269
|
_name: EViewComponentType.Modal;
|
|
3268
3270
|
width: string;
|
|
3269
3271
|
height: string;
|
|
@@ -3282,8 +3284,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3282
3284
|
_name: EViewComponentType.Modal;
|
|
3283
3285
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
3284
3286
|
orientation: import("@mantine/core").TabsOrientation;
|
|
3285
|
-
} | {
|
|
3286
|
-
_name: EViewComponentType.Division;
|
|
3287
3287
|
};
|
|
3288
3288
|
panelIDs: string[];
|
|
3289
3289
|
};
|
|
@@ -3308,56 +3308,14 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3308
3308
|
name: string;
|
|
3309
3309
|
type: EViewComponentType;
|
|
3310
3310
|
config: ({
|
|
3311
|
-
_name: EViewComponentType.
|
|
3312
|
-
width: string;
|
|
3313
|
-
height: string;
|
|
3314
|
-
custom_modal_title: {
|
|
3315
|
-
enabled: boolean;
|
|
3316
|
-
func_content: string;
|
|
3317
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3318
|
-
readonly json: {
|
|
3319
|
-
enabled: boolean;
|
|
3320
|
-
func_content: string;
|
|
3321
|
-
};
|
|
3322
|
-
readonly value: any;
|
|
3323
|
-
} & {
|
|
3324
|
-
setEnabled(v: boolean): void;
|
|
3325
|
-
setFuncContent(v: string): void;
|
|
3326
|
-
replace({ enabled, func_content }: {
|
|
3327
|
-
enabled: boolean;
|
|
3328
|
-
func_content: string;
|
|
3329
|
-
}): void;
|
|
3330
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
3331
|
-
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3332
|
-
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3333
|
-
}, {
|
|
3334
|
-
readonly json: {
|
|
3335
|
-
enabled: boolean;
|
|
3336
|
-
func_content: string;
|
|
3337
|
-
};
|
|
3338
|
-
readonly value: any;
|
|
3339
|
-
} & {
|
|
3340
|
-
setEnabled(v: boolean): void;
|
|
3341
|
-
setFuncContent(v: string): void;
|
|
3342
|
-
replace({ enabled, func_content }: {
|
|
3343
|
-
enabled: boolean;
|
|
3344
|
-
func_content: string;
|
|
3345
|
-
}): void;
|
|
3346
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
3311
|
+
_name: EViewComponentType.Division;
|
|
3347
3312
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3348
3313
|
readonly json: {
|
|
3349
|
-
_name: EViewComponentType.
|
|
3350
|
-
width: string;
|
|
3351
|
-
height: string;
|
|
3352
|
-
custom_modal_title: {
|
|
3353
|
-
enabled: boolean;
|
|
3354
|
-
func_content: string;
|
|
3355
|
-
};
|
|
3314
|
+
_name: EViewComponentType.Division;
|
|
3356
3315
|
};
|
|
3357
|
-
} & {
|
|
3358
|
-
setWidth(v: string): void;
|
|
3359
|
-
setHeight(v: string): void;
|
|
3360
3316
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3317
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3318
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3361
3319
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3362
3320
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3363
3321
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3400,9 +3358,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3400
3358
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3401
3359
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3402
3360
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3403
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3404
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3405
3361
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
3362
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3363
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3406
3364
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3407
3365
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3408
3366
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3445,9 +3403,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3445
3403
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3446
3404
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3447
3405
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3448
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3449
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3450
3406
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
3407
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3408
|
+
}, {
|
|
3409
|
+
readonly json: {
|
|
3410
|
+
_name: EViewComponentType.Division;
|
|
3411
|
+
};
|
|
3412
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3451
3413
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3452
3414
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3453
3415
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3457,102 +3419,33 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3457
3419
|
}, {
|
|
3458
3420
|
readonly json: {
|
|
3459
3421
|
enabled: boolean;
|
|
3460
|
-
func_content: string;
|
|
3461
|
-
};
|
|
3462
|
-
readonly value: any;
|
|
3463
|
-
} & {
|
|
3464
|
-
setEnabled(v: boolean): void;
|
|
3465
|
-
setFuncContent(v: string): void;
|
|
3466
|
-
replace({ enabled, func_content }: {
|
|
3467
|
-
enabled: boolean;
|
|
3468
|
-
func_content: string;
|
|
3469
|
-
}): void;
|
|
3470
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
3471
|
-
}, {
|
|
3472
|
-
readonly json: {
|
|
3473
|
-
_name: EViewComponentType.Modal;
|
|
3474
|
-
width: string;
|
|
3475
|
-
height: string;
|
|
3476
|
-
custom_modal_title: {
|
|
3477
|
-
enabled: boolean;
|
|
3478
|
-
func_content: string;
|
|
3479
|
-
};
|
|
3480
|
-
};
|
|
3481
|
-
} & {
|
|
3482
|
-
setWidth(v: string): void;
|
|
3483
|
-
setHeight(v: string): void;
|
|
3484
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3485
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3486
|
-
tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
3487
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3488
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3489
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
3490
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3491
|
-
}, {
|
|
3492
|
-
readonly json: {
|
|
3493
|
-
id: string;
|
|
3494
|
-
name: string;
|
|
3495
|
-
color: string;
|
|
3496
|
-
view_id: string;
|
|
3497
|
-
};
|
|
3498
|
-
} & {
|
|
3499
|
-
setName(v: string): void;
|
|
3500
|
-
setViewID(v: string): void;
|
|
3501
|
-
setColor(v: string): void;
|
|
3502
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
3503
|
-
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3504
|
-
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3505
|
-
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3506
|
-
}, {
|
|
3507
|
-
readonly json: {
|
|
3508
|
-
grow: boolean;
|
|
3509
|
-
tabs: {
|
|
3510
|
-
id: string;
|
|
3511
|
-
name: string;
|
|
3512
|
-
color: string;
|
|
3513
|
-
view_id: string;
|
|
3514
|
-
}[];
|
|
3515
|
-
_name: EViewComponentType.Modal;
|
|
3516
|
-
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
3517
|
-
orientation: import("@mantine/core").TabsOrientation;
|
|
3518
|
-
};
|
|
3519
|
-
} & {
|
|
3520
|
-
setVariant(v: import("@mantine/core").TabsVariant): void;
|
|
3521
|
-
setOrientation(v: import("@mantine/core").TabsOrientation): void;
|
|
3522
|
-
setGrow(v: boolean): void;
|
|
3523
|
-
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3524
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3525
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3526
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
3527
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3528
|
-
}>>[]): void;
|
|
3529
|
-
addTab(): void;
|
|
3530
|
-
removeTab(index: number): void;
|
|
3531
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3532
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3533
|
-
}, {
|
|
3534
|
-
readonly json: {
|
|
3535
|
-
_name: EViewComponentType.Division;
|
|
3536
|
-
};
|
|
3537
|
-
}>>>) | ({
|
|
3538
|
-
_name: EViewComponentType.Modal;
|
|
3539
|
-
tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
3540
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3541
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3542
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
3543
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3544
|
-
}, {
|
|
3545
|
-
readonly json: {
|
|
3546
|
-
id: string;
|
|
3547
|
-
name: string;
|
|
3548
|
-
color: string;
|
|
3549
|
-
view_id: string;
|
|
3422
|
+
func_content: string;
|
|
3550
3423
|
};
|
|
3424
|
+
readonly value: any;
|
|
3551
3425
|
} & {
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3426
|
+
setEnabled(v: boolean): void;
|
|
3427
|
+
setFuncContent(v: string): void;
|
|
3428
|
+
replace({ enabled, func_content }: {
|
|
3429
|
+
enabled: boolean;
|
|
3430
|
+
func_content: string;
|
|
3431
|
+
}): void;
|
|
3432
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>;
|
|
3433
|
+
}, {
|
|
3434
|
+
readonly json: {
|
|
3435
|
+
_name: EViewComponentType.Modal;
|
|
3436
|
+
width: string;
|
|
3437
|
+
height: string;
|
|
3438
|
+
custom_modal_title: {
|
|
3439
|
+
enabled: boolean;
|
|
3440
|
+
func_content: string;
|
|
3441
|
+
};
|
|
3442
|
+
};
|
|
3443
|
+
} & {
|
|
3444
|
+
setWidth(v: string): void;
|
|
3445
|
+
setHeight(v: string): void;
|
|
3446
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3447
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3448
|
+
tabs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
3556
3449
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3557
3450
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3558
3451
|
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3568,11 +3461,11 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3568
3461
|
setName(v: string): void;
|
|
3569
3462
|
setViewID(v: string): void;
|
|
3570
3463
|
setColor(v: string): void;
|
|
3571
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]
|
|
3572
|
-
variant:
|
|
3573
|
-
orientation: import("@mantine/core").TabsOrientation
|
|
3574
|
-
grow: boolean
|
|
3575
|
-
}
|
|
3464
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>;
|
|
3465
|
+
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3466
|
+
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3467
|
+
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3468
|
+
}, {
|
|
3576
3469
|
readonly json: {
|
|
3577
3470
|
grow: boolean;
|
|
3578
3471
|
tabs: {
|
|
@@ -3597,7 +3490,59 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3597
3490
|
}>>[]): void;
|
|
3598
3491
|
addTab(): void;
|
|
3599
3492
|
removeTab(index: number): void;
|
|
3493
|
+
}>>>) | ({
|
|
3494
|
+
_name: EViewComponentType.Modal;
|
|
3495
|
+
width: string;
|
|
3496
|
+
height: string;
|
|
3497
|
+
custom_modal_title: {
|
|
3498
|
+
enabled: boolean;
|
|
3499
|
+
func_content: string;
|
|
3500
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3501
|
+
readonly json: {
|
|
3502
|
+
enabled: boolean;
|
|
3503
|
+
func_content: string;
|
|
3504
|
+
};
|
|
3505
|
+
readonly value: any;
|
|
3506
|
+
} & {
|
|
3507
|
+
setEnabled(v: boolean): void;
|
|
3508
|
+
setFuncContent(v: string): void;
|
|
3509
|
+
replace({ enabled, func_content }: {
|
|
3510
|
+
enabled: boolean;
|
|
3511
|
+
func_content: string;
|
|
3512
|
+
}): void;
|
|
3513
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
3514
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3515
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3516
|
+
}, {
|
|
3517
|
+
readonly json: {
|
|
3518
|
+
enabled: boolean;
|
|
3519
|
+
func_content: string;
|
|
3520
|
+
};
|
|
3521
|
+
readonly value: any;
|
|
3522
|
+
} & {
|
|
3523
|
+
setEnabled(v: boolean): void;
|
|
3524
|
+
setFuncContent(v: string): void;
|
|
3525
|
+
replace({ enabled, func_content }: {
|
|
3526
|
+
enabled: boolean;
|
|
3527
|
+
func_content: string;
|
|
3528
|
+
}): void;
|
|
3529
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
3530
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3531
|
+
readonly json: {
|
|
3532
|
+
_name: EViewComponentType.Modal;
|
|
3533
|
+
width: string;
|
|
3534
|
+
height: string;
|
|
3535
|
+
custom_modal_title: {
|
|
3536
|
+
enabled: boolean;
|
|
3537
|
+
func_content: string;
|
|
3538
|
+
};
|
|
3539
|
+
};
|
|
3540
|
+
} & {
|
|
3541
|
+
setWidth(v: string): void;
|
|
3542
|
+
setHeight(v: string): void;
|
|
3600
3543
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3544
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3545
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3601
3546
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3602
3547
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3603
3548
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3640,9 +3585,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3640
3585
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3641
3586
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3642
3587
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3643
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3644
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3645
3588
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
3589
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3590
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3646
3591
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3647
3592
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3648
3593
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3685,9 +3630,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3685
3630
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3686
3631
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3687
3632
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3688
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3689
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3690
3633
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
3634
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3635
|
+
}, {
|
|
3636
|
+
readonly json: {
|
|
3637
|
+
_name: EViewComponentType.Division;
|
|
3638
|
+
};
|
|
3639
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3691
3640
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3692
3641
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3693
3642
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3768,19 +3717,72 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3768
3717
|
}>>[]): void;
|
|
3769
3718
|
addTab(): void;
|
|
3770
3719
|
removeTab(index: number): void;
|
|
3771
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3772
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3773
|
-
}, {
|
|
3774
|
-
readonly json: {
|
|
3775
|
-
_name: EViewComponentType.Division;
|
|
3776
|
-
};
|
|
3777
3720
|
}>>>) | ({
|
|
3778
|
-
_name: EViewComponentType.
|
|
3721
|
+
_name: EViewComponentType.Modal;
|
|
3722
|
+
tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
3723
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3724
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3725
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
3726
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3727
|
+
}, {
|
|
3728
|
+
readonly json: {
|
|
3729
|
+
id: string;
|
|
3730
|
+
name: string;
|
|
3731
|
+
color: string;
|
|
3732
|
+
view_id: string;
|
|
3733
|
+
};
|
|
3734
|
+
} & {
|
|
3735
|
+
setName(v: string): void;
|
|
3736
|
+
setViewID(v: string): void;
|
|
3737
|
+
setColor(v: string): void;
|
|
3738
|
+
}, 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<{
|
|
3739
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3740
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3741
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
3742
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3743
|
+
}, {
|
|
3744
|
+
readonly json: {
|
|
3745
|
+
id: string;
|
|
3746
|
+
name: string;
|
|
3747
|
+
color: string;
|
|
3748
|
+
view_id: string;
|
|
3749
|
+
};
|
|
3750
|
+
} & {
|
|
3751
|
+
setName(v: string): void;
|
|
3752
|
+
setViewID(v: string): void;
|
|
3753
|
+
setColor(v: string): void;
|
|
3754
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
3755
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
3756
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
3757
|
+
grow: boolean;
|
|
3779
3758
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3780
3759
|
readonly json: {
|
|
3781
|
-
|
|
3760
|
+
grow: boolean;
|
|
3761
|
+
tabs: {
|
|
3762
|
+
id: string;
|
|
3763
|
+
name: string;
|
|
3764
|
+
color: string;
|
|
3765
|
+
view_id: string;
|
|
3766
|
+
}[];
|
|
3767
|
+
_name: EViewComponentType.Modal;
|
|
3768
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
3769
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
3782
3770
|
};
|
|
3771
|
+
} & {
|
|
3772
|
+
setVariant(v: import("@mantine/core").TabsVariant): void;
|
|
3773
|
+
setOrientation(v: import("@mantine/core").TabsOrientation): void;
|
|
3774
|
+
setGrow(v: boolean): void;
|
|
3775
|
+
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3776
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3777
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
3778
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
3779
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
3780
|
+
}>>[]): void;
|
|
3781
|
+
addTab(): void;
|
|
3782
|
+
removeTab(index: number): void;
|
|
3783
3783
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3784
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3785
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3784
3786
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3785
3787
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3786
3788
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3823,9 +3825,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3823
3825
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3824
3826
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3825
3827
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3826
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
3827
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3828
3828
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
3829
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3830
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3829
3831
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3830
3832
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3831
3833
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3868,9 +3870,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3868
3870
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
3869
3871
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
3870
3872
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3871
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
3872
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3873
3873
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
3874
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3875
|
+
}, {
|
|
3876
|
+
readonly json: {
|
|
3877
|
+
_name: EViewComponentType.Division;
|
|
3878
|
+
};
|
|
3879
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3874
3880
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
3875
3881
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
3876
3882
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -3951,12 +3957,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3951
3957
|
}>>[]): void;
|
|
3952
3958
|
addTab(): void;
|
|
3953
3959
|
removeTab(index: number): void;
|
|
3954
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
3955
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
3956
|
-
}, {
|
|
3957
|
-
readonly json: {
|
|
3958
|
-
_name: EViewComponentType.Division;
|
|
3959
|
-
};
|
|
3960
3960
|
}>>>);
|
|
3961
3961
|
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]>>;
|
|
3962
3962
|
tab: string;
|
|
@@ -3966,6 +3966,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3966
3966
|
name: string;
|
|
3967
3967
|
type: EViewComponentType;
|
|
3968
3968
|
config: {
|
|
3969
|
+
_name: EViewComponentType.Division;
|
|
3970
|
+
} | {
|
|
3969
3971
|
_name: EViewComponentType.Modal;
|
|
3970
3972
|
width: string;
|
|
3971
3973
|
height: string;
|
|
@@ -3984,8 +3986,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
3984
3986
|
_name: EViewComponentType.Modal;
|
|
3985
3987
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
3986
3988
|
orientation: import("@mantine/core").TabsOrientation;
|
|
3987
|
-
} | {
|
|
3988
|
-
_name: EViewComponentType.Division;
|
|
3989
3989
|
};
|
|
3990
3990
|
panelIDs: string[];
|
|
3991
3991
|
};
|
|
@@ -4009,6 +4009,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4009
4009
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4010
4010
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
4011
4011
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4012
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4013
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4012
4014
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4013
4015
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4014
4016
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4051,9 +4053,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4051
4053
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4052
4054
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4053
4055
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4054
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4055
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4056
4056
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
4057
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4058
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4057
4059
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4058
4060
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4059
4061
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4096,9 +4098,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4096
4098
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4097
4099
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4098
4100
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4099
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4100
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4101
4101
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
4102
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4103
|
+
}, {
|
|
4104
|
+
readonly json: {
|
|
4105
|
+
_name: EViewComponentType.Division;
|
|
4106
|
+
};
|
|
4107
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4102
4108
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4103
4109
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4104
4110
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4179,12 +4185,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4179
4185
|
}>>[]): void;
|
|
4180
4186
|
addTab(): void;
|
|
4181
4187
|
removeTab(index: number): void;
|
|
4182
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4183
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4184
|
-
}, {
|
|
4185
|
-
readonly json: {
|
|
4186
|
-
_name: EViewComponentType.Division;
|
|
4187
|
-
};
|
|
4188
4188
|
}>>;
|
|
4189
4189
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
4190
4190
|
} & {
|
|
@@ -4195,6 +4195,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4195
4195
|
name: string;
|
|
4196
4196
|
type: EViewComponentType;
|
|
4197
4197
|
config: {
|
|
4198
|
+
_name: EViewComponentType.Division;
|
|
4199
|
+
} | {
|
|
4198
4200
|
_name: EViewComponentType.Modal;
|
|
4199
4201
|
width: string;
|
|
4200
4202
|
height: string;
|
|
@@ -4213,8 +4215,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4213
4215
|
_name: EViewComponentType.Modal;
|
|
4214
4216
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
4215
4217
|
orientation: import("@mantine/core").TabsOrientation;
|
|
4216
|
-
} | {
|
|
4217
|
-
_name: EViewComponentType.Division;
|
|
4218
4218
|
};
|
|
4219
4219
|
panelIDs: string[];
|
|
4220
4220
|
};
|
|
@@ -4242,58 +4242,16 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4242
4242
|
readonly VIE: {
|
|
4243
4243
|
id: string;
|
|
4244
4244
|
name: string;
|
|
4245
|
-
type: EViewComponentType;
|
|
4246
|
-
config: ({
|
|
4247
|
-
_name: EViewComponentType.
|
|
4248
|
-
width: string;
|
|
4249
|
-
height: string;
|
|
4250
|
-
custom_modal_title: {
|
|
4251
|
-
enabled: boolean;
|
|
4252
|
-
func_content: string;
|
|
4253
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4254
|
-
readonly json: {
|
|
4255
|
-
enabled: boolean;
|
|
4256
|
-
func_content: string;
|
|
4257
|
-
};
|
|
4258
|
-
readonly value: any;
|
|
4259
|
-
} & {
|
|
4260
|
-
setEnabled(v: boolean): void;
|
|
4261
|
-
setFuncContent(v: string): void;
|
|
4262
|
-
replace({ enabled, func_content }: {
|
|
4263
|
-
enabled: boolean;
|
|
4264
|
-
func_content: string;
|
|
4265
|
-
}): void;
|
|
4266
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
4267
|
-
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4268
|
-
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4269
|
-
}, {
|
|
4270
|
-
readonly json: {
|
|
4271
|
-
enabled: boolean;
|
|
4272
|
-
func_content: string;
|
|
4273
|
-
};
|
|
4274
|
-
readonly value: any;
|
|
4275
|
-
} & {
|
|
4276
|
-
setEnabled(v: boolean): void;
|
|
4277
|
-
setFuncContent(v: string): void;
|
|
4278
|
-
replace({ enabled, func_content }: {
|
|
4279
|
-
enabled: boolean;
|
|
4280
|
-
func_content: string;
|
|
4281
|
-
}): void;
|
|
4282
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
4245
|
+
type: EViewComponentType;
|
|
4246
|
+
config: ({
|
|
4247
|
+
_name: EViewComponentType.Division;
|
|
4283
4248
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4284
4249
|
readonly json: {
|
|
4285
|
-
_name: EViewComponentType.
|
|
4286
|
-
width: string;
|
|
4287
|
-
height: string;
|
|
4288
|
-
custom_modal_title: {
|
|
4289
|
-
enabled: boolean;
|
|
4290
|
-
func_content: string;
|
|
4291
|
-
};
|
|
4250
|
+
_name: EViewComponentType.Division;
|
|
4292
4251
|
};
|
|
4293
|
-
} & {
|
|
4294
|
-
setWidth(v: string): void;
|
|
4295
|
-
setHeight(v: string): void;
|
|
4296
4252
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4253
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4254
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4297
4255
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4298
4256
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4299
4257
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4336,9 +4294,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4336
4294
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4337
4295
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4338
4296
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4339
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4340
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4341
4297
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
4298
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4299
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4342
4300
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4343
4301
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4344
4302
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4381,9 +4339,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4381
4339
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4382
4340
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4383
4341
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4384
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4385
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4386
4342
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
4343
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4344
|
+
}, {
|
|
4345
|
+
readonly json: {
|
|
4346
|
+
_name: EViewComponentType.Division;
|
|
4347
|
+
};
|
|
4348
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4387
4349
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4388
4350
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4389
4351
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4464,76 +4426,59 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4464
4426
|
}>>[]): void;
|
|
4465
4427
|
addTab(): void;
|
|
4466
4428
|
removeTab(index: number): void;
|
|
4467
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4468
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4469
|
-
}, {
|
|
4470
|
-
readonly json: {
|
|
4471
|
-
_name: EViewComponentType.Division;
|
|
4472
|
-
};
|
|
4473
4429
|
}>>>) | ({
|
|
4474
4430
|
_name: EViewComponentType.Modal;
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
}
|
|
4431
|
+
width: string;
|
|
4432
|
+
height: string;
|
|
4433
|
+
custom_modal_title: {
|
|
4434
|
+
enabled: boolean;
|
|
4435
|
+
func_content: string;
|
|
4436
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4481
4437
|
readonly json: {
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
color: string;
|
|
4485
|
-
view_id: string;
|
|
4438
|
+
enabled: boolean;
|
|
4439
|
+
func_content: string;
|
|
4486
4440
|
};
|
|
4441
|
+
readonly value: any;
|
|
4487
4442
|
} & {
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4443
|
+
setEnabled(v: boolean): void;
|
|
4444
|
+
setFuncContent(v: string): void;
|
|
4445
|
+
replace({ enabled, func_content }: {
|
|
4446
|
+
enabled: boolean;
|
|
4447
|
+
func_content: string;
|
|
4448
|
+
}): void;
|
|
4449
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
4450
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4451
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4496
4452
|
}, {
|
|
4497
4453
|
readonly json: {
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
color: string;
|
|
4501
|
-
view_id: string;
|
|
4454
|
+
enabled: boolean;
|
|
4455
|
+
func_content: string;
|
|
4502
4456
|
};
|
|
4457
|
+
readonly value: any;
|
|
4503
4458
|
} & {
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4459
|
+
setEnabled(v: boolean): void;
|
|
4460
|
+
setFuncContent(v: string): void;
|
|
4461
|
+
replace({ enabled, func_content }: {
|
|
4462
|
+
enabled: boolean;
|
|
4463
|
+
func_content: string;
|
|
4464
|
+
}): void;
|
|
4465
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
4511
4466
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4512
4467
|
readonly json: {
|
|
4513
|
-
grow: boolean;
|
|
4514
|
-
tabs: {
|
|
4515
|
-
id: string;
|
|
4516
|
-
name: string;
|
|
4517
|
-
color: string;
|
|
4518
|
-
view_id: string;
|
|
4519
|
-
}[];
|
|
4520
4468
|
_name: EViewComponentType.Modal;
|
|
4521
|
-
|
|
4522
|
-
|
|
4469
|
+
width: string;
|
|
4470
|
+
height: string;
|
|
4471
|
+
custom_modal_title: {
|
|
4472
|
+
enabled: boolean;
|
|
4473
|
+
func_content: string;
|
|
4474
|
+
};
|
|
4523
4475
|
};
|
|
4524
4476
|
} & {
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
setGrow(v: boolean): void;
|
|
4528
|
-
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4529
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4530
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4531
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
4532
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4533
|
-
}>>[]): void;
|
|
4534
|
-
addTab(): void;
|
|
4535
|
-
removeTab(index: number): void;
|
|
4477
|
+
setWidth(v: string): void;
|
|
4478
|
+
setHeight(v: string): void;
|
|
4536
4479
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4480
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4481
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4537
4482
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4538
4483
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4539
4484
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4576,9 +4521,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4576
4521
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4577
4522
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4578
4523
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4579
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4580
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4581
4524
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
4525
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4526
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4582
4527
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4583
4528
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4584
4529
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4621,9 +4566,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4621
4566
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4622
4567
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4623
4568
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4624
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4625
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4626
4569
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
4570
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4571
|
+
}, {
|
|
4572
|
+
readonly json: {
|
|
4573
|
+
_name: EViewComponentType.Division;
|
|
4574
|
+
};
|
|
4575
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4627
4576
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4628
4577
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4629
4578
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4704,19 +4653,72 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4704
4653
|
}>>[]): void;
|
|
4705
4654
|
addTab(): void;
|
|
4706
4655
|
removeTab(index: number): void;
|
|
4707
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4708
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4709
|
-
}, {
|
|
4710
|
-
readonly json: {
|
|
4711
|
-
_name: EViewComponentType.Division;
|
|
4712
|
-
};
|
|
4713
4656
|
}>>>) | ({
|
|
4714
|
-
_name: EViewComponentType.
|
|
4657
|
+
_name: EViewComponentType.Modal;
|
|
4658
|
+
tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
4659
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4660
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4661
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
4662
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4663
|
+
}, {
|
|
4664
|
+
readonly json: {
|
|
4665
|
+
id: string;
|
|
4666
|
+
name: string;
|
|
4667
|
+
color: string;
|
|
4668
|
+
view_id: string;
|
|
4669
|
+
};
|
|
4670
|
+
} & {
|
|
4671
|
+
setName(v: string): void;
|
|
4672
|
+
setViewID(v: string): void;
|
|
4673
|
+
setColor(v: string): void;
|
|
4674
|
+
}, 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<{
|
|
4675
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4676
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4677
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
4678
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4679
|
+
}, {
|
|
4680
|
+
readonly json: {
|
|
4681
|
+
id: string;
|
|
4682
|
+
name: string;
|
|
4683
|
+
color: string;
|
|
4684
|
+
view_id: string;
|
|
4685
|
+
};
|
|
4686
|
+
} & {
|
|
4687
|
+
setName(v: string): void;
|
|
4688
|
+
setViewID(v: string): void;
|
|
4689
|
+
setColor(v: string): void;
|
|
4690
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
4691
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
4692
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
4693
|
+
grow: boolean;
|
|
4715
4694
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4716
4695
|
readonly json: {
|
|
4717
|
-
|
|
4696
|
+
grow: boolean;
|
|
4697
|
+
tabs: {
|
|
4698
|
+
id: string;
|
|
4699
|
+
name: string;
|
|
4700
|
+
color: string;
|
|
4701
|
+
view_id: string;
|
|
4702
|
+
}[];
|
|
4703
|
+
_name: EViewComponentType.Modal;
|
|
4704
|
+
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
4705
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
4718
4706
|
};
|
|
4707
|
+
} & {
|
|
4708
|
+
setVariant(v: import("@mantine/core").TabsVariant): void;
|
|
4709
|
+
setOrientation(v: import("@mantine/core").TabsOrientation): void;
|
|
4710
|
+
setGrow(v: boolean): void;
|
|
4711
|
+
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4712
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4713
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4714
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
4715
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
4716
|
+
}>>[]): void;
|
|
4717
|
+
addTab(): void;
|
|
4718
|
+
removeTab(index: number): void;
|
|
4719
4719
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4720
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4721
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4720
4722
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4721
4723
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4722
4724
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4759,9 +4761,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4759
4761
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4760
4762
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4761
4763
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4762
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4763
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4764
4764
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
4765
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4766
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4765
4767
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4766
4768
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4767
4769
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4804,9 +4806,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4804
4806
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
4805
4807
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
4806
4808
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4807
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
4808
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4809
4809
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
4810
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4811
|
+
}, {
|
|
4812
|
+
readonly json: {
|
|
4813
|
+
_name: EViewComponentType.Division;
|
|
4814
|
+
};
|
|
4815
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4810
4816
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4811
4817
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4812
4818
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -4887,12 +4893,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4887
4893
|
}>>[]): void;
|
|
4888
4894
|
addTab(): void;
|
|
4889
4895
|
removeTab(index: number): void;
|
|
4890
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
4891
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4892
|
-
}, {
|
|
4893
|
-
readonly json: {
|
|
4894
|
-
_name: EViewComponentType.Division;
|
|
4895
|
-
};
|
|
4896
4896
|
}>>>);
|
|
4897
4897
|
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]>>;
|
|
4898
4898
|
tab: string;
|
|
@@ -4902,6 +4902,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4902
4902
|
name: string;
|
|
4903
4903
|
type: EViewComponentType;
|
|
4904
4904
|
config: {
|
|
4905
|
+
_name: EViewComponentType.Division;
|
|
4906
|
+
} | {
|
|
4905
4907
|
_name: EViewComponentType.Modal;
|
|
4906
4908
|
width: string;
|
|
4907
4909
|
height: string;
|
|
@@ -4920,8 +4922,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4920
4922
|
_name: EViewComponentType.Modal;
|
|
4921
4923
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
4922
4924
|
orientation: import("@mantine/core").TabsOrientation;
|
|
4923
|
-
} | {
|
|
4924
|
-
_name: EViewComponentType.Division;
|
|
4925
4925
|
};
|
|
4926
4926
|
panelIDs: string[];
|
|
4927
4927
|
};
|
|
@@ -4947,6 +4947,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4947
4947
|
name: string;
|
|
4948
4948
|
type: EViewComponentType;
|
|
4949
4949
|
config: {
|
|
4950
|
+
_name: EViewComponentType.Division;
|
|
4951
|
+
} | {
|
|
4950
4952
|
_name: EViewComponentType.Modal;
|
|
4951
4953
|
width: string;
|
|
4952
4954
|
height: string;
|
|
@@ -4965,8 +4967,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4965
4967
|
_name: EViewComponentType.Modal;
|
|
4966
4968
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
4967
4969
|
orientation: import("@mantine/core").TabsOrientation;
|
|
4968
|
-
} | {
|
|
4969
|
-
_name: EViewComponentType.Division;
|
|
4970
4970
|
};
|
|
4971
4971
|
panelIDs: string[];
|
|
4972
4972
|
}[];
|
|
@@ -4981,6 +4981,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
4981
4981
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
4982
4982
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
4983
4983
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4984
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
4985
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
4984
4986
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
4985
4987
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
4986
4988
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -5023,9 +5025,9 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
5023
5025
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
5024
5026
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
5025
5027
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5026
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
5027
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
5028
5028
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
5029
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
5030
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
5029
5031
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
5030
5032
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
5031
5033
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -5068,9 +5070,13 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
5068
5070
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
5069
5071
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
5070
5072
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5071
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
5072
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
5073
5073
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
5074
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
5075
|
+
}, {
|
|
5076
|
+
readonly json: {
|
|
5077
|
+
_name: EViewComponentType.Division;
|
|
5078
|
+
};
|
|
5079
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
5074
5080
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
5075
5081
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
5076
5082
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -5151,12 +5157,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
5151
5157
|
}>>[]): void;
|
|
5152
5158
|
addTab(): void;
|
|
5153
5159
|
removeTab(index: number): void;
|
|
5154
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
5155
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
5156
|
-
}, {
|
|
5157
|
-
readonly json: {
|
|
5158
|
-
_name: EViewComponentType.Division;
|
|
5159
|
-
};
|
|
5160
5160
|
}>>;
|
|
5161
5161
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
5162
5162
|
} & {
|
|
@@ -5167,6 +5167,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
5167
5167
|
name: string;
|
|
5168
5168
|
type: EViewComponentType;
|
|
5169
5169
|
config: {
|
|
5170
|
+
_name: EViewComponentType.Division;
|
|
5171
|
+
} | {
|
|
5170
5172
|
_name: EViewComponentType.Modal;
|
|
5171
5173
|
width: string;
|
|
5172
5174
|
height: string;
|
|
@@ -5185,8 +5187,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
5185
5187
|
_name: EViewComponentType.Modal;
|
|
5186
5188
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
5187
5189
|
orientation: import("@mantine/core").TabsOrientation;
|
|
5188
|
-
} | {
|
|
5189
|
-
_name: EViewComponentType.Division;
|
|
5190
5190
|
};
|
|
5191
5191
|
panelIDs: string[];
|
|
5192
5192
|
};
|
|
@@ -5212,6 +5212,8 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
5212
5212
|
name: string;
|
|
5213
5213
|
type: EViewComponentType;
|
|
5214
5214
|
config: {
|
|
5215
|
+
_name: EViewComponentType.Division;
|
|
5216
|
+
} | {
|
|
5215
5217
|
_name: EViewComponentType.Modal;
|
|
5216
5218
|
width: string;
|
|
5217
5219
|
height: string;
|
|
@@ -5230,8 +5232,6 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
5230
5232
|
_name: EViewComponentType.Modal;
|
|
5231
5233
|
variant: "default" | "outline" | "pills" | (string & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>>);
|
|
5232
5234
|
orientation: import("@mantine/core").TabsOrientation;
|
|
5233
|
-
} | {
|
|
5234
|
-
_name: EViewComponentType.Division;
|
|
5235
5235
|
};
|
|
5236
5236
|
panelIDs: string[];
|
|
5237
5237
|
}[];
|