amis-editor-core 6.6.0 → 6.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;
@@ -46,6 +47,7 @@ export default class FlexLayout implements LayoutInterface {
46
47
  } & {
47
48
  readonly info: import("../plugin").RendererInfo;
48
49
  getNodeById(id: string, regionOrType?: string | undefined): any;
50
+ getNodeByComponentId(id: string): any;
49
51
  setInfo(value: import("../plugin").RendererInfo): void;
50
52
  updateSharedContext(value: Record<string, any>): void;
51
53
  readonly rendererConfig: any;
@@ -82,6 +84,7 @@ export default class FlexLayout implements LayoutInterface {
82
84
  parentId: string;
83
85
  parentRegion: string;
84
86
  isCommonConfig: boolean;
87
+ isFormConfig: boolean;
85
88
  id: string;
86
89
  type: string;
87
90
  label: string;
@@ -108,6 +111,7 @@ export default class FlexLayout implements LayoutInterface {
108
111
  } & {
109
112
  readonly info: import("../plugin").RendererInfo;
110
113
  getNodeById(id: string, regionOrType?: string | undefined): any;
114
+ getNodeByComponentId(id: string): any;
111
115
  setInfo(value: import("../plugin").RendererInfo): void;
112
116
  updateSharedContext(value: Record<string, any>): void;
113
117
  readonly rendererConfig: any;
@@ -143,6 +147,7 @@ export default class FlexLayout implements LayoutInterface {
143
147
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
144
148
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
145
149
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
150
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
146
151
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
147
152
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
148
153
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -169,6 +174,7 @@ export default class FlexLayout implements LayoutInterface {
169
174
  } & {
170
175
  readonly info: import("../plugin").RendererInfo;
171
176
  getNodeById(id: string, regionOrType?: string | undefined): any;
177
+ getNodeByComponentId(id: string): any;
172
178
  setInfo(value: import("../plugin").RendererInfo): void;
173
179
  updateSharedContext(value: Record<string, any>): void;
174
180
  readonly rendererConfig: any;
@@ -205,6 +211,7 @@ export default class FlexLayout implements LayoutInterface {
205
211
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
206
212
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
207
213
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
214
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
208
215
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
209
216
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
210
217
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -230,6 +237,7 @@ export default class FlexLayout implements LayoutInterface {
230
237
  parentId: string;
231
238
  parentRegion: string;
232
239
  isCommonConfig: boolean;
240
+ isFormConfig: boolean;
233
241
  id: string;
234
242
  type: string;
235
243
  label: string;
@@ -256,6 +264,7 @@ export default class FlexLayout implements LayoutInterface {
256
264
  } & {
257
265
  readonly info: import("../plugin").RendererInfo;
258
266
  getNodeById(id: string, regionOrType?: string | undefined): any;
267
+ getNodeByComponentId(id: string): any;
259
268
  setInfo(value: import("../plugin").RendererInfo): void;
260
269
  updateSharedContext(value: Record<string, any>): void;
261
270
  readonly rendererConfig: any;
@@ -291,6 +300,7 @@ export default class FlexLayout implements LayoutInterface {
291
300
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
292
301
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
293
302
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
303
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
294
304
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
295
305
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
296
306
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -317,6 +327,7 @@ export default class FlexLayout implements LayoutInterface {
317
327
  } & {
318
328
  readonly info: import("../plugin").RendererInfo;
319
329
  getNodeById(id: string, regionOrType?: string | undefined): any;
330
+ getNodeByComponentId(id: string): any;
320
331
  setInfo(value: import("../plugin").RendererInfo): void;
321
332
  updateSharedContext(value: Record<string, any>): void;
322
333
  readonly rendererConfig: any;
@@ -350,12 +361,14 @@ export default class FlexLayout implements LayoutInterface {
350
361
  readonly isSecondFactor: boolean;
351
362
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
352
363
  updateIsCommonConfig: (value: boolean) => void;
364
+ updateIsFormConfig: (value: boolean) => void;
353
365
  addChild(props: {
354
366
  id: string;
355
367
  type: string;
356
368
  label: string;
357
369
  path: string;
358
370
  isCommonConfig?: boolean | undefined;
371
+ isFormConfig?: boolean | undefined;
359
372
  info?: import("../plugin").RendererInfo | undefined;
360
373
  region?: string | undefined;
361
374
  getData?: (() => any) | undefined;
@@ -374,6 +387,7 @@ export default class FlexLayout implements LayoutInterface {
374
387
  updateSchemaStyle(value: any): void;
375
388
  setComponent(value: any): void;
376
389
  getComponent(): any;
390
+ getTarget(): HTMLElement | HTMLElement[] | null;
377
391
  calculateHighlightBox(root?: any): void;
378
392
  resetHighlightBox(root: any): void;
379
393
  updateState(state: any, replace?: boolean): void;
@@ -383,6 +397,7 @@ export default class FlexLayout implements LayoutInterface {
383
397
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
384
398
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
385
399
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
400
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
386
401
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
387
402
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
388
403
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -409,6 +424,7 @@ export default class FlexLayout implements LayoutInterface {
409
424
  } & {
410
425
  readonly info: import("../plugin").RendererInfo;
411
426
  getNodeById(id: string, regionOrType?: string | undefined): any;
427
+ getNodeByComponentId(id: string): any;
412
428
  setInfo(value: import("../plugin").RendererInfo): void;
413
429
  updateSharedContext(value: Record<string, any>): void;
414
430
  readonly rendererConfig: any;
@@ -445,6 +461,7 @@ export default class FlexLayout implements LayoutInterface {
445
461
  parentId: string;
446
462
  parentRegion: string;
447
463
  isCommonConfig: boolean;
464
+ isFormConfig: boolean;
448
465
  id: string;
449
466
  type: string;
450
467
  label: string;
@@ -471,6 +488,7 @@ export default class FlexLayout implements LayoutInterface {
471
488
  } & {
472
489
  readonly info: import("../plugin").RendererInfo;
473
490
  getNodeById(id: string, regionOrType?: string | undefined): any;
491
+ getNodeByComponentId(id: string): any;
474
492
  setInfo(value: import("../plugin").RendererInfo): void;
475
493
  updateSharedContext(value: Record<string, any>): void;
476
494
  readonly rendererConfig: any;
@@ -506,6 +524,7 @@ export default class FlexLayout implements LayoutInterface {
506
524
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
507
525
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
508
526
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
527
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
509
528
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
510
529
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
511
530
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -532,6 +551,7 @@ export default class FlexLayout implements LayoutInterface {
532
551
  } & {
533
552
  readonly info: import("../plugin").RendererInfo;
534
553
  getNodeById(id: string, regionOrType?: string | undefined): any;
554
+ getNodeByComponentId(id: string): any;
535
555
  setInfo(value: import("../plugin").RendererInfo): void;
536
556
  updateSharedContext(value: Record<string, any>): void;
537
557
  readonly rendererConfig: any;
@@ -568,6 +588,7 @@ export default class FlexLayout implements LayoutInterface {
568
588
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
569
589
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
570
590
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
591
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
571
592
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
572
593
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
573
594
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -593,6 +614,7 @@ export default class FlexLayout implements LayoutInterface {
593
614
  parentId: string;
594
615
  parentRegion: string;
595
616
  isCommonConfig: boolean;
617
+ isFormConfig: boolean;
596
618
  id: string;
597
619
  type: string;
598
620
  label: string;
@@ -619,6 +641,7 @@ export default class FlexLayout implements LayoutInterface {
619
641
  } & {
620
642
  readonly info: import("../plugin").RendererInfo;
621
643
  getNodeById(id: string, regionOrType?: string | undefined): any;
644
+ getNodeByComponentId(id: string): any;
622
645
  setInfo(value: import("../plugin").RendererInfo): void;
623
646
  updateSharedContext(value: Record<string, any>): void;
624
647
  readonly rendererConfig: any;
@@ -654,6 +677,7 @@ export default class FlexLayout implements LayoutInterface {
654
677
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
655
678
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
656
679
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
680
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
657
681
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
658
682
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
659
683
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -680,6 +704,7 @@ export default class FlexLayout implements LayoutInterface {
680
704
  } & {
681
705
  readonly info: import("../plugin").RendererInfo;
682
706
  getNodeById(id: string, regionOrType?: string | undefined): any;
707
+ getNodeByComponentId(id: string): any;
683
708
  setInfo(value: import("../plugin").RendererInfo): void;
684
709
  updateSharedContext(value: Record<string, any>): void;
685
710
  readonly rendererConfig: any;
@@ -713,12 +738,14 @@ export default class FlexLayout implements LayoutInterface {
713
738
  readonly isSecondFactor: boolean;
714
739
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
715
740
  updateIsCommonConfig: (value: boolean) => void;
741
+ updateIsFormConfig: (value: boolean) => void;
716
742
  addChild(props: {
717
743
  id: string;
718
744
  type: string;
719
745
  label: string;
720
746
  path: string;
721
747
  isCommonConfig?: boolean | undefined;
748
+ isFormConfig?: boolean | undefined;
722
749
  info?: import("../plugin").RendererInfo | undefined;
723
750
  region?: string | undefined;
724
751
  getData?: (() => any) | undefined;
@@ -737,6 +764,7 @@ export default class FlexLayout implements LayoutInterface {
737
764
  updateSchemaStyle(value: any): void;
738
765
  setComponent(value: any): void;
739
766
  getComponent(): any;
767
+ getTarget(): HTMLElement | HTMLElement[] | null;
740
768
  calculateHighlightBox(root?: any): void;
741
769
  resetHighlightBox(root: any): void;
742
770
  updateState(state: any, replace?: boolean): void;
@@ -766,6 +794,7 @@ export default class FlexLayout implements LayoutInterface {
766
794
  parentId: string;
767
795
  parentRegion: string;
768
796
  isCommonConfig: boolean;
797
+ isFormConfig: boolean;
769
798
  id: string;
770
799
  type: string;
771
800
  label: string;
@@ -792,6 +821,7 @@ export default class FlexLayout implements LayoutInterface {
792
821
  } & {
793
822
  readonly info: import("../plugin").RendererInfo;
794
823
  getNodeById(id: string, regionOrType?: string | undefined): any;
824
+ getNodeByComponentId(id: string): any;
795
825
  setInfo(value: import("../plugin").RendererInfo): void;
796
826
  updateSharedContext(value: Record<string, any>): void;
797
827
  readonly rendererConfig: any;
@@ -828,6 +858,7 @@ export default class FlexLayout implements LayoutInterface {
828
858
  parentId: string;
829
859
  parentRegion: string;
830
860
  isCommonConfig: boolean;
861
+ isFormConfig: boolean;
831
862
  id: string;
832
863
  type: string;
833
864
  label: string;
@@ -854,6 +885,7 @@ export default class FlexLayout implements LayoutInterface {
854
885
  } & {
855
886
  readonly info: import("../plugin").RendererInfo;
856
887
  getNodeById(id: string, regionOrType?: string | undefined): any;
888
+ getNodeByComponentId(id: string): any;
857
889
  setInfo(value: import("../plugin").RendererInfo): void;
858
890
  updateSharedContext(value: Record<string, any>): void;
859
891
  readonly rendererConfig: any;
@@ -889,6 +921,7 @@ export default class FlexLayout implements LayoutInterface {
889
921
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
890
922
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
891
923
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
924
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
892
925
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
893
926
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
894
927
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -915,6 +948,7 @@ export default class FlexLayout implements LayoutInterface {
915
948
  } & {
916
949
  readonly info: import("../plugin").RendererInfo;
917
950
  getNodeById(id: string, regionOrType?: string | undefined): any;
951
+ getNodeByComponentId(id: string): any;
918
952
  setInfo(value: import("../plugin").RendererInfo): void;
919
953
  updateSharedContext(value: Record<string, any>): void;
920
954
  readonly rendererConfig: any;
@@ -951,6 +985,7 @@ export default class FlexLayout implements LayoutInterface {
951
985
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
952
986
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
953
987
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
988
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
954
989
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
955
990
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
956
991
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -976,6 +1011,7 @@ export default class FlexLayout implements LayoutInterface {
976
1011
  parentId: string;
977
1012
  parentRegion: string;
978
1013
  isCommonConfig: boolean;
1014
+ isFormConfig: boolean;
979
1015
  id: string;
980
1016
  type: string;
981
1017
  label: string;
@@ -1002,6 +1038,7 @@ export default class FlexLayout implements LayoutInterface {
1002
1038
  } & {
1003
1039
  readonly info: import("../plugin").RendererInfo;
1004
1040
  getNodeById(id: string, regionOrType?: string | undefined): any;
1041
+ getNodeByComponentId(id: string): any;
1005
1042
  setInfo(value: import("../plugin").RendererInfo): void;
1006
1043
  updateSharedContext(value: Record<string, any>): void;
1007
1044
  readonly rendererConfig: any;
@@ -1037,6 +1074,7 @@ export default class FlexLayout implements LayoutInterface {
1037
1074
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1038
1075
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1039
1076
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1077
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1040
1078
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1041
1079
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1042
1080
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1063,6 +1101,7 @@ export default class FlexLayout implements LayoutInterface {
1063
1101
  } & {
1064
1102
  readonly info: import("../plugin").RendererInfo;
1065
1103
  getNodeById(id: string, regionOrType?: string | undefined): any;
1104
+ getNodeByComponentId(id: string): any;
1066
1105
  setInfo(value: import("../plugin").RendererInfo): void;
1067
1106
  updateSharedContext(value: Record<string, any>): void;
1068
1107
  readonly rendererConfig: any;
@@ -1096,12 +1135,14 @@ export default class FlexLayout implements LayoutInterface {
1096
1135
  readonly isSecondFactor: boolean;
1097
1136
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
1098
1137
  updateIsCommonConfig: (value: boolean) => void;
1138
+ updateIsFormConfig: (value: boolean) => void;
1099
1139
  addChild(props: {
1100
1140
  id: string;
1101
1141
  type: string;
1102
1142
  label: string;
1103
1143
  path: string;
1104
1144
  isCommonConfig?: boolean | undefined;
1145
+ isFormConfig?: boolean | undefined;
1105
1146
  info?: import("../plugin").RendererInfo | undefined;
1106
1147
  region?: string | undefined;
1107
1148
  getData?: (() => any) | undefined;
@@ -1120,6 +1161,7 @@ export default class FlexLayout implements LayoutInterface {
1120
1161
  updateSchemaStyle(value: any): void;
1121
1162
  setComponent(value: any): void;
1122
1163
  getComponent(): any;
1164
+ getTarget(): HTMLElement | HTMLElement[] | null;
1123
1165
  calculateHighlightBox(root?: any): void;
1124
1166
  resetHighlightBox(root: any): void;
1125
1167
  updateState(state: any, replace?: boolean): void;
@@ -1129,6 +1171,7 @@ export default class FlexLayout implements LayoutInterface {
1129
1171
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1130
1172
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1131
1173
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1174
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1132
1175
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1133
1176
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1134
1177
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1155,6 +1198,7 @@ export default class FlexLayout implements LayoutInterface {
1155
1198
  } & {
1156
1199
  readonly info: import("../plugin").RendererInfo;
1157
1200
  getNodeById(id: string, regionOrType?: string | undefined): any;
1201
+ getNodeByComponentId(id: string): any;
1158
1202
  setInfo(value: import("../plugin").RendererInfo): void;
1159
1203
  updateSharedContext(value: Record<string, any>): void;
1160
1204
  readonly rendererConfig: any;
@@ -1191,6 +1235,7 @@ export default class FlexLayout implements LayoutInterface {
1191
1235
  parentId: string;
1192
1236
  parentRegion: string;
1193
1237
  isCommonConfig: boolean;
1238
+ isFormConfig: boolean;
1194
1239
  id: string;
1195
1240
  type: string;
1196
1241
  label: string;
@@ -1217,6 +1262,7 @@ export default class FlexLayout implements LayoutInterface {
1217
1262
  } & {
1218
1263
  readonly info: import("../plugin").RendererInfo;
1219
1264
  getNodeById(id: string, regionOrType?: string | undefined): any;
1265
+ getNodeByComponentId(id: string): any;
1220
1266
  setInfo(value: import("../plugin").RendererInfo): void;
1221
1267
  updateSharedContext(value: Record<string, any>): void;
1222
1268
  readonly rendererConfig: any;
@@ -1252,6 +1298,7 @@ export default class FlexLayout implements LayoutInterface {
1252
1298
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1253
1299
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1254
1300
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1301
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1255
1302
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1256
1303
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1257
1304
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1278,6 +1325,7 @@ export default class FlexLayout implements LayoutInterface {
1278
1325
  } & {
1279
1326
  readonly info: import("../plugin").RendererInfo;
1280
1327
  getNodeById(id: string, regionOrType?: string | undefined): any;
1328
+ getNodeByComponentId(id: string): any;
1281
1329
  setInfo(value: import("../plugin").RendererInfo): void;
1282
1330
  updateSharedContext(value: Record<string, any>): void;
1283
1331
  readonly rendererConfig: any;
@@ -1314,6 +1362,7 @@ export default class FlexLayout implements LayoutInterface {
1314
1362
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1315
1363
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1316
1364
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1365
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1317
1366
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1318
1367
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1319
1368
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1339,6 +1388,7 @@ export default class FlexLayout implements LayoutInterface {
1339
1388
  parentId: string;
1340
1389
  parentRegion: string;
1341
1390
  isCommonConfig: boolean;
1391
+ isFormConfig: boolean;
1342
1392
  id: string;
1343
1393
  type: string;
1344
1394
  label: string;
@@ -1365,6 +1415,7 @@ export default class FlexLayout implements LayoutInterface {
1365
1415
  } & {
1366
1416
  readonly info: import("../plugin").RendererInfo;
1367
1417
  getNodeById(id: string, regionOrType?: string | undefined): any;
1418
+ getNodeByComponentId(id: string): any;
1368
1419
  setInfo(value: import("../plugin").RendererInfo): void;
1369
1420
  updateSharedContext(value: Record<string, any>): void;
1370
1421
  readonly rendererConfig: any;
@@ -1400,6 +1451,7 @@ export default class FlexLayout implements LayoutInterface {
1400
1451
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1401
1452
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1402
1453
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1454
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1403
1455
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1404
1456
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1405
1457
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1426,6 +1478,7 @@ export default class FlexLayout implements LayoutInterface {
1426
1478
  } & {
1427
1479
  readonly info: import("../plugin").RendererInfo;
1428
1480
  getNodeById(id: string, regionOrType?: string | undefined): any;
1481
+ getNodeByComponentId(id: string): any;
1429
1482
  setInfo(value: import("../plugin").RendererInfo): void;
1430
1483
  updateSharedContext(value: Record<string, any>): void;
1431
1484
  readonly rendererConfig: any;
@@ -1459,12 +1512,14 @@ export default class FlexLayout implements LayoutInterface {
1459
1512
  readonly isSecondFactor: boolean;
1460
1513
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
1461
1514
  updateIsCommonConfig: (value: boolean) => void;
1515
+ updateIsFormConfig: (value: boolean) => void;
1462
1516
  addChild(props: {
1463
1517
  id: string;
1464
1518
  type: string;
1465
1519
  label: string;
1466
1520
  path: string;
1467
1521
  isCommonConfig?: boolean | undefined;
1522
+ isFormConfig?: boolean | undefined;
1468
1523
  info?: import("../plugin").RendererInfo | undefined;
1469
1524
  region?: string | undefined;
1470
1525
  getData?: (() => any) | undefined;
@@ -1483,6 +1538,7 @@ export default class FlexLayout implements LayoutInterface {
1483
1538
  updateSchemaStyle(value: any): void;
1484
1539
  setComponent(value: any): void;
1485
1540
  getComponent(): any;
1541
+ getTarget(): HTMLElement | HTMLElement[] | null;
1486
1542
  calculateHighlightBox(root?: any): void;
1487
1543
  resetHighlightBox(root: any): void;
1488
1544
  updateState(state: any, replace?: boolean): void;
@@ -1503,6 +1559,7 @@ export default class FlexLayout implements LayoutInterface {
1503
1559
  parentId: string;
1504
1560
  parentRegion: string;
1505
1561
  isCommonConfig: boolean;
1562
+ isFormConfig: boolean;
1506
1563
  id: string;
1507
1564
  type: string;
1508
1565
  label: string;
@@ -1529,6 +1586,7 @@ export default class FlexLayout implements LayoutInterface {
1529
1586
  } & {
1530
1587
  readonly info: import("../plugin").RendererInfo;
1531
1588
  getNodeById(id: string, regionOrType?: string | undefined): any;
1589
+ getNodeByComponentId(id: string): any;
1532
1590
  setInfo(value: import("../plugin").RendererInfo): void;
1533
1591
  updateSharedContext(value: Record<string, any>): void;
1534
1592
  readonly rendererConfig: any;
@@ -1565,6 +1623,7 @@ export default class FlexLayout implements LayoutInterface {
1565
1623
  parentId: string;
1566
1624
  parentRegion: string;
1567
1625
  isCommonConfig: boolean;
1626
+ isFormConfig: boolean;
1568
1627
  id: string;
1569
1628
  type: string;
1570
1629
  label: string;
@@ -1591,6 +1650,7 @@ export default class FlexLayout implements LayoutInterface {
1591
1650
  } & {
1592
1651
  readonly info: import("../plugin").RendererInfo;
1593
1652
  getNodeById(id: string, regionOrType?: string | undefined): any;
1653
+ getNodeByComponentId(id: string): any;
1594
1654
  setInfo(value: import("../plugin").RendererInfo): void;
1595
1655
  updateSharedContext(value: Record<string, any>): void;
1596
1656
  readonly rendererConfig: any;
@@ -1626,6 +1686,7 @@ export default class FlexLayout implements LayoutInterface {
1626
1686
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1627
1687
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1628
1688
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1689
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1629
1690
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1630
1691
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1631
1692
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1652,6 +1713,7 @@ export default class FlexLayout implements LayoutInterface {
1652
1713
  } & {
1653
1714
  readonly info: import("../plugin").RendererInfo;
1654
1715
  getNodeById(id: string, regionOrType?: string | undefined): any;
1716
+ getNodeByComponentId(id: string): any;
1655
1717
  setInfo(value: import("../plugin").RendererInfo): void;
1656
1718
  updateSharedContext(value: Record<string, any>): void;
1657
1719
  readonly rendererConfig: any;
@@ -1688,6 +1750,7 @@ export default class FlexLayout implements LayoutInterface {
1688
1750
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1689
1751
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1690
1752
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1753
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1691
1754
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1692
1755
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1693
1756
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1713,6 +1776,7 @@ export default class FlexLayout implements LayoutInterface {
1713
1776
  parentId: string;
1714
1777
  parentRegion: string;
1715
1778
  isCommonConfig: boolean;
1779
+ isFormConfig: boolean;
1716
1780
  id: string;
1717
1781
  type: string;
1718
1782
  label: string;
@@ -1739,6 +1803,7 @@ export default class FlexLayout implements LayoutInterface {
1739
1803
  } & {
1740
1804
  readonly info: import("../plugin").RendererInfo;
1741
1805
  getNodeById(id: string, regionOrType?: string | undefined): any;
1806
+ getNodeByComponentId(id: string): any;
1742
1807
  setInfo(value: import("../plugin").RendererInfo): void;
1743
1808
  updateSharedContext(value: Record<string, any>): void;
1744
1809
  readonly rendererConfig: any;
@@ -1774,6 +1839,7 @@ export default class FlexLayout implements LayoutInterface {
1774
1839
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1775
1840
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1776
1841
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1842
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1777
1843
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1778
1844
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1779
1845
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1800,6 +1866,7 @@ export default class FlexLayout implements LayoutInterface {
1800
1866
  } & {
1801
1867
  readonly info: import("../plugin").RendererInfo;
1802
1868
  getNodeById(id: string, regionOrType?: string | undefined): any;
1869
+ getNodeByComponentId(id: string): any;
1803
1870
  setInfo(value: import("../plugin").RendererInfo): void;
1804
1871
  updateSharedContext(value: Record<string, any>): void;
1805
1872
  readonly rendererConfig: any;
@@ -1833,12 +1900,14 @@ export default class FlexLayout implements LayoutInterface {
1833
1900
  readonly isSecondFactor: boolean;
1834
1901
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
1835
1902
  updateIsCommonConfig: (value: boolean) => void;
1903
+ updateIsFormConfig: (value: boolean) => void;
1836
1904
  addChild(props: {
1837
1905
  id: string;
1838
1906
  type: string;
1839
1907
  label: string;
1840
1908
  path: string;
1841
1909
  isCommonConfig?: boolean | undefined;
1910
+ isFormConfig?: boolean | undefined;
1842
1911
  info?: import("../plugin").RendererInfo | undefined;
1843
1912
  region?: string | undefined;
1844
1913
  getData?: (() => any) | undefined;
@@ -1857,6 +1926,7 @@ export default class FlexLayout implements LayoutInterface {
1857
1926
  updateSchemaStyle(value: any): void;
1858
1927
  setComponent(value: any): void;
1859
1928
  getComponent(): any;
1929
+ getTarget(): HTMLElement | HTMLElement[] | null;
1860
1930
  calculateHighlightBox(root?: any): void;
1861
1931
  resetHighlightBox(root: any): void;
1862
1932
  updateState(state: any, replace?: boolean): void;
@@ -1866,6 +1936,7 @@ export default class FlexLayout implements LayoutInterface {
1866
1936
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1867
1937
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1868
1938
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1939
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1869
1940
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1870
1941
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1871
1942
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -1892,6 +1963,7 @@ export default class FlexLayout implements LayoutInterface {
1892
1963
  } & {
1893
1964
  readonly info: import("../plugin").RendererInfo;
1894
1965
  getNodeById(id: string, regionOrType?: string | undefined): any;
1966
+ getNodeByComponentId(id: string): any;
1895
1967
  setInfo(value: import("../plugin").RendererInfo): void;
1896
1968
  updateSharedContext(value: Record<string, any>): void;
1897
1969
  readonly rendererConfig: any;
@@ -1928,6 +2000,7 @@ export default class FlexLayout implements LayoutInterface {
1928
2000
  parentId: string;
1929
2001
  parentRegion: string;
1930
2002
  isCommonConfig: boolean;
2003
+ isFormConfig: boolean;
1931
2004
  id: string;
1932
2005
  type: string;
1933
2006
  label: string;
@@ -1954,6 +2027,7 @@ export default class FlexLayout implements LayoutInterface {
1954
2027
  } & {
1955
2028
  readonly info: import("../plugin").RendererInfo;
1956
2029
  getNodeById(id: string, regionOrType?: string | undefined): any;
2030
+ getNodeByComponentId(id: string): any;
1957
2031
  setInfo(value: import("../plugin").RendererInfo): void;
1958
2032
  updateSharedContext(value: Record<string, any>): void;
1959
2033
  readonly rendererConfig: any;
@@ -1989,6 +2063,7 @@ export default class FlexLayout implements LayoutInterface {
1989
2063
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
1990
2064
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
1991
2065
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2066
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1992
2067
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
1993
2068
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
1994
2069
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2015,6 +2090,7 @@ export default class FlexLayout implements LayoutInterface {
2015
2090
  } & {
2016
2091
  readonly info: import("../plugin").RendererInfo;
2017
2092
  getNodeById(id: string, regionOrType?: string | undefined): any;
2093
+ getNodeByComponentId(id: string): any;
2018
2094
  setInfo(value: import("../plugin").RendererInfo): void;
2019
2095
  updateSharedContext(value: Record<string, any>): void;
2020
2096
  readonly rendererConfig: any;
@@ -2051,6 +2127,7 @@ export default class FlexLayout implements LayoutInterface {
2051
2127
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2052
2128
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2053
2129
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2130
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2054
2131
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2055
2132
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2056
2133
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2076,6 +2153,7 @@ export default class FlexLayout implements LayoutInterface {
2076
2153
  parentId: string;
2077
2154
  parentRegion: string;
2078
2155
  isCommonConfig: boolean;
2156
+ isFormConfig: boolean;
2079
2157
  id: string;
2080
2158
  type: string;
2081
2159
  label: string;
@@ -2102,6 +2180,7 @@ export default class FlexLayout implements LayoutInterface {
2102
2180
  } & {
2103
2181
  readonly info: import("../plugin").RendererInfo;
2104
2182
  getNodeById(id: string, regionOrType?: string | undefined): any;
2183
+ getNodeByComponentId(id: string): any;
2105
2184
  setInfo(value: import("../plugin").RendererInfo): void;
2106
2185
  updateSharedContext(value: Record<string, any>): void;
2107
2186
  readonly rendererConfig: any;
@@ -2137,6 +2216,7 @@ export default class FlexLayout implements LayoutInterface {
2137
2216
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2138
2217
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2139
2218
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2219
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2140
2220
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2141
2221
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2142
2222
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2163,6 +2243,7 @@ export default class FlexLayout implements LayoutInterface {
2163
2243
  } & {
2164
2244
  readonly info: import("../plugin").RendererInfo;
2165
2245
  getNodeById(id: string, regionOrType?: string | undefined): any;
2246
+ getNodeByComponentId(id: string): any;
2166
2247
  setInfo(value: import("../plugin").RendererInfo): void;
2167
2248
  updateSharedContext(value: Record<string, any>): void;
2168
2249
  readonly rendererConfig: any;
@@ -2196,12 +2277,14 @@ export default class FlexLayout implements LayoutInterface {
2196
2277
  readonly isSecondFactor: boolean;
2197
2278
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2198
2279
  updateIsCommonConfig: (value: boolean) => void;
2280
+ updateIsFormConfig: (value: boolean) => void;
2199
2281
  addChild(props: {
2200
2282
  id: string;
2201
2283
  type: string;
2202
2284
  label: string;
2203
2285
  path: string;
2204
2286
  isCommonConfig?: boolean | undefined;
2287
+ isFormConfig?: boolean | undefined;
2205
2288
  info?: import("../plugin").RendererInfo | undefined;
2206
2289
  region?: string | undefined;
2207
2290
  getData?: (() => any) | undefined;
@@ -2220,6 +2303,7 @@ export default class FlexLayout implements LayoutInterface {
2220
2303
  updateSchemaStyle(value: any): void;
2221
2304
  setComponent(value: any): void;
2222
2305
  getComponent(): any;
2306
+ getTarget(): HTMLElement | HTMLElement[] | null;
2223
2307
  calculateHighlightBox(root?: any): void;
2224
2308
  resetHighlightBox(root: any): void;
2225
2309
  updateState(state: any, replace?: boolean): void;
@@ -2240,6 +2324,7 @@ export default class FlexLayout implements LayoutInterface {
2240
2324
  parentId: string;
2241
2325
  parentRegion: string;
2242
2326
  isCommonConfig: boolean;
2327
+ isFormConfig: boolean;
2243
2328
  id: string;
2244
2329
  type: string;
2245
2330
  label: string;
@@ -2266,6 +2351,7 @@ export default class FlexLayout implements LayoutInterface {
2266
2351
  } & {
2267
2352
  readonly info: import("../plugin").RendererInfo;
2268
2353
  getNodeById(id: string, regionOrType?: string | undefined): any;
2354
+ getNodeByComponentId(id: string): any;
2269
2355
  setInfo(value: import("../plugin").RendererInfo): void;
2270
2356
  updateSharedContext(value: Record<string, any>): void;
2271
2357
  readonly rendererConfig: any;
@@ -2302,6 +2388,7 @@ export default class FlexLayout implements LayoutInterface {
2302
2388
  parentId: string;
2303
2389
  parentRegion: string;
2304
2390
  isCommonConfig: boolean;
2391
+ isFormConfig: boolean;
2305
2392
  id: string;
2306
2393
  type: string;
2307
2394
  label: string;
@@ -2328,6 +2415,7 @@ export default class FlexLayout implements LayoutInterface {
2328
2415
  } & {
2329
2416
  readonly info: import("../plugin").RendererInfo;
2330
2417
  getNodeById(id: string, regionOrType?: string | undefined): any;
2418
+ getNodeByComponentId(id: string): any;
2331
2419
  setInfo(value: import("../plugin").RendererInfo): void;
2332
2420
  updateSharedContext(value: Record<string, any>): void;
2333
2421
  readonly rendererConfig: any;
@@ -2363,6 +2451,7 @@ export default class FlexLayout implements LayoutInterface {
2363
2451
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2364
2452
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2365
2453
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2454
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2366
2455
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2367
2456
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2368
2457
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2389,6 +2478,7 @@ export default class FlexLayout implements LayoutInterface {
2389
2478
  } & {
2390
2479
  readonly info: import("../plugin").RendererInfo;
2391
2480
  getNodeById(id: string, regionOrType?: string | undefined): any;
2481
+ getNodeByComponentId(id: string): any;
2392
2482
  setInfo(value: import("../plugin").RendererInfo): void;
2393
2483
  updateSharedContext(value: Record<string, any>): void;
2394
2484
  readonly rendererConfig: any;
@@ -2425,6 +2515,7 @@ export default class FlexLayout implements LayoutInterface {
2425
2515
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2426
2516
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2427
2517
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2518
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2428
2519
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2429
2520
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2430
2521
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2450,6 +2541,7 @@ export default class FlexLayout implements LayoutInterface {
2450
2541
  parentId: string;
2451
2542
  parentRegion: string;
2452
2543
  isCommonConfig: boolean;
2544
+ isFormConfig: boolean;
2453
2545
  id: string;
2454
2546
  type: string;
2455
2547
  label: string;
@@ -2476,6 +2568,7 @@ export default class FlexLayout implements LayoutInterface {
2476
2568
  } & {
2477
2569
  readonly info: import("../plugin").RendererInfo;
2478
2570
  getNodeById(id: string, regionOrType?: string | undefined): any;
2571
+ getNodeByComponentId(id: string): any;
2479
2572
  setInfo(value: import("../plugin").RendererInfo): void;
2480
2573
  updateSharedContext(value: Record<string, any>): void;
2481
2574
  readonly rendererConfig: any;
@@ -2511,6 +2604,7 @@ export default class FlexLayout implements LayoutInterface {
2511
2604
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2512
2605
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2513
2606
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2607
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2514
2608
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2515
2609
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2516
2610
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2537,6 +2631,7 @@ export default class FlexLayout implements LayoutInterface {
2537
2631
  } & {
2538
2632
  readonly info: import("../plugin").RendererInfo;
2539
2633
  getNodeById(id: string, regionOrType?: string | undefined): any;
2634
+ getNodeByComponentId(id: string): any;
2540
2635
  setInfo(value: import("../plugin").RendererInfo): void;
2541
2636
  updateSharedContext(value: Record<string, any>): void;
2542
2637
  readonly rendererConfig: any;
@@ -2570,12 +2665,14 @@ export default class FlexLayout implements LayoutInterface {
2570
2665
  readonly isSecondFactor: boolean;
2571
2666
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2572
2667
  updateIsCommonConfig: (value: boolean) => void;
2668
+ updateIsFormConfig: (value: boolean) => void;
2573
2669
  addChild(props: {
2574
2670
  id: string;
2575
2671
  type: string;
2576
2672
  label: string;
2577
2673
  path: string;
2578
2674
  isCommonConfig?: boolean | undefined;
2675
+ isFormConfig?: boolean | undefined;
2579
2676
  info?: import("../plugin").RendererInfo | undefined;
2580
2677
  region?: string | undefined;
2581
2678
  getData?: (() => any) | undefined;
@@ -2594,6 +2691,7 @@ export default class FlexLayout implements LayoutInterface {
2594
2691
  updateSchemaStyle(value: any): void;
2595
2692
  setComponent(value: any): void;
2596
2693
  getComponent(): any;
2694
+ getTarget(): HTMLElement | HTMLElement[] | null;
2597
2695
  calculateHighlightBox(root?: any): void;
2598
2696
  resetHighlightBox(root: any): void;
2599
2697
  updateState(state: any, replace?: boolean): void;
@@ -2603,6 +2701,7 @@ export default class FlexLayout implements LayoutInterface {
2603
2701
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2604
2702
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2605
2703
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2704
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2606
2705
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2607
2706
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2608
2707
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2629,6 +2728,7 @@ export default class FlexLayout implements LayoutInterface {
2629
2728
  } & {
2630
2729
  readonly info: import("../plugin").RendererInfo;
2631
2730
  getNodeById(id: string, regionOrType?: string | undefined): any;
2731
+ getNodeByComponentId(id: string): any;
2632
2732
  setInfo(value: import("../plugin").RendererInfo): void;
2633
2733
  updateSharedContext(value: Record<string, any>): void;
2634
2734
  readonly rendererConfig: any;
@@ -2665,6 +2765,7 @@ export default class FlexLayout implements LayoutInterface {
2665
2765
  parentId: string;
2666
2766
  parentRegion: string;
2667
2767
  isCommonConfig: boolean;
2768
+ isFormConfig: boolean;
2668
2769
  id: string;
2669
2770
  type: string;
2670
2771
  label: string;
@@ -2691,6 +2792,7 @@ export default class FlexLayout implements LayoutInterface {
2691
2792
  } & {
2692
2793
  readonly info: import("../plugin").RendererInfo;
2693
2794
  getNodeById(id: string, regionOrType?: string | undefined): any;
2795
+ getNodeByComponentId(id: string): any;
2694
2796
  setInfo(value: import("../plugin").RendererInfo): void;
2695
2797
  updateSharedContext(value: Record<string, any>): void;
2696
2798
  readonly rendererConfig: any;
@@ -2726,6 +2828,7 @@ export default class FlexLayout implements LayoutInterface {
2726
2828
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2727
2829
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2728
2830
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2831
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2729
2832
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2730
2833
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2731
2834
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2752,6 +2855,7 @@ export default class FlexLayout implements LayoutInterface {
2752
2855
  } & {
2753
2856
  readonly info: import("../plugin").RendererInfo;
2754
2857
  getNodeById(id: string, regionOrType?: string | undefined): any;
2858
+ getNodeByComponentId(id: string): any;
2755
2859
  setInfo(value: import("../plugin").RendererInfo): void;
2756
2860
  updateSharedContext(value: Record<string, any>): void;
2757
2861
  readonly rendererConfig: any;
@@ -2788,6 +2892,7 @@ export default class FlexLayout implements LayoutInterface {
2788
2892
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2789
2893
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2790
2894
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2895
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2791
2896
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2792
2897
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2793
2898
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2813,6 +2918,7 @@ export default class FlexLayout implements LayoutInterface {
2813
2918
  parentId: string;
2814
2919
  parentRegion: string;
2815
2920
  isCommonConfig: boolean;
2921
+ isFormConfig: boolean;
2816
2922
  id: string;
2817
2923
  type: string;
2818
2924
  label: string;
@@ -2839,6 +2945,7 @@ export default class FlexLayout implements LayoutInterface {
2839
2945
  } & {
2840
2946
  readonly info: import("../plugin").RendererInfo;
2841
2947
  getNodeById(id: string, regionOrType?: string | undefined): any;
2948
+ getNodeByComponentId(id: string): any;
2842
2949
  setInfo(value: import("../plugin").RendererInfo): void;
2843
2950
  updateSharedContext(value: Record<string, any>): void;
2844
2951
  readonly rendererConfig: any;
@@ -2874,6 +2981,7 @@ export default class FlexLayout implements LayoutInterface {
2874
2981
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
2875
2982
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
2876
2983
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2984
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2877
2985
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
2878
2986
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
2879
2987
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -2900,6 +3008,7 @@ export default class FlexLayout implements LayoutInterface {
2900
3008
  } & {
2901
3009
  readonly info: import("../plugin").RendererInfo;
2902
3010
  getNodeById(id: string, regionOrType?: string | undefined): any;
3011
+ getNodeByComponentId(id: string): any;
2903
3012
  setInfo(value: import("../plugin").RendererInfo): void;
2904
3013
  updateSharedContext(value: Record<string, any>): void;
2905
3014
  readonly rendererConfig: any;
@@ -2933,12 +3042,14 @@ export default class FlexLayout implements LayoutInterface {
2933
3042
  readonly isSecondFactor: boolean;
2934
3043
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
2935
3044
  updateIsCommonConfig: (value: boolean) => void;
3045
+ updateIsFormConfig: (value: boolean) => void;
2936
3046
  addChild(props: {
2937
3047
  id: string;
2938
3048
  type: string;
2939
3049
  label: string;
2940
3050
  path: string;
2941
3051
  isCommonConfig?: boolean | undefined;
3052
+ isFormConfig?: boolean | undefined;
2942
3053
  info?: import("../plugin").RendererInfo | undefined;
2943
3054
  region?: string | undefined;
2944
3055
  getData?: (() => any) | undefined;
@@ -2957,6 +3068,7 @@ export default class FlexLayout implements LayoutInterface {
2957
3068
  updateSchemaStyle(value: any): void;
2958
3069
  setComponent(value: any): void;
2959
3070
  getComponent(): any;
3071
+ getTarget(): HTMLElement | HTMLElement[] | null;
2960
3072
  calculateHighlightBox(root?: any): void;
2961
3073
  resetHighlightBox(root: any): void;
2962
3074
  updateState(state: any, replace?: boolean): void;
@@ -2977,6 +3089,7 @@ export default class FlexLayout implements LayoutInterface {
2977
3089
  parentId: string;
2978
3090
  parentRegion: string;
2979
3091
  isCommonConfig: boolean;
3092
+ isFormConfig: boolean;
2980
3093
  id: string;
2981
3094
  type: string;
2982
3095
  label: string;
@@ -3003,6 +3116,7 @@ export default class FlexLayout implements LayoutInterface {
3003
3116
  } & {
3004
3117
  readonly info: import("../plugin").RendererInfo;
3005
3118
  getNodeById(id: string, regionOrType?: string | undefined): any;
3119
+ getNodeByComponentId(id: string): any;
3006
3120
  setInfo(value: import("../plugin").RendererInfo): void;
3007
3121
  updateSharedContext(value: Record<string, any>): void;
3008
3122
  readonly rendererConfig: any;
@@ -3039,6 +3153,7 @@ export default class FlexLayout implements LayoutInterface {
3039
3153
  parentId: string;
3040
3154
  parentRegion: string;
3041
3155
  isCommonConfig: boolean;
3156
+ isFormConfig: boolean;
3042
3157
  id: string;
3043
3158
  type: string;
3044
3159
  label: string;
@@ -3065,6 +3180,7 @@ export default class FlexLayout implements LayoutInterface {
3065
3180
  } & {
3066
3181
  readonly info: import("../plugin").RendererInfo;
3067
3182
  getNodeById(id: string, regionOrType?: string | undefined): any;
3183
+ getNodeByComponentId(id: string): any;
3068
3184
  setInfo(value: import("../plugin").RendererInfo): void;
3069
3185
  updateSharedContext(value: Record<string, any>): void;
3070
3186
  readonly rendererConfig: any;
@@ -3100,6 +3216,7 @@ export default class FlexLayout implements LayoutInterface {
3100
3216
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
3101
3217
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
3102
3218
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3219
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3103
3220
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
3104
3221
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
3105
3222
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -3126,6 +3243,7 @@ export default class FlexLayout implements LayoutInterface {
3126
3243
  } & {
3127
3244
  readonly info: import("../plugin").RendererInfo;
3128
3245
  getNodeById(id: string, regionOrType?: string | undefined): any;
3246
+ getNodeByComponentId(id: string): any;
3129
3247
  setInfo(value: import("../plugin").RendererInfo): void;
3130
3248
  updateSharedContext(value: Record<string, any>): void;
3131
3249
  readonly rendererConfig: any;
@@ -3162,6 +3280,7 @@ export default class FlexLayout implements LayoutInterface {
3162
3280
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
3163
3281
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
3164
3282
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3283
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3165
3284
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
3166
3285
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
3167
3286
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -3187,6 +3306,7 @@ export default class FlexLayout implements LayoutInterface {
3187
3306
  parentId: string;
3188
3307
  parentRegion: string;
3189
3308
  isCommonConfig: boolean;
3309
+ isFormConfig: boolean;
3190
3310
  id: string;
3191
3311
  type: string;
3192
3312
  label: string;
@@ -3213,6 +3333,7 @@ export default class FlexLayout implements LayoutInterface {
3213
3333
  } & {
3214
3334
  readonly info: import("../plugin").RendererInfo;
3215
3335
  getNodeById(id: string, regionOrType?: string | undefined): any;
3336
+ getNodeByComponentId(id: string): any;
3216
3337
  setInfo(value: import("../plugin").RendererInfo): void;
3217
3338
  updateSharedContext(value: Record<string, any>): void;
3218
3339
  readonly rendererConfig: any;
@@ -3248,6 +3369,7 @@ export default class FlexLayout implements LayoutInterface {
3248
3369
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
3249
3370
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
3250
3371
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3372
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3251
3373
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
3252
3374
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
3253
3375
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -3274,6 +3396,7 @@ export default class FlexLayout implements LayoutInterface {
3274
3396
  } & {
3275
3397
  readonly info: import("../plugin").RendererInfo;
3276
3398
  getNodeById(id: string, regionOrType?: string | undefined): any;
3399
+ getNodeByComponentId(id: string): any;
3277
3400
  setInfo(value: import("../plugin").RendererInfo): void;
3278
3401
  updateSharedContext(value: Record<string, any>): void;
3279
3402
  readonly rendererConfig: any;
@@ -3307,12 +3430,14 @@ export default class FlexLayout implements LayoutInterface {
3307
3430
  readonly isSecondFactor: boolean;
3308
3431
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3309
3432
  updateIsCommonConfig: (value: boolean) => void;
3433
+ updateIsFormConfig: (value: boolean) => void;
3310
3434
  addChild(props: {
3311
3435
  id: string;
3312
3436
  type: string;
3313
3437
  label: string;
3314
3438
  path: string;
3315
3439
  isCommonConfig?: boolean | undefined;
3440
+ isFormConfig?: boolean | undefined;
3316
3441
  info?: import("../plugin").RendererInfo | undefined;
3317
3442
  region?: string | undefined;
3318
3443
  getData?: (() => any) | undefined;
@@ -3331,6 +3456,7 @@ export default class FlexLayout implements LayoutInterface {
3331
3456
  updateSchemaStyle(value: any): void;
3332
3457
  setComponent(value: any): void;
3333
3458
  getComponent(): any;
3459
+ getTarget(): HTMLElement | HTMLElement[] | null;
3334
3460
  calculateHighlightBox(root?: any): void;
3335
3461
  resetHighlightBox(root: any): void;
3336
3462
  updateState(state: any, replace?: boolean): void;
@@ -3340,6 +3466,7 @@ export default class FlexLayout implements LayoutInterface {
3340
3466
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
3341
3467
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
3342
3468
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3469
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3343
3470
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
3344
3471
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
3345
3472
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -3366,6 +3493,7 @@ export default class FlexLayout implements LayoutInterface {
3366
3493
  } & {
3367
3494
  readonly info: import("../plugin").RendererInfo;
3368
3495
  getNodeById(id: string, regionOrType?: string | undefined): any;
3496
+ getNodeByComponentId(id: string): any;
3369
3497
  setInfo(value: import("../plugin").RendererInfo): void;
3370
3498
  updateSharedContext(value: Record<string, any>): void;
3371
3499
  readonly rendererConfig: any;
@@ -3402,6 +3530,7 @@ export default class FlexLayout implements LayoutInterface {
3402
3530
  parentId: string;
3403
3531
  parentRegion: string;
3404
3532
  isCommonConfig: boolean;
3533
+ isFormConfig: boolean;
3405
3534
  id: string;
3406
3535
  type: string;
3407
3536
  label: string;
@@ -3428,6 +3557,7 @@ export default class FlexLayout implements LayoutInterface {
3428
3557
  } & {
3429
3558
  readonly info: import("../plugin").RendererInfo;
3430
3559
  getNodeById(id: string, regionOrType?: string | undefined): any;
3560
+ getNodeByComponentId(id: string): any;
3431
3561
  setInfo(value: import("../plugin").RendererInfo): void;
3432
3562
  updateSharedContext(value: Record<string, any>): void;
3433
3563
  readonly rendererConfig: any;
@@ -3463,6 +3593,7 @@ export default class FlexLayout implements LayoutInterface {
3463
3593
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
3464
3594
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
3465
3595
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3596
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3466
3597
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
3467
3598
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
3468
3599
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -3489,6 +3620,7 @@ export default class FlexLayout implements LayoutInterface {
3489
3620
  } & {
3490
3621
  readonly info: import("../plugin").RendererInfo;
3491
3622
  getNodeById(id: string, regionOrType?: string | undefined): any;
3623
+ getNodeByComponentId(id: string): any;
3492
3624
  setInfo(value: import("../plugin").RendererInfo): void;
3493
3625
  updateSharedContext(value: Record<string, any>): void;
3494
3626
  readonly rendererConfig: any;
@@ -3525,6 +3657,7 @@ export default class FlexLayout implements LayoutInterface {
3525
3657
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
3526
3658
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
3527
3659
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3660
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3528
3661
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
3529
3662
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
3530
3663
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -3550,6 +3683,7 @@ export default class FlexLayout implements LayoutInterface {
3550
3683
  parentId: string;
3551
3684
  parentRegion: string;
3552
3685
  isCommonConfig: boolean;
3686
+ isFormConfig: boolean;
3553
3687
  id: string;
3554
3688
  type: string;
3555
3689
  label: string;
@@ -3576,6 +3710,7 @@ export default class FlexLayout implements LayoutInterface {
3576
3710
  } & {
3577
3711
  readonly info: import("../plugin").RendererInfo;
3578
3712
  getNodeById(id: string, regionOrType?: string | undefined): any;
3713
+ getNodeByComponentId(id: string): any;
3579
3714
  setInfo(value: import("../plugin").RendererInfo): void;
3580
3715
  updateSharedContext(value: Record<string, any>): void;
3581
3716
  readonly rendererConfig: any;
@@ -3611,6 +3746,7 @@ export default class FlexLayout implements LayoutInterface {
3611
3746
  parentId: import("mobx-state-tree").IType<string | undefined, string, string>;
3612
3747
  parentRegion: import("mobx-state-tree").IType<string | undefined, string, string>;
3613
3748
  isCommonConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3749
+ isFormConfig: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3614
3750
  id: import("mobx-state-tree").IType<string | undefined, string, string>;
3615
3751
  type: import("mobx-state-tree").IType<string | undefined, string, string>;
3616
3752
  label: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -3637,6 +3773,7 @@ export default class FlexLayout implements LayoutInterface {
3637
3773
  } & {
3638
3774
  readonly info: import("../plugin").RendererInfo;
3639
3775
  getNodeById(id: string, regionOrType?: string | undefined): any;
3776
+ getNodeByComponentId(id: string): any;
3640
3777
  setInfo(value: import("../plugin").RendererInfo): void;
3641
3778
  updateSharedContext(value: Record<string, any>): void;
3642
3779
  readonly rendererConfig: any;
@@ -3670,12 +3807,14 @@ export default class FlexLayout implements LayoutInterface {
3670
3807
  readonly isSecondFactor: boolean;
3671
3808
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
3672
3809
  updateIsCommonConfig: (value: boolean) => void;
3810
+ updateIsFormConfig: (value: boolean) => void;
3673
3811
  addChild(props: {
3674
3812
  id: string;
3675
3813
  type: string;
3676
3814
  label: string;
3677
3815
  path: string;
3678
3816
  isCommonConfig?: boolean | undefined;
3817
+ isFormConfig?: boolean | undefined;
3679
3818
  info?: import("../plugin").RendererInfo | undefined;
3680
3819
  region?: string | undefined;
3681
3820
  getData?: (() => any) | undefined;
@@ -3694,6 +3833,7 @@ export default class FlexLayout implements LayoutInterface {
3694
3833
  updateSchemaStyle(value: any): void;
3695
3834
  setComponent(value: any): void;
3696
3835
  getComponent(): any;
3836
+ getTarget(): HTMLElement | HTMLElement[] | null;
3697
3837
  calculateHighlightBox(root?: any): void;
3698
3838
  resetHighlightBox(root: any): void;
3699
3839
  updateState(state: any, replace?: boolean): void;