@tmagic/editor 1.5.0-beta.8 → 1.5.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.
Files changed (52) hide show
  1. package/dist/style.css +75 -16
  2. package/dist/tmagic-editor.js +797 -518
  3. package/dist/tmagic-editor.umd.cjs +802 -525
  4. package/package.json +13 -10
  5. package/src/Editor.vue +6 -1
  6. package/src/components/CodeBlockEditor.vue +11 -5
  7. package/src/components/CodeParams.vue +3 -3
  8. package/src/editorProps.ts +3 -1
  9. package/src/fields/Code.vue +1 -2
  10. package/src/fields/CodeSelect.vue +13 -11
  11. package/src/fields/CodeSelectCol.vue +32 -5
  12. package/src/fields/CondOpSelect.vue +5 -2
  13. package/src/fields/DataSourceFields.vue +31 -12
  14. package/src/fields/DataSourceMethods.vue +72 -14
  15. package/src/fields/DisplayConds.vue +8 -3
  16. package/src/fields/EventSelect.vue +28 -11
  17. package/src/fields/KeyValue.vue +15 -10
  18. package/src/fields/UISelect.vue +6 -3
  19. package/src/hooks/index.ts +0 -1
  20. package/src/hooks/use-code-block-edit.ts +1 -1
  21. package/src/hooks/use-data-source-edit.ts +3 -2
  22. package/src/hooks/use-filter.ts +1 -1
  23. package/src/hooks/use-node-status.ts +2 -2
  24. package/src/initService.ts +177 -74
  25. package/src/layouts/Framework.vue +8 -4
  26. package/src/layouts/PropsPanel.vue +3 -3
  27. package/src/layouts/page-bar/AddButton.vue +29 -9
  28. package/src/layouts/page-bar/PageBar.vue +78 -65
  29. package/src/layouts/page-bar/PageBarScrollContainer.vue +82 -96
  30. package/src/layouts/page-bar/PageList.vue +5 -3
  31. package/src/layouts/page-bar/Search.vue +67 -0
  32. package/src/layouts/sidebar/Sidebar.vue +3 -0
  33. package/src/layouts/sidebar/code-block/CodeBlockList.vue +6 -1
  34. package/src/layouts/sidebar/data-source/DataSourceConfigPanel.vue +7 -5
  35. package/src/layouts/sidebar/data-source/DataSourceList.vue +6 -1
  36. package/src/layouts/sidebar/layer/use-node-status.ts +2 -3
  37. package/src/layouts/workspace/Workspace.vue +5 -2
  38. package/src/layouts/workspace/viewer/Stage.vue +23 -5
  39. package/src/services/dataSource.ts +12 -5
  40. package/src/services/dep.ts +61 -13
  41. package/src/services/editor.ts +46 -51
  42. package/src/theme/page-bar.scss +38 -16
  43. package/src/theme/search-input.scss +1 -0
  44. package/src/type.ts +2 -1
  45. package/src/utils/data-source/formConfigs/http.ts +2 -0
  46. package/src/utils/data-source/index.ts +2 -2
  47. package/src/utils/editor.ts +78 -22
  48. package/src/utils/idle-task.ts +36 -4
  49. package/src/utils/props.ts +3 -3
  50. package/types/index.d.ts +835 -1169
  51. package/src/hooks/use-data-source-method.ts +0 -100
  52. package/src/layouts/page-bar/SwitchTypeButton.vue +0 -45
package/types/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import * as vue from 'vue';
2
2
  import { Component, ComputedRef, Ref, App } from 'vue';
3
- import { DesignPluginOptions } from '@tmagic/design';
3
+ import { TMagicMessageBox, TMagicMessage, DesignPluginOptions } from '@tmagic/design';
4
4
  export * from '@tmagic/design';
5
5
  export { default as designPlugin } from '@tmagic/design';
6
- import { TableColumnConfig as TableColumnConfig$1, FormConfig as FormConfig$1, FormItem as FormItem$1, FilterFunction as FilterFunction$1, FormState as FormState$1, ChildConfig as ChildConfig$1, Input as Input$1, TabPaneConfig as TabPaneConfig$1, CascaderOption as CascaderOption$1, FieldProps, FormValue as FormValue$1, FormInstallOptions } from '@tmagic/form';
6
+ import { TableColumnConfig as TableColumnConfig$1, FormConfig as FormConfig$1, ChangeRecord as ChangeRecord$1, FormItem as FormItem$1, FilterFunction as FilterFunction$1, FormState as FormState$1, ChildConfig as ChildConfig$1, Input as Input$1, TabPaneConfig as TabPaneConfig$1, CascaderOption as CascaderOption$1, ContainerChangeEventData as ContainerChangeEventData$1, FieldProps, FormValue as FormValue$1, FormInstallOptions } from '@tmagic/form';
7
7
  export * from '@tmagic/form';
8
8
  export { default as formPlugin } from '@tmagic/form';
9
9
  import EventEmitter$1, { EventEmitter } from 'events';
@@ -228,7 +228,7 @@ declare class ComponentList extends export_default {
228
228
  }
229
229
  type ComponentListService = ComponentList;
230
230
 
