@tmagic/editor 1.2.0-beta.8 → 1.2.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 +59 -35
- package/dist/{tmagic-editor.mjs → tmagic-editor.js} +1473 -1161
- package/dist/tmagic-editor.js.map +1 -0
- package/dist/{tmagic-editor.umd.js → tmagic-editor.umd.cjs} +1483 -1166
- package/dist/tmagic-editor.umd.cjs.map +1 -0
- package/package.json +16 -14
- package/src/Editor.vue +66 -40
- package/src/components/CodeDraftEditor.vue +145 -0
- package/src/components/ContentMenu.vue +2 -2
- package/src/components/FunctionEditor.vue +145 -0
- package/src/components/Icon.vue +1 -1
- package/src/{layouts → components}/Layout.vue +54 -15
- package/src/components/ScrollBar.vue +1 -1
- package/src/components/ScrollViewer.vue +10 -1
- package/src/components/ToolButton.vue +1 -1
- package/src/fields/Code.vue +1 -1
- package/src/fields/CodeLink.vue +1 -1
- package/src/fields/CodeSelect.vue +84 -110
- package/src/fields/UISelect.vue +1 -1
- package/src/index.ts +1 -0
- package/src/layouts/AddPageBox.vue +1 -1
- package/src/layouts/CodeEditor.vue +2 -3
- package/src/layouts/Framework.vue +2 -2
- package/src/layouts/NavMenu.vue +2 -2
- package/src/layouts/PropsPanel.vue +13 -6
- package/src/layouts/Resizer.vue +1 -1
- package/src/layouts/sidebar/ComponentListPanel.vue +1 -1
- package/src/layouts/sidebar/LayerMenu.vue +9 -7
- package/src/layouts/sidebar/LayerPanel.vue +127 -174
- package/src/layouts/sidebar/Sidebar.vue +110 -26
- package/src/layouts/sidebar/code-block/CodeBlockEditor.vue +27 -83
- package/src/layouts/sidebar/code-block/CodeBlockList.vue +90 -122
- package/src/layouts/workspace/Breadcrumb.vue +1 -1
- package/src/layouts/workspace/PageBar.vue +1 -1
- package/src/layouts/workspace/PageBarScrollContainer.vue +1 -1
- package/src/layouts/workspace/Stage.vue +26 -9
- package/src/layouts/workspace/ViewerMenu.vue +11 -9
- package/src/layouts/workspace/Workspace.vue +7 -3
- package/src/services/BaseService.ts +10 -1
- package/src/services/codeBlock.ts +124 -125
- package/src/services/componentList.ts +6 -1
- package/src/services/editor.ts +54 -18
- package/src/services/events.ts +6 -1
- package/src/services/history.ts +7 -16
- package/src/services/props.ts +7 -2
- package/src/services/storage.ts +1 -0
- package/src/services/ui.ts +12 -0
- package/src/theme/code-block.scss +43 -24
- package/src/theme/component-list-panel.scss +8 -5
- package/src/type.ts +77 -50
- package/src/utils/editor.ts +9 -1
- package/src/utils/index.ts +1 -0
- package/src/utils/props.ts +2 -2
- package/src/utils/scroll-viewer.ts +18 -2
- package/src/utils/stage.ts +4 -3
- package/types/Editor.vue.d.ts +47 -27
- package/types/components/CodeDraftEditor.vue.d.ts +56 -0
- package/types/components/ContentMenu.vue.d.ts +11 -87
- package/types/components/FunctionEditor.vue.d.ts +43 -0
- package/types/components/Icon.vue.d.ts +4 -50
- package/types/{layouts → components}/Layout.vue.d.ts +12 -1
- package/types/components/ScrollBar.vue.d.ts +7 -65
- package/types/components/ScrollViewer.vue.d.ts +45 -1
- package/types/components/ToolButton.vue.d.ts +12 -78
- package/types/fields/Code.vue.d.ts +11 -77
- package/types/fields/CodeLink.vue.d.ts +12 -82
- package/types/fields/CodeSelect.vue.d.ts +13 -77
- package/types/fields/UISelect.vue.d.ts +7 -65
- package/types/index.d.ts +1 -0
- package/types/layouts/AddPageBox.vue.d.ts +1 -43
- package/types/layouts/CodeEditor.vue.d.ts +22 -130
- package/types/layouts/NavMenu.vue.d.ts +9 -69
- package/types/layouts/sidebar/LayerMenu.vue.d.ts +16 -48
- package/types/layouts/sidebar/LayerPanel.vue.d.ts +24 -7
- package/types/layouts/sidebar/Sidebar.vue.d.ts +10 -5
- package/types/layouts/sidebar/code-block/CodeBlockEditor.vue.d.ts +1 -1
- package/types/layouts/sidebar/code-block/CodeBlockList.vue.d.ts +6 -5
- package/types/layouts/workspace/Breadcrumb.vue.d.ts +1 -43
- package/types/layouts/workspace/Stage.vue.d.ts +15 -43
- package/types/layouts/workspace/ViewerMenu.vue.d.ts +11 -66
- package/types/layouts/workspace/Workspace.vue.d.ts +23 -5
- package/types/services/BaseService.d.ts +2 -1
- package/types/services/codeBlock.d.ts +57 -36
- package/types/services/componentList.d.ts +1 -0
- package/types/services/editor.d.ts +5 -6
- package/types/services/events.d.ts +1 -0
- package/types/services/history.d.ts +5 -15
- package/types/services/props.d.ts +3 -2
- package/types/services/ui.d.ts +2 -1
- package/types/type.d.ts +65 -48
- package/types/utils/editor.d.ts +1 -0
- package/types/utils/index.d.ts +1 -0
- package/types/utils/props.d.ts +1 -1
- package/types/utils/scroll-viewer.d.ts +5 -0
- package/dist/tmagic-editor.mjs.map +0 -1
- package/dist/tmagic-editor.umd.js.map +0 -1
- package/src/layouts/sidebar/TabPane.vue +0 -118
- package/types/layouts/sidebar/TabPane.vue.d.ts +0 -82
|
@@ -8,19 +8,31 @@ declare const _default: {
|
|
|
8
8
|
zoom: number;
|
|
9
9
|
wrapWidth: number;
|
|
10
10
|
wrapHeight: number;
|
|
11
|
+
correctionScrollSize: {
|
|
12
|
+
width: number;
|
|
13
|
+
height: number;
|
|
14
|
+
};
|
|
11
15
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
16
|
width?: number | undefined;
|
|
13
17
|
height?: number | undefined;
|
|
14
18
|
wrapWidth?: number | undefined;
|
|
15
19
|
wrapHeight?: number | undefined;
|
|
16
20
|
zoom?: number | undefined;
|
|
21
|
+
correctionScrollSize?: {
|
|
22
|
+
width: number;
|
|
23
|
+
height: number;
|
|
24
|
+
} | undefined;
|
|
17
25
|
}>, {
|
|
18
26
|
width: number;
|
|
19
27
|
height: number;
|
|
20
28
|
wrapWidth: number;
|
|
21
29
|
wrapHeight: number;
|
|
22
30
|
zoom: number;
|
|
23
|
-
|
|
31
|
+
correctionScrollSize: () => {
|
|
32
|
+
width: number;
|
|
33
|
+
height: number;
|
|
34
|
+
};
|
|
35
|
+
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "height" | "width" | "zoom" | "wrapWidth" | "wrapHeight" | "correctionScrollSize">;
|
|
24
36
|
$attrs: {
|
|
25
37
|
[x: string]: unknown;
|
|
26
38
|
};
|
|
@@ -40,12 +52,20 @@ declare const _default: {
|
|
|
40
52
|
wrapWidth?: number | undefined;
|
|
41
53
|
wrapHeight?: number | undefined;
|
|
42
54
|
zoom?: number | undefined;
|
|
55
|
+
correctionScrollSize?: {
|
|
56
|
+
width: number;
|
|
57
|
+
height: number;
|
|
58
|
+
} | undefined;
|
|
43
59
|
}>, {
|
|
44
60
|
width: number;
|
|
45
61
|
height: number;
|
|
46
62
|
wrapWidth: number;
|
|
47
63
|
wrapHeight: number;
|
|
48
64
|
zoom: number;
|
|
65
|
+
correctionScrollSize: () => {
|
|
66
|
+
width: number;
|
|
67
|
+
height: number;
|
|
68
|
+
};
|
|
49
69
|
}>>>, {
|
|
50
70
|
container: import("vue").Ref<HTMLDivElement | undefined>;
|
|
51
71
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
@@ -54,6 +74,10 @@ declare const _default: {
|
|
|
54
74
|
zoom: number;
|
|
55
75
|
wrapWidth: number;
|
|
56
76
|
wrapHeight: number;
|
|
77
|
+
correctionScrollSize: {
|
|
78
|
+
width: number;
|
|
79
|
+
height: number;
|
|
80
|
+
};
|
|
57
81
|
}> & {
|
|
58
82
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
59
83
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -80,12 +104,20 @@ declare const _default: {
|
|
|
80
104
|
wrapWidth?: number | undefined;
|
|
81
105
|
wrapHeight?: number | undefined;
|
|
82
106
|
zoom?: number | undefined;
|
|
107
|
+
correctionScrollSize?: {
|
|
108
|
+
width: number;
|
|
109
|
+
height: number;
|
|
110
|
+
} | undefined;
|
|
83
111
|
}>, {
|
|
84
112
|
width: number;
|
|
85
113
|
height: number;
|
|
86
114
|
wrapWidth: number;
|
|
87
115
|
wrapHeight: number;
|
|
88
116
|
zoom: number;
|
|
117
|
+
correctionScrollSize: () => {
|
|
118
|
+
width: number;
|
|
119
|
+
height: number;
|
|
120
|
+
};
|
|
89
121
|
}>>> & import("vue").ShallowUnwrapRef<{
|
|
90
122
|
container: import("vue").Ref<HTMLDivElement | undefined>;
|
|
91
123
|
}> & {} & import("vue").ComponentCustomProperties;
|
|
@@ -98,12 +130,20 @@ declare const _default: {
|
|
|
98
130
|
wrapWidth?: number | undefined;
|
|
99
131
|
wrapHeight?: number | undefined;
|
|
100
132
|
zoom?: number | undefined;
|
|
133
|
+
correctionScrollSize?: {
|
|
134
|
+
width: number;
|
|
135
|
+
height: number;
|
|
136
|
+
} | undefined;
|
|
101
137
|
}>, {
|
|
102
138
|
width: number;
|
|
103
139
|
height: number;
|
|
104
140
|
wrapWidth: number;
|
|
105
141
|
wrapHeight: number;
|
|
106
142
|
zoom: number;
|
|
143
|
+
correctionScrollSize: () => {
|
|
144
|
+
width: number;
|
|
145
|
+
height: number;
|
|
146
|
+
};
|
|
107
147
|
}>>>, {
|
|
108
148
|
container: import("vue").Ref<HTMLDivElement | undefined>;
|
|
109
149
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
@@ -112,6 +152,10 @@ declare const _default: {
|
|
|
112
152
|
zoom: number;
|
|
113
153
|
wrapWidth: number;
|
|
114
154
|
wrapHeight: number;
|
|
155
|
+
correctionScrollSize: {
|
|
156
|
+
width: number;
|
|
157
|
+
height: number;
|
|
158
|
+
};
|
|
115
159
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
116
160
|
$slots: {
|
|
117
161
|
default: (_: {}) => any;
|
|
@@ -1,80 +1,5 @@
|
|
|
1
1
|
import type { MenuButton, MenuComponent } from '../type';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
new (...args: any[]): {
|
|
4
|
-
$: import("vue").ComponentInternalInstance;
|
|
5
|
-
$data: {};
|
|
6
|
-
$props: Partial<{
|
|
7
|
-
data: MenuButton | MenuComponent;
|
|
8
|
-
eventType: 'mousedown' | 'mouseup' | 'click';
|
|
9
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
-
data?: MenuButton | MenuComponent | undefined;
|
|
11
|
-
eventType?: "mousedown" | "click" | "mouseup" | undefined;
|
|
12
|
-
}>, {
|
|
13
|
-
data: () => {
|
|
14
|
-
type: string;
|
|
15
|
-
display: boolean;
|
|
16
|
-
};
|
|
17
|
-
eventType: string;
|
|
18
|
-
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "eventType">;
|
|
19
|
-
$attrs: {
|
|
20
|
-
[x: string]: unknown;
|
|
21
|
-
};
|
|
22
|
-
$refs: {
|
|
23
|
-
[x: string]: unknown;
|
|
24
|
-
};
|
|
25
|
-
$slots: Readonly<{
|
|
26
|
-
[name: string]: import("vue").Slot | undefined;
|
|
27
|
-
}>;
|
|
28
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
29
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
30
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
31
|
-
$el: any;
|
|
32
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
33
|
-
data?: MenuButton | MenuComponent | undefined;
|
|
34
|
-
eventType?: "mousedown" | "click" | "mouseup" | undefined;
|
|
35
|
-
}>, {
|
|
36
|
-
data: () => {
|
|
37
|
-
type: string;
|
|
38
|
-
display: boolean;
|
|
39
|
-
};
|
|
40
|
-
eventType: string;
|
|
41
|
-
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
42
|
-
data: MenuButton | MenuComponent;
|
|
43
|
-
eventType: 'mousedown' | 'mouseup' | 'click';
|
|
44
|
-
}> & {
|
|
45
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
53
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
54
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
55
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
56
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
57
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
58
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
59
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
60
|
-
};
|
|
61
|
-
$forceUpdate: () => void;
|
|
62
|
-
$nextTick: typeof import("vue").nextTick;
|
|
63
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
64
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
65
|
-
data?: MenuButton | MenuComponent | undefined;
|
|
66
|
-
eventType?: "mousedown" | "click" | "mouseup" | undefined;
|
|
67
|
-
}>, {
|
|
68
|
-
data: () => {
|
|
69
|
-
type: string;
|
|
70
|
-
display: boolean;
|
|
71
|
-
};
|
|
72
|
-
eventType: string;
|
|
73
|
-
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
74
|
-
__isFragment?: undefined;
|
|
75
|
-
__isTeleport?: undefined;
|
|
76
|
-
__isSuspense?: undefined;
|
|
77
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
78
3
|
data?: MenuButton | MenuComponent | undefined;
|
|
79
4
|
eventType?: "mousedown" | "click" | "mouseup" | undefined;
|
|
80
5
|
}>, {
|
|
@@ -83,10 +8,19 @@ declare const _default: {
|
|
|
83
8
|
display: boolean;
|
|
84
9
|
};
|
|
85
10
|
eventType: string;
|
|
86
|
-
}
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
data?: MenuButton | MenuComponent | undefined;
|
|
13
|
+
eventType?: "mousedown" | "click" | "mouseup" | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
data: () => {
|
|
16
|
+
type: string;
|
|
17
|
+
display: boolean;
|
|
18
|
+
};
|
|
19
|
+
eventType: string;
|
|
20
|
+
}>>>, {
|
|
87
21
|
data: MenuButton | MenuComponent;
|
|
88
22
|
eventType: 'mousedown' | 'mouseup' | 'click';
|
|
89
|
-
}
|
|
23
|
+
}>;
|
|
90
24
|
export default _default;
|
|
91
25
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
92
26
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,79 +1,13 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
height?: string | undefined;
|
|
12
|
-
};
|
|
13
|
-
prop: string;
|
|
14
|
-
}>>> & {
|
|
15
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
17
|
-
$attrs: {
|
|
18
|
-
[x: string]: unknown;
|
|
19
|
-
};
|
|
20
|
-
$refs: {
|
|
21
|
-
[x: string]: unknown;
|
|
22
|
-
};
|
|
23
|
-
$slots: Readonly<{
|
|
24
|
-
[name: string]: import("vue").Slot | undefined;
|
|
25
|
-
}>;
|
|
26
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
27
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
28
|
-
$emit: (event: "change", ...args: any[]) => void;
|
|
29
|
-
$el: any;
|
|
30
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
31
|
-
model: any;
|
|
32
|
-
name: string;
|
|
33
|
-
config: {
|
|
34
|
-
language?: string | undefined;
|
|
35
|
-
options?: Object | undefined;
|
|
36
|
-
height?: string | undefined;
|
|
37
|
-
};
|
|
38
|
-
prop: string;
|
|
39
|
-
}>>> & {
|
|
40
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
41
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], string, {}> & {
|
|
42
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
53
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
54
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
55
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
56
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
57
|
-
};
|
|
58
|
-
$forceUpdate: () => void;
|
|
59
|
-
$nextTick: typeof import("vue").nextTick;
|
|
60
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
61
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
62
|
-
model: any;
|
|
63
|
-
name: string;
|
|
64
|
-
config: {
|
|
65
|
-
language?: string | undefined;
|
|
66
|
-
options?: Object | undefined;
|
|
67
|
-
height?: string | undefined;
|
|
68
|
-
};
|
|
69
|
-
prop: string;
|
|
70
|
-
}>>> & {
|
|
71
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
72
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
73
|
-
__isFragment?: undefined;
|
|
74
|
-
__isTeleport?: undefined;
|
|
75
|
-
__isSuspense?: undefined;
|
|
76
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
model: any;
|
|
3
|
+
name: string;
|
|
4
|
+
config: {
|
|
5
|
+
language?: string | undefined;
|
|
6
|
+
options?: Object | undefined;
|
|
7
|
+
height?: string | undefined;
|
|
8
|
+
};
|
|
9
|
+
prop: string;
|
|
10
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
77
11
|
model: any;
|
|
78
12
|
name: string;
|
|
79
13
|
config: {
|
|
@@ -84,7 +18,7 @@ declare const _default: {
|
|
|
84
18
|
prop: string;
|
|
85
19
|
}>>> & {
|
|
86
20
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
87
|
-
}, {}
|
|
21
|
+
}, {}>;
|
|
88
22
|
export default _default;
|
|
89
23
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
90
24
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,85 +1,15 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
$data: {};
|
|
5
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
-
config: {
|
|
7
|
-
type: 'code-link';
|
|
8
|
-
name: string;
|
|
9
|
-
text?: string;
|
|
10
|
-
formTitle?: string;
|
|
11
|
-
codeOptions?: Object;
|
|
12
|
-
};
|
|
13
|
-
model: any;
|
|
14
|
-
name: string;
|
|
15
|
-
prop: string;
|
|
16
|
-
}>>> & {
|
|
17
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
18
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
19
|
-
$attrs: {
|
|
20
|
-
[x: string]: unknown;
|
|
21
|
-
};
|
|
22
|
-
$refs: {
|
|
23
|
-
[x: string]: unknown;
|
|
24
|
-
};
|
|
25
|
-
$slots: Readonly<{
|
|
26
|
-
[name: string]: import("vue").Slot | undefined;
|
|
27
|
-
}>;
|
|
28
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
29
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
30
|
-
$emit: (event: "change", ...args: any[]) => void;
|
|
31
|
-
$el: any;
|
|
32
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
33
|
-
config: {
|
|
34
|
-
type: 'code-link';
|
|
35
|
-
name: string;
|
|
36
|
-
text?: string;
|
|
37
|
-
formTitle?: string;
|
|
38
|
-
codeOptions?: Object;
|
|
39
|
-
};
|
|
40
|
-
model: any;
|
|
41
|
-
name: string;
|
|
42
|
-
prop: string;
|
|
43
|
-
}>>> & {
|
|
44
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
45
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], string, {}> & {
|
|
46
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
53
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
54
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
55
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
56
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
57
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
58
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
59
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
60
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
61
|
-
};
|
|
62
|
-
$forceUpdate: () => void;
|
|
63
|
-
$nextTick: typeof import("vue").nextTick;
|
|
64
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
65
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
66
|
-
config: {
|
|
67
|
-
type: 'code-link';
|
|
68
|
-
name: string;
|
|
69
|
-
text?: string;
|
|
70
|
-
formTitle?: string;
|
|
71
|
-
codeOptions?: Object;
|
|
72
|
-
};
|
|
73
|
-
model: any;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
config: {
|
|
3
|
+
type: 'code-link';
|
|
74
4
|
name: string;
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
} & import("vue").
|
|
5
|
+
text?: string;
|
|
6
|
+
formTitle?: string;
|
|
7
|
+
codeOptions?: Object;
|
|
8
|
+
};
|
|
9
|
+
model: any;
|
|
10
|
+
name: string;
|
|
11
|
+
prop: string;
|
|
12
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
83
13
|
config: {
|
|
84
14
|
type: 'code-link';
|
|
85
15
|
name: string;
|
|
@@ -92,7 +22,7 @@ declare const _default: {
|
|
|
92
22
|
prop: string;
|
|
93
23
|
}>>> & {
|
|
94
24
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
95
|
-
}, {}
|
|
25
|
+
}, {}>;
|
|
96
26
|
export default _default;
|
|
97
27
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
98
28
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,87 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const _default: {
|
|
3
|
-
new (...args: any[]): {
|
|
4
|
-
$: import("vue").ComponentInternalInstance;
|
|
5
|
-
$data: {};
|
|
6
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
-
config: {
|
|
8
|
-
selectConfig?: SelectConfig | undefined;
|
|
9
|
-
};
|
|
10
|
-
model: any;
|
|
11
|
-
prop: string;
|
|
12
|
-
name: string;
|
|
13
|
-
size: string;
|
|
14
|
-
}>>> & {
|
|
15
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
17
|
-
$attrs: {
|
|
18
|
-
[x: string]: unknown;
|
|
19
|
-
};
|
|
20
|
-
$refs: {
|
|
21
|
-
[x: string]: unknown;
|
|
22
|
-
};
|
|
23
|
-
$slots: Readonly<{
|
|
24
|
-
[name: string]: import("vue").Slot | undefined;
|
|
25
|
-
}>;
|
|
26
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
27
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
28
|
-
$emit: (event: "change", ...args: any[]) => void;
|
|
29
|
-
$el: any;
|
|
30
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
31
|
-
config: {
|
|
32
|
-
selectConfig?: SelectConfig | undefined;
|
|
33
|
-
};
|
|
34
|
-
model: any;
|
|
35
|
-
prop: string;
|
|
36
|
-
name: string;
|
|
37
|
-
size: string;
|
|
38
|
-
}>>> & {
|
|
39
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], string, {}> & {
|
|
41
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
53
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
54
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
55
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
56
|
-
};
|
|
57
|
-
$forceUpdate: () => void;
|
|
58
|
-
$nextTick: typeof import("vue").nextTick;
|
|
59
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
60
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
61
|
-
config: {
|
|
62
|
-
selectConfig?: SelectConfig | undefined;
|
|
63
|
-
};
|
|
64
|
-
model: any;
|
|
65
|
-
prop: string;
|
|
66
|
-
name: string;
|
|
67
|
-
size: string;
|
|
68
|
-
}>>> & {
|
|
69
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
70
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
71
|
-
__isFragment?: undefined;
|
|
72
|
-
__isTeleport?: undefined;
|
|
73
|
-
__isSuspense?: undefined;
|
|
74
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
1
|
+
import { TableConfig } from '@tmagic/form';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
75
3
|
config: {
|
|
76
|
-
|
|
4
|
+
tableConfig?: TableConfig | undefined;
|
|
77
5
|
};
|
|
78
6
|
model: any;
|
|
79
7
|
prop: string;
|
|
80
8
|
name: string;
|
|
81
|
-
size:
|
|
9
|
+
size: 'mini' | 'small' | 'medium';
|
|
10
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
11
|
+
config: {
|
|
12
|
+
tableConfig?: TableConfig | undefined;
|
|
13
|
+
};
|
|
14
|
+
model: any;
|
|
15
|
+
prop: string;
|
|
16
|
+
name: string;
|
|
17
|
+
size: 'mini' | 'small' | 'medium';
|
|
82
18
|
}>>> & {
|
|
83
19
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
84
|
-
}, {}
|
|
20
|
+
}, {}>;
|
|
85
21
|
export default _default;
|
|
86
22
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
87
23
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,74 +1,16 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
model: any;
|
|
8
|
-
prop: string;
|
|
9
|
-
name: string;
|
|
10
|
-
}>>> & {
|
|
11
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
12
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
13
|
-
$attrs: {
|
|
14
|
-
[x: string]: unknown;
|
|
15
|
-
};
|
|
16
|
-
$refs: {
|
|
17
|
-
[x: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
$slots: Readonly<{
|
|
20
|
-
[name: string]: import("vue").Slot | undefined;
|
|
21
|
-
}>;
|
|
22
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
23
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
24
|
-
$emit: (event: "change", ...args: any[]) => void;
|
|
25
|
-
$el: any;
|
|
26
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
27
|
-
config: any;
|
|
28
|
-
model: any;
|
|
29
|
-
prop: string;
|
|
30
|
-
name: string;
|
|
31
|
-
}>>> & {
|
|
32
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
33
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], string, {}> & {
|
|
34
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
35
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
36
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
37
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
38
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
39
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
40
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
41
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
47
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
48
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
49
|
-
};
|
|
50
|
-
$forceUpdate: () => void;
|
|
51
|
-
$nextTick: typeof import("vue").nextTick;
|
|
52
|
-
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
53
|
-
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
54
|
-
config: any;
|
|
55
|
-
model: any;
|
|
56
|
-
prop: string;
|
|
57
|
-
name: string;
|
|
58
|
-
}>>> & {
|
|
59
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
60
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
61
|
-
__isFragment?: undefined;
|
|
62
|
-
__isTeleport?: undefined;
|
|
63
|
-
__isSuspense?: undefined;
|
|
64
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
config: any;
|
|
3
|
+
model: any;
|
|
4
|
+
prop: string;
|
|
5
|
+
name: string;
|
|
6
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
65
7
|
config: any;
|
|
66
8
|
model: any;
|
|
67
9
|
prop: string;
|
|
68
10
|
name: string;
|
|
69
11
|
}>>> & {
|
|
70
12
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
71
|
-
}, {}
|
|
13
|
+
}, {}>;
|
|
72
14
|
export default _default;
|
|
73
15
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
74
16
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
package/types/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export { default as PropsPanel } from './layouts/PropsPanel.vue';
|
|
|
21
21
|
export { default as ToolButton } from './components/ToolButton.vue';
|
|
22
22
|
export { default as ContentMenu } from './components/ContentMenu.vue';
|
|
23
23
|
export { default as Icon } from './components/Icon.vue';
|
|
24
|
+
export { default as LayoutContainer } from './components/Layout.vue';
|
|
24
25
|
declare const _default: {
|
|
25
26
|
install: (app: App, opt?: InstallOptions) => void;
|
|
26
27
|
};
|