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