231
- interface State$1 {
231
+ interface State$2 {
232
232
  datasourceTypeList: DatasourceTypeOption[];
233
233
  dataSources: DataSourceSchema[];
234
234
  editable: boolean;
@@ -237,7 +237,7 @@ interface State$1 {
237
237
  events: Record<string, EventOption[]>;
238
238
  methods: Record<string, EventOption[]>;
239
239
  }
240
- type StateKey = keyof State$1;
240
+ type StateKey$1 = keyof State$2;
241
241
  declare const canUsePluginMethods$5: {
242
242
  async: never[];
243
243
  sync: readonly ["getFormConfig", "setFormConfig", "getFormValue", "setFormValue", "getFormEvent", "setFormEvent", "getFormMethod", "setFormMethod", "add", "update", "remove", "createId"];
@@ -246,8 +246,8 @@ type SyncMethodName$3 = Writable<(typeof canUsePluginMethods$5)['sync']>;
246
246
  declare class DataSource extends export_default {
247
247
  private state;
248
248
  constructor();
249
- set<K extends StateKey, T extends State$1[K]>(name: K, value: T): void;
250
- get<K extends StateKey>(name: K): State$1[K];
249
+ set<K extends StateKey$1, T extends State$2[K]>(name: K, value: T): void;
250
+ get<K extends StateKey$1>(name: K): State$2[K];
251
251
  getFormConfig(type?: string): FormConfig$1;
252
252
  setFormConfig(type: string, config: FormConfig$1): void;
253
253
  getFormValue(type?: string): Partial<DataSourceSchema>;
@@ -267,7 +267,9 @@ declare class DataSource extends export_default {
267
267
  events: _tmagic_schema.EventConfig[];
268
268
  disabledInitInJsEngine?: (_tmagic_schema.JsEngine | string)[];
269
269
  };
270
- update(config: DataSourceSchema): DataSourceSchema;
270
+ update(config: DataSourceSchema, { changeRecords }?: {
271
+ changeRecords?: ChangeRecord$1[];
272
+ }): DataSourceSchema;
271
273
  remove(id: string): void;
272
274
  createId(): string;
273
275
  getDataSourceById(id: string): DataSourceSchema | undefined;
@@ -294,8 +296,15 @@ interface DepEvents {
294
296
  'remove-target': [id: string | number];
295
297
  collected: [nodes: MNode[], deep: boolean];
296
298
  }
299
+ interface State$1 {
300
+ collecting: boolean;
301
+ }
302
+ type StateKey = keyof State$1;
297
303
  declare class Dep extends export_default {
304
+ private state;
298
305
  private watcher;
306
+ set<K extends StateKey, T extends State$1[K]>(name: K, value: T): void;
307
+ get<K extends StateKey>(name: K): State$1[K];
299
308
  removeTargets(type?: string): void;
300
309
  getTargets(type?: string): {
301
310
  [targetId: string]: Target;
@@ -306,15 +315,17 @@ declare class Dep extends export_default {
306
315
  removeTarget(id: Id, type?: string): void;
307
316
  clearTargets(): void;
308
317
  collect(nodes: MNode[], depExtendedData?: DepExtendedData, deep?: boolean, type?: DepTargetType): void;
309
- collectIdle(nodes: MNode[], depExtendedData?: DepExtendedData, deep?: boolean, type?: DepTargetType): void;
318
+ collectIdle(nodes: MNode[], depExtendedData?: DepExtendedData, deep?: boolean, type?: DepTargetType): Promise<void>;
310
319
  collectNode(node: MNode, target: Target, depExtendedData?: DepExtendedData, deep?: boolean): void;
311
320
  clear(nodes?: MNode[]): void;
312
321
  clearByType(type: DepTargetType, nodes?: MNode[]): void;
313
322
  hasTarget(id: Id, type?: string): boolean;
314
323
  hasSpecifiedTypeTarget(type?: string): boolean;
324
+ clearIdleTasks(): void;
315
325
  on<Name extends keyof DepEvents, Param extends DepEvents[Name]>(eventName: Name, listener: (...args: Param) => void | Promise<void>): this;
316
326
  once<Name extends keyof DepEvents, Param extends DepEvents[Name]>(eventName: Name, listener: (...args: Param) => void | Promise<void>): this;
317
327
  emit<Name extends keyof DepEvents, Param extends DepEvents[Name]>(eventName: Name, ...args: Param): boolean;
328
+ private enqueueTask;
318
329
  }
319
330
  type DepService = Dep;
320
331
  declare const _default$D: Dep;
@@ -324,7 +335,11 @@ interface EditorEvents {
324
335
  select: [node: MNode | null];
325
336
  add: [nodes: MNode[]];
326
337
  remove: [nodes: MNode[]];
327
- update: [nodes: MNode[]];
338
+ update: [nodes: {
339
+ newNode: MNode;
340
+ oldNode: MNode;
341
+ changeRecords?: ChangeRecord$1[];
342
+ }[]];
328
343
  'move-layer': [offset: number | LayerOffset];
329
344
  'drag-to': [data: {
330
345
  targetIndex: number;
@@ -414,13 +429,21 @@ declare class Editor extends export_default {
414
429
  * @param {Object} node
415
430
  */
416
431
  remove(nodeOrNodeList: MNode | MNode[]): Promise<void>;
417
- doUpdate(config: MNode): Promise<MNode>;
432
+ doUpdate(config: MNode, { changeRecords }?: {
433
+ changeRecords?: ChangeRecord$1[];
434
+ }): Promise<{
435
+ newNode: MNode;
436
+ oldNode: MNode;
437
+ changeRecords?: ChangeRecord$1[];
438
+ }>;
418
439
  /**
419
440
  * 更新节点
420
441
  * @param config 新的节点配置,配置中需要有id信息
421
442
  * @returns 更新后的节点配置
422
443
  */
423
- update(config: MNode | MNode[]): Promise<MNode | MNode[]>;
444
+ update(config: MNode | MNode[], data?: {
445
+ changeRecords?: ChangeRecord$1[];
446
+ }): Promise<MNode | MNode[]>;
424
447
  /**
425
448
  * 将id为id1的组件移动到id为id2的组件位置上,例如:[1,2,3,4] -> sort(1,3) -> [2,1,3,4]
426
449
  * @param id1 组件ID
@@ -840,6 +863,7 @@ interface FrameworkSlots {
840
863
  'props-panel'(props: {}): any;
841
864
  'footer'(props: {}): any;
842
865
  'page-bar'(props: {}): any;
866
+ 'page-bar-add-button'(props: {}): any;
843
867
  'page-bar-title'(props: {
844
868
  page: MPage | MPageFragment;
845
869
  }): any;
@@ -847,7 +871,7 @@ interface FrameworkSlots {
847
871
  page: MPage | MPageFragment;
848
872
  }): any;
849
873
  'page-list-popover'(props: {
850
- list: MPage[] | MPageFragment[];
874
+ list: (MPage | MPageFragment)[];
851
875
  }): any;
852
876
  }
853
877
  interface WorkspaceSlots {
@@ -1461,483 +1485,33 @@ interface PageBarSortOptions extends PartSortableOptions {
1461
1485
  beforeStart?: (event: SortableEvent, sortable: Sortable) => void | Promise<void>;
1462
1486
  }
1463
1487
 
1464
- declare const useCodeBlockEdit: (codeBlockService?: CodeBlockService) => {
1465
- codeId: vue.Ref<string | undefined, string | undefined>;
1466
- codeConfig: vue.Ref<CodeBlockContent | undefined, CodeBlockContent | undefined>;
1467
- codeBlockEditor: vue.Ref<vue.CreateComponentPublicInstanceWithMixins<Readonly<{
1468
- width?: number;
1469
- visible?: boolean;
1470
- } & {
1471
- content: CodeBlockContent;
1472
- disabled?: boolean;
1473
- isDataSource?: boolean;
1474
- dataSourceType?: string;
1475
- }> & Readonly<{
1476
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1477
- "onUpdate:width"?: ((width: number) => any) | undefined;
1478
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1479
- }>, {
1480
- show(): Promise<void>;
1481
- hide(): Promise<void>;
1482
- }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1483
- 'update:width': (width: number) => any;
1484
- 'update:visible': (visible: boolean) => any;
1485
- submit: (values: CodeBlockContent) => any;
1486
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
1487
- width?: number;
1488
- visible?: boolean;
1489
- } & {
1490
- content: CodeBlockContent;
1491
- disabled?: boolean;
1492
- isDataSource?: boolean;
1493
- dataSourceType?: string;
1494
- }> & Readonly<{
1495
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1496
- "onUpdate:width"?: ((width: number) => any) | undefined;
1497
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1498
- }>, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
1499
- P: {};
1500
- B: {};
1501
- D: {};
1502
- C: {};
1503
- M: {};
1504
- Defaults: {};
1505
- }, Readonly<{
1506
- width?: number;
1507
- visible?: boolean;
1508
- } & {
1509
- content: CodeBlockContent;
1510
- disabled?: boolean;
1511
- isDataSource?: boolean;
1512
- dataSourceType?: string;
1513
- }> & Readonly<{
1514
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1515
- "onUpdate:width"?: ((width: number) => any) | undefined;
1516
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1517
- }>, {
1518
- show(): Promise<void>;
1519
- hide(): Promise<void>;
1520
- }, {}, {}, {}, {}> | undefined, vue.CreateComponentPublicInstanceWithMixins<Readonly<{
1521
- width?: number;
1522
- visible?: boolean;
1523
- } & {
1524
- content: CodeBlockContent;
1525
- disabled?: boolean;
1526
- isDataSource?: boolean;
1527
- dataSourceType?: string;
1528
- }> & Readonly<{
1529
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1530
- "onUpdate:width"?: ((width: number) => any) | undefined;
1531
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1532
- }>, {
1533
- show(): Promise<void>;
1534
- hide(): Promise<void>;
1535
- }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1536
- 'update:width': (width: number) => any;
1537
- 'update:visible': (visible: boolean) => any;
1538
- submit: (values: CodeBlockContent) => any;
1539
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
1540
- width?: number;
1541
- visible?: boolean;
1542
- } & {
1543
- content: CodeBlockContent;
1544
- disabled?: boolean;
1545
- isDataSource?: boolean;
1546
- dataSourceType?: string;
1547
- }> & Readonly<{
1548
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1549
- "onUpdate:width"?: ((width: number) => any) | undefined;
1550
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1551
- }>, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
1552
- P: {};
1553
- B: {};
1554
- D: {};
1555
- C: {};
1556
- M: {};
1557
- Defaults: {};
1558
- }, Readonly<{
1559
- width?: number;
1560
- visible?: boolean;
1561
- } & {
1562
- content: CodeBlockContent;
1563
- disabled?: boolean;
1564
- isDataSource?: boolean;
1565
- dataSourceType?: string;
1566
- }> & Readonly<{
1567
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1568
- "onUpdate:width"?: ((width: number) => any) | undefined;
1569
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1570
- }>, {
1571
- show(): Promise<void>;
1572
- hide(): Promise<void>;
1573
- }, {}, {}, {}, {}> | undefined>;
1574
- createCodeBlock: () => Promise<void>;
1575
- editCode: (id: string) => Promise<void>;
1576
- deleteCode: (key: string) => Promise<void>;
1577
- submitCodeBlockHandler: (values: CodeBlockContent) => Promise<void>;
1578
- };
1579
-
1580
- declare const useDataSourceMethod: () => {
1581
- codeConfig: vue.Ref<CodeBlockContent | undefined, CodeBlockContent | undefined>;
1582
- codeBlockEditor: vue.Ref<vue.CreateComponentPublicInstanceWithMixins<Readonly<{
1583
- width?: number;
1584
- visible?: boolean;
1585
- } & {
1586
- content: CodeBlockContent;
1587
- disabled?: boolean;
1588
- isDataSource?: boolean;
1589
- dataSourceType?: string;
1590
- }> & Readonly<{
1591
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1592
- "onUpdate:width"?: ((width: number) => any) | undefined;
1593
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1594
- }>, {
1595
- show(): Promise<void>;
1596
- hide(): Promise<void>;
1597
- }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1598
- 'update:width': (width: number) => any;
1599
- 'update:visible': (visible: boolean) => any;
1600
- submit: (values: CodeBlockContent) => any;
1601
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
1602
- width?: number;
1603
- visible?: boolean;
1604
- } & {
1605
- content: CodeBlockContent;
1606
- disabled?: boolean;
1607
- isDataSource?: boolean;
1608
- dataSourceType?: string;
1609
- }> & Readonly<{
1610
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1611
- "onUpdate:width"?: ((width: number) => any) | undefined;
1612
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1613
- }>, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
1614
- P: {};
1615
- B: {};
1616
- D: {};
1617
- C: {};
1618
- M: {};
1619
- Defaults: {};
1620
- }, Readonly<{
1621
- width?: number;
1622
- visible?: boolean;
1623
- } & {
1624
- content: CodeBlockContent;
1625
- disabled?: boolean;
1626
- isDataSource?: boolean;
1627
- dataSourceType?: string;
1628
- }> & Readonly<{
1629
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1630
- "onUpdate:width"?: ((width: number) => any) | undefined;
1631
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1632
- }>, {
1633
- show(): Promise<void>;
1634
- hide(): Promise<void>;
1635
- }, {}, {}, {}, {}> | undefined, vue.CreateComponentPublicInstanceWithMixins<Readonly<{
1636
- width?: number;
1637
- visible?: boolean;
1638
- } & {
1639
- content: CodeBlockContent;
1640
- disabled?: boolean;
1641
- isDataSource?: boolean;
1642
- dataSourceType?: string;
1643
- }> & Readonly<{
1644
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1645
- "onUpdate:width"?: ((width: number) => any) | undefined;
1646
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1647
- }>, {
1648
- show(): Promise<void>;
1649
- hide(): Promise<void>;
1650
- }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
1651
- 'update:width': (width: number) => any;
1652
- 'update:visible': (visible: boolean) => any;
1653
- submit: (values: CodeBlockContent) => any;
1654
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
1655
- width?: number;
1656
- visible?: boolean;
1657
- } & {
1658
- content: CodeBlockContent;
1659
- disabled?: boolean;
1660
- isDataSource?: boolean;
1661
- dataSourceType?: string;
1662
- }> & Readonly<{
1663
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1664
- "onUpdate:width"?: ((width: number) => any) | undefined;
1665
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1666
- }>, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
1667
- P: {};
1668
- B: {};
1669
- D: {};
1670
- C: {};
1671
- M: {};
1672
- Defaults: {};
1673
- }, Readonly<{
1674
- width?: number;
1675
- visible?: boolean;
1676
- } & {
1677
- content: CodeBlockContent;
1678
- disabled?: boolean;
1679
- isDataSource?: boolean;
1680
- dataSourceType?: string;
1681
- }> & Readonly<{
1682
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
1683
- "onUpdate:width"?: ((width: number) => any) | undefined;
1684
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
1685
- }>, {
1686
- show(): Promise<void>;
1687
- hide(): Promise<void>;
1688
- }, {}, {}, {}, {}> | undefined>;
1689
- createCode: (model: DataSourceSchema) => Promise<void>;
1690
- editCode: (model: DataSourceSchema, methodName: string) => Promise<void>;
1691
- deleteCode: (model: DataSourceSchema, methodName: string) => Promise<void>;
1692
- submitCode: (values: CodeBlockContent) => void;
1693
- };
1694
-
1695
- declare const useStage: (stageOptions: StageOptions) => StageCore__default;
1696
-
1697
- interface State {
1698
- status: boolean;
1699
- top: number;
1700
- left: number;
1488
+ interface ChangeRecord {
1489
+ propPath?: string;
1490
+ value: any;
1701
1491
  }
1702
- declare const useFloatBox: (slideKeys: ComputedRef<string[]>) => {
1703
- dragstartHandler: (e: DragEvent) => void;
1704
- dragendHandler: (key: string, e: DragEvent) => void;
1705
- floatBoxStates: vue.Ref<{
1706
- [x: string]: State;
1707
- }, {
1708
- [x: string]: State;
1709
- }>;
1710
- showingBoxKeys: ComputedRef<string[]>;
1711
- };
1712
-
1713
- declare const useWindowRect: () => {
1714
- rect: {
1715
- width: number;
1716
- height: number;
1717
- };
1718
- };
1719
-
1720
- declare const useEditorContentHeight: () => {
1721
- height: vue.Ref<number, number>;
1722
- };
1723
-
1724
- declare const useFilter: (nodeData: Ref<TreeNodeData[]>, nodeStatusMap: Ref<Map<Id, LayerNodeStatus> | undefined>, filterNodeMethod: (value: string, data: MNode) => boolean) => {
1725
- filterText: Ref<string, string>;
1726
- filterTextChangeHandler(text: string | string[]): void;
1727
- };
1728
-
1729
- declare const useGetSo: (target: Ref<HTMLElement | undefined>, emit: (evt: "change", e: OnDrag<gesto__default>) => void) => {
1730
- isDraging: Ref<boolean, boolean>;
1731
- };
1732
-
1733
- declare const useNextFloatBoxPosition: (uiService?: UiService, parent?: Ref<HTMLDivElement | null>) => {
1734
- boxPosition: Ref<{
1735
- left: number;
1736
- top: number;
1737
- }, {
1738
- left: number;
1739
- top: number;
1740
- } | {
1741
- left: number;
1742
- top: number;
1743
- }>;
1744
- calcBoxPosition: () => void;
1745
- };
1746
-
1747
- declare const useNodeStatus: (nodeData: ComputedRef<TreeNodeData[]>) => {
1748
- nodeStatusMap: vue.Ref<Map<Id, {
1749
- visible: boolean;
1750
- expand: boolean;
1751
- selected: boolean;
1752
- draggable: boolean;
1753
- }> & Omit<Map<Id, LayerNodeStatus>, keyof Map<any, any>>, Map<Id, LayerNodeStatus> | (Map<Id, {
1754
- visible: boolean;
1755
- expand: boolean;
1756
- selected: boolean;
1757
- draggable: boolean;
1758
- }> & Omit<Map<Id, LayerNodeStatus>, keyof Map<any, any>>)>;
1759
- };
1760
-
1761
- declare const setEditorConfig: (option: EditorInstallOptions) => void;
1762
- declare const getEditorConfig: <K extends keyof EditorInstallOptions>(key: K) => EditorInstallOptions[K];
1763
-
1764
- declare const arrayOptions: {
1765
- text: string;
1766
- value: string;
1767
- }[];
1768
- declare const eqOptions: {
1769
- text: string;
1770
- value: string;
1771
- }[];
1772
- declare const numberOptions: {
1773
- text: string;
1774
- value: string;
1775
- }[];
1776
- declare const styleTabConfig: TabPaneConfig$1;
1777
- declare const eventTabConfig: TabPaneConfig$1;
1778
- declare const advancedTabConfig: TabPaneConfig$1;
1779
- declare const displayTabConfig: TabPaneConfig$1;
1780
- /**
1781
- * 统一为组件属性表单加上事件、高级、样式配置
1782
- * @param config 组件属性配置
1783
- * @returns Object
1784
- */
1785
- declare const fillConfig: (config?: FormConfig$1, labelWidth?: string) => FormConfig$1;
1786
-
1787
- declare const log: (...args: any[]) => void;
1788
- declare const info: (...args: any[]) => void;
1789
- declare const warn: (...args: any[]) => void;
1790
- declare const debug: (...args: any[]) => void;
1791
- declare const error: (...args: any[]) => void;
1792
-
1793
- declare const COPY_STORAGE_KEY = "$MagicEditorCopyData";
1794
- declare const COPY_CODE_STORAGE_KEY = "$MagicEditorCopyCode";
1795
- declare const COPY_DS_STORAGE_KEY = "$MagicEditorCopyDataSource";
1796
- /**
1797
- * 获取所有页面配置
1798
- * @param root DSL跟节点
1799
- * @returns 所有页面配置
1800
- */
1801
- declare const getPageList: (root?: MApp | null) => MPage[];
1802
- declare const getPageFragmentList: (root?: MApp | null) => MPageFragment[];
1803
- /**
1804
- * 获取所有页面名称
1805
- * @param pages 所有页面配置
1806
- * @returns 所有页面名称
1807
- */
1808
- declare const getPageNameList: (pages: (MPage | MPageFragment)[]) => string[];
1809
- /**
1810
- * 新增页面时,生成页面名称
1811
- * @param {Object} pageNameList 所有页面名称
1812
- * @returns {string}
1813
- */
1814
- declare const generatePageName: (pageNameList: string[], type: NodeType.PAGE | NodeType.PAGE_FRAGMENT) => string;
1815
- /**
1816
- * 新增页面时,生成页面名称
1817
- * @param {Object} app 所有页面配置
1818
- * @returns {string}
1819
- */
1820
- declare const generatePageNameByApp: (app: MApp, type: NodeType.PAGE | NodeType.PAGE_FRAGMENT) => string;
1821
- declare const getNodeIndex: (id: Id, parent: MContainer | MApp) => number;
1822
- declare const getRelativeStyle: (style?: Record<string, any>) => Record<string, any>;
1823
- declare const getInitPositionStyle: (style: Record<string, any> | undefined, layout: Layout) => Record<string, any>;
1824
- declare const setChildrenLayout: (node: MContainer, layout: Layout) => MContainer;
1825
- declare const setLayout: (node: MNode, layout: Layout) => _tmagic_schema.MComponent | undefined;
1826
- declare const change2Fixed: (node: MNode, root: MApp) => {
1827
- left: number;
1828
- top: number;
1829
- };
1830
- declare const Fixed2Other: (node: MNode, root: MApp, getLayout: (parent: MNode, node?: MNode) => Promise<Layout>) => Promise<Record<string, any>>;
1831
- declare const getGuideLineFromCache: (key: string) => number[];
1832
- declare const fixNodeLeft: (config: MNode, parent: MContainer, doc?: Document) => any;
1833
- declare const fixNodePosition: (config: MNode, parent: MContainer, stage: StageCore__default | null) => {
1834
- [key: string]: any;
1835
- } | undefined;
1836
- declare const serializeConfig: (config: any) => string;
1837
- interface NodeItem {
1838
- items?: NodeItem[];
1839
- [key: string]: any;
1840
- }
1841
- declare const traverseNode: <T extends NodeItem = NodeItem>(node: T, cb: (node: T, parents: T[]) => void, parents?: T[]) => void;
1842
- declare const moveItemsInContainer: (sourceIndices: number[], parent: MContainer, targetIndex: number) => void;
1843
-
1844
- /**
1845
- * 粘贴前置操作:返回分配了新id以及校准了坐标的配置
1846
- * @param position 粘贴的坐标
1847
- * @param config 待粘贴的元素配置(复制时保存的那份配置)
1848
- * @returns
1849
- */
1850
- declare const beforePaste: (position: PastePosition, config: MNode[], doc?: Document) => MNode[];
1851
- /**
1852
- * 将元素粘贴到容器内时,将相对于画布坐标转换为相对于容器的坐标
1853
- * @param position PastePosition 粘贴时相对于画布的坐标
1854
- * @param id 元素id
1855
- * @returns PastePosition 转换后的坐标
1856
- */
1857
- declare const getPositionInContainer: (position: PastePosition | undefined, id: Id, doc?: Document) => {
1858
- left: number;
1859
- top: number;
1860
- };
1861
- declare const getAddParent: (node: MNode) => MContainer | null | undefined;
1862
- declare const getDefaultConfig: (addNode: AddMNode, parentNode: MContainer) => Promise<any>;
1863
-
1864
- declare const getFormConfig: (type: string, configs: Record<string, FormConfig$1>) => FormConfig$1;
1865
- declare const getFormValue: (type: string, values: Partial<DataSourceSchema>) => Partial<DataSourceSchema>;
1866
- declare const getDisplayField: (dataSources: DataSourceSchema[], key: string) => {
1867
- value: string;
1868
- type: "var" | "text";
1869
- }[];
1870
- declare const getCascaderOptionsFromFields: (fields?: DataSchema[], dataSourceFieldType?: DataSourceFieldType[]) => CascaderOption$1[];
1871
- declare const removeDataSourceFieldPrefix: (id?: string) => string;
1872
-
1873
- interface IdleTaskEvents {
1874
- finish: [];
1875
- }
1876
- declare class IdleTask<T = any> extends EventEmitter {
1877
- private taskList;
1878
- private taskHandle;
1879
- enqueueTask(taskHandler: (data: T) => void, taskData: T): void;
1880
- on<Name extends keyof IdleTaskEvents, Param extends IdleTaskEvents[Name]>(eventName: Name, listener: (...args: Param) => void | Promise<void>): this;
1881
- once<Name extends keyof IdleTaskEvents, Param extends IdleTaskEvents[Name]>(eventName: Name, listener: (...args: Param) => void | Promise<void>): this;
1882
- emit<Name extends keyof IdleTaskEvents, Param extends IdleTaskEvents[Name]>(eventName: Name, ...args: Param): boolean;
1883
- private runTaskQueue;
1884
- }
1885
-
1886
- interface ScrollViewerOptions {
1887
- container: HTMLDivElement;
1888
- target: HTMLDivElement;
1889
- zoom: number;
1890
- correctionScrollSize?: {
1891
- width: number;
1892
- height: number;
1893
- };
1894
- }
1895
- declare class ScrollViewer extends EventEmitter {
1896
- private container;
1897
- private target;
1898
- private zoom;
1899
- private scrollLeft;
1900
- private scrollTop;
1901
- private scrollHeight;
1902
- private scrollWidth;
1903
- private width;
1904
- private height;
1905
- private translateXCorrectionValue;
1906
- private translateYCorrectionValue;
1907
- private correctionScrollSize;
1908
- private resizeObserver;
1909
- constructor(options: ScrollViewerOptions);
1910
- destroy(): void;
1911
- setZoom(zoom: number): void;
1912
- scrollTo({ left, top }: {
1913
- left?: number;
1914
- top?: number;
1915
- }): void;
1916
- private wheelHandler;
1917
- private getPos;
1918
- private setScrollSize;
1919
- private setSize;
1920
- }
1921
-
1922
- declare const updateStatus: (nodeStatusMap: Map<Id, LayerNodeStatus>, id: Id, status: Partial<LayerNodeStatus>) => void;
1923
-
1924
- /**
1925
- * 整个表单的数据,会注入到各个组件中去
1926
- */
1927
- type FormState = {
1928
- config: FormConfig;
1929
- popperClass?: string;
1930
- initValues: FormValue;
1931
- lastValues: FormValue;
1932
- isCompare: boolean;
1933
- values: FormValue;
1934
- $emit: (event: string, ...args: any[]) => void;
1935
- keyProp?: string;
1936
- parentValues?: FormValue;
1937
- setField: (prop: string, field: any) => void;
1938
- getField: (prop: string) => any;
1939
- deleteField: (prop: string) => any;
1940
- [key: string]: any;
1492
+ interface ContainerChangeEventData {
1493
+ modifyKey?: string;
1494
+ changeRecords?: ChangeRecord[];
1495
+ }
1496
+ /**
1497
+ * 整个表单的数据,会注入到各个组件中去
1498
+ */
1499
+ type FormState = {
1500
+ config: FormConfig;
1501
+ popperClass?: string;
1502
+ initValues: FormValue;
1503
+ lastValues: FormValue;
1504
+ isCompare: boolean;
1505
+ values: FormValue;
1506
+ $emit: (event: string, ...args: any[]) => void;
1507
+ keyProp?: string;
1508
+ parentValues?: FormValue;
1509
+ setField: (prop: string, field: any) => void;
1510
+ getField: (prop: string) => any;
1511
+ deleteField: (prop: string) => any;
1512
+ $messageBox: TMagicMessageBox;
1513
+ $message: TMagicMessage;
1514
+ [key: string]: any;
1941
1515
  };
1942
1516
  /**
1943
1517
  * 排序配置
@@ -2029,24 +1603,27 @@ interface Input {
2029
1603
  placeholder?: string;
2030
1604
  }
2031
1605
  type TypeFunction = (mForm: FormState | undefined, data: {
2032
- model: Record<any, any>;
1606
+ model: FormValue;
2033
1607
  }) => string;
2034
1608
  type FilterFunction<T = boolean> = (mForm: FormState | undefined, data: {
2035
- model: Record<any, any>;
2036
- values: Record<any, any>;
2037
- parent?: Record<any, any>;
2038
- formValue: Record<any, any>;
1609
+ model: FormValue;
1610
+ values: FormValue;
1611
+ parent?: FormValue;
1612
+ formValue: FormValue;
2039
1613
  prop: string;
2040
1614
  config: any;
2041
1615
  index?: number;
2042
1616
  }) => T;
2043
- type OnChangeHandler = (mForm: FormState | undefined, value: any, data: {
2044
- model: Record<any, any>;
2045
- values: Record<any, any>;
2046
- parent?: Record<any, any>;
2047
- formValue: Record<any, any>;
1617
+ interface OnChangeHandlerData {
1618
+ model: FormValue;
1619
+ values?: FormValue;
1620
+ parent?: FormValue;
1621
+ formValue?: FormValue;
2048
1622
  config: any;
2049
- }) => any;
1623
+ prop: string;
1624
+ changeRecords: ChangeRecord[];
1625
+ }
1626
+ type OnChangeHandler = (mForm: FormState | undefined, value: any, data: OnChangeHandlerData) => any;
2050
1627
  type DefaultValueFunction = (mForm: FormState | undefined) => any;
2051
1628
  /**
2052
1629
  * 下拉选择器选项配置
@@ -2481,9 +2058,328 @@ interface ComponentConfig extends FormItem {
2481
2058
  extend: any;
2482
2059
  display: any;
2483
2060
  }
2484
- type ChildConfig = FormItem | TabConfig | RowConfig | FieldsetConfig | PanelConfig | TableConfig | GroupListConfig | StepConfig | DisplayConfig | TextConfig | HiddenConfig | LinkConfig | DaterangeConfig | SelectConfig | CascaderConfig | HtmlField | DateConfig | ColorPickConfig | TimeConfig | DateTimeConfig | CheckboxConfig | SwitchConfig | RadioGroupConfig | TextareaConfig | DynamicFieldConfig | ComponentConfig;
2485
- type FormConfig = ChildConfig[];
2486
- type FormValue = Record<string | number, any>;
2061
+ type ChildConfig = FormItem | TabConfig | RowConfig | FieldsetConfig | PanelConfig | TableConfig | GroupListConfig | StepConfig | DisplayConfig | TextConfig | HiddenConfig | LinkConfig | DaterangeConfig | SelectConfig | CascaderConfig | HtmlField | DateConfig | ColorPickConfig | TimeConfig | DateTimeConfig | CheckboxConfig | SwitchConfig | RadioGroupConfig | TextareaConfig | DynamicFieldConfig | ComponentConfig;
2062
+ type FormConfig = ChildConfig[];
2063
+ type FormValue = Record<string | number, any>;
2064
+
2065
+ declare const useCodeBlockEdit: (codeBlockService?: CodeBlockService) => {
2066
+ codeId: vue.Ref<string | undefined, string | undefined>;
2067
+ codeConfig: vue.Ref<CodeBlockContent | undefined, CodeBlockContent | undefined>;
2068
+ codeBlockEditor: vue.Ref<vue.CreateComponentPublicInstanceWithMixins<Readonly<{
2069
+ width?: number;
2070
+ visible?: boolean;
2071
+ } & {
2072
+ content: CodeBlockContent;
2073
+ disabled?: boolean;
2074
+ isDataSource?: boolean;
2075
+ dataSourceType?: string;
2076
+ }> & Readonly<{
2077
+ onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
2078
+ "onUpdate:width"?: ((value: number) => any) | undefined;
2079
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
2080
+ }>, {
2081
+ show(): Promise<void>;
2082
+ hide(): Promise<void>;
2083
+ }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2084
+ submit: (values: CodeBlockContent, eventData: ContainerChangeEventData) => any;
2085
+ "update:width": (value: number) => any;
2086
+ "update:visible": (value: boolean) => any;
2087
+ }, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
2088
+ P: {};
2089
+ B: {};
2090
+ D: {};
2091
+ C: {};
2092
+ M: {};
2093
+ Defaults: {};
2094
+ }, Readonly<{
2095
+ width?: number;
2096
+ visible?: boolean;
2097
+ } & {
2098
+ content: CodeBlockContent;
2099
+ disabled?: boolean;
2100
+ isDataSource?: boolean;
2101
+ dataSourceType?: string;
2102
+ }> & Readonly<{
2103
+ onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
2104
+ "onUpdate:width"?: ((value: number) => any) | undefined;
2105
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
2106
+ }>, {
2107
+ show(): Promise<void>;
2108
+ hide(): Promise<void>;
2109
+ }, {}, {}, {}, {}> | undefined, vue.CreateComponentPublicInstanceWithMixins<Readonly<{
2110
+ width?: number;
2111
+ visible?: boolean;
2112
+ } & {
2113
+ content: CodeBlockContent;
2114
+ disabled?: boolean;
2115
+ isDataSource?: boolean;
2116
+ dataSourceType?: string;
2117
+ }> & Readonly<{
2118
+ onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
2119
+ "onUpdate:width"?: ((value: number) => any) | undefined;
2120
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
2121
+ }>, {
2122
+ show(): Promise<void>;
2123
+ hide(): Promise<void>;
2124
+ }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2125
+ submit: (values: CodeBlockContent, eventData: ContainerChangeEventData) => any;
2126
+ "update:width": (value: number) => any;
2127
+ "update:visible": (value: boolean) => any;
2128
+ }, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
2129
+ P: {};
2130
+ B: {};
2131
+ D: {};
2132
+ C: {};
2133
+ M: {};
2134
+ Defaults: {};
2135
+ }, Readonly<{
2136
+ width?: number;
2137
+ visible?: boolean;
2138
+ } & {
2139
+ content: CodeBlockContent;
2140
+ disabled?: boolean;
2141
+ isDataSource?: boolean;
2142
+ dataSourceType?: string;
2143
+ }> & Readonly<{
2144
+ onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
2145
+ "onUpdate:width"?: ((value: number) => any) | undefined;
2146
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
2147
+ }>, {
2148
+ show(): Promise<void>;
2149
+ hide(): Promise<void>;
2150
+ }, {}, {}, {}, {}> | undefined>;
2151
+ createCodeBlock: () => Promise<void>;
2152
+ editCode: (id: string) => Promise<void>;
2153
+ deleteCode: (key: string) => Promise<void>;
2154
+ submitCodeBlockHandler: (values: CodeBlockContent) => Promise<void>;
2155
+ };
2156
+
2157
+ declare const useStage: (stageOptions: StageOptions) => StageCore__default;
2158
+
2159
+ interface State {
2160
+ status: boolean;
2161
+ top: number;
2162
+ left: number;
2163
+ }
2164
+ declare const useFloatBox: (slideKeys: ComputedRef<string[]>) => {
2165
+ dragstartHandler: (e: DragEvent) => void;
2166
+ dragendHandler: (key: string, e: DragEvent) => void;
2167
+ floatBoxStates: vue.Ref<{
2168
+ [x: string]: State;
2169
+ }, {
2170
+ [x: string]: State;
2171
+ }>;
2172
+ showingBoxKeys: ComputedRef<string[]>;
2173
+ };
2174
+
2175
+ declare const useWindowRect: () => {
2176
+ rect: {
2177
+ width: number;
2178
+ height: number;
2179
+ };
2180
+ };
2181
+
2182
+ declare const useEditorContentHeight: () => {
2183
+ height: vue.Ref<number, number>;
2184
+ };
2185
+
2186
+ declare const useFilter: (nodeData: Ref<TreeNodeData[]>, nodeStatusMap: Ref<Map<Id, LayerNodeStatus> | undefined>, filterNodeMethod: (value: string, data: MNode) => boolean) => {
2187
+ filterText: Ref<string, string>;
2188
+ filterTextChangeHandler(text: string | string[]): void;
2189
+ };
2190
+
2191
+ declare const useGetSo: (target: Ref<HTMLElement | undefined>, emit: (evt: "change", e: OnDrag<gesto__default>) => void) => {
2192
+ isDraging: Ref<boolean, boolean>;
2193
+ };
2194
+
2195
+ declare const useNextFloatBoxPosition: (uiService?: UiService, parent?: Ref<HTMLDivElement | null>) => {
2196
+ boxPosition: Ref<{
2197
+ left: number;
2198
+ top: number;
2199
+ }, {
2200
+ left: number;
2201
+ top: number;
2202
+ } | {
2203
+ left: number;
2204
+ top: number;
2205
+ }>;
2206
+ calcBoxPosition: () => void;
2207
+ };
2208
+
2209
+ declare const useNodeStatus: (nodeData: ComputedRef<TreeNodeData[]>) => {
2210
+ nodeStatusMap: vue.Ref<Map<Id, {
2211
+ visible: boolean;
2212
+ expand: boolean;
2213
+ selected: boolean;
2214
+ draggable: boolean;
2215
+ }> & Omit<Map<Id, LayerNodeStatus>, keyof Map<any, any>>, Map<Id, LayerNodeStatus> | (Map<Id, {
2216
+ visible: boolean;
2217
+ expand: boolean;
2218
+ selected: boolean;
2219
+ draggable: boolean;
2220
+ }> & Omit<Map<Id, LayerNodeStatus>, keyof Map<any, any>>)>;
2221
+ };
2222
+
2223
+ declare const setEditorConfig: (option: EditorInstallOptions) => void;
2224
+ declare const getEditorConfig: <K extends keyof EditorInstallOptions>(key: K) => EditorInstallOptions[K];
2225
+
2226
+ declare const arrayOptions: {
2227
+ text: string;
2228
+ value: string;
2229
+ }[];
2230
+ declare const eqOptions: {
2231
+ text: string;
2232
+ value: string;
2233
+ }[];
2234
+ declare const numberOptions: {
2235
+ text: string;
2236
+ value: string;
2237
+ }[];
2238
+ declare const styleTabConfig: TabPaneConfig$1;
2239
+ declare const eventTabConfig: TabPaneConfig$1;
2240
+ declare const advancedTabConfig: TabPaneConfig$1;
2241
+ declare const displayTabConfig: TabPaneConfig$1;
2242
+ /**
2243
+ * 统一为组件属性表单加上事件、高级、样式配置
2244
+ * @param config 组件属性配置
2245
+ * @returns Object
2246
+ */
2247
+ declare const fillConfig: (config?: FormConfig$1, labelWidth?: string) => FormConfig$1;
2248
+
2249
+ declare const log: (...args: any[]) => void;
2250
+ declare const info: (...args: any[]) => void;
2251
+ declare const warn: (...args: any[]) => void;
2252
+ declare const debug: (...args: any[]) => void;
2253
+ declare const error: (...args: any[]) => void;
2254
+
2255
+ declare const COPY_STORAGE_KEY = "$MagicEditorCopyData";
2256
+ declare const COPY_CODE_STORAGE_KEY = "$MagicEditorCopyCode";
2257
+ declare const COPY_DS_STORAGE_KEY = "$MagicEditorCopyDataSource";
2258
+ /**
2259
+ * 获取所有页面配置
2260
+ * @param root DSL跟节点
2261
+ * @returns 所有页面配置
2262
+ */
2263
+ declare const getPageList: (root?: MApp | null) => MPage[];
2264
+ declare const getPageFragmentList: (root?: MApp | null) => MPageFragment[];
2265
+ /**
2266
+ * 获取所有页面名称
2267
+ * @param pages 所有页面配置
2268
+ * @returns 所有页面名称
2269
+ */
2270
+ declare const getPageNameList: (pages: (MPage | MPageFragment)[]) => string[];
2271
+ /**
2272
+ * 新增页面时,生成页面名称
2273
+ * @param {Object} pageNameList 所有页面名称
2274
+ * @returns {string}
2275
+ */
2276
+ declare const generatePageName: (pageNameList: string[], type: NodeType.PAGE | NodeType.PAGE_FRAGMENT) => string;
2277
+ /**
2278
+ * 新增页面时,生成页面名称
2279
+ * @param {Object} app 所有页面配置
2280
+ * @returns {string}
2281
+ */
2282
+ declare const generatePageNameByApp: (app: MApp, type: NodeType.PAGE | NodeType.PAGE_FRAGMENT) => string;
2283
+ declare const getNodeIndex: (id: Id, parent: MContainer | MApp) => number;
2284
+ declare const getRelativeStyle: (style?: Record<string, any>) => Record<string, any>;
2285
+ declare const getInitPositionStyle: (style: Record<string, any> | undefined, layout: Layout) => Record<string, any>;
2286
+ declare const setChildrenLayout: (node: MContainer, layout: Layout) => MContainer;
2287
+ declare const setLayout: (node: MNode, layout: Layout) => _tmagic_schema.MComponent | undefined;
2288
+ declare const change2Fixed: (node: MNode, root: MApp) => {
2289
+ left: number;
2290
+ top: number;
2291
+ };
2292
+ declare const Fixed2Other: (node: MNode, root: MApp, getLayout: (parent: MNode, node?: MNode) => Promise<Layout>) => Promise<Record<string, any>>;
2293
+ declare const getGuideLineFromCache: (key: string) => number[];
2294
+ declare const fixNodeLeft: (config: MNode, parent: MContainer, doc?: Document) => any;
2295
+ declare const fixNodePosition: (config: MNode, parent: MContainer, stage: StageCore__default | null) => {
2296
+ [key: string]: any;
2297
+ } | undefined;
2298
+ declare const serializeConfig: (config: any) => string;
2299
+ declare const moveItemsInContainer: (sourceIndices: number[], parent: MContainer, targetIndex: number) => void;
2300
+ declare const isIncludeDataSource: (node: MNode, oldNode: MNode) => boolean;
2301
+
2302
+ /**
2303
+ * 粘贴前置操作:返回分配了新id以及校准了坐标的配置
2304
+ * @param position 粘贴的坐标
2305
+ * @param config 待粘贴的元素配置(复制时保存的那份配置)
2306
+ * @returns
2307
+ */
2308
+ declare const beforePaste: (position: PastePosition, config: MNode[], doc?: Document) => MNode[];
2309
+ /**
2310
+ * 将元素粘贴到容器内时,将相对于画布坐标转换为相对于容器的坐标
2311
+ * @param position PastePosition 粘贴时相对于画布的坐标
2312
+ * @param id 元素id
2313
+ * @returns PastePosition 转换后的坐标
2314
+ */
2315
+ declare const getPositionInContainer: (position: PastePosition | undefined, id: Id, doc?: Document) => {
2316
+ left: number;
2317
+ top: number;
2318
+ };
2319
+ declare const getAddParent: (node: MNode) => MContainer | null | undefined;
2320
+ declare const getDefaultConfig: (addNode: AddMNode, parentNode: MContainer) => Promise<any>;
2321
+
2322
+ declare const getFormConfig: (type: string, configs: Record<string, FormConfig$1>) => FormConfig$1;
2323
+ declare const getFormValue: (type: string, values: Partial<DataSourceSchema>) => Partial<DataSourceSchema>;
2324
+ declare const getDisplayField: (dataSources: DataSourceSchema[], key: string) => {
2325
+ value: string;
2326
+ type: "var" | "text";
2327
+ }[];
2328
+ declare const getCascaderOptionsFromFields: (fields?: DataSchema[], dataSourceFieldType?: DataSourceFieldType[]) => CascaderOption$1[];
2329
+ declare const removeDataSourceFieldPrefix: (id?: string) => string;
2330
+
2331
+ interface IdleTaskEvents {
2332
+ finish: [];
2333
+ }
2334
+ declare class IdleTask<T = any> extends EventEmitter {
2335
+ private taskList;
2336
+ private taskHandle;
2337
+ constructor();
2338
+ enqueueTask(taskHandler: (data: T) => void, taskData: T): void;
2339
+ clearTasks(): void;
2340
+ on<Name extends keyof IdleTaskEvents, Param extends IdleTaskEvents[Name]>(eventName: Name, listener: (...args: Param) => void | Promise<void>): this;
2341
+ once<Name extends keyof IdleTaskEvents, Param extends IdleTaskEvents[Name]>(eventName: Name, listener: (...args: Param) => void | Promise<void>): this;
2342
+ emit<Name extends keyof IdleTaskEvents, Param extends IdleTaskEvents[Name]>(eventName: Name, ...args: Param): boolean;
2343
+ private runTaskQueue;
2344
+ }
2345
+
2346
+ interface ScrollViewerOptions {
2347
+ container: HTMLDivElement;
2348
+ target: HTMLDivElement;
2349
+ zoom: number;
2350
+ correctionScrollSize?: {
2351
+ width: number;
2352
+ height: number;
2353
+ };
2354
+ }
2355
+ declare class ScrollViewer extends EventEmitter {
2356
+ private container;
2357
+ private target;
2358
+ private zoom;
2359
+ private scrollLeft;
2360
+ private scrollTop;
2361
+ private scrollHeight;
2362
+ private scrollWidth;
2363
+ private width;
2364
+ private height;
2365
+ private translateXCorrectionValue;
2366
+ private translateYCorrectionValue;
2367
+ private correctionScrollSize;
2368
+ private resizeObserver;
2369
+ constructor(options: ScrollViewerOptions);
2370
+ destroy(): void;
2371
+ setZoom(zoom: number): void;
2372
+ scrollTo({ left, top }: {
2373
+ left?: number;
2374
+ top?: number;
2375
+ }): void;
2376
+ private wheelHandler;
2377
+ private getPos;
2378
+ private setScrollSize;
2379
+ private setSize;
2380
+ }
2381
+
2382
+ declare const updateStatus: (nodeStatusMap: Map<Id, LayerNodeStatus>, id: Id, status: Partial<LayerNodeStatus>) => void;
2487
2383
 
2488
2384
  interface EditorProps {
2489
2385
  /** 页面初始值 */
@@ -2568,9 +2464,12 @@ interface EditorProps {
2568
2464
  extendFormState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
2569
2465
  /** 页面顺序拖拽配置参数 */
2570
2466
  pageBarSortOptions?: PageBarSortOptions;
2467
+ /** 页面搜索函数 */
2468
+ pageFilterFunction?: (page: MPage | MPageFragment, keyword: string) => boolean;
2571
2469
  }
2572
2470
 
2573
2471
  declare function __VLS_template$b(): {
2472
+ attrs: Partial<{}>;
2574
2473
  slots: Readonly<FrameworkSlots & WorkspaceSlots & LayerPanelSlots & CodeBlockListPanelSlots & ComponentListPanelSlots & DataSourceListSlots & PropsPanelSlots & {
2575
2474
  workspace(props: {
2576
2475
  editorService: EditorService;
@@ -2587,7 +2486,7 @@ declare function __VLS_template$b(): {
2587
2486
  }): any;
2588
2487
  };
2589
2488
  refs: {};
2590
- attrs: Partial<{}>;
2489
+ rootEl: HTMLDivElement;
2591
2490
  };
2592
2491
  type __VLS_TemplateResult$b = ReturnType<typeof __VLS_template$b>;
2593
2492
  declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
@@ -2604,7 +2503,8 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2604
2503
  keybindingService: KeybindingService;
2605
2504
  stageOverlayService: StageOverlayService;
2606
2505
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2607
- 'props-panel-mounted': (instance: {
2506
+ "update:modelValue": (value: MApp | null) => any;
2507
+ "props-panel-mounted": (instance: {
2608
2508
  $: vue.ComponentInternalInstance;
2609
2509
  $data: {};
2610
2510
  $props: {
@@ -2613,14 +2513,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2613
2513
  readonly onMounted?: ((...args: any[]) => any) | undefined;
2614
2514
  readonly "onSubmit-error"?: ((...args: any[]) => any) | undefined;
2615
2515
  readonly "onForm-error"?: ((...args: any[]) => any) | undefined;
2616
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
2617
- disabledShowSrc?: boolean;
2618
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2619
- }> & Readonly<{
2620
- onMounted?: ((...args: any[]) => any) | undefined;
2621
- "onSubmit-error"?: ((...args: any[]) => any) | undefined;
2622
- "onForm-error"?: ((...args: any[]) => any) | undefined;
2623
- }>;
2516
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps;
2624
2517
  $attrs: {
2625
2518
  [x: string]: unknown;
2626
2519
  };
@@ -2634,7 +2527,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2634
2527
  $parent: vue.ComponentPublicInstance | null;
2635
2528
  $host: Element | null;
2636
2529
  $emit: ((event: "mounted", ...args: any[]) => void) & ((event: "submit-error", ...args: any[]) => void) & ((event: "form-error", ...args: any[]) => void);
2637
- $el: any;
2530
+ $el: HTMLDivElement;
2638
2531
  $options: vue.ComponentOptionsBase<Readonly<{
2639
2532
  disabledShowSrc?: boolean;
2640
2533
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
@@ -2658,10 +2551,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2658
2551
  labelPosition?: string;
2659
2552
  keyProp?: string;
2660
2553
  popperClass?: string;
2554
+ preventSubmitDefault?: boolean;
2661
2555
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2662
2556
  }> & Readonly<{
2663
2557
  onChange?: ((...args: any[]) => any) | undefined;
2664
2558
  onError?: ((...args: any[]) => any) | undefined;
2559
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2665
2560
  "onField-change"?: ((...args: any[]) => any) | undefined;
2666
2561
  "onField-input"?: ((...args: any[]) => any) | undefined;
2667
2562
  }>, {
@@ -2669,36 +2564,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2669
2564
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
2670
2565
  formState: FormState;
2671
2566
  initialized: vue.Ref<boolean, boolean>;
2672
- changeHandler: () => void;
2673
- resetForm: () => any;
2567
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2568
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2569
+ resetForm: () => void;
2674
2570
  submitForm: (native?: boolean) => Promise<any>;
2675
2571
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2676
2572
  change: (...args: any[]) => void;
2677
2573
  error: (...args: any[]) => void;
2574
+ "update:stepActive": (...args: any[]) => void;
2678
2575
  "field-change": (...args: any[]) => void;
2679
2576
  "field-input": (...args: any[]) => void;
2680
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
2681
- config: FormConfig;
2682
- initValues: Record<string, any>;
2683
- lastValues?: Record<string, any>;
2684
- isCompare?: boolean;
2685
- parentValues?: Record<string, any>;
2686
- labelWidth?: string;
2687
- disabled?: boolean;
2688
- height?: string;
2689
- stepActive?: string | number;
2690
- size?: "small" | "default" | "large";
2691
- inline?: boolean;
2692
- labelPosition?: string;
2693
- keyProp?: string;
2694
- popperClass?: string;
2695
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2696
- }> & Readonly<{
2697
- onChange?: ((...args: any[]) => any) | undefined;
2698
- onError?: ((...args: any[]) => any) | undefined;
2699
- "onField-change"?: ((...args: any[]) => any) | undefined;
2700
- "onField-input"?: ((...args: any[]) => any) | undefined;
2701
- }>, {
2577
+ }, vue.PublicProps, {
2702
2578
  disabled: boolean;
2703
2579
  labelWidth: string;
2704
2580
  inline: boolean;
@@ -2711,7 +2587,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2711
2587
  parentValues: Record<string, any>;
2712
2588
  stepActive: string | number;
2713
2589
  height: string;
2714
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
2590
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
2715
2591
  P: {};
2716
2592
  B: {};
2717
2593
  D: {};
@@ -2733,10 +2609,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2733
2609
  labelPosition?: string;
2734
2610
  keyProp?: string;
2735
2611
  popperClass?: string;
2612
+ preventSubmitDefault?: boolean;
2736
2613
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2737
2614
  }> & Readonly<{
2738
2615
  onChange?: ((...args: any[]) => any) | undefined;
2739
2616
  onError?: ((...args: any[]) => any) | undefined;
2617
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2740
2618
  "onField-change"?: ((...args: any[]) => any) | undefined;
2741
2619
  "onField-input"?: ((...args: any[]) => any) | undefined;
2742
2620
  }>, {
@@ -2744,8 +2622,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2744
2622
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
2745
2623
  formState: FormState;
2746
2624
  initialized: vue.Ref<boolean, boolean>;
2747
- changeHandler: () => void;
2748
- resetForm: () => any;
2625
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2626
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2627
+ resetForm: () => void;
2749
2628
  submitForm: (native?: boolean) => Promise<any>;
2750
2629
  }, {}, {}, {}, {
2751
2630
  disabled: boolean;
@@ -2775,10 +2654,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2775
2654
  labelPosition?: string;
2776
2655
  keyProp?: string;
2777
2656
  popperClass?: string;
2657
+ preventSubmitDefault?: boolean;
2778
2658
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2779
2659
  }> & Readonly<{
2780
2660
  onChange?: ((...args: any[]) => any) | undefined;
2781
2661
  onError?: ((...args: any[]) => any) | undefined;
2662
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2782
2663
  "onField-change"?: ((...args: any[]) => any) | undefined;
2783
2664
  "onField-input"?: ((...args: any[]) => any) | undefined;
2784
2665
  }>, {
@@ -2786,36 +2667,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2786
2667
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
2787
2668
  formState: FormState;
2788
2669
  initialized: vue.Ref<boolean, boolean>;
2789
- changeHandler: () => void;
2790
- resetForm: () => any;
2670
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2671
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2672
+ resetForm: () => void;
2791
2673
  submitForm: (native?: boolean) => Promise<any>;
2792
2674
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2793
2675
  change: (...args: any[]) => void;
2794
2676
  error: (...args: any[]) => void;
2677
+ "update:stepActive": (...args: any[]) => void;
2795
2678
  "field-change": (...args: any[]) => void;
2796
2679
  "field-input": (...args: any[]) => void;
2797
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
2798
- config: FormConfig;
2799
- initValues: Record<string, any>;
2800
- lastValues?: Record<string, any>;
2801
- isCompare?: boolean;
2802
- parentValues?: Record<string, any>;
2803
- labelWidth?: string;
2804
- disabled?: boolean;
2805
- height?: string;
2806
- stepActive?: string | number;
2807
- size?: "small" | "default" | "large";
2808
- inline?: boolean;
2809
- labelPosition?: string;
2810
- keyProp?: string;
2811
- popperClass?: string;
2812
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2813
- }> & Readonly<{
2814
- onChange?: ((...args: any[]) => any) | undefined;
2815
- onError?: ((...args: any[]) => any) | undefined;
2816
- "onField-change"?: ((...args: any[]) => any) | undefined;
2817
- "onField-input"?: ((...args: any[]) => any) | undefined;
2818
- }>, {
2680
+ }, vue.PublicProps, {
2819
2681
  disabled: boolean;
2820
2682
  labelWidth: string;
2821
2683
  inline: boolean;
@@ -2828,7 +2690,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2828
2690
  parentValues: Record<string, any>;
2829
2691
  stepActive: string | number;
2830
2692
  height: string;
2831
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
2693
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
2832
2694
  P: {};
2833
2695
  B: {};
2834
2696
  D: {};
@@ -2850,10 +2712,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2850
2712
  labelPosition?: string;
2851
2713
  keyProp?: string;
2852
2714
  popperClass?: string;
2715
+ preventSubmitDefault?: boolean;
2853
2716
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2854
2717
  }> & Readonly<{
2855
2718
  onChange?: ((...args: any[]) => any) | undefined;
2856
2719
  onError?: ((...args: any[]) => any) | undefined;
2720
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2857
2721
  "onField-change"?: ((...args: any[]) => any) | undefined;
2858
2722
  "onField-input"?: ((...args: any[]) => any) | undefined;
2859
2723
  }>, {
@@ -2861,8 +2725,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2861
2725
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
2862
2726
  formState: FormState;
2863
2727
  initialized: vue.Ref<boolean, boolean>;
2864
- changeHandler: () => void;
2865
- resetForm: () => any;
2728
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2729
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2730
+ resetForm: () => void;
2866
2731
  submitForm: (native?: boolean) => Promise<any>;
2867
2732
  }, {}, {}, {}, {
2868
2733
  disabled: boolean;
@@ -2878,7 +2743,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2878
2743
  stepActive: string | number;
2879
2744
  height: string;
2880
2745
  }> | undefined>;
2881
- submit: () => Promise<void>;
2746
+ submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
2882
2747
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2883
2748
  mounted: (...args: any[]) => void;
2884
2749
  "submit-error": (...args: any[]) => void;
@@ -2926,10 +2791,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2926
2791
  labelPosition?: string;
2927
2792
  keyProp?: string;
2928
2793
  popperClass?: string;
2794
+ preventSubmitDefault?: boolean;
2929
2795
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2930
2796
  }> & Readonly<{
2931
2797
  onChange?: ((...args: any[]) => any) | undefined;
2932
2798
  onError?: ((...args: any[]) => any) | undefined;
2799
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
2933
2800
  "onField-change"?: ((...args: any[]) => any) | undefined;
2934
2801
  "onField-input"?: ((...args: any[]) => any) | undefined;
2935
2802
  }>, {
@@ -2937,36 +2804,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2937
2804
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
2938
2805
  formState: FormState;
2939
2806
  initialized: vue.Ref<boolean, boolean>;
2940
- changeHandler: () => void;
2941
- resetForm: () => any;
2807
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2808
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2809
+ resetForm: () => void;
2942
2810
  submitForm: (native?: boolean) => Promise<any>;
2943
2811
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
2944
2812
  change: (...args: any[]) => void;
2945
2813
  error: (...args: any[]) => void;
2814
+ "update:stepActive": (...args: any[]) => void;
2946
2815
  "field-change": (...args: any[]) => void;
2947
2816
  "field-input": (...args: any[]) => void;
2948
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
2949
- config: FormConfig;
2950
- initValues: Record<string, any>;
2951
- lastValues?: Record<string, any>;
2952
- isCompare?: boolean;
2953
- parentValues?: Record<string, any>;
2954
- labelWidth?: string;
2955
- disabled?: boolean;
2956
- height?: string;
2957
- stepActive?: string | number;
2958
- size?: "small" | "default" | "large";
2959
- inline?: boolean;
2960
- labelPosition?: string;
2961
- keyProp?: string;
2962
- popperClass?: string;
2963
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
2964
- }> & Readonly<{
2965
- onChange?: ((...args: any[]) => any) | undefined;
2966
- onError?: ((...args: any[]) => any) | undefined;
2967
- "onField-change"?: ((...args: any[]) => any) | undefined;
2968
- "onField-input"?: ((...args: any[]) => any) | undefined;
2969
- }>, {
2817
+ }, vue.PublicProps, {
2970
2818
  disabled: boolean;
2971
2819
  labelWidth: string;
2972
2820
  inline: boolean;
@@ -2979,7 +2827,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
2979
2827
  parentValues: Record<string, any>;
2980
2828
  stepActive: string | number;
2981
2829
  height: string;
2982
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
2830
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
2983
2831
  P: {};
2984
2832
  B: {};
2985
2833
  D: {};
@@ -3001,10 +2849,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3001
2849
  labelPosition?: string;
3002
2850
  keyProp?: string;
3003
2851
  popperClass?: string;
2852
+ preventSubmitDefault?: boolean;
3004
2853
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3005
2854
  }> & Readonly<{
3006
2855
  onChange?: ((...args: any[]) => any) | undefined;
3007
2856
  onError?: ((...args: any[]) => any) | undefined;
2857
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3008
2858
  "onField-change"?: ((...args: any[]) => any) | undefined;
3009
2859
  "onField-input"?: ((...args: any[]) => any) | undefined;
3010
2860
  }>, {
@@ -3012,8 +2862,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3012
2862
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3013
2863
  formState: FormState;
3014
2864
  initialized: vue.Ref<boolean, boolean>;
3015
- changeHandler: () => void;
3016
- resetForm: () => any;
2865
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2866
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2867
+ resetForm: () => void;
3017
2868
  submitForm: (native?: boolean) => Promise<any>;
3018
2869
  }, {}, {}, {}, {
3019
2870
  disabled: boolean;
@@ -3043,10 +2894,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3043
2894
  labelPosition?: string;
3044
2895
  keyProp?: string;
3045
2896
  popperClass?: string;
2897
+ preventSubmitDefault?: boolean;
3046
2898
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3047
2899
  }> & Readonly<{
3048
2900
  onChange?: ((...args: any[]) => any) | undefined;
3049
2901
  onError?: ((...args: any[]) => any) | undefined;
2902
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3050
2903
  "onField-change"?: ((...args: any[]) => any) | undefined;
3051
2904
  "onField-input"?: ((...args: any[]) => any) | undefined;
3052
2905
  }>, {
@@ -3054,36 +2907,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3054
2907
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3055
2908
  formState: FormState;
3056
2909
  initialized: vue.Ref<boolean, boolean>;
3057
- changeHandler: () => void;
3058
- resetForm: () => any;
2910
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2911
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2912
+ resetForm: () => void;
3059
2913
  submitForm: (native?: boolean) => Promise<any>;
3060
2914
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3061
2915
  change: (...args: any[]) => void;
3062
2916
  error: (...args: any[]) => void;
2917
+ "update:stepActive": (...args: any[]) => void;
3063
2918
  "field-change": (...args: any[]) => void;
3064
2919
  "field-input": (...args: any[]) => void;
3065
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3066
- config: FormConfig;
3067
- initValues: Record<string, any>;
3068
- lastValues?: Record<string, any>;
3069
- isCompare?: boolean;
3070
- parentValues?: Record<string, any>;
3071
- labelWidth?: string;
3072
- disabled?: boolean;
3073
- height?: string;
3074
- stepActive?: string | number;
3075
- size?: "small" | "default" | "large";
3076
- inline?: boolean;
3077
- labelPosition?: string;
3078
- keyProp?: string;
3079
- popperClass?: string;
3080
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3081
- }> & Readonly<{
3082
- onChange?: ((...args: any[]) => any) | undefined;
3083
- onError?: ((...args: any[]) => any) | undefined;
3084
- "onField-change"?: ((...args: any[]) => any) | undefined;
3085
- "onField-input"?: ((...args: any[]) => any) | undefined;
3086
- }>, {
2920
+ }, vue.PublicProps, {
3087
2921
  disabled: boolean;
3088
2922
  labelWidth: string;
3089
2923
  inline: boolean;
@@ -3096,7 +2930,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3096
2930
  parentValues: Record<string, any>;
3097
2931
  stepActive: string | number;
3098
2932
  height: string;
3099
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
2933
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
3100
2934
  P: {};
3101
2935
  B: {};
3102
2936
  D: {};
@@ -3118,10 +2952,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3118
2952
  labelPosition?: string;
3119
2953
  keyProp?: string;
3120
2954
  popperClass?: string;
2955
+ preventSubmitDefault?: boolean;
3121
2956
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3122
2957
  }> & Readonly<{
3123
2958
  onChange?: ((...args: any[]) => any) | undefined;
3124
2959
  onError?: ((...args: any[]) => any) | undefined;
2960
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3125
2961
  "onField-change"?: ((...args: any[]) => any) | undefined;
3126
2962
  "onField-input"?: ((...args: any[]) => any) | undefined;
3127
2963
  }>, {
@@ -3129,8 +2965,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3129
2965
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3130
2966
  formState: FormState;
3131
2967
  initialized: vue.Ref<boolean, boolean>;
3132
- changeHandler: () => void;
3133
- resetForm: () => any;
2968
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
2969
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
2970
+ resetForm: () => void;
3134
2971
  submitForm: (native?: boolean) => Promise<any>;
3135
2972
  }, {}, {}, {}, {
3136
2973
  disabled: boolean;
@@ -3146,13 +2983,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3146
2983
  stepActive: string | number;
3147
2984
  height: string;
3148
2985
  }> | undefined>;
3149
- submit: () => Promise<void>;
2986
+ submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
3150
2987
  }> & {} & vue.ComponentCustomProperties & {} & {
3151
2988
  $slots: Readonly<PropsPanelSlots> & PropsPanelSlots;
3152
2989
  }) => any;
3153
- 'update:modelValue': (value: MApp | null) => any;
3154
- 'props-form-error': (e: any) => any;
3155
- 'props-submit-error': (e: any) => any;
2990
+ "props-form-error": (e: any) => any;
2991
+ "props-submit-error": (e: any) => any;
3156
2992
  }, string, vue.PublicProps, Readonly<EditorProps> & Readonly<{
3157
2993
  "onUpdate:modelValue"?: ((value: MApp | null) => any) | undefined;
3158
2994
  "onProps-panel-mounted"?: ((instance: {
@@ -3164,14 +3000,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3164
3000
  readonly onMounted?: ((...args: any[]) => any) | undefined;
3165
3001
  readonly "onSubmit-error"?: ((...args: any[]) => any) | undefined;
3166
3002
  readonly "onForm-error"?: ((...args: any[]) => any) | undefined;
3167
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3168
- disabledShowSrc?: boolean;
3169
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3170
- }> & Readonly<{
3171
- onMounted?: ((...args: any[]) => any) | undefined;
3172
- "onSubmit-error"?: ((...args: any[]) => any) | undefined;
3173
- "onForm-error"?: ((...args: any[]) => any) | undefined;
3174
- }>;
3003
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps;
3175
3004
  $attrs: {
3176
3005
  [x: string]: unknown;
3177
3006
  };
@@ -3185,7 +3014,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3185
3014
  $parent: vue.ComponentPublicInstance | null;
3186
3015
  $host: Element | null;
3187
3016
  $emit: ((event: "mounted", ...args: any[]) => void) & ((event: "submit-error", ...args: any[]) => void) & ((event: "form-error", ...args: any[]) => void);
3188
- $el: any;
3017
+ $el: HTMLDivElement;
3189
3018
  $options: vue.ComponentOptionsBase<Readonly<{
3190
3019
  disabledShowSrc?: boolean;
3191
3020
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
@@ -3209,10 +3038,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3209
3038
  labelPosition?: string;
3210
3039
  keyProp?: string;
3211
3040
  popperClass?: string;
3041
+ preventSubmitDefault?: boolean;
3212
3042
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3213
3043
  }> & Readonly<{
3214
3044
  onChange?: ((...args: any[]) => any) | undefined;
3215
3045
  onError?: ((...args: any[]) => any) | undefined;
3046
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3216
3047
  "onField-change"?: ((...args: any[]) => any) | undefined;
3217
3048
  "onField-input"?: ((...args: any[]) => any) | undefined;
3218
3049
  }>, {
@@ -3220,36 +3051,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3220
3051
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3221
3052
  formState: FormState;
3222
3053
  initialized: vue.Ref<boolean, boolean>;
3223
- changeHandler: () => void;
3224
- resetForm: () => any;
3054
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3055
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3056
+ resetForm: () => void;
3225
3057
  submitForm: (native?: boolean) => Promise<any>;
3226
3058
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3227
3059
  change: (...args: any[]) => void;
3228
3060
  error: (...args: any[]) => void;
3061
+ "update:stepActive": (...args: any[]) => void;
3229
3062
  "field-change": (...args: any[]) => void;
3230
3063
  "field-input": (...args: any[]) => void;
3231
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3232
- config: FormConfig;
3233
- initValues: Record<string, any>;
3234
- lastValues?: Record<string, any>;
3235
- isCompare?: boolean;
3236
- parentValues?: Record<string, any>;
3237
- labelWidth?: string;
3238
- disabled?: boolean;
3239
- height?: string;
3240
- stepActive?: string | number;
3241
- size?: "small" | "default" | "large";
3242
- inline?: boolean;
3243
- labelPosition?: string;
3244
- keyProp?: string;
3245
- popperClass?: string;
3246
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3247
- }> & Readonly<{
3248
- onChange?: ((...args: any[]) => any) | undefined;
3249
- onError?: ((...args: any[]) => any) | undefined;
3250
- "onField-change"?: ((...args: any[]) => any) | undefined;
3251
- "onField-input"?: ((...args: any[]) => any) | undefined;
3252
- }>, {
3064
+ }, vue.PublicProps, {
3253
3065
  disabled: boolean;
3254
3066
  labelWidth: string;
3255
3067
  inline: boolean;
@@ -3262,7 +3074,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3262
3074
  parentValues: Record<string, any>;
3263
3075
  stepActive: string | number;
3264
3076
  height: string;
3265
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
3077
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
3266
3078
  P: {};
3267
3079
  B: {};
3268
3080
  D: {};
@@ -3284,10 +3096,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3284
3096
  labelPosition?: string;
3285
3097
  keyProp?: string;
3286
3098
  popperClass?: string;
3099
+ preventSubmitDefault?: boolean;
3287
3100
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3288
3101
  }> & Readonly<{
3289
3102
  onChange?: ((...args: any[]) => any) | undefined;
3290
3103
  onError?: ((...args: any[]) => any) | undefined;
3104
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3291
3105
  "onField-change"?: ((...args: any[]) => any) | undefined;
3292
3106
  "onField-input"?: ((...args: any[]) => any) | undefined;
3293
3107
  }>, {
@@ -3295,8 +3109,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3295
3109
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3296
3110
  formState: FormState;
3297
3111
  initialized: vue.Ref<boolean, boolean>;
3298
- changeHandler: () => void;
3299
- resetForm: () => any;
3112
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3113
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3114
+ resetForm: () => void;
3300
3115
  submitForm: (native?: boolean) => Promise<any>;
3301
3116
  }, {}, {}, {}, {
3302
3117
  disabled: boolean;
@@ -3326,10 +3141,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3326
3141
  labelPosition?: string;
3327
3142
  keyProp?: string;
3328
3143
  popperClass?: string;
3144
+ preventSubmitDefault?: boolean;
3329
3145
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3330
3146
  }> & Readonly<{
3331
3147
  onChange?: ((...args: any[]) => any) | undefined;
3332
3148
  onError?: ((...args: any[]) => any) | undefined;
3149
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3333
3150
  "onField-change"?: ((...args: any[]) => any) | undefined;
3334
3151
  "onField-input"?: ((...args: any[]) => any) | undefined;
3335
3152
  }>, {
@@ -3337,36 +3154,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3337
3154
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3338
3155
  formState: FormState;
3339
3156
  initialized: vue.Ref<boolean, boolean>;
3340
- changeHandler: () => void;
3341
- resetForm: () => any;
3157
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3158
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3159
+ resetForm: () => void;
3342
3160
  submitForm: (native?: boolean) => Promise<any>;
3343
3161
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3344
3162
  change: (...args: any[]) => void;
3345
3163
  error: (...args: any[]) => void;
3164
+ "update:stepActive": (...args: any[]) => void;
3346
3165
  "field-change": (...args: any[]) => void;
3347
3166
  "field-input": (...args: any[]) => void;
3348
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3349
- config: FormConfig;
3350
- initValues: Record<string, any>;
3351
- lastValues?: Record<string, any>;
3352
- isCompare?: boolean;
3353
- parentValues?: Record<string, any>;
3354
- labelWidth?: string;
3355
- disabled?: boolean;
3356
- height?: string;
3357
- stepActive?: string | number;
3358
- size?: "small" | "default" | "large";
3359
- inline?: boolean;
3360
- labelPosition?: string;
3361
- keyProp?: string;
3362
- popperClass?: string;
3363
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3364
- }> & Readonly<{
3365
- onChange?: ((...args: any[]) => any) | undefined;
3366
- onError?: ((...args: any[]) => any) | undefined;
3367
- "onField-change"?: ((...args: any[]) => any) | undefined;
3368
- "onField-input"?: ((...args: any[]) => any) | undefined;
3369
- }>, {
3167
+ }, vue.PublicProps, {
3370
3168
  disabled: boolean;
3371
3169
  labelWidth: string;
3372
3170
  inline: boolean;
@@ -3379,7 +3177,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3379
3177
  parentValues: Record<string, any>;
3380
3178
  stepActive: string | number;
3381
3179
  height: string;
3382
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
3180
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
3383
3181
  P: {};
3384
3182
  B: {};
3385
3183
  D: {};
@@ -3401,10 +3199,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3401
3199
  labelPosition?: string;
3402
3200
  keyProp?: string;
3403
3201
  popperClass?: string;
3202
+ preventSubmitDefault?: boolean;
3404
3203
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3405
3204
  }> & Readonly<{
3406
3205
  onChange?: ((...args: any[]) => any) | undefined;
3407
3206
  onError?: ((...args: any[]) => any) | undefined;
3207
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3408
3208
  "onField-change"?: ((...args: any[]) => any) | undefined;
3409
3209
  "onField-input"?: ((...args: any[]) => any) | undefined;
3410
3210
  }>, {
@@ -3412,8 +3212,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3412
3212
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3413
3213
  formState: FormState;
3414
3214
  initialized: vue.Ref<boolean, boolean>;
3415
- changeHandler: () => void;
3416
- resetForm: () => any;
3215
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3216
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3217
+ resetForm: () => void;
3417
3218
  submitForm: (native?: boolean) => Promise<any>;
3418
3219
  }, {}, {}, {}, {
3419
3220
  disabled: boolean;
@@ -3429,7 +3230,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3429
3230
  stepActive: string | number;
3430
3231
  height: string;
3431
3232
  }> | undefined>;
3432
- submit: () => Promise<void>;
3233
+ submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
3433
3234
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3434
3235
  mounted: (...args: any[]) => void;
3435
3236
  "submit-error": (...args: any[]) => void;
@@ -3477,10 +3278,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3477
3278
  labelPosition?: string;
3478
3279
  keyProp?: string;
3479
3280
  popperClass?: string;
3281
+ preventSubmitDefault?: boolean;
3480
3282
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3481
3283
  }> & Readonly<{
3482
3284
  onChange?: ((...args: any[]) => any) | undefined;
3483
3285
  onError?: ((...args: any[]) => any) | undefined;
3286
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3484
3287
  "onField-change"?: ((...args: any[]) => any) | undefined;
3485
3288
  "onField-input"?: ((...args: any[]) => any) | undefined;
3486
3289
  }>, {
@@ -3488,36 +3291,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3488
3291
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3489
3292
  formState: FormState;
3490
3293
  initialized: vue.Ref<boolean, boolean>;
3491
- changeHandler: () => void;
3492
- resetForm: () => any;
3294
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3295
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3296
+ resetForm: () => void;
3493
3297
  submitForm: (native?: boolean) => Promise<any>;
3494
3298
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3495
3299
  change: (...args: any[]) => void;
3496
3300
  error: (...args: any[]) => void;
3301
+ "update:stepActive": (...args: any[]) => void;
3497
3302
  "field-change": (...args: any[]) => void;
3498
3303
  "field-input": (...args: any[]) => void;
3499
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3500
- config: FormConfig;
3501
- initValues: Record<string, any>;
3502
- lastValues?: Record<string, any>;
3503
- isCompare?: boolean;
3504
- parentValues?: Record<string, any>;
3505
- labelWidth?: string;
3506
- disabled?: boolean;
3507
- height?: string;
3508
- stepActive?: string | number;
3509
- size?: "small" | "default" | "large";
3510
- inline?: boolean;
3511
- labelPosition?: string;
3512
- keyProp?: string;
3513
- popperClass?: string;
3514
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3515
- }> & Readonly<{
3516
- onChange?: ((...args: any[]) => any) | undefined;
3517
- onError?: ((...args: any[]) => any) | undefined;
3518
- "onField-change"?: ((...args: any[]) => any) | undefined;
3519
- "onField-input"?: ((...args: any[]) => any) | undefined;
3520
- }>, {
3304
+ }, vue.PublicProps, {
3521
3305
  disabled: boolean;
3522
3306
  labelWidth: string;
3523
3307
  inline: boolean;
@@ -3530,7 +3314,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3530
3314
  parentValues: Record<string, any>;
3531
3315
  stepActive: string | number;
3532
3316
  height: string;
3533
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
3317
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
3534
3318
  P: {};
3535
3319
  B: {};
3536
3320
  D: {};
@@ -3552,10 +3336,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3552
3336
  labelPosition?: string;
3553
3337
  keyProp?: string;
3554
3338
  popperClass?: string;
3339
+ preventSubmitDefault?: boolean;
3555
3340
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3556
3341
  }> & Readonly<{
3557
3342
  onChange?: ((...args: any[]) => any) | undefined;
3558
3343
  onError?: ((...args: any[]) => any) | undefined;
3344
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3559
3345
  "onField-change"?: ((...args: any[]) => any) | undefined;
3560
3346
  "onField-input"?: ((...args: any[]) => any) | undefined;
3561
3347
  }>, {
@@ -3563,8 +3349,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3563
3349
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3564
3350
  formState: FormState;
3565
3351
  initialized: vue.Ref<boolean, boolean>;
3566
- changeHandler: () => void;
3567
- resetForm: () => any;
3352
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3353
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3354
+ resetForm: () => void;
3568
3355
  submitForm: (native?: boolean) => Promise<any>;
3569
3356
  }, {}, {}, {}, {
3570
3357
  disabled: boolean;
@@ -3594,10 +3381,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3594
3381
  labelPosition?: string;
3595
3382
  keyProp?: string;
3596
3383
  popperClass?: string;
3384
+ preventSubmitDefault?: boolean;
3597
3385
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3598
3386
  }> & Readonly<{
3599
3387
  onChange?: ((...args: any[]) => any) | undefined;
3600
3388
  onError?: ((...args: any[]) => any) | undefined;
3389
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3601
3390
  "onField-change"?: ((...args: any[]) => any) | undefined;
3602
3391
  "onField-input"?: ((...args: any[]) => any) | undefined;
3603
3392
  }>, {
@@ -3605,36 +3394,17 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3605
3394
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3606
3395
  formState: FormState;
3607
3396
  initialized: vue.Ref<boolean, boolean>;
3608
- changeHandler: () => void;
3609
- resetForm: () => any;
3397
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3398
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3399
+ resetForm: () => void;
3610
3400
  submitForm: (native?: boolean) => Promise<any>;
3611
3401
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3612
3402
  change: (...args: any[]) => void;
3613
3403
  error: (...args: any[]) => void;
3404
+ "update:stepActive": (...args: any[]) => void;
3614
3405
  "field-change": (...args: any[]) => void;
3615
3406
  "field-input": (...args: any[]) => void;
3616
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3617
- config: FormConfig;
3618
- initValues: Record<string, any>;
3619
- lastValues?: Record<string, any>;
3620
- isCompare?: boolean;
3621
- parentValues?: Record<string, any>;
3622
- labelWidth?: string;
3623
- disabled?: boolean;
3624
- height?: string;
3625
- stepActive?: string | number;
3626
- size?: "small" | "default" | "large";
3627
- inline?: boolean;
3628
- labelPosition?: string;
3629
- keyProp?: string;
3630
- popperClass?: string;
3631
- extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3632
- }> & Readonly<{
3633
- onChange?: ((...args: any[]) => any) | undefined;
3634
- onError?: ((...args: any[]) => any) | undefined;
3635
- "onField-change"?: ((...args: any[]) => any) | undefined;
3636
- "onField-input"?: ((...args: any[]) => any) | undefined;
3637
- }>, {
3407
+ }, vue.PublicProps, {
3638
3408
  disabled: boolean;
3639
3409
  labelWidth: string;
3640
3410
  inline: boolean;
@@ -3647,7 +3417,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3647
3417
  parentValues: Record<string, any>;
3648
3418
  stepActive: string | number;
3649
3419
  height: string;
3650
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
3420
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
3651
3421
  P: {};
3652
3422
  B: {};
3653
3423
  D: {};
@@ -3669,10 +3439,12 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3669
3439
  labelPosition?: string;
3670
3440
  keyProp?: string;
3671
3441
  popperClass?: string;
3442
+ preventSubmitDefault?: boolean;
3672
3443
  extendState?: (state: FormState) => Record<string, any> | Promise<Record<string, any>>;
3673
3444
  }> & Readonly<{
3674
3445
  onChange?: ((...args: any[]) => any) | undefined;
3675
3446
  onError?: ((...args: any[]) => any) | undefined;
3447
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
3676
3448
  "onField-change"?: ((...args: any[]) => any) | undefined;
3677
3449
  "onField-input"?: ((...args: any[]) => any) | undefined;
3678
3450
  }>, {
@@ -3680,8 +3452,9 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3680
3452
  lastValuesProcessed: vue.Ref<FormValue, FormValue>;
3681
3453
  formState: FormState;
3682
3454
  initialized: vue.Ref<boolean, boolean>;
3683
- changeHandler: () => void;
3684
- resetForm: () => any;
3455
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
3456
+ changeHandler: (v: FormValue, eventData: ContainerChangeEventData) => void;
3457
+ resetForm: () => void;
3685
3458
  submitForm: (native?: boolean) => Promise<any>;
3686
3459
  }, {}, {}, {}, {
3687
3460
  disabled: boolean;
@@ -3697,7 +3470,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3697
3470
  stepActive: string | number;
3698
3471
  height: string;
3699
3472
  }> | undefined>;
3700
- submit: () => Promise<void>;
3473
+ submit: (v: FormValue, eventData: ContainerChangeEventData) => Promise<void>;
3701
3474
  }> & {} & vue.ComponentCustomProperties & {} & {
3702
3475
  $slots: Readonly<PropsPanelSlots> & PropsPanelSlots;
3703
3476
  }) => any) | undefined;
@@ -3730,7 +3503,7 @@ declare const __VLS_component$b: vue.DefineComponent<EditorProps, {
3730
3503
  containerHighlightDuration: number;
3731
3504
  containerHighlightType: StageCore.ContainerHighlightType;
3732
3505
  canSelect: (el: HTMLElement) => boolean | Promise<boolean>;
3733
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3506
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
3734
3507
  declare const _default$v: __VLS_WithTemplateSlots$b<typeof __VLS_component$b, __VLS_TemplateResult$b["slots"]>;
3735
3508
 
3736
3509
  type __VLS_WithTemplateSlots$b<T, S> = T & {
@@ -3739,10 +3512,10 @@ type __VLS_WithTemplateSlots$b<T, S> = T & {
3739
3512
  };
3740
3513
  };
3741
3514
 
3742
- declare const _default$u: vue.DefineComponent<{
3515
+ type __VLS_Props$r = {
3743
3516
  initValues?: any;
3744
3517
  modifiedValues?: any;
3745
- type?: "diff";
3518
+ type?: 'diff';
3746
3519
  language?: string;
3747
3520
  options?: {
3748
3521
  [key: string]: any;
@@ -3750,7 +3523,8 @@ declare const _default$u: vue.DefineComponent<{
3750
3523
  height?: string;
3751
3524
  autoSave?: boolean;
3752
3525
  parse?: boolean;
3753
- }, {
3526
+ };
3527
+ declare const _default$u: vue.DefineComponent<__VLS_Props$r, {
3754
3528
  values: vue.Ref<string, string>;
3755
3529
  getEditor(): monaco.editor.IStandaloneCodeEditor | monaco.editor.IStandaloneDiffEditor | null;
3756
3530
  getVsEditor(): monaco.editor.IStandaloneCodeEditor | null;
@@ -3761,18 +3535,7 @@ declare const _default$u: vue.DefineComponent<{
3761
3535
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3762
3536
  save: (...args: any[]) => void;
3763
3537
  initd: (...args: any[]) => void;
3764
- }, string, vue.PublicProps, Readonly<{
3765
- initValues?: any;
3766
- modifiedValues?: any;
3767
- type?: "diff";
3768
- language?: string;
3769
- options?: {
3770
- [key: string]: any;
3771
- };
3772
- height?: string;
3773
- autoSave?: boolean;
3774
- parse?: boolean;
3775
- }> & Readonly<{
3538
+ }, string, vue.PublicProps, Readonly<__VLS_Props$r> & Readonly<{
3776
3539
  onSave?: ((...args: any[]) => any) | undefined;
3777
3540
  onInitd?: ((...args: any[]) => any) | undefined;
3778
3541
  }>, {
@@ -3783,15 +3546,16 @@ declare const _default$u: vue.DefineComponent<{
3783
3546
  parse: boolean;
3784
3547
  language: string;
3785
3548
  autoSave: boolean;
3786
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3549
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
3787
3550
 
3788
3551
  declare function __VLS_template$a(): {
3552
+ attrs: Partial<{}>;
3789
3553
  slots: Readonly<ComponentListPanelSlots> & ComponentListPanelSlots;
3790
3554
  refs: {};
3791
- attrs: Partial<{}>;
3555
+ rootEl: any;
3792
3556
  };
3793
3557
  type __VLS_TemplateResult$a = ReturnType<typeof __VLS_template$a>;
3794
- declare const __VLS_component$a: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}>;
3558
+ declare const __VLS_component$a: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
3795
3559
  declare const _default$t: __VLS_WithTemplateSlots$a<typeof __VLS_component$a, __VLS_TemplateResult$a["slots"]>;
3796
3560
 
3797
3561
  type __VLS_WithTemplateSlots$a<T, S> = T & {
@@ -3800,7 +3564,14 @@ type __VLS_WithTemplateSlots$a<T, S> = T & {
3800
3564
  };
3801
3565
  };
3802
3566
 
3567
+ type __VLS_Props$q = {
3568
+ layerContentMenu: (MenuButton | MenuComponent)[];
3569
+ indent?: number;
3570
+ nextLevelIndentIncrement?: number;
3571
+ customContentMenu?: (menus: (MenuButton | MenuComponent)[], type: string) => (MenuButton | MenuComponent)[];
3572
+ };
3803
3573
  declare function __VLS_template$9(): {
3574
+ attrs: Partial<{}>;
3804
3575
  slots: Readonly<LayerPanelSlots> & LayerPanelSlots;
3805
3576
  refs: {
3806
3577
  tree: ({
@@ -3808,32 +3579,18 @@ declare function __VLS_template$9(): {
3808
3579
  $data: {};
3809
3580
  $props: {
3810
3581
  readonly data: TreeNodeData[];
3811
- readonly nodeStatusMap: Map<_tmagic_schema.Id, LayerNodeStatus>;
3812
- readonly indent?: number | undefined;
3813
- readonly nextLevelIndentIncrement?: number | undefined;
3814
- readonly emptyText?: string | undefined;
3815
- readonly "onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3816
- readonly "onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3817
- readonly "onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3818
- readonly "onNode-dragleave"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3819
- readonly "onNode-dragend"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3820
- readonly "onNode-mouseenter"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3821
- readonly "onNode-dragover"?: ((event: DragEvent) => any) | undefined;
3822
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3823
- data: TreeNodeData[];
3824
- nodeStatusMap: Map<_tmagic_schema.Id, LayerNodeStatus>;
3825
- indent?: number;
3826
- nextLevelIndentIncrement?: number;
3827
- emptyText?: string;
3828
- }> & Readonly<{
3829
- "onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3830
- "onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3831
- "onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3832
- "onNode-dragleave"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3833
- "onNode-dragend"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3834
- "onNode-mouseenter"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3835
- "onNode-dragover"?: ((event: DragEvent) => any) | undefined;
3836
- }>;
3582
+ readonly nodeStatusMap: Map<_tmagic_schema.Id, LayerNodeStatus>;
3583
+ readonly indent?: number | undefined;
3584
+ readonly nextLevelIndentIncrement?: number | undefined;
3585
+ readonly emptyText?: string | undefined;
3586
+ readonly "onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3587
+ readonly "onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3588
+ readonly "onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3589
+ readonly "onNode-dragleave"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3590
+ readonly "onNode-dragend"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
3591
+ readonly "onNode-mouseenter"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3592
+ readonly "onNode-dragover"?: ((event: DragEvent) => any) | undefined;
3593
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps;
3837
3594
  $attrs: {
3838
3595
  [x: string]: unknown;
3839
3596
  };
@@ -3847,7 +3604,7 @@ declare function __VLS_template$9(): {
3847
3604
  $parent: vue.ComponentPublicInstance | null;
3848
3605
  $host: Element | null;
3849
3606
  $emit: ((event: "node-click", event: MouseEvent, data: TreeNodeData) => void) & ((event: "node-contextmenu", event: MouseEvent, data: TreeNodeData) => void) & ((event: "node-dragstart", event: DragEvent, data: TreeNodeData) => void) & ((event: "node-dragleave", event: DragEvent, data: TreeNodeData) => void) & ((event: "node-dragend", event: DragEvent, data: TreeNodeData) => void) & ((event: "node-mouseenter", event: MouseEvent, data: TreeNodeData) => void) & ((event: "node-dragover", event: DragEvent) => void);
3850
- $el: any;
3607
+ $el: HTMLDivElement;
3851
3608
  $options: vue.ComponentOptionsBase<Readonly<{
3852
3609
  data: TreeNodeData[];
3853
3610
  nodeStatusMap: Map<_tmagic_schema.Id, LayerNodeStatus>;
@@ -3863,13 +3620,13 @@ declare function __VLS_template$9(): {
3863
3620
  "onNode-mouseenter"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
3864
3621
  "onNode-dragover"?: ((event: DragEvent) => any) | undefined;
3865
3622
  }>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3866
- 'node-dragover': (event: DragEvent) => any;
3867
- 'node-dragstart': (event: DragEvent, data: TreeNodeData) => any;
3868
- 'node-dragleave': (event: DragEvent, data: TreeNodeData) => any;
3869
- 'node-dragend': (event: DragEvent, data: TreeNodeData) => any;
3870
- 'node-contextmenu': (event: MouseEvent, data: TreeNodeData) => any;
3871
- 'node-mouseenter': (event: MouseEvent, data: TreeNodeData) => any;
3872
- 'node-click': (event: MouseEvent, data: TreeNodeData) => any;
3623
+ "node-click": (event: MouseEvent, data: TreeNodeData) => any;
3624
+ "node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
3625
+ "node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
3626
+ "node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
3627
+ "node-dragend": (event: DragEvent, data: TreeNodeData) => any;
3628
+ "node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
3629
+ "node-dragover": (event: DragEvent) => any;
3873
3630
  }, string, {
3874
3631
  emptyText: string;
3875
3632
  indent: number;
@@ -3941,16 +3698,11 @@ declare function __VLS_template$9(): {
3941
3698
  }>, {
3942
3699
  show: (e: MouseEvent) => void;
3943
3700
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3944
- 'collapse-all': () => any;
3945
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
3946
- layerContentMenu: (MenuButton | MenuComponent)[];
3947
- customContentMenu?: (menus: (MenuButton | MenuComponent)[], type: string) => (MenuButton | MenuComponent)[];
3948
- }> & Readonly<{
3949
- "onCollapse-all"?: (() => any) | undefined;
3950
- }>, {
3701
+ "collapse-all": () => any;
3702
+ }, vue.PublicProps, {
3951
3703
  layerContentMenu: (MenuButton | MenuComponent)[];
3952
3704
  customContentMenu: (menus: (MenuButton | MenuComponent)[], type: string) => (MenuButton | MenuComponent)[];
3953
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
3705
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
3954
3706
  P: {};
3955
3707
  B: {};
3956
3708
  D: {};
@@ -3969,20 +3721,10 @@ declare function __VLS_template$9(): {
3969
3721
  customContentMenu: (menus: (MenuButton | MenuComponent)[], type: string) => (MenuButton | MenuComponent)[];
3970
3722
  }> | null;
3971
3723
  };
3972
- attrs: Partial<{}>;
3724
+ rootEl: any;
3973
3725
  };
3974
3726
  type __VLS_TemplateResult$9 = ReturnType<typeof __VLS_template$9>;
3975
- declare const __VLS_component$9: vue.DefineComponent<{
3976
- layerContentMenu: (MenuButton | MenuComponent)[];
3977
- indent?: number;
3978
- nextLevelIndentIncrement?: number;
3979
- customContentMenu?: (menus: (MenuButton | MenuComponent)[], type: string) => (MenuButton | MenuComponent)[];
3980
- }, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{
3981
- layerContentMenu: (MenuButton | MenuComponent)[];
3982
- indent?: number;
3983
- nextLevelIndentIncrement?: number;
3984
- customContentMenu?: (menus: (MenuButton | MenuComponent)[], type: string) => (MenuButton | MenuComponent)[];
3985
- }> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3727
+ declare const __VLS_component$9: vue.DefineComponent<__VLS_Props$q, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props$q> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
3986
3728
  declare const _default$s: __VLS_WithTemplateSlots$9<typeof __VLS_component$9, __VLS_TemplateResult$9["slots"]>;
3987
3729
 
3988
3730
  type __VLS_WithTemplateSlots$9<T, S> = T & {
@@ -3991,146 +3733,154 @@ type __VLS_WithTemplateSlots$9<T, S> = T & {
3991
3733
  };
3992
3734
  };
3993
3735
 
3994
- declare const _default$r: vue.DefineComponent<FieldProps<{
3995
- className?: string;
3996
- } & FormItem$1>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3997
- change: (...args: any[]) => void;
3998
- }, string, vue.PublicProps, Readonly<FieldProps<{
3736
+ type __VLS_Props$p = FieldProps<{
3999
3737
  className?: string;
4000
- } & FormItem$1>> & Readonly<{
4001
- onChange?: ((...args: any[]) => any) | undefined;
4002
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3738
+ } & FormItem$1>;
3739
+ declare const _default$r: vue.DefineComponent<__VLS_Props$p, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3740
+ change: (v: any, eventData: ContainerChangeEventData$1) => any;
3741
+ }, string, vue.PublicProps, Readonly<__VLS_Props$p> & Readonly<{
3742
+ onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
3743
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4003
3744
 
4004
- declare const _default$q: vue.DefineComponent<FieldProps<CodeSelectColConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4005
- change: (...args: any[]) => void;
4006
- }, string, vue.PublicProps, Readonly<FieldProps<CodeSelectColConfig>> & Readonly<{
4007
- onChange?: ((...args: any[]) => any) | undefined;
3745
+ type __VLS_Props$o = FieldProps<CodeSelectColConfig>;
3746
+ declare const _default$q: vue.DefineComponent<__VLS_Props$o, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3747
+ change: (v: any, eventData: ContainerChangeEventData$1) => any;
3748
+ }, string, vue.PublicProps, Readonly<__VLS_Props$o> & Readonly<{
3749
+ onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
4008
3750
  }>, {
4009
3751
  disabled: boolean;
4010
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3752
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4011
3753
 
4012
- declare let __VLS_typeProps$4: FieldProps<{
3754
+ type __VLS_Props$n = FieldProps<{
4013
3755
  type: 'data-source-fields';
4014
3756
  }>;
4015
3757
  type __VLS_PublicProps$4 = {
4016
3758
  'width'?: number;
4017
3759
  'visible'?: boolean;
4018
3760
  'visible1'?: boolean;
4019
- } & typeof __VLS_typeProps$4;
3761
+ } & __VLS_Props$n;
4020
3762
  declare const _default$p: vue.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4021
- change: (...args: any[]) => void;
3763
+ change: (v: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
3764
+ "update:width": (value: number) => any;
3765
+ "update:visible": (value: boolean) => any;
3766
+ "update:visible1": (value: boolean) => any;
4022
3767
  }, string, vue.PublicProps, Readonly<__VLS_PublicProps$4> & Readonly<{
4023
- onChange?: ((...args: any[]) => any) | undefined;
3768
+ onChange?: ((v: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
3769
+ "onUpdate:width"?: ((value: number) => any) | undefined;
3770
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
3771
+ "onUpdate:visible1"?: ((value: boolean) => any) | undefined;
4024
3772
  }>, {
4025
3773
  disabled: boolean;
4026
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3774
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4027
3775
 
4028
- declare let __VLS_typeProps$3: FieldProps<{
3776
+ type __VLS_Props$m = FieldProps<{
4029
3777
  type: 'data-source-mocks';
4030
3778
  }>;
4031
3779
  type __VLS_PublicProps$3 = {
4032
3780
  'width'?: number;
4033
3781
  'visible'?: boolean;
4034
- } & typeof __VLS_typeProps$3;
3782
+ } & __VLS_Props$m;
4035
3783
  declare const _default$o: vue.DefineComponent<__VLS_PublicProps$3, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4036
3784
  change: (...args: any[]) => void;
3785
+ "update:width": (value: number) => void;
3786
+ "update:visible": (value: boolean) => void;
4037
3787
  }, string, vue.PublicProps, Readonly<__VLS_PublicProps$3> & Readonly<{
4038
3788
  onChange?: ((...args: any[]) => any) | undefined;
3789
+ "onUpdate:width"?: ((value: number) => any) | undefined;
3790
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
4039
3791
  }>, {
4040
3792
  disabled: boolean;
4041
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3793
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4042
3794
 
4043
- declare const _default$n: vue.DefineComponent<FieldProps<{
4044
- type: "data-source-methods";
4045
- }>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3795
+ type __VLS_Props$l = FieldProps<{
3796
+ type: 'data-source-methods';
3797
+ }>;
3798
+ declare const _default$n: vue.DefineComponent<__VLS_Props$l, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4046
3799
  change: (...args: any[]) => void;
4047
- }, string, vue.PublicProps, Readonly<FieldProps<{
4048
- type: "data-source-methods";
4049
- }>> & Readonly<{
3800
+ }, string, vue.PublicProps, Readonly<__VLS_Props$l> & Readonly<{
4050
3801
  onChange?: ((...args: any[]) => any) | undefined;
4051
3802
  }>, {
4052
3803
  disabled: boolean;
4053
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3804
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4054
3805
 
4055
- declare const _default$m: vue.DefineComponent<FieldProps<{
4056
- type: "data-source-input";
4057
- } & FormItem$1>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3806
+ type __VLS_Props$k = FieldProps<{
3807
+ type: 'data-source-input';
3808
+ } & FormItem$1>;
3809
+ declare const _default$m: vue.DefineComponent<__VLS_Props$k, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4058
3810
  change: (value: string) => any;
4059
- }, string, vue.PublicProps, Readonly<FieldProps<{
4060
- type: "data-source-input";
4061
- } & FormItem$1>> & Readonly<{
3811
+ }, string, vue.PublicProps, Readonly<__VLS_Props$k> & Readonly<{
4062
3812
  onChange?: ((value: string) => any) | undefined;
4063
3813
  }>, {
4064
3814
  disabled: boolean;
4065
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3815
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4066
3816
 
4067
- declare const _default$l: vue.DefineComponent<FieldProps<DataSourceSelect>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3817
+ type __VLS_Props$j = FieldProps<DataSourceSelect>;
3818
+ declare const _default$l: vue.DefineComponent<__VLS_Props$j, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4068
3819
  change: (...args: any[]) => void;
4069
- }, string, vue.PublicProps, Readonly<FieldProps<DataSourceSelect>> & Readonly<{
3820
+ }, string, vue.PublicProps, Readonly<__VLS_Props$j> & Readonly<{
4070
3821
  onChange?: ((...args: any[]) => any) | undefined;
4071
3822
  }>, {
4072
3823
  disabled: boolean;
4073
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3824
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4074
3825
 
4075
- declare const _default$k: vue.DefineComponent<FieldProps<DataSourceMethodSelectConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3826
+ type __VLS_Props$i = FieldProps<DataSourceMethodSelectConfig>;
3827
+ declare const _default$k: vue.DefineComponent<__VLS_Props$i, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4076
3828
  change: (...args: any[]) => void;
4077
- }, string, vue.PublicProps, Readonly<FieldProps<DataSourceMethodSelectConfig>> & Readonly<{
3829
+ }, string, vue.PublicProps, Readonly<__VLS_Props$i> & Readonly<{
4078
3830
  onChange?: ((...args: any[]) => any) | undefined;
4079
3831
  }>, {
4080
3832
  disabled: boolean;
4081
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3833
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4082
3834
 
4083
- declare const _default$j: vue.DefineComponent<FieldProps<DataSourceFieldSelectConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3835
+ type __VLS_Props$h = FieldProps<DataSourceFieldSelectConfig>;
3836
+ declare const _default$j: vue.DefineComponent<__VLS_Props$h, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4084
3837
  change: (...args: any[]) => void;
4085
- }, string, vue.PublicProps, Readonly<FieldProps<DataSourceFieldSelectConfig>> & Readonly<{
3838
+ }, string, vue.PublicProps, Readonly<__VLS_Props$h> & Readonly<{
4086
3839
  onChange?: ((...args: any[]) => any) | undefined;
4087
3840
  }>, {
4088
3841
  disabled: boolean;
4089
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3842
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4090
3843
 
4091
- declare const _default$i: vue.DefineComponent<FieldProps<EventSelectConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4092
- change: (...args: any[]) => void;
4093
- }, string, vue.PublicProps, Readonly<FieldProps<EventSelectConfig>> & Readonly<{
4094
- onChange?: ((...args: any[]) => any) | undefined;
4095
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3844
+ type __VLS_Props$g = FieldProps<EventSelectConfig>;
3845
+ declare const _default$i: vue.DefineComponent<__VLS_Props$g, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3846
+ change: (v: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
3847
+ }, string, vue.PublicProps, Readonly<__VLS_Props$g> & Readonly<{
3848
+ onChange?: ((v: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
3849
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4096
3850
 
4097
- declare const _default$h: vue.DefineComponent<FieldProps<{
4098
- type: "key-value";
3851
+ type __VLS_Props$f = FieldProps<{
3852
+ type: 'key-value';
4099
3853
  advanced?: boolean;
4100
- } & FormItem$1>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
3854
+ } & FormItem$1>;
3855
+ declare const _default$h: vue.DefineComponent<__VLS_Props$f, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4101
3856
  change: (value: Record<string, any>) => any;
4102
- }, string, vue.PublicProps, Readonly<FieldProps<{
4103
- type: "key-value";
4104
- advanced?: boolean;
4105
- } & FormItem$1>> & Readonly<{
3857
+ }, string, vue.PublicProps, Readonly<__VLS_Props$f> & Readonly<{
4106
3858
  onChange?: ((value: Record<string, any>) => any) | undefined;
4107
3859
  }>, {
4108
3860
  disabled: boolean;
4109
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3861
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4110
3862
 
3863
+ type __VLS_Props$e = {
3864
+ indent?: number;
3865
+ nextLevelIndentIncrement?: number;
3866
+ customError?: (id: Id, errorType: CodeDeleteErrorType) => any;
3867
+ };
4111
3868
  declare function __VLS_template$8(): {
3869
+ attrs: Partial<{}>;
4112
3870
  slots: Readonly<CodeBlockListSlots> & CodeBlockListSlots;
4113
3871
  refs: {};
4114
- attrs: Partial<{}>;
3872
+ rootEl: HTMLDivElement;
4115
3873
  };
4116
3874
  type __VLS_TemplateResult$8 = ReturnType<typeof __VLS_template$8>;
4117
- declare const __VLS_component$8: vue.DefineComponent<{
4118
- indent?: number;
4119
- nextLevelIndentIncrement?: number;
4120
- customError?: (id: Id, errorType: CodeDeleteErrorType) => any;
4121
- }, {
3875
+ declare const __VLS_component$8: vue.DefineComponent<__VLS_Props$e, {
4122
3876
  filter: (text: string | string[]) => void;
4123
3877
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4124
- edit: (id: string) => any;
4125
3878
  remove: (id: string) => any;
4126
- }, string, vue.PublicProps, Readonly<{
4127
- indent?: number;
4128
- nextLevelIndentIncrement?: number;
4129
- customError?: (id: Id, errorType: CodeDeleteErrorType) => any;
4130
- }> & Readonly<{
3879
+ edit: (id: string) => any;
3880
+ }, string, vue.PublicProps, Readonly<__VLS_Props$e> & Readonly<{
4131
3881
  onRemove?: ((id: string) => any) | undefined;
4132
3882
  onEdit?: ((id: string) => any) | undefined;
4133
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
3883
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4134
3884
  declare const _default$g: __VLS_WithTemplateSlots$8<typeof __VLS_component$8, __VLS_TemplateResult$8["slots"]>;
4135
3885
 
4136
3886
  type __VLS_WithTemplateSlots$8<T, S> = T & {
@@ -4139,7 +3889,13 @@ type __VLS_WithTemplateSlots$8<T, S> = T & {
4139
3889
  };
4140
3890
  };
4141
3891
 
3892
+ type __VLS_Props$d = {
3893
+ indent?: number;
3894
+ nextLevelIndentIncrement?: number;
3895
+ customError?: (id: Id, errorType: CodeDeleteErrorType) => any;
3896
+ };
4142
3897
  declare function __VLS_template$7(): {
3898
+ attrs: Partial<{}>;
4143
3899
  slots: Readonly<CodeBlockListPanelSlots> & CodeBlockListPanelSlots;
4144
3900
  refs: {
4145
3901
  codeBlockList: ({
@@ -4151,14 +3907,7 @@ declare function __VLS_template$7(): {
4151
3907
  readonly customError?: ((id: Id, errorType: CodeDeleteErrorType) => any) | undefined;
4152
3908
  readonly onRemove?: ((id: string) => any) | undefined;
4153
3909
  readonly onEdit?: ((id: string) => any) | undefined;
4154
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
4155
- indent?: number;
4156
- nextLevelIndentIncrement?: number;
4157
- customError?: (id: Id, errorType: CodeDeleteErrorType) => any;
4158
- }> & Readonly<{
4159
- onRemove?: ((id: string) => any) | undefined;
4160
- onEdit?: ((id: string) => any) | undefined;
4161
- }>;
3910
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps;
4162
3911
  $attrs: {
4163
3912
  [x: string]: unknown;
4164
3913
  };
@@ -4172,7 +3921,7 @@ declare function __VLS_template$7(): {
4172
3921
  $parent: vue.ComponentPublicInstance | null;
4173
3922
  $host: Element | null;
4174
3923
  $emit: ((event: "remove", id: string) => void) & ((event: "edit", id: string) => void);
4175
- $el: any;
3924
+ $el: HTMLDivElement;
4176
3925
  $options: vue.ComponentOptionsBase<Readonly<{
4177
3926
  indent?: number;
4178
3927
  nextLevelIndentIncrement?: number;
@@ -4183,8 +3932,8 @@ declare function __VLS_template$7(): {
4183
3932
  }>, {
4184
3933
  filter: (text: string | string[]) => void;
4185
3934
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4186
- edit: (id: string) => any;
4187
3935
  remove: (id: string) => any;
3936
+ edit: (id: string) => any;
4188
3937
  }, string, {}, {}, string, {}, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & {
4189
3938
  beforeCreate?: (() => void) | (() => void)[];
4190
3939
  created?: (() => void) | (() => void)[];
@@ -4226,29 +3975,17 @@ declare function __VLS_template$7(): {
4226
3975
  isDataSource?: boolean;
4227
3976
  dataSourceType?: string;
4228
3977
  }> & Readonly<{
4229
- onSubmit?: ((values: _tmagic_schema.CodeBlockContent) => any) | undefined;
4230
- "onUpdate:width"?: ((width: number) => any) | undefined;
4231
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
3978
+ onSubmit?: ((values: _tmagic_schema.CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
3979
+ "onUpdate:width"?: ((value: number) => any) | undefined;
3980
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
4232
3981
  }>, {
4233
3982
  show(): Promise<void>;
4234
3983
  hide(): Promise<void>;
4235
3984
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4236
- 'update:width': (width: number) => any;
4237
- 'update:visible': (visible: boolean) => any;
4238
- submit: (values: _tmagic_schema.CodeBlockContent) => any;
4239
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
4240
- width?: number;
4241
- visible?: boolean;
4242
- } & {
4243
- content: _tmagic_schema.CodeBlockContent;
4244
- disabled?: boolean;
4245
- isDataSource?: boolean;
4246
- dataSourceType?: string;
4247
- }> & Readonly<{
4248
- onSubmit?: ((values: _tmagic_schema.CodeBlockContent) => any) | undefined;
4249
- "onUpdate:width"?: ((width: number) => any) | undefined;
4250
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
4251
- }>, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
3985
+ submit: (values: _tmagic_schema.CodeBlockContent, eventData: ContainerChangeEventData) => any;
3986
+ "update:width": (value: number) => any;
3987
+ "update:visible": (value: boolean) => any;
3988
+ }, vue.PublicProps, {}, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
4252
3989
  P: {};
4253
3990
  B: {};
4254
3991
  D: {};
@@ -4264,26 +4001,18 @@ declare function __VLS_template$7(): {
4264
4001
  isDataSource?: boolean;
4265
4002
  dataSourceType?: string;
4266
4003
  }> & Readonly<{
4267
- onSubmit?: ((values: _tmagic_schema.CodeBlockContent) => any) | undefined;
4268
- "onUpdate:width"?: ((width: number) => any) | undefined;
4269
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
4004
+ onSubmit?: ((values: _tmagic_schema.CodeBlockContent, eventData: ContainerChangeEventData) => any) | undefined;
4005
+ "onUpdate:width"?: ((value: number) => any) | undefined;
4006
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
4270
4007
  }>, {
4271
4008
  show(): Promise<void>;
4272
4009
  hide(): Promise<void>;
4273
4010
  }, {}, {}, {}, {}> | null;
4274
4011
  };
4275
- attrs: Partial<{}>;
4012
+ rootEl: any;
4276
4013
  };
4277
4014
  type __VLS_TemplateResult$7 = ReturnType<typeof __VLS_template$7>;
4278
- declare const __VLS_component$7: vue.DefineComponent<{
4279
- indent?: number;
4280
- nextLevelIndentIncrement?: number;
4281
- customError?: (id: Id, errorType: CodeDeleteErrorType) => any;
4282
- }, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{
4283
- indent?: number;
4284
- nextLevelIndentIncrement?: number;
4285
- customError?: (id: Id, errorType: CodeDeleteErrorType) => any;
4286
- }> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4015
+ declare const __VLS_component$7: vue.DefineComponent<__VLS_Props$d, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props$d> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4287
4016
  declare const _default$f: __VLS_WithTemplateSlots$7<typeof __VLS_component$7, __VLS_TemplateResult$7["slots"]>;
4288
4017
 
4289
4018
  type __VLS_WithTemplateSlots$7<T, S> = T & {
@@ -4292,7 +4021,7 @@ type __VLS_WithTemplateSlots$7<T, S> = T & {
4292
4021
  };
4293
4022
  };
4294
4023
 
4295
- declare let __VLS_typeProps$2: {
4024
+ type __VLS_Props$c = {
4296
4025
  title?: string;
4297
4026
  values: any;
4298
4027
  disabled: boolean;
@@ -4300,17 +4029,26 @@ declare let __VLS_typeProps$2: {
4300
4029
  type __VLS_PublicProps$2 = {
4301
4030
  'visible'?: boolean;
4302
4031
  'width'?: number;
4303
- } & typeof __VLS_typeProps$2;
4032
+ } & __VLS_Props$c;
4304
4033
  declare const _default$e: vue.DefineComponent<__VLS_PublicProps$2, {
4305
4034
  show(): void;
4306
4035
  hide(): void;
4307
4036
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4308
- submit: (...args: any[]) => void;
4037
+ submit: (v: any, eventData: ContainerChangeEventData$1) => any;
4038
+ "update:width": (value: number) => any;
4039
+ "update:visible": (value: boolean) => any;
4309
4040
  }, string, vue.PublicProps, Readonly<__VLS_PublicProps$2> & Readonly<{
4310
- onSubmit?: ((...args: any[]) => any) | undefined;
4311
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4041
+ onSubmit?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
4042
+ "onUpdate:width"?: ((value: number) => any) | undefined;
4043
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
4044
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4312
4045
 
4046
+ type __VLS_Props$b = {
4047
+ disabledShowSrc?: boolean;
4048
+ extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4049
+ };
4313
4050
  declare function __VLS_template$6(): {
4051
+ attrs: Partial<{}>;
4314
4052
  slots: Readonly<PropsPanelSlots> & PropsPanelSlots;
4315
4053
  refs: {
4316
4054
  configForm: vue.CreateComponentPublicInstanceWithMixins<Readonly<{
@@ -4328,10 +4066,12 @@ declare function __VLS_template$6(): {
4328
4066
  labelPosition?: string;
4329
4067
  keyProp?: string;
4330
4068
  popperClass?: string;
4069
+ preventSubmitDefault?: boolean;
4331
4070
  extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4332
4071
  }> & Readonly<{
4333
4072
  onChange?: ((...args: any[]) => any) | undefined;
4334
4073
  onError?: ((...args: any[]) => any) | undefined;
4074
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
4335
4075
  "onField-change"?: ((...args: any[]) => any) | undefined;
4336
4076
  "onField-input"?: ((...args: any[]) => any) | undefined;
4337
4077
  }>, {
@@ -4339,36 +4079,17 @@ declare function __VLS_template$6(): {
4339
4079
  lastValuesProcessed: vue.Ref<FormValue$1, FormValue$1>;
4340
4080
  formState: FormState$1;
4341
4081
  initialized: vue.Ref<boolean, boolean>;
4342
- changeHandler: () => void;
4343
- resetForm: () => any;
4082
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
4083
+ changeHandler: (v: FormValue$1, eventData: ContainerChangeEventData$1) => void;
4084
+ resetForm: () => void;
4344
4085
  submitForm: (native?: boolean) => Promise<any>;
4345
4086
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4346
4087
  change: (...args: any[]) => void;
4347
4088
  error: (...args: any[]) => void;
4089
+ "update:stepActive": (...args: any[]) => void;
4348
4090
  "field-change": (...args: any[]) => void;
4349
4091
  "field-input": (...args: any[]) => void;
4350
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
4351
- config: FormConfig;
4352
- initValues: Record<string, any>;
4353
- lastValues?: Record<string, any>;
4354
- isCompare?: boolean;
4355
- parentValues?: Record<string, any>;
4356
- labelWidth?: string;
4357
- disabled?: boolean;
4358
- height?: string;
4359
- stepActive?: string | number;
4360
- size?: "small" | "default" | "large";
4361
- inline?: boolean;
4362
- labelPosition?: string;
4363
- keyProp?: string;
4364
- popperClass?: string;
4365
- extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4366
- }> & Readonly<{
4367
- onChange?: ((...args: any[]) => any) | undefined;
4368
- onError?: ((...args: any[]) => any) | undefined;
4369
- "onField-change"?: ((...args: any[]) => any) | undefined;
4370
- "onField-input"?: ((...args: any[]) => any) | undefined;
4371
- }>, {
4092
+ }, vue.PublicProps, {
4372
4093
  disabled: boolean;
4373
4094
  labelWidth: string;
4374
4095
  inline: boolean;
@@ -4381,7 +4102,7 @@ declare function __VLS_template$6(): {
4381
4102
  parentValues: Record<string, any>;
4382
4103
  stepActive: string | number;
4383
4104
  height: string;
4384
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
4105
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
4385
4106
  P: {};
4386
4107
  B: {};
4387
4108
  D: {};
@@ -4403,10 +4124,12 @@ declare function __VLS_template$6(): {
4403
4124
  labelPosition?: string;
4404
4125
  keyProp?: string;
4405
4126
  popperClass?: string;
4127
+ preventSubmitDefault?: boolean;
4406
4128
  extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4407
4129
  }> & Readonly<{
4408
4130
  onChange?: ((...args: any[]) => any) | undefined;
4409
4131
  onError?: ((...args: any[]) => any) | undefined;
4132
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
4410
4133
  "onField-change"?: ((...args: any[]) => any) | undefined;
4411
4134
  "onField-input"?: ((...args: any[]) => any) | undefined;
4412
4135
  }>, {
@@ -4414,8 +4137,9 @@ declare function __VLS_template$6(): {
4414
4137
  lastValuesProcessed: vue.Ref<FormValue$1, FormValue$1>;
4415
4138
  formState: FormState$1;
4416
4139
  initialized: vue.Ref<boolean, boolean>;
4417
- changeHandler: () => void;
4418
- resetForm: () => any;
4140
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
4141
+ changeHandler: (v: FormValue$1, eventData: ContainerChangeEventData$1) => void;
4142
+ resetForm: () => void;
4419
4143
  submitForm: (native?: boolean) => Promise<any>;
4420
4144
  }, {}, {}, {}, {
4421
4145
  disabled: boolean;
@@ -4432,13 +4156,10 @@ declare function __VLS_template$6(): {
4432
4156
  height: string;
4433
4157
  }> | null;
4434
4158
  };
4435
- attrs: Partial<{}>;
4159
+ rootEl: HTMLDivElement;
4436
4160
  };
4437
4161
  type __VLS_TemplateResult$6 = ReturnType<typeof __VLS_template$6>;
4438
- declare const __VLS_component$6: vue.DefineComponent<{
4439
- disabledShowSrc?: boolean;
4440
- extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4441
- }, {
4162
+ declare const __VLS_component$6: vue.DefineComponent<__VLS_Props$b, {
4442
4163
  configForm: vue.Ref<vue.CreateComponentPublicInstanceWithMixins<Readonly<{
4443
4164
  config: FormConfig;
4444
4165
  initValues: Record<string, any>;
@@ -4454,10 +4175,12 @@ declare const __VLS_component$6: vue.DefineComponent<{
4454
4175
  labelPosition?: string;
4455
4176
  keyProp?: string;
4456
4177
  popperClass?: string;
4178
+ preventSubmitDefault?: boolean;
4457
4179
  extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4458
4180
  }> & Readonly<{
4459
4181
  onChange?: ((...args: any[]) => any) | undefined;
4460
4182
  onError?: ((...args: any[]) => any) | undefined;
4183
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
4461
4184
  "onField-change"?: ((...args: any[]) => any) | undefined;
4462
4185
  "onField-input"?: ((...args: any[]) => any) | undefined;
4463
4186
  }>, {
@@ -4465,36 +4188,17 @@ declare const __VLS_component$6: vue.DefineComponent<{
4465
4188
  lastValuesProcessed: vue.Ref<FormValue$1, FormValue$1>;
4466
4189
  formState: FormState$1;
4467
4190
  initialized: vue.Ref<boolean, boolean>;
4468
- changeHandler: () => void;
4469
- resetForm: () => any;
4191
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
4192
+ changeHandler: (v: FormValue$1, eventData: ContainerChangeEventData$1) => void;
4193
+ resetForm: () => void;
4470
4194
  submitForm: (native?: boolean) => Promise<any>;
4471
4195
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4472
4196
  change: (...args: any[]) => void;
4473
4197
  error: (...args: any[]) => void;
4198
+ "update:stepActive": (...args: any[]) => void;
4474
4199
  "field-change": (...args: any[]) => void;
4475
4200
  "field-input": (...args: any[]) => void;
4476
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
4477
- config: FormConfig;
4478
- initValues: Record<string, any>;
4479
- lastValues?: Record<string, any>;
4480
- isCompare?: boolean;
4481
- parentValues?: Record<string, any>;
4482
- labelWidth?: string;
4483
- disabled?: boolean;
4484
- height?: string;
4485
- stepActive?: string | number;
4486
- size?: "small" | "default" | "large";
4487
- inline?: boolean;
4488
- labelPosition?: string;
4489
- keyProp?: string;
4490
- popperClass?: string;
4491
- extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4492
- }> & Readonly<{
4493
- onChange?: ((...args: any[]) => any) | undefined;
4494
- onError?: ((...args: any[]) => any) | undefined;
4495
- "onField-change"?: ((...args: any[]) => any) | undefined;
4496
- "onField-input"?: ((...args: any[]) => any) | undefined;
4497
- }>, {
4201
+ }, vue.PublicProps, {
4498
4202
  disabled: boolean;
4499
4203
  labelWidth: string;
4500
4204
  inline: boolean;
@@ -4507,7 +4211,7 @@ declare const __VLS_component$6: vue.DefineComponent<{
4507
4211
  parentValues: Record<string, any>;
4508
4212
  stepActive: string | number;
4509
4213
  height: string;
4510
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
4214
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
4511
4215
  P: {};
4512
4216
  B: {};
4513
4217
  D: {};
@@ -4529,10 +4233,12 @@ declare const __VLS_component$6: vue.DefineComponent<{
4529
4233
  labelPosition?: string;
4530
4234
  keyProp?: string;
4531
4235
  popperClass?: string;
4236
+ preventSubmitDefault?: boolean;
4532
4237
  extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4533
4238
  }> & Readonly<{
4534
4239
  onChange?: ((...args: any[]) => any) | undefined;
4535
4240
  onError?: ((...args: any[]) => any) | undefined;
4241
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
4536
4242
  "onField-change"?: ((...args: any[]) => any) | undefined;
4537
4243
  "onField-input"?: ((...args: any[]) => any) | undefined;
4538
4244
  }>, {
@@ -4540,8 +4246,9 @@ declare const __VLS_component$6: vue.DefineComponent<{
4540
4246
  lastValuesProcessed: vue.Ref<FormValue$1, FormValue$1>;
4541
4247
  formState: FormState$1;
4542
4248
  initialized: vue.Ref<boolean, boolean>;
4543
- changeHandler: () => void;
4544
- resetForm: () => any;
4249
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
4250
+ changeHandler: (v: FormValue$1, eventData: ContainerChangeEventData$1) => void;
4251
+ resetForm: () => void;
4545
4252
  submitForm: (native?: boolean) => Promise<any>;
4546
4253
  }, {}, {}, {}, {
4547
4254
  disabled: boolean;
@@ -4571,10 +4278,12 @@ declare const __VLS_component$6: vue.DefineComponent<{
4571
4278
  labelPosition?: string;
4572
4279
  keyProp?: string;
4573
4280
  popperClass?: string;
4281
+ preventSubmitDefault?: boolean;
4574
4282
  extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4575
4283
  }> & Readonly<{
4576
4284
  onChange?: ((...args: any[]) => any) | undefined;
4577
4285
  onError?: ((...args: any[]) => any) | undefined;
4286
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
4578
4287
  "onField-change"?: ((...args: any[]) => any) | undefined;
4579
4288
  "onField-input"?: ((...args: any[]) => any) | undefined;
4580
4289
  }>, {
@@ -4582,36 +4291,17 @@ declare const __VLS_component$6: vue.DefineComponent<{
4582
4291
  lastValuesProcessed: vue.Ref<FormValue$1, FormValue$1>;
4583
4292
  formState: FormState$1;
4584
4293
  initialized: vue.Ref<boolean, boolean>;
4585
- changeHandler: () => void;
4586
- resetForm: () => any;
4294
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
4295
+ changeHandler: (v: FormValue$1, eventData: ContainerChangeEventData$1) => void;
4296
+ resetForm: () => void;
4587
4297
  submitForm: (native?: boolean) => Promise<any>;
4588
4298
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4589
4299
  change: (...args: any[]) => void;
4590
4300
  error: (...args: any[]) => void;
4301
+ "update:stepActive": (...args: any[]) => void;
4591
4302
  "field-change": (...args: any[]) => void;
4592
4303
  "field-input": (...args: any[]) => void;
4593
- }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
4594
- config: FormConfig;
4595
- initValues: Record<string, any>;
4596
- lastValues?: Record<string, any>;
4597
- isCompare?: boolean;
4598
- parentValues?: Record<string, any>;
4599
- labelWidth?: string;
4600
- disabled?: boolean;
4601
- height?: string;
4602
- stepActive?: string | number;
4603
- size?: "small" | "default" | "large";
4604
- inline?: boolean;
4605
- labelPosition?: string;
4606
- keyProp?: string;
4607
- popperClass?: string;
4608
- extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4609
- }> & Readonly<{
4610
- onChange?: ((...args: any[]) => any) | undefined;
4611
- onError?: ((...args: any[]) => any) | undefined;
4612
- "onField-change"?: ((...args: any[]) => any) | undefined;
4613
- "onField-input"?: ((...args: any[]) => any) | undefined;
4614
- }>, {
4304
+ }, vue.PublicProps, {
4615
4305
  disabled: boolean;
4616
4306
  labelWidth: string;
4617
4307
  inline: boolean;
@@ -4624,7 +4314,7 @@ declare const __VLS_component$6: vue.DefineComponent<{
4624
4314
  parentValues: Record<string, any>;
4625
4315
  stepActive: string | number;
4626
4316
  height: string;
4627
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
4317
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
4628
4318
  P: {};
4629
4319
  B: {};
4630
4320
  D: {};
@@ -4646,10 +4336,12 @@ declare const __VLS_component$6: vue.DefineComponent<{
4646
4336
  labelPosition?: string;
4647
4337
  keyProp?: string;
4648
4338
  popperClass?: string;
4339
+ preventSubmitDefault?: boolean;
4649
4340
  extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4650
4341
  }> & Readonly<{
4651
4342
  onChange?: ((...args: any[]) => any) | undefined;
4652
4343
  onError?: ((...args: any[]) => any) | undefined;
4344
+ "onUpdate:stepActive"?: ((...args: any[]) => any) | undefined;
4653
4345
  "onField-change"?: ((...args: any[]) => any) | undefined;
4654
4346
  "onField-input"?: ((...args: any[]) => any) | undefined;
4655
4347
  }>, {
@@ -4657,8 +4349,9 @@ declare const __VLS_component$6: vue.DefineComponent<{
4657
4349
  lastValuesProcessed: vue.Ref<FormValue$1, FormValue$1>;
4658
4350
  formState: FormState$1;
4659
4351
  initialized: vue.Ref<boolean, boolean>;
4660
- changeHandler: () => void;
4661
- resetForm: () => any;
4352
+ changeRecords: vue.ShallowRef<ChangeRecord[], ChangeRecord[]>;
4353
+ changeHandler: (v: FormValue$1, eventData: ContainerChangeEventData$1) => void;
4354
+ resetForm: () => void;
4662
4355
  submitForm: (native?: boolean) => Promise<any>;
4663
4356
  }, {}, {}, {}, {
4664
4357
  disabled: boolean;
@@ -4674,19 +4367,16 @@ declare const __VLS_component$6: vue.DefineComponent<{
4674
4367
  stepActive: string | number;
4675
4368
  height: string;
4676
4369
  }> | undefined>;
4677
- submit: () => Promise<void>;
4370
+ submit: (v: FormValue$1, eventData: ContainerChangeEventData$1) => Promise<void>;
4678
4371
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4679
4372
  mounted: (...args: any[]) => void;
4680
4373
  "submit-error": (...args: any[]) => void;
4681
4374
  "form-error": (...args: any[]) => void;
4682
- }, string, vue.PublicProps, Readonly<{
4683
- disabledShowSrc?: boolean;
4684
- extendState?: (state: FormState$1) => Record<string, any> | Promise<Record<string, any>>;
4685
- }> & Readonly<{
4375
+ }, string, vue.PublicProps, Readonly<__VLS_Props$b> & Readonly<{
4686
4376
  onMounted?: ((...args: any[]) => any) | undefined;
4687
4377
  "onSubmit-error"?: ((...args: any[]) => any) | undefined;
4688
4378
  "onForm-error"?: ((...args: any[]) => any) | undefined;
4689
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4379
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4690
4380
  declare const _default$d: __VLS_WithTemplateSlots$6<typeof __VLS_component$6, __VLS_TemplateResult$6["slots"]>;
4691
4381
 
4692
4382
  type __VLS_WithTemplateSlots$6<T, S> = T & {
@@ -4695,18 +4385,23 @@ type __VLS_WithTemplateSlots$6<T, S> = T & {
4695
4385
  };
4696
4386
  };
4697
4387
 
4698
- declare const _default$c: vue.DefineComponent<{
4699
- data?: MenuButton | MenuComponent;
4700
- eventType?: "mousedown" | "mouseup" | "click";
4701
- }, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{
4388
+ type __VLS_Props$a = {
4702
4389
  data?: MenuButton | MenuComponent;
4703
- eventType?: "mousedown" | "mouseup" | "click";
4704
- }> & Readonly<{}>, {
4390
+ eventType?: 'mousedown' | 'mouseup' | 'click';
4391
+ };
4392
+ declare const _default$c: vue.DefineComponent<__VLS_Props$a, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props$a> & Readonly<{}>, {
4705
4393
  data: MenuButton | MenuComponent;
4706
4394
  eventType: "mousedown" | "mouseup" | "click";
4707
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4395
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4708
4396
 
4397
+ type __VLS_Props$9 = {
4398
+ menuData?: (MenuButton | MenuComponent)[];
4399
+ isSubMenu?: boolean;
4400
+ active?: string | number;
4401
+ autoHide?: boolean;
4402
+ };
4709
4403
  declare function __VLS_template$5(): {
4404
+ attrs: Partial<{}>;
4710
4405
  slots: {
4711
4406
  title?(_: {}): any;
4712
4407
  };
@@ -4715,13 +4410,10 @@ declare function __VLS_template$5(): {
4715
4410
  buttons: (vue.CreateComponentPublicInstanceWithMixins<Readonly<{
4716
4411
  data?: MenuButton | MenuComponent;
4717
4412
  eventType?: "mousedown" | "mouseup" | "click";
4718
- }> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & Readonly<{
4719
- data?: MenuButton | MenuComponent;
4720
- eventType?: "mousedown" | "mouseup" | "click";
4721
- }> & Readonly<{}>, {
4413
+ }> & Readonly<{}>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, vue.PublicProps, {
4722
4414
  data: MenuButton | MenuComponent;
4723
4415
  eventType: "mousedown" | "mouseup" | "click";
4724
- }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, vue.ComponentProvideOptions, {
4416
+ }, false, {}, {}, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
4725
4417
  P: {};
4726
4418
  B: {};
4727
4419
  D: {};
@@ -4737,15 +4429,10 @@ declare function __VLS_template$5(): {
4737
4429
  }> | null)[];
4738
4430
  subMenu: unknown;
4739
4431
  };
4740
- attrs: Partial<{}>;
4432
+ rootEl: any;
4741
4433
  };
4742
4434
  type __VLS_TemplateResult$5 = ReturnType<typeof __VLS_template$5>;
4743
- declare const __VLS_component$5: vue.DefineComponent<{
4744
- menuData?: (MenuButton | MenuComponent)[];
4745
- isSubMenu?: boolean;
4746
- active?: string | number;
4747
- autoHide?: boolean;
4748
- }, {
4435
+ declare const __VLS_component$5: vue.DefineComponent<__VLS_Props$9, {
4749
4436
  menu: vue.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
4750
4437
  menuPosition: vue.Ref<{
4751
4438
  left: number;
@@ -4768,15 +4455,10 @@ declare const __VLS_component$5: vue.DefineComponent<{
4768
4455
  clientX: number;
4769
4456
  }) => void;
4770
4457
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4771
- hide: () => any;
4772
- show: () => any;
4773
4458
  mouseenter: () => any;
4774
- }, string, vue.PublicProps, Readonly<{
4775
- menuData?: (MenuButton | MenuComponent)[];
4776
- isSubMenu?: boolean;
4777
- active?: string | number;
4778
- autoHide?: boolean;
4779
- }> & Readonly<{
4459
+ show: () => any;
4460
+ hide: () => any;
4461
+ }, string, vue.PublicProps, Readonly<__VLS_Props$9> & Readonly<{
4780
4462
  onMouseenter?: (() => any) | undefined;
4781
4463
  onShow?: (() => any) | undefined;
4782
4464
  onHide?: (() => any) | undefined;
@@ -4784,7 +4466,7 @@ declare const __VLS_component$5: vue.DefineComponent<{
4784
4466
  menuData: (MenuButton | MenuComponent)[];
4785
4467
  isSubMenu: boolean;
4786
4468
  autoHide: boolean;
4787
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4469
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4788
4470
  declare const _default$b: __VLS_WithTemplateSlots$5<typeof __VLS_component$5, __VLS_TemplateResult$5["slots"]>;
4789
4471
 
4790
4472
  type __VLS_WithTemplateSlots$5<T, S> = T & {
@@ -4793,13 +4475,24 @@ type __VLS_WithTemplateSlots$5<T, S> = T & {
4793
4475
  };
4794
4476
  };
4795
4477
 
4796
- declare const _default$a: vue.DefineComponent<{
4478
+ type __VLS_Props$8 = {
4797
4479
  icon?: any;
4798
- }, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<{
4799
- icon?: any;
4800
- }> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4480
+ };
4481
+ declare const _default$a: vue.DefineComponent<__VLS_Props$8, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<__VLS_Props$8> & Readonly<{}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4801
4482
 
4483
+ type __VLS_Props$7 = {
4484
+ width?: number;
4485
+ left?: number;
4486
+ right?: number;
4487
+ minLeft?: number;
4488
+ minRight?: number;
4489
+ minCenter?: number;
4490
+ leftClass?: string;
4491
+ rightClass?: string;
4492
+ centerClass?: string;
4493
+ };
4802
4494
  declare function __VLS_template$4(): {
4495
+ attrs: Partial<{}>;
4803
4496
  slots: {
4804
4497
  left?(_: {}): any;
4805
4498
  center?(_: {}): any;
@@ -4808,36 +4501,16 @@ declare function __VLS_template$4(): {
4808
4501
  refs: {
4809
4502
  el: HTMLDivElement;
4810
4503
  };
4811
- attrs: Partial<{}>;
4504
+ rootEl: HTMLDivElement;
4812
4505
  };
4813
4506
  type __VLS_TemplateResult$4 = ReturnType<typeof __VLS_template$4>;
4814
- declare const __VLS_component$4: vue.DefineComponent<{
4815
- width?: number;
4816
- left?: number;
4817
- right?: number;
4818
- minLeft?: number;
4819
- minRight?: number;
4820
- minCenter?: number;
4821
- leftClass?: string;
4822
- rightClass?: string;
4823
- centerClass?: string;
4824
- }, {
4507
+ declare const __VLS_component$4: vue.DefineComponent<__VLS_Props$7, {
4825
4508
  updateWidth(): void;
4826
4509
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4827
4510
  change: (...args: any[]) => void;
4828
4511
  "update:left": (...args: any[]) => void;
4829
4512
  "update:right": (...args: any[]) => void;
4830
- }, string, vue.PublicProps, Readonly<{
4831
- width?: number;
4832
- left?: number;
4833
- right?: number;
4834
- minLeft?: number;
4835
- minRight?: number;
4836
- minCenter?: number;
4837
- leftClass?: string;
4838
- rightClass?: string;
4839
- centerClass?: string;
4840
- }> & Readonly<{
4513
+ }, string, vue.PublicProps, Readonly<__VLS_Props$7> & Readonly<{
4841
4514
  onChange?: ((...args: any[]) => any) | undefined;
4842
4515
  "onUpdate:left"?: ((...args: any[]) => any) | undefined;
4843
4516
  "onUpdate:right"?: ((...args: any[]) => any) | undefined;
@@ -4845,7 +4518,7 @@ declare const __VLS_component$4: vue.DefineComponent<{
4845
4518
  minLeft: number;
4846
4519
  minRight: number;
4847
4520
  minCenter: number;
4848
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4521
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
4849
4522
  declare const _default$9: __VLS_WithTemplateSlots$4<typeof __VLS_component$4, __VLS_TemplateResult$4["slots"]>;
4850
4523
 
4851
4524
  type __VLS_WithTemplateSlots$4<T, S> = T & {
@@ -4855,20 +4528,21 @@ type __VLS_WithTemplateSlots$4<T, S> = T & {
4855
4528
  };
4856
4529
 
4857
4530
  declare function __VLS_template$3(): {
4531
+ attrs: Partial<{}>;
4858
4532
  slots: {
4859
4533
  default?(_: {}): any;
4860
4534
  };
4861
4535
  refs: {
4862
4536
  target: HTMLSpanElement;
4863
4537
  };
4864
- attrs: Partial<{}>;
4538
+ rootEl: HTMLSpanElement;
4865
4539
  };
4866
4540
  type __VLS_TemplateResult$3 = ReturnType<typeof __VLS_template$3>;
4867
4541
  declare const __VLS_component$3: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4868
4542
  change: (e: OnDrag<gesto.default>) => any;
4869
4543
  }, string, vue.PublicProps, Readonly<{}> & Readonly<{
4870
4544
  onChange?: ((e: OnDrag<gesto.default>) => any) | undefined;
4871
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}>;
4545
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, HTMLSpanElement>;
4872
4546
  declare const _default$8: __VLS_WithTemplateSlots$3<typeof __VLS_component$3, __VLS_TemplateResult$3["slots"]>;
4873
4547
 
4874
4548
  type __VLS_WithTemplateSlots$3<T, S> = T & {
@@ -4877,7 +4551,7 @@ type __VLS_WithTemplateSlots$3<T, S> = T & {
4877
4551
  };
4878
4552
  };
4879
4553
 
4880
- declare let __VLS_typeProps$1: {
4554
+ type __VLS_Props$6 = {
4881
4555
  content: CodeBlockContent;
4882
4556
  disabled?: boolean;
4883
4557
  isDataSource?: boolean;
@@ -4886,25 +4560,25 @@ declare let __VLS_typeProps$1: {
4886
4560
  type __VLS_PublicProps$1 = {
4887
4561
  'width'?: number;
4888
4562
  'visible'?: boolean;
4889
- } & typeof __VLS_typeProps$1;
4563
+ } & __VLS_Props$6;
4890
4564
  declare const _default$7: vue.DefineComponent<__VLS_PublicProps$1, {
4891
4565
  show(): Promise<void>;
4892
4566
  hide(): Promise<void>;
4893
4567
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4894
- 'update:width': (width: number) => any;
4895
- 'update:visible': (visible: boolean) => any;
4896
- submit: (values: CodeBlockContent) => any;
4568
+ submit: (values: CodeBlockContent, eventData: ContainerChangeEventData$1) => any;
4569
+ "update:width": (value: number) => any;
4570
+ "update:visible": (value: boolean) => any;
4897
4571
  }, string, vue.PublicProps, Readonly<__VLS_PublicProps$1> & Readonly<{
4898
- onSubmit?: ((values: CodeBlockContent) => any) | undefined;
4899
- "onUpdate:width"?: ((width: number) => any) | undefined;
4900
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
4901
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4572
+ onSubmit?: ((values: CodeBlockContent, eventData: ContainerChangeEventData$1) => any) | undefined;
4573
+ "onUpdate:width"?: ((value: number) => any) | undefined;
4574
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
4575
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4902
4576
 
4903
4577
  interface Position {
4904
4578
  left: number;
4905
4579
  top: number;
4906
4580
  }
4907
- declare let __VLS_typeProps: {
4581
+ type __VLS_Props$5 = {
4908
4582
  position?: Position;
4909
4583
  title?: string;
4910
4584
  beforeClose?: (done: (cancel?: boolean) => void) => void;
@@ -4913,8 +4587,9 @@ type __VLS_PublicProps = {
4913
4587
  'width'?: number;
4914
4588
  'height'?: number;
4915
4589
  'visible'?: boolean;
4916
- } & typeof __VLS_typeProps;
4590
+ } & __VLS_Props$5;
4917
4591
  declare function __VLS_template$2(): {
4592
+ attrs: Partial<{}>;
4918
4593
  slots: {
4919
4594
  title?(_: {}): any;
4920
4595
  body?(_: {}): any;
@@ -4923,7 +4598,7 @@ declare function __VLS_template$2(): {
4923
4598
  target: HTMLDivElement;
4924
4599
  titleEl: HTMLDivElement;
4925
4600
  };
4926
- attrs: Partial<{}>;
4601
+ rootEl: any;
4927
4602
  };
4928
4603
  type __VLS_TemplateResult$2 = ReturnType<typeof __VLS_template$2>;
4929
4604
  declare const __VLS_component$2: vue.DefineComponent<__VLS_PublicProps, {
@@ -4931,17 +4606,17 @@ declare const __VLS_component$2: vue.DefineComponent<__VLS_PublicProps, {
4931
4606
  target: vue.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
4932
4607
  titleEl: vue.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
4933
4608
  }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4934
- 'update:width': (width: number) => any;
4935
- 'update:height': (height: number) => any;
4936
- 'update:visible': (visible: boolean) => any;
4609
+ "update:width": (value: number) => any;
4610
+ "update:height": (value: number) => any;
4611
+ "update:visible": (value: boolean) => any;
4937
4612
  }, string, vue.PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
4938
- "onUpdate:width"?: ((width: number) => any) | undefined;
4939
- "onUpdate:height"?: ((height: number) => any) | undefined;
4940
- "onUpdate:visible"?: ((visible: boolean) => any) | undefined;
4613
+ "onUpdate:width"?: ((value: number) => any) | undefined;
4614
+ "onUpdate:height"?: ((value: number) => any) | undefined;
4615
+ "onUpdate:visible"?: ((value: boolean) => any) | undefined;
4941
4616
  }>, {
4942
4617
  title: string;
4943
4618
  position: Position;
4944
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4619
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
4945
4620
  declare const _default$6: __VLS_WithTemplateSlots$2<typeof __VLS_component$2, __VLS_TemplateResult$2["slots"]>;
4946
4621
 
4947
4622
  type __VLS_WithTemplateSlots$2<T, S> = T & {
@@ -4950,7 +4625,15 @@ type __VLS_WithTemplateSlots$2<T, S> = T & {
4950
4625
  };
4951
4626
  };
4952
4627
 
4628
+ type __VLS_Props$4 = {
4629
+ data: TreeNodeData[];
4630
+ nodeStatusMap: Map<Id, LayerNodeStatus>;
4631
+ indent?: number;
4632
+ nextLevelIndentIncrement?: number;
4633
+ emptyText?: string;
4634
+ };
4953
4635
  declare function __VLS_template$1(): {
4636
+ attrs: Partial<{}>;
4954
4637
  slots: Readonly<{
4955
4638
  'tree-node-content'(props: {
4956
4639
  data: TreeNodeData;
@@ -4973,30 +4656,18 @@ declare function __VLS_template$1(): {
4973
4656
  }): any;
4974
4657
  };
4975
4658
  refs: {};
4976
- attrs: Partial<{}>;
4659
+ rootEl: HTMLDivElement;
4977
4660
  };
4978
4661
  type __VLS_TemplateResult$1 = ReturnType<typeof __VLS_template$1>;
4979
- declare const __VLS_component$1: vue.DefineComponent<{
4980
- data: TreeNodeData[];
4981
- nodeStatusMap: Map<Id, LayerNodeStatus>;
4982
- indent?: number;
4983
- nextLevelIndentIncrement?: number;
4984
- emptyText?: string;
4985
- }, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4986
- 'node-dragover': (event: DragEvent) => any;
4987
- 'node-dragstart': (event: DragEvent, data: TreeNodeData) => any;
4988
- 'node-dragleave': (event: DragEvent, data: TreeNodeData) => any;
4989
- 'node-dragend': (event: DragEvent, data: TreeNodeData) => any;
4990
- 'node-contextmenu': (event: MouseEvent, data: TreeNodeData) => any;
4991
- 'node-mouseenter': (event: MouseEvent, data: TreeNodeData) => any;
4992
- 'node-click': (event: MouseEvent, data: TreeNodeData) => any;
4993
- }, string, vue.PublicProps, Readonly<{
4994
- data: TreeNodeData[];
4995
- nodeStatusMap: Map<Id, LayerNodeStatus>;
4996
- indent?: number;
4997
- nextLevelIndentIncrement?: number;
4998
- emptyText?: string;
4999
- }> & Readonly<{
4662
+ declare const __VLS_component$1: vue.DefineComponent<__VLS_Props$4, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4663
+ "node-click": (event: MouseEvent, data: TreeNodeData) => any;
4664
+ "node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
4665
+ "node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
4666
+ "node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
4667
+ "node-dragend": (event: DragEvent, data: TreeNodeData) => any;
4668
+ "node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
4669
+ "node-dragover": (event: DragEvent) => any;
4670
+ }, string, vue.PublicProps, Readonly<__VLS_Props$4> & Readonly<{
5000
4671
  "onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
5001
4672
  "onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
5002
4673
  "onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
@@ -5007,7 +4678,7 @@ declare const __VLS_component$1: vue.DefineComponent<{
5007
4678
  }>, {
5008
4679
  emptyText: string;
5009
4680
  indent: number;
5010
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4681
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
5011
4682
  declare const _default$5: __VLS_WithTemplateSlots$1<typeof __VLS_component$1, __VLS_TemplateResult$1["slots"]>;
5012
4683
 
5013
4684
  type __VLS_WithTemplateSlots$1<T, S> = T & {
@@ -5016,7 +4687,16 @@ type __VLS_WithTemplateSlots$1<T, S> = T & {
5016
4687
  };
5017
4688
  };
5018
4689
 
4690
+ type __VLS_Props$3 = {
4691
+ data: TreeNodeData;
4692
+ parent?: TreeNodeData;
4693
+ parentsId?: Id[];
4694
+ nodeStatusMap: Map<Id, LayerNodeStatus>;
4695
+ indent?: number;
4696
+ nextLevelIndentIncrement?: number;
4697
+ };
5019
4698
  declare function __VLS_template(): {
4699
+ attrs: Partial<{}>;
5020
4700
  slots: Readonly<{
5021
4701
  'tree-node-label'(props: {
5022
4702
  data: TreeNodeData;
@@ -5039,31 +4719,17 @@ declare function __VLS_template(): {
5039
4719
  }): any;
5040
4720
  };
5041
4721
  refs: {};
5042
- attrs: Partial<{}>;
4722
+ rootEl: HTMLDivElement;
5043
4723
  };
5044
4724
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
5045
- declare const __VLS_component: vue.DefineComponent<{
5046
- data: TreeNodeData;
5047
- parent?: TreeNodeData;
5048
- parentsId?: Id[];
5049
- nodeStatusMap: Map<Id, LayerNodeStatus>;
5050
- indent?: number;
5051
- nextLevelIndentIncrement?: number;
5052
- }, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5053
- 'node-dragstart': (event: DragEvent, data: TreeNodeData) => any;
5054
- 'node-dragleave': (event: DragEvent, data: TreeNodeData) => any;
5055
- 'node-dragend': (event: DragEvent, data: TreeNodeData) => any;
5056
- 'node-contextmenu': (event: MouseEvent, data: TreeNodeData) => any;
5057
- 'node-mouseenter': (event: MouseEvent, data: TreeNodeData) => any;
5058
- 'node-click': (event: MouseEvent, data: TreeNodeData) => any;
5059
- }, string, vue.PublicProps, Readonly<{
5060
- data: TreeNodeData;
5061
- parent?: TreeNodeData;
5062
- parentsId?: Id[];
5063
- nodeStatusMap: Map<Id, LayerNodeStatus>;
5064
- indent?: number;
5065
- nextLevelIndentIncrement?: number;
5066
- }> & Readonly<{
4725
+ declare const __VLS_component: vue.DefineComponent<__VLS_Props$3, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4726
+ "node-click": (event: MouseEvent, data: TreeNodeData) => any;
4727
+ "node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
4728
+ "node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
4729
+ "node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
4730
+ "node-dragend": (event: DragEvent, data: TreeNodeData) => any;
4731
+ "node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
4732
+ }, string, vue.PublicProps, Readonly<__VLS_Props$3> & Readonly<{
5067
4733
  "onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
5068
4734
  "onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
5069
4735
  "onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
@@ -5074,7 +4740,7 @@ declare const __VLS_component: vue.DefineComponent<{
5074
4740
  indent: number;
5075
4741
  parentsId: Id[];
5076
4742
  nextLevelIndentIncrement: number;
5077
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4743
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
5078
4744
  declare const _default$4: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
5079
4745
 
5080
4746
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -5083,36 +4749,36 @@ type __VLS_WithTemplateSlots<T, S> = T & {
5083
4749
  };
5084
4750
  };
5085
4751
 
5086
- declare const _default$3: vue.DefineComponent<FieldProps<PageFragmentSelectConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4752
+ type __VLS_Props$2 = FieldProps<PageFragmentSelectConfig>;
4753
+ declare const _default$3: vue.DefineComponent<__VLS_Props$2, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5087
4754
  change: (...args: any[]) => void;
5088
- }, string, vue.PublicProps, Readonly<FieldProps<PageFragmentSelectConfig>> & Readonly<{
4755
+ }, string, vue.PublicProps, Readonly<__VLS_Props$2> & Readonly<{
5089
4756
  onChange?: ((...args: any[]) => any) | undefined;
5090
4757
  }>, {
5091
4758
  disabled: boolean;
5092
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4759
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
5093
4760
 
5094
- declare const _default$2: vue.DefineComponent<FieldProps<{
5095
- titlePrefix?: string;
5096
- parentFields?: string[] | FilterFunction$1<string[]>;
5097
- }>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5098
- change: (value: DisplayCond[]) => any;
5099
- }, string, vue.PublicProps, Readonly<FieldProps<{
4761
+ type __VLS_Props$1 = FieldProps<{
5100
4762
  titlePrefix?: string;
5101
4763
  parentFields?: string[] | FilterFunction$1<string[]>;
5102
- }>> & Readonly<{
5103
- onChange?: ((value: DisplayCond[]) => any) | undefined;
4764
+ }>;
4765
+ declare const _default$2: vue.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4766
+ change: (value: DisplayCond[], eventData?: ContainerChangeEventData$1 | undefined) => any;
4767
+ }, string, vue.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
4768
+ onChange?: ((value: DisplayCond[], eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
5104
4769
  }>, {
5105
4770
  disabled: boolean;
5106
- }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4771
+ }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, HTMLDivElement>;
5107
4772
 
5108
- declare const _default$1: vue.DefineComponent<FieldProps<CondOpSelectConfig>, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
5109
- change: (...args: any[]) => void;
5110
- }, string, vue.PublicProps, Readonly<FieldProps<CondOpSelectConfig>> & Readonly<{
5111
- onChange?: ((...args: any[]) => any) | undefined;
5112
- }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}>;
4773
+ type __VLS_Props = FieldProps<CondOpSelectConfig>;
4774
+ declare const _default$1: vue.DefineComponent<__VLS_Props, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
4775
+ change: (value: string) => any;
4776
+ }, string, vue.PublicProps, Readonly<__VLS_Props> & Readonly<{
4777
+ onChange?: ((value: string) => any) | undefined;
4778
+ }>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
5113
4779
 
5114
4780
  declare const _default: {
5115
4781
  install: (app: App, opt?: Partial<EditorInstallOptions | DesignPluginOptions | FormInstallOptions>) => void;
5116
4782
  };
5117
4783
 
5118
- export { type AddMNode, type AddPrefixToObject, type AsyncAfterHook, type AsyncBeforeHook, type AsyncHookPlugin, type BeforeAdd, CODE_DRAFT_STORAGE_KEY, COPY_CODE_STORAGE_KEY, COPY_DS_STORAGE_KEY, COPY_STORAGE_KEY, _default$7 as CodeBlockEditor, _default$g as CodeBlockList, _default$f as CodeBlockListPanel, type CodeBlockListPanelSlots, type CodeBlockListSlots, CodeDeleteErrorType, type CodeDslItem, type CodeParamStatement, type CodeRelation, _default$r as CodeSelect, _default$q as CodeSelectCol, type CodeSelectColConfig, type CodeState, ColumnLayout, type CombineInfo, type ComponentGroup, type ComponentGroupState, type ComponentItem, _default$t as ComponentListPanel, type ComponentListPanelSlots, _default$1 as CondOpSelect, type CondOpSelectConfig, _default$b as ContentMenu, _default$e as DataSourceConfigPanel, _default$j as DataSourceFieldSelect, type DataSourceFieldSelectConfig, _default$p as DataSourceFields, _default$m as DataSourceInput, type DataSourceListSlots, _default$k as DataSourceMethodSelect, type DataSourceMethodSelectConfig, _default$n as DataSourceMethods, _default$o as DataSourceMocks, _default$l as DataSourceSelect, type DatasourceTypeOption, _default$2 as DisplayConds, DragType, type EditorInstallOptions, type EditorNodeInfo, type EventBus, type EventBusEvent, _default$i as EventSelect, type EventSelectConfig, Fixed2Other, _default$6 as FloatingBox, type FrameworkSlots, type GetColumnWidth, type GetConfig, H_GUIDE_LINE_STORAGE_KEY, type HistoryState, _default$a as Icon, IdleTask, type IdleTaskEvents, type KeyBindingCacheItem, KeyBindingCommand, type KeyBindingItem, _default$h as KeyValue, Keys, type LayerNodeSlots, type LayerNodeStatus, LayerOffset, _default$s as LayerPanel, type LayerPanelSlots, Layout, _default$9 as LayoutContainer, type ListState, type MenuBarData, type MenuButton, type MenuComponent, type MenuItem, type NodeItem, type PageBarSortOptions, _default$3 as PageFragmentSelect, type PageFragmentSelectConfig, type PartSortableOptions, type PastePosition, type PropsFormConfigFunction, type PropsFormValueFunction, _default$d as PropsPanel, type PropsPanelSlots, type PropsState, _default$8 as Resizer, ScrollViewer, type ScrollViewerEvent, type Services, type SetColumnWidth, type SideBarData, type SideComponent, type SideItem, SideItemKey, type SidebarSlots, _default$9 as SplitView, type StageOptions, type StageOverlayState, type StageRect, type StepValue, type StoreState, type StoreStateKey, type SyncAfterHook, type SyncBeforeHook, type SyncHookPlugin, _default$u as TMagicCodeEditor, _default$v as TMagicEditor, _default$c as ToolButton, _default$5 as Tree, _default$4 as TreeNode, type TreeNodeData, UI_SELECT_MODE_EVENT_NAME, type UiState, UndoRedo, V_GUIDE_LINE_STORAGE_KEY, type WorkspaceSlots, advancedTabConfig, arrayOptions, beforePaste, change2Fixed, _default$F as codeBlockService, _default$E as dataSourceService, debug, _default as default, _default$D as depService, displayTabConfig, _default$C as editorService, eqOptions, error, eventTabConfig, _default$B as eventsService, fillConfig, fixNodeLeft, fixNodePosition, generatePageName, generatePageNameByApp, getAddParent, getCascaderOptionsFromFields, getDefaultConfig, getDisplayField, getEditorConfig, getFormConfig, getFormValue, getGuideLineFromCache, getInitPositionStyle, getNodeIndex, getPageFragmentList, getPageList, getPageNameList, getPositionInContainer, getRelativeStyle, _default$A as historyService, info, log, moveItemsInContainer, numberOptions, _default$z as propsService, removeDataSourceFieldPrefix, serializeConfig, setChildrenLayout, setEditorConfig, setLayout, _default$y as stageOverlayService, _default$x as storageService, styleTabConfig, traverseNode, _default$w as uiService, updateStatus, useCodeBlockEdit, useDataSourceMethod, useEditorContentHeight, useFilter, useFloatBox, useGetSo, useNextFloatBoxPosition, useNodeStatus, useStage, useWindowRect, warn };
4784
+ export { type AddMNode, type AddPrefixToObject, type AsyncAfterHook, type AsyncBeforeHook, type AsyncHookPlugin, type BeforeAdd, CODE_DRAFT_STORAGE_KEY, COPY_CODE_STORAGE_KEY, COPY_DS_STORAGE_KEY, COPY_STORAGE_KEY, _default$7 as CodeBlockEditor, _default$g as CodeBlockList, _default$f as CodeBlockListPanel, type CodeBlockListPanelSlots, type CodeBlockListSlots, CodeDeleteErrorType, type CodeDslItem, type CodeParamStatement, type CodeRelation, _default$r as CodeSelect, _default$q as CodeSelectCol, type CodeSelectColConfig, type CodeState, ColumnLayout, type CombineInfo, type ComponentGroup, type ComponentGroupState, type ComponentItem, _default$t as ComponentListPanel, type ComponentListPanelSlots, _default$1 as CondOpSelect, type CondOpSelectConfig, _default$b as ContentMenu, _default$e as DataSourceConfigPanel, _default$j as DataSourceFieldSelect, type DataSourceFieldSelectConfig, _default$p as DataSourceFields, _default$m as DataSourceInput, type DataSourceListSlots, _default$k as DataSourceMethodSelect, type DataSourceMethodSelectConfig, _default$n as DataSourceMethods, _default$o as DataSourceMocks, _default$l as DataSourceSelect, type DatasourceTypeOption, _default$2 as DisplayConds, DragType, type EditorInstallOptions, type EditorNodeInfo, type EventBus, type EventBusEvent, _default$i as EventSelect, type EventSelectConfig, Fixed2Other, _default$6 as FloatingBox, type FrameworkSlots, type GetColumnWidth, type GetConfig, H_GUIDE_LINE_STORAGE_KEY, type HistoryState, _default$a as Icon, IdleTask, type IdleTaskEvents, type KeyBindingCacheItem, KeyBindingCommand, type KeyBindingItem, _default$h as KeyValue, Keys, type LayerNodeSlots, type LayerNodeStatus, LayerOffset, _default$s as LayerPanel, type LayerPanelSlots, Layout, _default$9 as LayoutContainer, type ListState, type MenuBarData, type MenuButton, type MenuComponent, type MenuItem, type PageBarSortOptions, _default$3 as PageFragmentSelect, type PageFragmentSelectConfig, type PartSortableOptions, type PastePosition, type PropsFormConfigFunction, type PropsFormValueFunction, _default$d as PropsPanel, type PropsPanelSlots, type PropsState, _default$8 as Resizer, ScrollViewer, type ScrollViewerEvent, type Services, type SetColumnWidth, type SideBarData, type SideComponent, type SideItem, SideItemKey, type SidebarSlots, _default$9 as SplitView, type StageOptions, type StageOverlayState, type StageRect, type StepValue, type StoreState, type StoreStateKey, type SyncAfterHook, type SyncBeforeHook, type SyncHookPlugin, _default$u as TMagicCodeEditor, _default$v as TMagicEditor, _default$c as ToolButton, _default$5 as Tree, _default$4 as TreeNode, type TreeNodeData, UI_SELECT_MODE_EVENT_NAME, type UiState, UndoRedo, V_GUIDE_LINE_STORAGE_KEY, type WorkspaceSlots, advancedTabConfig, arrayOptions, beforePaste, change2Fixed, _default$F as codeBlockService, _default$E as dataSourceService, debug, _default as default, _default$D as depService, displayTabConfig, _default$C as editorService, eqOptions, error, eventTabConfig, _default$B as eventsService, fillConfig, fixNodeLeft, fixNodePosition, generatePageName, generatePageNameByApp, getAddParent, getCascaderOptionsFromFields, getDefaultConfig, getDisplayField, getEditorConfig, getFormConfig, getFormValue, getGuideLineFromCache, getInitPositionStyle, getNodeIndex, getPageFragmentList, getPageList, getPageNameList, getPositionInContainer, getRelativeStyle, _default$A as historyService, info, isIncludeDataSource, log, moveItemsInContainer, numberOptions, _default$z as propsService, removeDataSourceFieldPrefix, serializeConfig, setChildrenLayout, setEditorConfig, setLayout, _default$y as stageOverlayService, _default$x as storageService, styleTabConfig, _default$w as uiService, updateStatus, useCodeBlockEdit, useEditorContentHeight, useFilter, useFloatBox, useGetSo, useNextFloatBoxPosition, useNodeStatus, useStage, useWindowRect, warn };