@devtable/dashboard 10.49.0 → 10.50.1
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/filter/filter-tree-select/render/widget.d.ts +3 -2
- 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 +9934 -9914
- package/dist/dashboard.umd.js +82 -82
- package/dist/model/meta-model/dashboard/content/filter/widgets/tree-select.d.ts +6 -0
- 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
|
@@ -10,56 +10,14 @@ export declare const EditViewForm: (({ view }: {
|
|
|
10
10
|
name: string;
|
|
11
11
|
type: EViewComponentType;
|
|
12
12
|
config: ({
|
|
13
|
-
_name: EViewComponentType.
|
|
14
|
-
width: string;
|
|
15
|
-
height: string;
|
|
16
|
-
custom_modal_title: {
|
|
17
|
-
enabled: boolean;
|
|
18
|
-
func_content: string;
|
|
19
|
-
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
20
|
-
readonly json: {
|
|
21
|
-
enabled: boolean;
|
|
22
|
-
func_content: string;
|
|
23
|
-
};
|
|
24
|
-
readonly value: any;
|
|
25
|
-
} & {
|
|
26
|
-
setEnabled(v: boolean): void;
|
|
27
|
-
setFuncContent(v: string): void;
|
|
28
|
-
replace({ enabled, func_content }: {
|
|
29
|
-
enabled: boolean;
|
|
30
|
-
func_content: string;
|
|
31
|
-
}): void;
|
|
32
|
-
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
33
|
-
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
34
|
-
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
35
|
-
}, {
|
|
36
|
-
readonly json: {
|
|
37
|
-
enabled: boolean;
|
|
38
|
-
func_content: string;
|
|
39
|
-
};
|
|
40
|
-
readonly value: any;
|
|
41
|
-
} & {
|
|
42
|
-
setEnabled(v: boolean): void;
|
|
43
|
-
setFuncContent(v: string): void;
|
|
44
|
-
replace({ enabled, func_content }: {
|
|
45
|
-
enabled: boolean;
|
|
46
|
-
func_content: string;
|
|
47
|
-
}): void;
|
|
48
|
-
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
13
|
+
_name: EViewComponentType.Division;
|
|
49
14
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
50
15
|
readonly json: {
|
|
51
|
-
_name: EViewComponentType.
|
|
52
|
-
width: string;
|
|
53
|
-
height: string;
|
|
54
|
-
custom_modal_title: {
|
|
55
|
-
enabled: boolean;
|
|
56
|
-
func_content: string;
|
|
57
|
-
};
|
|
16
|
+
_name: EViewComponentType.Division;
|
|
58
17
|
};
|
|
59
|
-
} & {
|
|
60
|
-
setWidth(v: string): void;
|
|
61
|
-
setHeight(v: string): void;
|
|
62
18
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
19
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
20
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
63
21
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
64
22
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
65
23
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -102,9 +60,9 @@ export declare const EditViewForm: (({ view }: {
|
|
|
102
60
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
103
61
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
104
62
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
105
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
106
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
107
63
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
64
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
65
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
108
66
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
109
67
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
110
68
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -147,9 +105,13 @@ export declare const EditViewForm: (({ view }: {
|
|
|
147
105
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
148
106
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
149
107
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
150
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
151
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
152
108
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
109
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
110
|
+
}, {
|
|
111
|
+
readonly json: {
|
|
112
|
+
_name: EViewComponentType.Division;
|
|
113
|
+
};
|
|
114
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
153
115
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
154
116
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
155
117
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -230,76 +192,59 @@ export declare const EditViewForm: (({ view }: {
|
|
|
230
192
|
}>>[]): void;
|
|
231
193
|
addTab(): void;
|
|
232
194
|
removeTab(index: number): void;
|
|
233
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
234
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
235
|
-
}, {
|
|
236
|
-
readonly json: {
|
|
237
|
-
_name: EViewComponentType.Division;
|
|
238
|
-
};
|
|
239
195
|
}>>>) | ({
|
|
240
196
|
_name: EViewComponentType.Modal;
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
}
|
|
197
|
+
width: string;
|
|
198
|
+
height: string;
|
|
199
|
+
custom_modal_title: {
|
|
200
|
+
enabled: boolean;
|
|
201
|
+
func_content: string;
|
|
202
|
+
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
247
203
|
readonly json: {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
color: string;
|
|
251
|
-
view_id: string;
|
|
204
|
+
enabled: boolean;
|
|
205
|
+
func_content: string;
|
|
252
206
|
};
|
|
207
|
+
readonly value: any;
|
|
253
208
|
} & {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
209
|
+
setEnabled(v: boolean): void;
|
|
210
|
+
setFuncContent(v: string): void;
|
|
211
|
+
replace({ enabled, func_content }: {
|
|
212
|
+
enabled: boolean;
|
|
213
|
+
func_content: string;
|
|
214
|
+
}): void;
|
|
215
|
+
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IModelType<{
|
|
216
|
+
enabled: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
217
|
+
func_content: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
262
218
|
}, {
|
|
263
219
|
readonly json: {
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
color: string;
|
|
267
|
-
view_id: string;
|
|
220
|
+
enabled: boolean;
|
|
221
|
+
func_content: string;
|
|
268
222
|
};
|
|
223
|
+
readonly value: any;
|
|
269
224
|
} & {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
225
|
+
setEnabled(v: boolean): void;
|
|
226
|
+
setFuncContent(v: string): void;
|
|
227
|
+
replace({ enabled, func_content }: {
|
|
228
|
+
enabled: boolean;
|
|
229
|
+
func_content: string;
|
|
230
|
+
}): void;
|
|
231
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>, [undefined]>>;
|
|
277
232
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
278
233
|
readonly json: {
|
|
279
|
-
grow: boolean;
|
|
280
|
-
tabs: {
|
|
281
|
-
id: string;
|
|
282
|
-
name: string;
|
|
283
|
-
color: string;
|
|
284
|
-
view_id: string;
|
|
285
|
-
}[];
|
|
286
234
|
_name: EViewComponentType.Modal;
|
|
287
|
-
|
|
288
|
-
|
|
235
|
+
width: string;
|
|
236
|
+
height: string;
|
|
237
|
+
custom_modal_title: {
|
|
238
|
+
enabled: boolean;
|
|
239
|
+
func_content: string;
|
|
240
|
+
};
|
|
289
241
|
};
|
|
290
242
|
} & {
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
setGrow(v: boolean): void;
|
|
294
|
-
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
295
|
-
id: import("mobx-state-tree").ISimpleType<string>;
|
|
296
|
-
name: import("mobx-state-tree").ISimpleType<string>;
|
|
297
|
-
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
298
|
-
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
299
|
-
}>>[]): void;
|
|
300
|
-
addTab(): void;
|
|
301
|
-
removeTab(index: number): void;
|
|
243
|
+
setWidth(v: string): void;
|
|
244
|
+
setHeight(v: string): void;
|
|
302
245
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
246
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
247
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
303
248
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
304
249
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
305
250
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -342,9 +287,9 @@ export declare const EditViewForm: (({ view }: {
|
|
|
342
287
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
343
288
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
344
289
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
345
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
346
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
347
290
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
291
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
292
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
348
293
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
349
294
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
350
295
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -387,9 +332,13 @@ export declare const EditViewForm: (({ view }: {
|
|
|
387
332
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
388
333
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
389
334
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
390
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
391
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
392
335
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
336
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
337
|
+
}, {
|
|
338
|
+
readonly json: {
|
|
339
|
+
_name: EViewComponentType.Division;
|
|
340
|
+
};
|
|
341
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
393
342
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
394
343
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
395
344
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -470,19 +419,72 @@ export declare const EditViewForm: (({ view }: {
|
|
|
470
419
|
}>>[]): void;
|
|
471
420
|
addTab(): void;
|
|
472
421
|
removeTab(index: number): void;
|
|
473
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
474
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
475
|
-
}, {
|
|
476
|
-
readonly json: {
|
|
477
|
-
_name: EViewComponentType.Division;
|
|
478
|
-
};
|
|
479
422
|
}>>>) | ({
|
|
480
|
-
_name: EViewComponentType.
|
|
423
|
+
_name: EViewComponentType.Modal;
|
|
424
|
+
tabs: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
425
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
426
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
427
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
428
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
429
|
+
}, {
|
|
430
|
+
readonly json: {
|
|
431
|
+
id: string;
|
|
432
|
+
name: string;
|
|
433
|
+
color: string;
|
|
434
|
+
view_id: string;
|
|
435
|
+
};
|
|
436
|
+
} & {
|
|
437
|
+
setName(v: string): void;
|
|
438
|
+
setViewID(v: string): void;
|
|
439
|
+
setColor(v: string): void;
|
|
440
|
+
}, 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<{
|
|
441
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
442
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
443
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
444
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
445
|
+
}, {
|
|
446
|
+
readonly json: {
|
|
447
|
+
id: string;
|
|
448
|
+
name: string;
|
|
449
|
+
color: string;
|
|
450
|
+
view_id: string;
|
|
451
|
+
};
|
|
452
|
+
} & {
|
|
453
|
+
setName(v: string): void;
|
|
454
|
+
setViewID(v: string): void;
|
|
455
|
+
setColor(v: string): void;
|
|
456
|
+
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>, [undefined]>>;
|
|
457
|
+
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]>>);
|
|
458
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
459
|
+
grow: boolean;
|
|
481
460
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
482
461
|
readonly json: {
|
|
483
|
-
|
|
462
|
+
grow: boolean;
|
|
463
|
+
tabs: {
|
|
464
|
+
id: string;
|
|
465
|
+
name: string;
|
|
466
|
+
color: string;
|
|
467
|
+
view_id: string;
|
|
468
|
+
}[];
|
|
469
|
+
_name: EViewComponentType.Modal;
|
|
470
|
+
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]>>);
|
|
471
|
+
orientation: import("@mantine/core").TabsOrientation;
|
|
484
472
|
};
|
|
473
|
+
} & {
|
|
474
|
+
setVariant(v: import("@mantine/core").TabsVariant): void;
|
|
475
|
+
setOrientation(v: import("@mantine/core").TabsOrientation): void;
|
|
476
|
+
setGrow(v: boolean): void;
|
|
477
|
+
setTabs(v: import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
478
|
+
id: import("mobx-state-tree").ISimpleType<string>;
|
|
479
|
+
name: import("mobx-state-tree").ISimpleType<string>;
|
|
480
|
+
view_id: import("mobx-state-tree").ISimpleType<string>;
|
|
481
|
+
color: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
482
|
+
}>>[]): void;
|
|
483
|
+
addTab(): void;
|
|
484
|
+
removeTab(index: number): void;
|
|
485
485
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
486
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
487
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
486
488
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
487
489
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
488
490
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -525,9 +527,9 @@ export declare const EditViewForm: (({ view }: {
|
|
|
525
527
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
526
528
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
527
529
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
528
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
529
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
530
530
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
531
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
532
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
531
533
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
532
534
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
533
535
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -570,9 +572,13 @@ export declare const EditViewForm: (({ view }: {
|
|
|
570
572
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
571
573
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
572
574
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
573
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
574
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
575
575
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
576
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
577
|
+
}, {
|
|
578
|
+
readonly json: {
|
|
579
|
+
_name: EViewComponentType.Division;
|
|
580
|
+
};
|
|
581
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
576
582
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
577
583
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
578
584
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -653,12 +659,6 @@ export declare const EditViewForm: (({ view }: {
|
|
|
653
659
|
}>>[]): void;
|
|
654
660
|
addTab(): void;
|
|
655
661
|
removeTab(index: number): void;
|
|
656
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
657
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
658
|
-
}, {
|
|
659
|
-
readonly json: {
|
|
660
|
-
_name: EViewComponentType.Division;
|
|
661
|
-
};
|
|
662
662
|
}>>>);
|
|
663
663
|
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]>>;
|
|
664
664
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
@@ -667,6 +667,8 @@ export declare const EditViewForm: (({ view }: {
|
|
|
667
667
|
name: string;
|
|
668
668
|
type: EViewComponentType;
|
|
669
669
|
config: {
|
|
670
|
+
_name: EViewComponentType.Division;
|
|
671
|
+
} | {
|
|
670
672
|
_name: EViewComponentType.Modal;
|
|
671
673
|
width: string;
|
|
672
674
|
height: string;
|
|
@@ -685,8 +687,6 @@ export declare const EditViewForm: (({ view }: {
|
|
|
685
687
|
_name: EViewComponentType.Modal;
|
|
686
688
|
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]>>);
|
|
687
689
|
orientation: import("@mantine/core").TabsOrientation;
|
|
688
|
-
} | {
|
|
689
|
-
_name: EViewComponentType.Division;
|
|
690
690
|
};
|
|
691
691
|
panelIDs: string[];
|
|
692
692
|
};
|
|
@@ -701,6 +701,8 @@ export declare const EditViewForm: (({ view }: {
|
|
|
701
701
|
name: import("mobx-state-tree").ISimpleType<string>;
|
|
702
702
|
type: import("mobx-state-tree").ISimpleType<EViewComponentType>;
|
|
703
703
|
config: import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
704
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
705
|
+
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
704
706
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
705
707
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
706
708
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -743,9 +745,9 @@ export declare const EditViewForm: (({ view }: {
|
|
|
743
745
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
744
746
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
745
747
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
746
|
-
}>> | import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
747
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
748
748
|
}>>, import("mobx-state-tree").ModelSnapshotType<{
|
|
749
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
750
|
+
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
749
751
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
750
752
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
751
753
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -788,9 +790,13 @@ export declare const EditViewForm: (({ view }: {
|
|
|
788
790
|
variant: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsVariant>, [undefined]>;
|
|
789
791
|
orientation: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<import("@mantine/core").TabsOrientation>, [undefined]>;
|
|
790
792
|
grow: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
791
|
-
}> | import("mobx-state-tree").ModelSnapshotType<{
|
|
792
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
793
793
|
}>, import("mobx-state-tree").ModelInstanceType<{
|
|
794
|
+
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
795
|
+
}, {
|
|
796
|
+
readonly json: {
|
|
797
|
+
_name: EViewComponentType.Division;
|
|
798
|
+
};
|
|
799
|
+
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
794
800
|
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
|
|
795
801
|
width: import("mobx-state-tree").ISimpleType<string>;
|
|
796
802
|
height: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -871,12 +877,6 @@ export declare const EditViewForm: (({ view }: {
|
|
|
871
877
|
}>>[]): void;
|
|
872
878
|
addTab(): void;
|
|
873
879
|
removeTab(index: number): void;
|
|
874
|
-
}> | import("mobx-state-tree").ModelInstanceType<{
|
|
875
|
-
_name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
|
|
876
|
-
}, {
|
|
877
|
-
readonly json: {
|
|
878
|
-
_name: EViewComponentType.Division;
|
|
879
|
-
};
|
|
880
880
|
}>>;
|
|
881
881
|
panelIDs: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>;
|
|
882
882
|
}, {
|
|
@@ -885,6 +885,8 @@ export declare const EditViewForm: (({ view }: {
|
|
|
885
885
|
name: string;
|
|
886
886
|
type: EViewComponentType;
|
|
887
887
|
config: {
|
|
888
|
+
_name: EViewComponentType.Division;
|
|
889
|
+
} | {
|
|
888
890
|
_name: EViewComponentType.Modal;
|
|
889
891
|
width: string;
|
|
890
892
|
height: string;
|
|
@@ -903,8 +905,6 @@ export declare const EditViewForm: (({ view }: {
|
|
|
903
905
|
_name: EViewComponentType.Modal;
|
|
904
906
|
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]>>);
|
|
905
907
|
orientation: import("@mantine/core").TabsOrientation;
|
|
906
|
-
} | {
|
|
907
|
-
_name: EViewComponentType.Division;
|
|
908
908
|
};
|
|
909
909
|
panelIDs: string[];
|
|
910
910
|
};
|