amis-editor-core 6.5.0 → 6.7.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/esm/component/FormConfigWrapper.d.ts +6 -0
- package/esm/component/RegionWrapper.d.ts +16 -0
- package/esm/component/VRenderer.d.ts +16 -0
- package/esm/index.js +2 -2
- package/esm/layout/flex.d.ts +80 -0
- package/esm/manager.d.ts +28 -12
- package/esm/store/editor.d.ts +117 -135
- package/esm/store/node.d.ts +15 -0
- package/esm/util.d.ts +18 -0
- package/lib/component/FormConfigWrapper.d.ts +6 -0
- package/lib/component/RegionWrapper.d.ts +16 -0
- package/lib/component/VRenderer.d.ts +16 -0
- package/lib/component/base/BackTop.d.ts +1 -1
- package/lib/editor.js +1 -1
- package/lib/index.js +2 -2
- package/lib/layout/flex.d.ts +80 -0
- package/lib/manager.d.ts +28 -12
- package/lib/store/editor.d.ts +117 -136
- package/lib/store/node.d.ts +15 -0
- package/lib/style.css +1 -1
- package/lib/util.d.ts +18 -0
- package/package.json +1 -1
package/lib/layout/flex.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
20
20
|
parentId: string;
|
|
21
21
|
parentRegion: string;
|
|
22
22
|
isCommonConfig: boolean;
|
|
23
|
+
isFormConfig: boolean;
|
|
23
24
|
id: string;
|
|
24
25
|
type: string;
|
|
25
26
|
label: string;
|
|
@@ -82,6 +83,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
82
83
|
parentId: string;
|
|
83
84
|
parentRegion: string;
|
|
84
85
|
isCommonConfig: boolean;
|
|
86
|
+
isFormConfig: boolean;
|
|
85
87
|
id: string;
|
|
86
88
|
type: string;
|
|
87
89
|
label: string;
|
|
@@ -143,6 +145,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
143
145
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
144
146
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
145
147
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
148
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
146
149
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
147
150
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
148
151
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -205,6 +208,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
205
208
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
206
209
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
207
210
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
211
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
208
212
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
209
213
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
210
214
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -230,6 +234,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
230
234
|
parentId: string;
|
|
231
235
|
parentRegion: string;
|
|
232
236
|
isCommonConfig: boolean;
|
|
237
|
+
isFormConfig: boolean;
|
|
233
238
|
id: string;
|
|
234
239
|
type: string;
|
|
235
240
|
label: string;
|
|
@@ -291,6 +296,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
291
296
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
292
297
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
293
298
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
299
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
294
300
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
295
301
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
296
302
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -350,12 +356,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
350
356
|
readonly isSecondFactor: boolean;
|
|
351
357
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
352
358
|
updateIsCommonConfig: (value: boolean) => void;
|
|
359
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
353
360
|
addChild(props: {
|
|
354
361
|
id: string;
|
|
355
362
|
type: string;
|
|
356
363
|
label: string;
|
|
357
364
|
path: string;
|
|
358
365
|
isCommonConfig?: boolean | undefined;
|
|
366
|
+
isFormConfig?: boolean | undefined;
|
|
359
367
|
info?: import("../plugin").RendererInfo | undefined;
|
|
360
368
|
region?: string | undefined;
|
|
361
369
|
getData?: (() => any) | undefined;
|
|
@@ -383,6 +391,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
383
391
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
384
392
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
385
393
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
394
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
386
395
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
387
396
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
388
397
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -445,6 +454,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
445
454
|
parentId: string;
|
|
446
455
|
parentRegion: string;
|
|
447
456
|
isCommonConfig: boolean;
|
|
457
|
+
isFormConfig: boolean;
|
|
448
458
|
id: string;
|
|
449
459
|
type: string;
|
|
450
460
|
label: string;
|
|
@@ -506,6 +516,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
506
516
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
507
517
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
508
518
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
519
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
509
520
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
510
521
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
511
522
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -568,6 +579,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
568
579
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
569
580
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
570
581
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
582
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
571
583
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
572
584
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
573
585
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -593,6 +605,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
593
605
|
parentId: string;
|
|
594
606
|
parentRegion: string;
|
|
595
607
|
isCommonConfig: boolean;
|
|
608
|
+
isFormConfig: boolean;
|
|
596
609
|
id: string;
|
|
597
610
|
type: string;
|
|
598
611
|
label: string;
|
|
@@ -654,6 +667,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
654
667
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
655
668
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
656
669
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
670
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
657
671
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
658
672
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
659
673
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -713,12 +727,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
713
727
|
readonly isSecondFactor: boolean;
|
|
714
728
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
715
729
|
updateIsCommonConfig: (value: boolean) => void;
|
|
730
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
716
731
|
addChild(props: {
|
|
717
732
|
id: string;
|
|
718
733
|
type: string;
|
|
719
734
|
label: string;
|
|
720
735
|
path: string;
|
|
721
736
|
isCommonConfig?: boolean | undefined;
|
|
737
|
+
isFormConfig?: boolean | undefined;
|
|
722
738
|
info?: import("../plugin").RendererInfo | undefined;
|
|
723
739
|
region?: string | undefined;
|
|
724
740
|
getData?: (() => any) | undefined;
|
|
@@ -766,6 +782,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
766
782
|
parentId: string;
|
|
767
783
|
parentRegion: string;
|
|
768
784
|
isCommonConfig: boolean;
|
|
785
|
+
isFormConfig: boolean;
|
|
769
786
|
id: string;
|
|
770
787
|
type: string;
|
|
771
788
|
label: string;
|
|
@@ -828,6 +845,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
828
845
|
parentId: string;
|
|
829
846
|
parentRegion: string;
|
|
830
847
|
isCommonConfig: boolean;
|
|
848
|
+
isFormConfig: boolean;
|
|
831
849
|
id: string;
|
|
832
850
|
type: string;
|
|
833
851
|
label: string;
|
|
@@ -889,6 +907,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
889
907
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
890
908
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
891
909
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
910
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
892
911
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
893
912
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
894
913
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -951,6 +970,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
951
970
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
952
971
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
953
972
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
973
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
954
974
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
955
975
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
956
976
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -976,6 +996,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
976
996
|
parentId: string;
|
|
977
997
|
parentRegion: string;
|
|
978
998
|
isCommonConfig: boolean;
|
|
999
|
+
isFormConfig: boolean;
|
|
979
1000
|
id: string;
|
|
980
1001
|
type: string;
|
|
981
1002
|
label: string;
|
|
@@ -1037,6 +1058,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1037
1058
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1038
1059
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1039
1060
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1061
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1040
1062
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1041
1063
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1042
1064
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1096,12 +1118,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1096
1118
|
readonly isSecondFactor: boolean;
|
|
1097
1119
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1098
1120
|
updateIsCommonConfig: (value: boolean) => void;
|
|
1121
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
1099
1122
|
addChild(props: {
|
|
1100
1123
|
id: string;
|
|
1101
1124
|
type: string;
|
|
1102
1125
|
label: string;
|
|
1103
1126
|
path: string;
|
|
1104
1127
|
isCommonConfig?: boolean | undefined;
|
|
1128
|
+
isFormConfig?: boolean | undefined;
|
|
1105
1129
|
info?: import("../plugin").RendererInfo | undefined;
|
|
1106
1130
|
region?: string | undefined;
|
|
1107
1131
|
getData?: (() => any) | undefined;
|
|
@@ -1129,6 +1153,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1129
1153
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1130
1154
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1131
1155
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1156
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1132
1157
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1133
1158
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1134
1159
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1191,6 +1216,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1191
1216
|
parentId: string;
|
|
1192
1217
|
parentRegion: string;
|
|
1193
1218
|
isCommonConfig: boolean;
|
|
1219
|
+
isFormConfig: boolean;
|
|
1194
1220
|
id: string;
|
|
1195
1221
|
type: string;
|
|
1196
1222
|
label: string;
|
|
@@ -1252,6 +1278,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1252
1278
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1253
1279
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1254
1280
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1281
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1255
1282
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1256
1283
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1257
1284
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1314,6 +1341,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1314
1341
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1315
1342
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1316
1343
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1344
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1317
1345
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1318
1346
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1319
1347
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1339,6 +1367,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1339
1367
|
parentId: string;
|
|
1340
1368
|
parentRegion: string;
|
|
1341
1369
|
isCommonConfig: boolean;
|
|
1370
|
+
isFormConfig: boolean;
|
|
1342
1371
|
id: string;
|
|
1343
1372
|
type: string;
|
|
1344
1373
|
label: string;
|
|
@@ -1400,6 +1429,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1400
1429
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1401
1430
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1402
1431
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1432
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1403
1433
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1404
1434
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1405
1435
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1459,12 +1489,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1459
1489
|
readonly isSecondFactor: boolean;
|
|
1460
1490
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1461
1491
|
updateIsCommonConfig: (value: boolean) => void;
|
|
1492
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
1462
1493
|
addChild(props: {
|
|
1463
1494
|
id: string;
|
|
1464
1495
|
type: string;
|
|
1465
1496
|
label: string;
|
|
1466
1497
|
path: string;
|
|
1467
1498
|
isCommonConfig?: boolean | undefined;
|
|
1499
|
+
isFormConfig?: boolean | undefined;
|
|
1468
1500
|
info?: import("../plugin").RendererInfo | undefined;
|
|
1469
1501
|
region?: string | undefined;
|
|
1470
1502
|
getData?: (() => any) | undefined;
|
|
@@ -1503,6 +1535,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1503
1535
|
parentId: string;
|
|
1504
1536
|
parentRegion: string;
|
|
1505
1537
|
isCommonConfig: boolean;
|
|
1538
|
+
isFormConfig: boolean;
|
|
1506
1539
|
id: string;
|
|
1507
1540
|
type: string;
|
|
1508
1541
|
label: string;
|
|
@@ -1565,6 +1598,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1565
1598
|
parentId: string;
|
|
1566
1599
|
parentRegion: string;
|
|
1567
1600
|
isCommonConfig: boolean;
|
|
1601
|
+
isFormConfig: boolean;
|
|
1568
1602
|
id: string;
|
|
1569
1603
|
type: string;
|
|
1570
1604
|
label: string;
|
|
@@ -1626,6 +1660,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1626
1660
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1627
1661
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1628
1662
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1663
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1629
1664
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1630
1665
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1631
1666
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1688,6 +1723,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1688
1723
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1689
1724
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1690
1725
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1726
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1691
1727
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1692
1728
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1693
1729
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1713,6 +1749,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1713
1749
|
parentId: string;
|
|
1714
1750
|
parentRegion: string;
|
|
1715
1751
|
isCommonConfig: boolean;
|
|
1752
|
+
isFormConfig: boolean;
|
|
1716
1753
|
id: string;
|
|
1717
1754
|
type: string;
|
|
1718
1755
|
label: string;
|
|
@@ -1774,6 +1811,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1774
1811
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1775
1812
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1776
1813
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1814
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1777
1815
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1778
1816
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1779
1817
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1833,12 +1871,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1833
1871
|
readonly isSecondFactor: boolean;
|
|
1834
1872
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
1835
1873
|
updateIsCommonConfig: (value: boolean) => void;
|
|
1874
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
1836
1875
|
addChild(props: {
|
|
1837
1876
|
id: string;
|
|
1838
1877
|
type: string;
|
|
1839
1878
|
label: string;
|
|
1840
1879
|
path: string;
|
|
1841
1880
|
isCommonConfig?: boolean | undefined;
|
|
1881
|
+
isFormConfig?: boolean | undefined;
|
|
1842
1882
|
info?: import("../plugin").RendererInfo | undefined;
|
|
1843
1883
|
region?: string | undefined;
|
|
1844
1884
|
getData?: (() => any) | undefined;
|
|
@@ -1866,6 +1906,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1866
1906
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1867
1907
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1868
1908
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1909
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1869
1910
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1870
1911
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1871
1912
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1928,6 +1969,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1928
1969
|
parentId: string;
|
|
1929
1970
|
parentRegion: string;
|
|
1930
1971
|
isCommonConfig: boolean;
|
|
1972
|
+
isFormConfig: boolean;
|
|
1931
1973
|
id: string;
|
|
1932
1974
|
type: string;
|
|
1933
1975
|
label: string;
|
|
@@ -1989,6 +2031,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
1989
2031
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1990
2032
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1991
2033
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2034
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1992
2035
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1993
2036
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1994
2037
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2051,6 +2094,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2051
2094
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2052
2095
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2053
2096
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2097
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2054
2098
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2055
2099
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2056
2100
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2076,6 +2120,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2076
2120
|
parentId: string;
|
|
2077
2121
|
parentRegion: string;
|
|
2078
2122
|
isCommonConfig: boolean;
|
|
2123
|
+
isFormConfig: boolean;
|
|
2079
2124
|
id: string;
|
|
2080
2125
|
type: string;
|
|
2081
2126
|
label: string;
|
|
@@ -2137,6 +2182,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2137
2182
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2138
2183
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2139
2184
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2185
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2140
2186
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2141
2187
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2142
2188
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2196,12 +2242,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2196
2242
|
readonly isSecondFactor: boolean;
|
|
2197
2243
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2198
2244
|
updateIsCommonConfig: (value: boolean) => void;
|
|
2245
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
2199
2246
|
addChild(props: {
|
|
2200
2247
|
id: string;
|
|
2201
2248
|
type: string;
|
|
2202
2249
|
label: string;
|
|
2203
2250
|
path: string;
|
|
2204
2251
|
isCommonConfig?: boolean | undefined;
|
|
2252
|
+
isFormConfig?: boolean | undefined;
|
|
2205
2253
|
info?: import("../plugin").RendererInfo | undefined;
|
|
2206
2254
|
region?: string | undefined;
|
|
2207
2255
|
getData?: (() => any) | undefined;
|
|
@@ -2240,6 +2288,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2240
2288
|
parentId: string;
|
|
2241
2289
|
parentRegion: string;
|
|
2242
2290
|
isCommonConfig: boolean;
|
|
2291
|
+
isFormConfig: boolean;
|
|
2243
2292
|
id: string;
|
|
2244
2293
|
type: string;
|
|
2245
2294
|
label: string;
|
|
@@ -2302,6 +2351,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2302
2351
|
parentId: string;
|
|
2303
2352
|
parentRegion: string;
|
|
2304
2353
|
isCommonConfig: boolean;
|
|
2354
|
+
isFormConfig: boolean;
|
|
2305
2355
|
id: string;
|
|
2306
2356
|
type: string;
|
|
2307
2357
|
label: string;
|
|
@@ -2363,6 +2413,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2363
2413
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2364
2414
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2365
2415
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2416
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2366
2417
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2367
2418
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2368
2419
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2425,6 +2476,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2425
2476
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2426
2477
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2427
2478
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2479
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2428
2480
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2429
2481
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2430
2482
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2450,6 +2502,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2450
2502
|
parentId: string;
|
|
2451
2503
|
parentRegion: string;
|
|
2452
2504
|
isCommonConfig: boolean;
|
|
2505
|
+
isFormConfig: boolean;
|
|
2453
2506
|
id: string;
|
|
2454
2507
|
type: string;
|
|
2455
2508
|
label: string;
|
|
@@ -2511,6 +2564,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2511
2564
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2512
2565
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2513
2566
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2567
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2514
2568
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2515
2569
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2516
2570
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2570,12 +2624,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2570
2624
|
readonly isSecondFactor: boolean;
|
|
2571
2625
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2572
2626
|
updateIsCommonConfig: (value: boolean) => void;
|
|
2627
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
2573
2628
|
addChild(props: {
|
|
2574
2629
|
id: string;
|
|
2575
2630
|
type: string;
|
|
2576
2631
|
label: string;
|
|
2577
2632
|
path: string;
|
|
2578
2633
|
isCommonConfig?: boolean | undefined;
|
|
2634
|
+
isFormConfig?: boolean | undefined;
|
|
2579
2635
|
info?: import("../plugin").RendererInfo | undefined;
|
|
2580
2636
|
region?: string | undefined;
|
|
2581
2637
|
getData?: (() => any) | undefined;
|
|
@@ -2603,6 +2659,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2603
2659
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2604
2660
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2605
2661
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2662
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2606
2663
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2607
2664
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2608
2665
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2665,6 +2722,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2665
2722
|
parentId: string;
|
|
2666
2723
|
parentRegion: string;
|
|
2667
2724
|
isCommonConfig: boolean;
|
|
2725
|
+
isFormConfig: boolean;
|
|
2668
2726
|
id: string;
|
|
2669
2727
|
type: string;
|
|
2670
2728
|
label: string;
|
|
@@ -2726,6 +2784,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2726
2784
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2727
2785
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2728
2786
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2787
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2729
2788
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2730
2789
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2731
2790
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2788,6 +2847,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2788
2847
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2789
2848
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2790
2849
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2850
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2791
2851
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2792
2852
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2793
2853
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2813,6 +2873,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2813
2873
|
parentId: string;
|
|
2814
2874
|
parentRegion: string;
|
|
2815
2875
|
isCommonConfig: boolean;
|
|
2876
|
+
isFormConfig: boolean;
|
|
2816
2877
|
id: string;
|
|
2817
2878
|
type: string;
|
|
2818
2879
|
label: string;
|
|
@@ -2874,6 +2935,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2874
2935
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2875
2936
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2876
2937
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2938
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2877
2939
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2878
2940
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2879
2941
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2933,12 +2995,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2933
2995
|
readonly isSecondFactor: boolean;
|
|
2934
2996
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
2935
2997
|
updateIsCommonConfig: (value: boolean) => void;
|
|
2998
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
2936
2999
|
addChild(props: {
|
|
2937
3000
|
id: string;
|
|
2938
3001
|
type: string;
|
|
2939
3002
|
label: string;
|
|
2940
3003
|
path: string;
|
|
2941
3004
|
isCommonConfig?: boolean | undefined;
|
|
3005
|
+
isFormConfig?: boolean | undefined;
|
|
2942
3006
|
info?: import("../plugin").RendererInfo | undefined;
|
|
2943
3007
|
region?: string | undefined;
|
|
2944
3008
|
getData?: (() => any) | undefined;
|
|
@@ -2977,6 +3041,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
2977
3041
|
parentId: string;
|
|
2978
3042
|
parentRegion: string;
|
|
2979
3043
|
isCommonConfig: boolean;
|
|
3044
|
+
isFormConfig: boolean;
|
|
2980
3045
|
id: string;
|
|
2981
3046
|
type: string;
|
|
2982
3047
|
label: string;
|
|
@@ -3039,6 +3104,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3039
3104
|
parentId: string;
|
|
3040
3105
|
parentRegion: string;
|
|
3041
3106
|
isCommonConfig: boolean;
|
|
3107
|
+
isFormConfig: boolean;
|
|
3042
3108
|
id: string;
|
|
3043
3109
|
type: string;
|
|
3044
3110
|
label: string;
|
|
@@ -3100,6 +3166,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3100
3166
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3101
3167
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3102
3168
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3169
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3103
3170
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3104
3171
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3105
3172
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3162,6 +3229,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3162
3229
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3163
3230
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3164
3231
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3232
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3165
3233
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3166
3234
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3167
3235
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3187,6 +3255,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3187
3255
|
parentId: string;
|
|
3188
3256
|
parentRegion: string;
|
|
3189
3257
|
isCommonConfig: boolean;
|
|
3258
|
+
isFormConfig: boolean;
|
|
3190
3259
|
id: string;
|
|
3191
3260
|
type: string;
|
|
3192
3261
|
label: string;
|
|
@@ -3248,6 +3317,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3248
3317
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3249
3318
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3250
3319
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3320
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3251
3321
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3252
3322
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3253
3323
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3307,12 +3377,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3307
3377
|
readonly isSecondFactor: boolean;
|
|
3308
3378
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
3309
3379
|
updateIsCommonConfig: (value: boolean) => void;
|
|
3380
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
3310
3381
|
addChild(props: {
|
|
3311
3382
|
id: string;
|
|
3312
3383
|
type: string;
|
|
3313
3384
|
label: string;
|
|
3314
3385
|
path: string;
|
|
3315
3386
|
isCommonConfig?: boolean | undefined;
|
|
3387
|
+
isFormConfig?: boolean | undefined;
|
|
3316
3388
|
info?: import("../plugin").RendererInfo | undefined;
|
|
3317
3389
|
region?: string | undefined;
|
|
3318
3390
|
getData?: (() => any) | undefined;
|
|
@@ -3340,6 +3412,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3340
3412
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3341
3413
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3342
3414
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3415
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3343
3416
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3344
3417
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3345
3418
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3402,6 +3475,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3402
3475
|
parentId: string;
|
|
3403
3476
|
parentRegion: string;
|
|
3404
3477
|
isCommonConfig: boolean;
|
|
3478
|
+
isFormConfig: boolean;
|
|
3405
3479
|
id: string;
|
|
3406
3480
|
type: string;
|
|
3407
3481
|
label: string;
|
|
@@ -3463,6 +3537,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3463
3537
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3464
3538
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3465
3539
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3540
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3466
3541
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3467
3542
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3468
3543
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3525,6 +3600,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3525
3600
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3526
3601
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3527
3602
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3603
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3528
3604
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3529
3605
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3530
3606
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3550,6 +3626,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3550
3626
|
parentId: string;
|
|
3551
3627
|
parentRegion: string;
|
|
3552
3628
|
isCommonConfig: boolean;
|
|
3629
|
+
isFormConfig: boolean;
|
|
3553
3630
|
id: string;
|
|
3554
3631
|
type: string;
|
|
3555
3632
|
label: string;
|
|
@@ -3611,6 +3688,7 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3611
3688
|
parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3612
3689
|
parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3613
3690
|
isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3691
|
+
isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3614
3692
|
id: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3615
3693
|
type: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3616
3694
|
label: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3670,12 +3748,14 @@ export default class FlexLayout implements LayoutInterface {
|
|
|
3670
3748
|
readonly isSecondFactor: boolean;
|
|
3671
3749
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
3672
3750
|
updateIsCommonConfig: (value: boolean) => void;
|
|
3751
|
+
updateIsFormConfig: (value: boolean) => void;
|
|
3673
3752
|
addChild(props: {
|
|
3674
3753
|
id: string;
|
|
3675
3754
|
type: string;
|
|
3676
3755
|
label: string;
|
|
3677
3756
|
path: string;
|
|
3678
3757
|
isCommonConfig?: boolean | undefined;
|
|
3758
|
+
isFormConfig?: boolean | undefined;
|
|
3679
3759
|
info?: import("../plugin").RendererInfo | undefined;
|
|
3680
3760
|
region?: string | undefined;
|
|
3681
3761
|
getData?: (() => any) | undefined;
|