@tmagic/editor 1.6.0 → 1.7.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/style.css +72 -13
- package/dist/tmagic-editor.js +607 -534
- package/dist/tmagic-editor.umd.cjs +605 -532
- package/package.json +9 -9
- package/src/components/ToolButton.vue +13 -6
- package/src/fields/DataSourceFieldSelect/Index.vue +0 -1
- package/src/fields/DisplayConds.vue +2 -2
- package/src/fields/StyleSetter/Index.vue +15 -10
- package/src/fields/StyleSetter/components/BackgroundPosition.vue +9 -1
- package/src/fields/StyleSetter/components/Border.vue +3 -2
- package/src/fields/StyleSetter/components/Box.vue +5 -2
- package/src/fields/StyleSetter/components/Position.vue +5 -2
- package/src/fields/StyleSetter/pro/Background.vue +6 -2
- package/src/fields/StyleSetter/pro/Border.vue +7 -3
- package/src/fields/StyleSetter/pro/Font.vue +6 -2
- package/src/fields/StyleSetter/pro/Layout.vue +10 -2
- package/src/fields/StyleSetter/pro/Position.vue +6 -2
- package/src/layouts/page-bar/PageList.vue +15 -13
- package/src/layouts/sidebar/ComponentListPanel.vue +15 -6
- package/src/services/editor.ts +1 -2
- package/src/theme/component-list-panel.scss +11 -0
- package/src/theme/data-source-field-select.scss +4 -0
- package/src/theme/nav-menu.scss +6 -0
- package/src/theme/page-bar.scss +5 -0
- package/src/theme/props-panel.scss +0 -5
- package/src/theme/style-setter/background.scss +10 -3
- package/src/theme/style-setter/index.scss +16 -3
- package/src/utils/props.ts +19 -2
- package/types/index.d.ts +100 -61
package/types/index.d.ts
CHANGED
|
@@ -449,6 +449,7 @@ declare class Editor extends export_default {
|
|
|
449
449
|
}>;
|
|
450
450
|
/**
|
|
451
451
|
* 更新节点
|
|
452
|
+
* update后会触发依赖收集,收集完后会掉stage.update方法
|
|
452
453
|
* @param config 新的节点配置,配置中需要有id信息
|
|
453
454
|
* @returns 更新后的节点配置
|
|
454
455
|
*/
|
|
@@ -1804,7 +1805,7 @@ interface EditorProps {
|
|
|
1804
1805
|
}
|
|
1805
1806
|
|
|
1806
1807
|
type __VLS_Slots$c = EditorSlots;
|
|
1807
|
-
declare const
|
|
1808
|
+
declare const __VLS_base$c: _vue_runtime_core.DefineComponent<EditorProps, Services, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
1808
1809
|
"update:modelValue": (value: MApp | null) => any;
|
|
1809
1810
|
"props-panel-mounted": (instance: {
|
|
1810
1811
|
$: _vue_runtime_core.ComponentInternalInstance;
|
|
@@ -2449,7 +2450,8 @@ declare const __VLS_component$c: _vue_runtime_core.DefineComponent<EditorProps,
|
|
|
2449
2450
|
containerHighlightType: StageCore.ContainerHighlightType;
|
|
2450
2451
|
canSelect: (el: HTMLElement) => boolean | Promise<boolean>;
|
|
2451
2452
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2452
|
-
declare const
|
|
2453
|
+
declare const __VLS_export$w: __VLS_WithSlots$c<typeof __VLS_base$c, __VLS_Slots$c>;
|
|
2454
|
+
declare const _default$x: typeof __VLS_export$w;
|
|
2453
2455
|
|
|
2454
2456
|
type __VLS_WithSlots$c<T, S> = T & {
|
|
2455
2457
|
new (): {
|
|
@@ -2468,7 +2470,7 @@ type __VLS_Props$t = {
|
|
|
2468
2470
|
parse?: boolean;
|
|
2469
2471
|
disabledFullScreen?: boolean;
|
|
2470
2472
|
};
|
|
2471
|
-
declare const
|
|
2473
|
+
declare const __VLS_export$v: _vue_runtime_core.DefineComponent<__VLS_Props$t, {
|
|
2472
2474
|
values: _vue_reactivity.Ref<string, string>;
|
|
2473
2475
|
getEditor(): monaco.editor.IStandaloneCodeEditor | monaco.editor.IStandaloneDiffEditor | null;
|
|
2474
2476
|
getVsEditor(): monaco.editor.IStandaloneCodeEditor | null;
|
|
@@ -2490,10 +2492,12 @@ declare const _default$w: _vue_runtime_core.DefineComponent<__VLS_Props$t, {
|
|
|
2490
2492
|
autoSave: boolean;
|
|
2491
2493
|
disabledFullScreen: boolean;
|
|
2492
2494
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2495
|
+
declare const _default$w: typeof __VLS_export$v;
|
|
2493
2496
|
|
|
2494
2497
|
type __VLS_Slots$b = ComponentListPanelSlots;
|
|
2495
|
-
declare const
|
|
2496
|
-
declare const
|
|
2498
|
+
declare const __VLS_base$b: _vue_runtime_core.DefineComponent<{}, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, true, {}, any>;
|
|
2499
|
+
declare const __VLS_export$u: __VLS_WithSlots$b<typeof __VLS_base$b, __VLS_Slots$b>;
|
|
2500
|
+
declare const _default$v: typeof __VLS_export$u;
|
|
2497
2501
|
|
|
2498
2502
|
type __VLS_WithSlots$b<T, S> = T & {
|
|
2499
2503
|
new (): {
|
|
@@ -2508,8 +2512,9 @@ type __VLS_Props$s = {
|
|
|
2508
2512
|
nextLevelIndentIncrement?: number;
|
|
2509
2513
|
customContentMenu: CustomContentMenuFunction;
|
|
2510
2514
|
};
|
|
2511
|
-
declare const
|
|
2512
|
-
declare const
|
|
2515
|
+
declare const __VLS_base$a: _vue_runtime_core.DefineComponent<__VLS_Props$s, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$s> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2516
|
+
declare const __VLS_export$t: __VLS_WithSlots$a<typeof __VLS_base$a, __VLS_Slots$a>;
|
|
2517
|
+
declare const _default$u: typeof __VLS_export$t;
|
|
2513
2518
|
|
|
2514
2519
|
type __VLS_WithSlots$a<T, S> = T & {
|
|
2515
2520
|
new (): {
|
|
@@ -2518,28 +2523,31 @@ type __VLS_WithSlots$a<T, S> = T & {
|
|
|
2518
2523
|
};
|
|
2519
2524
|
|
|
2520
2525
|
type __VLS_Props$r = FieldProps<CodeSelectConfig>;
|
|
2521
|
-
declare const
|
|
2526
|
+
declare const __VLS_export$s: _vue_runtime_core.DefineComponent<__VLS_Props$r, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2522
2527
|
change: (v: any, eventData: ContainerChangeEventData$1) => any;
|
|
2523
2528
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$r> & Readonly<{
|
|
2524
2529
|
onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
2525
2530
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2531
|
+
declare const _default$t: typeof __VLS_export$s;
|
|
2526
2532
|
|
|
2527
2533
|
type __VLS_Props$q = FieldProps<CodeSelectColConfig>;
|
|
2528
|
-
declare const
|
|
2534
|
+
declare const __VLS_export$r: _vue_runtime_core.DefineComponent<__VLS_Props$q, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2529
2535
|
change: (v: any, eventData: ContainerChangeEventData$1) => any;
|
|
2530
2536
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$q> & Readonly<{
|
|
2531
2537
|
onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
2532
2538
|
}>, {
|
|
2533
2539
|
disabled: boolean;
|
|
2534
2540
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2541
|
+
declare const _default$s: typeof __VLS_export$r;
|
|
2535
2542
|
|
|
2536
2543
|
type __VLS_Props$p = FieldProps<DataSourceFieldsConfig>;
|
|
2537
|
-
type
|
|
2544
|
+
type __VLS_ModelProps$4 = {
|
|
2538
2545
|
'width'?: number;
|
|
2539
2546
|
'visible'?: boolean;
|
|
2540
2547
|
'visible1'?: boolean;
|
|
2541
2548
|
};
|
|
2542
|
-
|
|
2549
|
+
type __VLS_PublicProps$4 = __VLS_Props$p & __VLS_ModelProps$4;
|
|
2550
|
+
declare const __VLS_export$q: _vue_runtime_core.DefineComponent<__VLS_PublicProps$4, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2543
2551
|
change: (v: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
2544
2552
|
"update:width": (value: number) => any;
|
|
2545
2553
|
"update:visible": (value: boolean) => any;
|
|
@@ -2552,13 +2560,15 @@ declare const _default$r: _vue_runtime_core.DefineComponent<__VLS_PublicProps$4,
|
|
|
2552
2560
|
}>, {
|
|
2553
2561
|
disabled: boolean;
|
|
2554
2562
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2563
|
+
declare const _default$r: typeof __VLS_export$q;
|
|
2555
2564
|
|
|
2556
2565
|
type __VLS_Props$o = FieldProps<DataSourceMocksConfig>;
|
|
2557
|
-
type
|
|
2566
|
+
type __VLS_ModelProps$3 = {
|
|
2558
2567
|
'width'?: number;
|
|
2559
2568
|
'visible'?: boolean;
|
|
2560
2569
|
};
|
|
2561
|
-
|
|
2570
|
+
type __VLS_PublicProps$3 = __VLS_Props$o & __VLS_ModelProps$3;
|
|
2571
|
+
declare const __VLS_export$p: _vue_runtime_core.DefineComponent<__VLS_PublicProps$3, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2562
2572
|
change: (...args: any[]) => void;
|
|
2563
2573
|
"update:width": (value: number) => void;
|
|
2564
2574
|
"update:visible": (value: boolean) => void;
|
|
@@ -2569,67 +2579,75 @@ declare const _default$q: _vue_runtime_core.DefineComponent<__VLS_PublicProps$3,
|
|
|
2569
2579
|
}>, {
|
|
2570
2580
|
disabled: boolean;
|
|
2571
2581
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2582
|
+
declare const _default$q: typeof __VLS_export$p;
|
|
2572
2583
|
|
|
2573
2584
|
type __VLS_Props$n = FieldProps<DataSourceMethodsConfig>;
|
|
2574
|
-
declare const
|
|
2585
|
+
declare const __VLS_export$o: _vue_runtime_core.DefineComponent<__VLS_Props$n, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2575
2586
|
change: (...args: any[]) => void;
|
|
2576
2587
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$n> & Readonly<{
|
|
2577
2588
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2578
2589
|
}>, {
|
|
2579
2590
|
disabled: boolean;
|
|
2580
2591
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2592
|
+
declare const _default$p: typeof __VLS_export$o;
|
|
2581
2593
|
|
|
2582
2594
|
type __VLS_Props$m = FieldProps<DataSourceInputConfig>;
|
|
2583
|
-
declare const
|
|
2595
|
+
declare const __VLS_export$n: _vue_runtime_core.DefineComponent<__VLS_Props$m, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2584
2596
|
change: (value: string) => any;
|
|
2585
2597
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$m> & Readonly<{
|
|
2586
2598
|
onChange?: ((value: string) => any) | undefined;
|
|
2587
2599
|
}>, {
|
|
2588
2600
|
disabled: boolean;
|
|
2589
2601
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2602
|
+
declare const _default$o: typeof __VLS_export$n;
|
|
2590
2603
|
|
|
2591
2604
|
type __VLS_Props$l = FieldProps<DataSourceSelect>;
|
|
2592
|
-
declare const
|
|
2605
|
+
declare const __VLS_export$m: _vue_runtime_core.DefineComponent<__VLS_Props$l, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2593
2606
|
change: (...args: any[]) => void;
|
|
2594
2607
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$l> & Readonly<{
|
|
2595
2608
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2596
2609
|
}>, {
|
|
2597
2610
|
disabled: boolean;
|
|
2598
2611
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2612
|
+
declare const _default$n: typeof __VLS_export$m;
|
|
2599
2613
|
|
|
2600
2614
|
type __VLS_Props$k = FieldProps<DataSourceMethodSelectConfig>;
|
|
2601
|
-
declare const
|
|
2615
|
+
declare const __VLS_export$l: _vue_runtime_core.DefineComponent<__VLS_Props$k, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2602
2616
|
change: (...args: any[]) => void;
|
|
2603
2617
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$k> & Readonly<{
|
|
2604
2618
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2605
2619
|
}>, {
|
|
2606
2620
|
disabled: boolean;
|
|
2607
2621
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2622
|
+
declare const _default$m: typeof __VLS_export$l;
|
|
2608
2623
|
|
|
2609
2624
|
type __VLS_Props$j = FieldProps<DataSourceFieldSelectConfig>;
|
|
2610
|
-
declare const
|
|
2625
|
+
declare const __VLS_export$k: _vue_runtime_core.DefineComponent<__VLS_Props$j, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2611
2626
|
change: (...args: any[]) => void;
|
|
2612
2627
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$j> & Readonly<{
|
|
2613
2628
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2614
2629
|
}>, {
|
|
2615
2630
|
disabled: boolean;
|
|
2616
2631
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2632
|
+
declare const _default$l: typeof __VLS_export$k;
|
|
2617
2633
|
|
|
2618
2634
|
type __VLS_Props$i = FieldProps<EventSelectConfig>;
|
|
2619
|
-
declare const
|
|
2635
|
+
declare const __VLS_export$j: _vue_runtime_core.DefineComponent<__VLS_Props$i, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2620
2636
|
change: (v: any, eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
2621
2637
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$i> & Readonly<{
|
|
2622
2638
|
onChange?: ((v: any, eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
2623
2639
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2640
|
+
declare const _default$k: typeof __VLS_export$j;
|
|
2624
2641
|
|
|
2625
2642
|
type __VLS_Props$h = FieldProps<KeyValueConfig>;
|
|
2626
|
-
declare const
|
|
2643
|
+
declare const __VLS_export$i: _vue_runtime_core.DefineComponent<__VLS_Props$h, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2627
2644
|
change: (value: Record<string, any>) => any;
|
|
2628
2645
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$h> & Readonly<{
|
|
2629
2646
|
onChange?: ((value: Record<string, any>) => any) | undefined;
|
|
2630
2647
|
}>, {
|
|
2631
2648
|
disabled: boolean;
|
|
2632
2649
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2650
|
+
declare const _default$j: typeof __VLS_export$i;
|
|
2633
2651
|
|
|
2634
2652
|
type __VLS_Slots$9 = CodeBlockListSlots;
|
|
2635
2653
|
type __VLS_Props$g = {
|
|
@@ -2637,7 +2655,7 @@ type __VLS_Props$g = {
|
|
|
2637
2655
|
nextLevelIndentIncrement?: number;
|
|
2638
2656
|
customError?: (_id: Id, _errorType: CodeDeleteErrorType) => any;
|
|
2639
2657
|
};
|
|
2640
|
-
declare const
|
|
2658
|
+
declare const __VLS_base$9: _vue_runtime_core.DefineComponent<__VLS_Props$g, {
|
|
2641
2659
|
nodeStatusMap: _vue_reactivity.Ref<Map<Id, {
|
|
2642
2660
|
visible: boolean;
|
|
2643
2661
|
expand: boolean;
|
|
@@ -2652,15 +2670,16 @@ declare const __VLS_component$9: _vue_runtime_core.DefineComponent<__VLS_Props$g
|
|
|
2652
2670
|
filter: (text: string | string[]) => void;
|
|
2653
2671
|
deleteCode: (id: string) => Promise<void>;
|
|
2654
2672
|
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
2655
|
-
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
2656
2673
|
remove: (id: string) => any;
|
|
2674
|
+
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
2657
2675
|
edit: (id: string) => any;
|
|
2658
2676
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$g> & Readonly<{
|
|
2659
|
-
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
2660
2677
|
onRemove?: ((id: string) => any) | undefined;
|
|
2678
|
+
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
2661
2679
|
onEdit?: ((id: string) => any) | undefined;
|
|
2662
2680
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2663
|
-
declare const
|
|
2681
|
+
declare const __VLS_export$h: __VLS_WithSlots$9<typeof __VLS_base$9, __VLS_Slots$9>;
|
|
2682
|
+
declare const _default$i: typeof __VLS_export$h;
|
|
2664
2683
|
|
|
2665
2684
|
type __VLS_WithSlots$9<T, S> = T & {
|
|
2666
2685
|
new (): {
|
|
@@ -2675,8 +2694,9 @@ type __VLS_Props$f = {
|
|
|
2675
2694
|
customError?: (_id: Id, _errorType: CodeDeleteErrorType) => any;
|
|
2676
2695
|
customContentMenu: CustomContentMenuFunction;
|
|
2677
2696
|
};
|
|
2678
|
-
declare const
|
|
2679
|
-
declare const
|
|
2697
|
+
declare const __VLS_base$8: _vue_runtime_core.DefineComponent<__VLS_Props$f, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$f> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2698
|
+
declare const __VLS_export$g: __VLS_WithSlots$8<typeof __VLS_base$8, __VLS_Slots$8>;
|
|
2699
|
+
declare const _default$h: typeof __VLS_export$g;
|
|
2680
2700
|
|
|
2681
2701
|
type __VLS_WithSlots$8<T, S> = T & {
|
|
2682
2702
|
new (): {
|
|
@@ -2689,11 +2709,12 @@ type __VLS_Props$e = {
|
|
|
2689
2709
|
values: any;
|
|
2690
2710
|
disabled: boolean;
|
|
2691
2711
|
};
|
|
2692
|
-
type
|
|
2712
|
+
type __VLS_ModelProps$2 = {
|
|
2693
2713
|
'visible'?: boolean;
|
|
2694
2714
|
'width'?: number;
|
|
2695
2715
|
};
|
|
2696
|
-
|
|
2716
|
+
type __VLS_PublicProps$2 = __VLS_Props$e & __VLS_ModelProps$2;
|
|
2717
|
+
declare const __VLS_export$f: _vue_runtime_core.DefineComponent<__VLS_PublicProps$2, {
|
|
2697
2718
|
show(): void;
|
|
2698
2719
|
hide(): void;
|
|
2699
2720
|
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
@@ -2709,13 +2730,14 @@ declare const _default$g: _vue_runtime_core.DefineComponent<__VLS_PublicProps$2,
|
|
|
2709
2730
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
2710
2731
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
2711
2732
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
2733
|
+
declare const _default$g: typeof __VLS_export$f;
|
|
2712
2734
|
|
|
2713
2735
|
type __VLS_Slots$7 = PropsPanelSlots;
|
|
2714
2736
|
type __VLS_Props$d = {
|
|
2715
2737
|
disabledShowSrc?: boolean;
|
|
2716
2738
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
2717
2739
|
};
|
|
2718
|
-
declare const
|
|
2740
|
+
declare const __VLS_base$7: _vue_runtime_core.DefineComponent<__VLS_Props$d, {
|
|
2719
2741
|
getFormState(): FormState | undefined;
|
|
2720
2742
|
submit: (v: MNode, eventData?: ContainerChangeEventData$1) => Promise<void>;
|
|
2721
2743
|
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
@@ -3331,7 +3353,8 @@ declare const __VLS_component$7: _vue_runtime_core.DefineComponent<__VLS_Props$d
|
|
|
3331
3353
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3332
3354
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3333
3355
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3334
|
-
declare const
|
|
3356
|
+
declare const __VLS_export$e: __VLS_WithSlots$7<typeof __VLS_base$7, __VLS_Slots$7>;
|
|
3357
|
+
declare const _default$f: typeof __VLS_export$e;
|
|
3335
3358
|
|
|
3336
3359
|
type __VLS_WithSlots$7<T, S> = T & {
|
|
3337
3360
|
new (): {
|
|
@@ -3351,7 +3374,7 @@ type __VLS_Props$c = {
|
|
|
3351
3374
|
labelPosition?: string;
|
|
3352
3375
|
extendState?: (_state: FormState) => Record<string, any> | Promise<Record<string, any>>;
|
|
3353
3376
|
};
|
|
3354
|
-
declare const
|
|
3377
|
+
declare const __VLS_base$6: _vue_runtime_core.DefineComponent<__VLS_Props$c, {
|
|
3355
3378
|
configForm: Readonly<_vue_reactivity.ShallowRef<_vue_runtime_core.CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3356
3379
|
config: FormConfig;
|
|
3357
3380
|
initValues: Record<string, any>;
|
|
@@ -3470,7 +3493,8 @@ declare const __VLS_component$6: _vue_runtime_core.DefineComponent<__VLS_Props$c
|
|
|
3470
3493
|
"onSubmit-error"?: ((e: any) => any) | undefined;
|
|
3471
3494
|
"onForm-error"?: ((e: any) => any) | undefined;
|
|
3472
3495
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3473
|
-
declare const
|
|
3496
|
+
declare const __VLS_export$d: __VLS_WithSlots$6<typeof __VLS_base$6, __VLS_Slots$6>;
|
|
3497
|
+
declare const _default$e: typeof __VLS_export$d;
|
|
3474
3498
|
|
|
3475
3499
|
type __VLS_WithSlots$6<T, S> = T & {
|
|
3476
3500
|
new (): {
|
|
@@ -3482,10 +3506,11 @@ type __VLS_Props$b = {
|
|
|
3482
3506
|
data?: MenuButton | MenuComponent;
|
|
3483
3507
|
eventType?: 'mousedown' | 'mouseup' | 'click';
|
|
3484
3508
|
};
|
|
3485
|
-
declare const
|
|
3509
|
+
declare const __VLS_export$c: _vue_runtime_core.DefineComponent<__VLS_Props$b, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$b> & Readonly<{}>, {
|
|
3486
3510
|
data: MenuButton | MenuComponent;
|
|
3487
3511
|
eventType: "mousedown" | "mouseup" | "click";
|
|
3488
3512
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3513
|
+
declare const _default$d: typeof __VLS_export$c;
|
|
3489
3514
|
|
|
3490
3515
|
type __VLS_Props$a = {
|
|
3491
3516
|
menuData?: (MenuButton | MenuComponent)[];
|
|
@@ -3497,7 +3522,7 @@ declare var __VLS_6$1: {};
|
|
|
3497
3522
|
type __VLS_Slots$5 = {} & {
|
|
3498
3523
|
title?: (props: typeof __VLS_6$1) => any;
|
|
3499
3524
|
};
|
|
3500
|
-
declare const
|
|
3525
|
+
declare const __VLS_base$5: _vue_runtime_core.DefineComponent<__VLS_Props$a, {
|
|
3501
3526
|
menu: Readonly<_vue_reactivity.ShallowRef<HTMLDivElement | null>>;
|
|
3502
3527
|
menuPosition: Ref<{
|
|
3503
3528
|
left: number;
|
|
@@ -3532,7 +3557,8 @@ declare const __VLS_component$5: _vue_runtime_core.DefineComponent<__VLS_Props$a
|
|
|
3532
3557
|
isSubMenu: boolean;
|
|
3533
3558
|
autoHide: boolean;
|
|
3534
3559
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3535
|
-
declare const
|
|
3560
|
+
declare const __VLS_export$b: __VLS_WithSlots$5<typeof __VLS_base$5, __VLS_Slots$5>;
|
|
3561
|
+
declare const _default$c: typeof __VLS_export$b;
|
|
3536
3562
|
|
|
3537
3563
|
type __VLS_WithSlots$5<T, S> = T & {
|
|
3538
3564
|
new (): {
|
|
@@ -3543,7 +3569,8 @@ type __VLS_WithSlots$5<T, S> = T & {
|
|
|
3543
3569
|
type __VLS_Props$9 = {
|
|
3544
3570
|
icon?: any;
|
|
3545
3571
|
};
|
|
3546
|
-
declare const
|
|
3572
|
+
declare const __VLS_export$a: _vue_runtime_core.DefineComponent<__VLS_Props$9, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$9> & Readonly<{}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3573
|
+
declare const _default$b: typeof __VLS_export$a;
|
|
3547
3574
|
|
|
3548
3575
|
type __VLS_Props$8 = {
|
|
3549
3576
|
width?: number;
|
|
@@ -3566,7 +3593,7 @@ type __VLS_Slots$4 = {} & {
|
|
|
3566
3593
|
} & {
|
|
3567
3594
|
right?: (props: typeof __VLS_19) => any;
|
|
3568
3595
|
};
|
|
3569
|
-
declare const
|
|
3596
|
+
declare const __VLS_base$4: _vue_runtime_core.DefineComponent<__VLS_Props$8, {
|
|
3570
3597
|
updateWidth(): void;
|
|
3571
3598
|
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3572
3599
|
change: (...args: any[]) => void;
|
|
@@ -3581,7 +3608,8 @@ declare const __VLS_component$4: _vue_runtime_core.DefineComponent<__VLS_Props$8
|
|
|
3581
3608
|
minRight: number;
|
|
3582
3609
|
minCenter: number;
|
|
3583
3610
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3584
|
-
declare const
|
|
3611
|
+
declare const __VLS_export$9: __VLS_WithSlots$4<typeof __VLS_base$4, __VLS_Slots$4>;
|
|
3612
|
+
declare const _default$a: typeof __VLS_export$9;
|
|
3585
3613
|
|
|
3586
3614
|
type __VLS_WithSlots$4<T, S> = T & {
|
|
3587
3615
|
new (): {
|
|
@@ -3593,12 +3621,13 @@ declare var __VLS_1: {};
|
|
|
3593
3621
|
type __VLS_Slots$3 = {} & {
|
|
3594
3622
|
default?: (props: typeof __VLS_1) => any;
|
|
3595
3623
|
};
|
|
3596
|
-
declare const
|
|
3624
|
+
declare const __VLS_base$3: _vue_runtime_core.DefineComponent<{}, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3597
3625
|
change: (e: OnDrag<gesto.default>) => any;
|
|
3598
3626
|
}, string, _vue_runtime_core.PublicProps, Readonly<{}> & Readonly<{
|
|
3599
3627
|
onChange?: ((e: OnDrag<gesto.default>) => any) | undefined;
|
|
3600
3628
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, true, {}, any>;
|
|
3601
|
-
declare const
|
|
3629
|
+
declare const __VLS_export$8: __VLS_WithSlots$3<typeof __VLS_base$3, __VLS_Slots$3>;
|
|
3630
|
+
declare const _default$9: typeof __VLS_export$8;
|
|
3602
3631
|
|
|
3603
3632
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
3604
3633
|
new (): {
|
|
@@ -3612,11 +3641,12 @@ type __VLS_Props$7 = {
|
|
|
3612
3641
|
isDataSource?: boolean;
|
|
3613
3642
|
dataSourceType?: string;
|
|
3614
3643
|
};
|
|
3615
|
-
type
|
|
3644
|
+
type __VLS_ModelProps$1 = {
|
|
3616
3645
|
'width'?: number;
|
|
3617
3646
|
'visible'?: boolean;
|
|
3618
3647
|
};
|
|
3619
|
-
|
|
3648
|
+
type __VLS_PublicProps$1 = __VLS_Props$7 & __VLS_ModelProps$1;
|
|
3649
|
+
declare const __VLS_export$7: _vue_runtime_core.DefineComponent<__VLS_PublicProps$1, {
|
|
3620
3650
|
show(): Promise<void>;
|
|
3621
3651
|
hide(): Promise<void>;
|
|
3622
3652
|
}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
@@ -3632,6 +3662,7 @@ declare const _default$8: _vue_runtime_core.DefineComponent<__VLS_PublicProps$1,
|
|
|
3632
3662
|
"onUpdate:width"?: ((value: number) => any) | undefined;
|
|
3633
3663
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
3634
3664
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3665
|
+
declare const _default$8: typeof __VLS_export$7;
|
|
3635
3666
|
|
|
3636
3667
|
interface Position {
|
|
3637
3668
|
left: number;
|
|
@@ -3642,11 +3673,12 @@ type __VLS_Props$6 = {
|
|
|
3642
3673
|
title?: string;
|
|
3643
3674
|
beforeClose?: (_done: (_cancel?: boolean) => void) => void;
|
|
3644
3675
|
};
|
|
3645
|
-
type
|
|
3676
|
+
type __VLS_ModelProps = {
|
|
3646
3677
|
'width'?: number;
|
|
3647
3678
|
'height'?: number;
|
|
3648
3679
|
'visible'?: boolean;
|
|
3649
3680
|
};
|
|
3681
|
+
type __VLS_PublicProps = __VLS_Props$6 & __VLS_ModelProps;
|
|
3650
3682
|
declare var __VLS_6: {};
|
|
3651
3683
|
declare var __VLS_20: {};
|
|
3652
3684
|
type __VLS_Slots$2 = {} & {
|
|
@@ -3654,7 +3686,7 @@ type __VLS_Slots$2 = {} & {
|
|
|
3654
3686
|
} & {
|
|
3655
3687
|
body?: (props: typeof __VLS_20) => any;
|
|
3656
3688
|
};
|
|
3657
|
-
declare const
|
|
3689
|
+
declare const __VLS_base$2: _vue_runtime_core.DefineComponent<__VLS_PublicProps, {
|
|
3658
3690
|
bodyHeight: _vue_reactivity.ComputedRef<number | "auto">;
|
|
3659
3691
|
target: Readonly<_vue_reactivity.ShallowRef<HTMLDivElement | null>>;
|
|
3660
3692
|
titleEl: Readonly<_vue_reactivity.ShallowRef<HTMLDivElement | null>>;
|
|
@@ -3670,7 +3702,8 @@ declare const __VLS_component$2: _vue_runtime_core.DefineComponent<__VLS_PublicP
|
|
|
3670
3702
|
title: string;
|
|
3671
3703
|
position: Position;
|
|
3672
3704
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3673
|
-
declare const
|
|
3705
|
+
declare const __VLS_export$6: __VLS_WithSlots$2<typeof __VLS_base$2, __VLS_Slots$2>;
|
|
3706
|
+
declare const _default$7: typeof __VLS_export$6;
|
|
3674
3707
|
|
|
3675
3708
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
3676
3709
|
new (): {
|
|
@@ -3696,27 +3729,28 @@ type __VLS_Props$5 = {
|
|
|
3696
3729
|
nextLevelIndentIncrement?: number;
|
|
3697
3730
|
emptyText?: string;
|
|
3698
3731
|
};
|
|
3699
|
-
declare const
|
|
3700
|
-
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3701
|
-
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3732
|
+
declare const __VLS_base$1: _vue_runtime_core.DefineComponent<__VLS_Props$5, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3702
3733
|
"node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
|
|
3703
3734
|
"node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
|
|
3704
3735
|
"node-dragend": (event: DragEvent, data: TreeNodeData) => any;
|
|
3736
|
+
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3705
3737
|
"node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3738
|
+
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3706
3739
|
"node-dragover": (event: DragEvent) => any;
|
|
3707
3740
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$5> & Readonly<{
|
|
3708
|
-
"onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3709
|
-
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3710
3741
|
"onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
3711
3742
|
"onNode-dragleave"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
3712
3743
|
"onNode-dragend"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
3744
|
+
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3713
3745
|
"onNode-mouseenter"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3746
|
+
"onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3714
3747
|
"onNode-dragover"?: ((event: DragEvent) => any) | undefined;
|
|
3715
3748
|
}>, {
|
|
3716
3749
|
emptyText: string;
|
|
3717
3750
|
indent: number;
|
|
3718
3751
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3719
|
-
declare const
|
|
3752
|
+
declare const __VLS_export$5: __VLS_WithSlots$1<typeof __VLS_base$1, __VLS_Slots$1>;
|
|
3753
|
+
declare const _default$6: typeof __VLS_export$5;
|
|
3720
3754
|
|
|
3721
3755
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
3722
3756
|
new (): {
|
|
@@ -3743,26 +3777,27 @@ type __VLS_Props$4 = {
|
|
|
3743
3777
|
indent?: number;
|
|
3744
3778
|
nextLevelIndentIncrement?: number;
|
|
3745
3779
|
};
|
|
3746
|
-
declare const
|
|
3747
|
-
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3748
|
-
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3780
|
+
declare const __VLS_base: _vue_runtime_core.DefineComponent<__VLS_Props$4, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3749
3781
|
"node-dragstart": (event: DragEvent, data: TreeNodeData) => any;
|
|
3750
3782
|
"node-dragleave": (event: DragEvent, data: TreeNodeData) => any;
|
|
3751
3783
|
"node-dragend": (event: DragEvent, data: TreeNodeData) => any;
|
|
3784
|
+
"node-contextmenu": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3752
3785
|
"node-mouseenter": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3786
|
+
"node-click": (event: MouseEvent, data: TreeNodeData) => any;
|
|
3753
3787
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$4> & Readonly<{
|
|
3754
|
-
"onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3755
|
-
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3756
3788
|
"onNode-dragstart"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
3757
3789
|
"onNode-dragleave"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
3758
3790
|
"onNode-dragend"?: ((event: DragEvent, data: TreeNodeData) => any) | undefined;
|
|
3791
|
+
"onNode-contextmenu"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3759
3792
|
"onNode-mouseenter"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3793
|
+
"onNode-click"?: ((event: MouseEvent, data: TreeNodeData) => any) | undefined;
|
|
3760
3794
|
}>, {
|
|
3761
3795
|
indent: number;
|
|
3762
3796
|
parentsId: Id[];
|
|
3763
3797
|
nextLevelIndentIncrement: number;
|
|
3764
3798
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3765
|
-
declare const
|
|
3799
|
+
declare const __VLS_export$4: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
3800
|
+
declare const _default$5: typeof __VLS_export$4;
|
|
3766
3801
|
|
|
3767
3802
|
type __VLS_WithSlots<T, S> = T & {
|
|
3768
3803
|
new (): {
|
|
@@ -3771,36 +3806,40 @@ type __VLS_WithSlots<T, S> = T & {
|
|
|
3771
3806
|
};
|
|
3772
3807
|
|
|
3773
3808
|
type __VLS_Props$3 = FieldProps<PageFragmentSelectConfig>;
|
|
3774
|
-
declare const
|
|
3809
|
+
declare const __VLS_export$3: _vue_runtime_core.DefineComponent<__VLS_Props$3, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3775
3810
|
change: (...args: any[]) => void;
|
|
3776
3811
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$3> & Readonly<{
|
|
3777
3812
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3778
3813
|
}>, {
|
|
3779
3814
|
disabled: boolean;
|
|
3780
3815
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3816
|
+
declare const _default$4: typeof __VLS_export$3;
|
|
3781
3817
|
|
|
3782
3818
|
type __VLS_Props$2 = FieldProps<DisplayCondsConfig>;
|
|
3783
|
-
declare const
|
|
3819
|
+
declare const __VLS_export$2: _vue_runtime_core.DefineComponent<__VLS_Props$2, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3784
3820
|
change: (value: DisplayCond[], eventData?: ContainerChangeEventData$1 | undefined) => any;
|
|
3785
3821
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$2> & Readonly<{
|
|
3786
3822
|
onChange?: ((value: DisplayCond[], eventData?: ContainerChangeEventData$1 | undefined) => any) | undefined;
|
|
3787
3823
|
}>, {
|
|
3788
3824
|
disabled: boolean;
|
|
3789
3825
|
}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3826
|
+
declare const _default$3: typeof __VLS_export$2;
|
|
3790
3827
|
|
|
3791
3828
|
type __VLS_Props$1 = FieldProps<CondOpSelectConfig>;
|
|
3792
|
-
declare const
|
|
3829
|
+
declare const __VLS_export$1: _vue_runtime_core.DefineComponent<__VLS_Props$1, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3793
3830
|
change: (value: string) => any;
|
|
3794
3831
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props$1> & Readonly<{
|
|
3795
3832
|
onChange?: ((value: string) => any) | undefined;
|
|
3796
3833
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3834
|
+
declare const _default$2: typeof __VLS_export$1;
|
|
3797
3835
|
|
|
3798
3836
|
type __VLS_Props = FieldProps<StyleSchema>;
|
|
3799
|
-
declare const
|
|
3837
|
+
declare const __VLS_export: _vue_runtime_core.DefineComponent<__VLS_Props, {}, {}, {}, {}, _vue_runtime_core.ComponentOptionsMixin, _vue_runtime_core.ComponentOptionsMixin, {
|
|
3800
3838
|
change: (v: any, eventData: ContainerChangeEventData$1) => any;
|
|
3801
3839
|
}, string, _vue_runtime_core.PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
3802
3840
|
onChange?: ((v: any, eventData: ContainerChangeEventData$1) => any) | undefined;
|
|
3803
3841
|
}>, {}, {}, {}, {}, string, _vue_runtime_core.ComponentProvideOptions, false, {}, any>;
|
|
3842
|
+
declare const _default$1: typeof __VLS_export;
|
|
3804
3843
|
|
|
3805
3844
|
declare const _default: {
|
|
3806
3845
|
install: (app: App, opt?: Partial<EditorInstallOptions | DesignPluginOptions | FormInstallOptions>) => void;
|