@vtj/designer 0.9.2 → 0.9.4
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/{Editor-C1dy1R3N.js → Editor-ZiUDqfgK.js} +1 -1
- package/dist/css.worker-DcQjDQkA.js +109 -0
- package/dist/editor.worker-lG8NyUhA.js +25 -0
- package/dist/html.worker-B83UVBG6.js +25 -0
- package/dist/index.mjs +1811 -1785
- package/dist/json.worker-Deqi-XXW.js +25 -0
- package/dist/style.css +1 -1
- package/dist/ts.worker-P1pVlN2Z.js +51359 -0
- package/package.json +8 -8
- package/types/components/editor/Editor.d.ts +1 -1
- package/types/components/editor/index.d.ts +1 -1
- package/types/components/regions/empty.d.ts +1 -1
- package/types/components/regions/index.d.ts +2 -2
- package/types/components/regions/toolbar.d.ts +1 -1
- package/types/components/setters/file.d.ts +1 -1
- package/types/components/setters/function.d.ts +1 -1
- package/types/components/setters/icon.d.ts +1 -1
- package/types/components/setters/index.d.ts +7 -7
- package/types/components/setters/json.d.ts +1 -1
- package/types/components/setters/section.d.ts +1 -1
- package/types/components/setters/slider.d.ts +1 -1
- package/types/components/setters/tag.d.ts +1 -1
- package/types/components/shared/binder.d.ts +2 -1
- package/types/components/shared/box.d.ts +3 -2
- package/types/components/shared/item.d.ts +2 -1
- package/types/components/shared/panel.d.ts +2 -1
- package/types/components/shared/tabs.d.ts +2 -1
- package/types/components/shared/viewer.d.ts +1 -1
- package/types/components/shared/viewport.d.ts +3 -2
- package/types/components/widgets/about/index.d.ts +1 -1
- package/types/components/widgets/actions/coder.d.ts +1 -1
- package/types/components/widgets/apis/base-info.d.ts +1 -1
- package/types/components/widgets/apis/jsonp-options.d.ts +1 -1
- package/types/components/widgets/apis/mock-template.d.ts +1 -1
- package/types/components/widgets/apis/request-settings.d.ts +1 -1
- package/types/components/widgets/designer/actions.d.ts +1 -1
- package/types/components/widgets/empty/index.d.ts +1 -1
- package/types/components/widgets/index.d.ts +3 -3
- package/types/components/widgets/previewer/index.d.ts +1 -1
- package/types/components/widgets/scripts/group.d.ts +3 -2
- package/types/components/widgets/style/spacing-input.d.ts +1 -1
- package/types/version.d.ts +3 -3
- package/dist/css.worker-BkwH8iYE.js +0 -25
- package/dist/editor.worker-C8k3yDdT.js +0 -25
- package/dist/html.worker-DefZQYbA.js +0 -25
- package/dist/json.worker-05I1Fjzo.js +0 -25
- package/dist/ts.worker-Dn3IQaLA.js +0 -25
package/package.json
CHANGED
@@ -1,23 +1,23 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/designer",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.9.
|
4
|
+
"version": "0.9.4",
|
5
5
|
"type": "module",
|
6
6
|
"dependencies": {
|
7
7
|
"html2canvas": "~1.4.1",
|
8
8
|
"mockjs": "~1.1.0",
|
9
|
-
"monaco-editor": "~0.
|
10
|
-
"@vtj/core": "~0.9.
|
11
|
-
"@vtj/icons": "~0.9.
|
12
|
-
"@vtj/renderer": "~0.9.
|
13
|
-
"@vtj/ui": "~0.9.
|
14
|
-
"@vtj/utils": "~0.9.
|
9
|
+
"monaco-editor": "~0.52.0",
|
10
|
+
"@vtj/core": "~0.9.4",
|
11
|
+
"@vtj/icons": "~0.9.4",
|
12
|
+
"@vtj/renderer": "~0.9.4",
|
13
|
+
"@vtj/ui": "~0.9.4",
|
14
|
+
"@vtj/utils": "~0.9.4"
|
15
15
|
},
|
16
16
|
"devDependencies": {
|
17
17
|
"@types/mockjs": "~1.0.10",
|
18
18
|
"vue": "~3.5.5",
|
19
19
|
"vue-router": "~4.5.0",
|
20
|
-
"@vtj/cli": "~0.9.
|
20
|
+
"@vtj/cli": "~0.9.2"
|
21
21
|
},
|
22
22
|
"files": [
|
23
23
|
"dist",
|
@@ -28,5 +28,5 @@ declare const _default: DefineComponent<Props, {
|
|
28
28
|
options: monacoEditor.IEditorConstructionOptions;
|
29
29
|
lang: string;
|
30
30
|
minimap: boolean;
|
31
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
31
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
32
32
|
export default _default;
|
@@ -18,5 +18,5 @@ declare const _default: DefineComponent<Props, {
|
|
18
18
|
options: import("monaco-editor").editor.IEditorConstructionOptions;
|
19
19
|
lang: string;
|
20
20
|
minimap: boolean;
|
21
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
21
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
22
22
|
export default _default;
|
@@ -2,5 +2,5 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
2
2
|
export interface Props {
|
3
3
|
region: string;
|
4
4
|
}
|
5
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
5
|
+
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
6
6
|
export default _default;
|
@@ -10,7 +10,7 @@ import { Props } from './settings';
|
|
10
10
|
import { Props } from './status';
|
11
11
|
import { Props } from './preview';
|
12
12
|
export declare const regions: {
|
13
|
-
EmptyRegion: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
13
|
+
EmptyRegion: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
14
14
|
Brand: DefineComponent<Props, {
|
15
15
|
widgets: ComputedRef< Widget[]>;
|
16
16
|
widgetsRef: Ref<any, any>;
|
@@ -18,7 +18,7 @@ export declare const regions: {
|
|
18
18
|
Toolbar: DefineComponent<Props, {
|
19
19
|
widgets: ComputedRef< Widget[]>;
|
20
20
|
widgetsRef: Ref<any, any>;
|
21
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
21
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
22
22
|
Actions: DefineComponent<Props, {
|
23
23
|
widgets: ComputedRef< Widget[]>;
|
24
24
|
widgetsRef: Ref<any, any>;
|
@@ -8,5 +8,5 @@ export interface Props {
|
|
8
8
|
declare const _default: DefineComponent<Props, {
|
9
9
|
widgets: ComputedRef< Widget[]>;
|
10
10
|
widgetsRef: Ref<any, any>;
|
11
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
11
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
12
12
|
export default _default;
|
@@ -9,5 +9,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
9
9
|
}, string, PublicProps, Readonly<Props> & Readonly<{
|
10
10
|
onChange?: ((...args: any[]) => any) | undefined;
|
11
11
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
12
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
12
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
13
13
|
export default _default;
|
@@ -9,5 +9,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
9
9
|
onChange?: ((...args: any[]) => any) | undefined;
|
10
10
|
}>, {
|
11
11
|
modelValue: JSFunction;
|
12
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
12
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
13
13
|
export default _default;
|
@@ -12,5 +12,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
12
12
|
}>, {
|
13
13
|
size: "small" | "large" | "default" | "";
|
14
14
|
modelValue: string;
|
15
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
15
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
16
16
|
export default _default;
|
@@ -42,7 +42,7 @@ export declare const setters: {
|
|
42
42
|
}>, {
|
43
43
|
size: "small" | "large" | "default" | "";
|
44
44
|
modelValue: string;
|
45
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
45
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
46
46
|
JsonSetter: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
47
47
|
change: (...args: any[]) => void;
|
48
48
|
}, string, PublicProps, Readonly< Props> & Readonly<{
|
@@ -50,14 +50,14 @@ export declare const setters: {
|
|
50
50
|
}>, {
|
51
51
|
type: "Array" | "Object" | "JSON";
|
52
52
|
modelValue: any;
|
53
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
53
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
54
54
|
FunctionSetter: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
55
55
|
change: (...args: any[]) => void;
|
56
56
|
}, string, PublicProps, Readonly< Props> & Readonly<{
|
57
57
|
onChange?: ((...args: any[]) => any) | undefined;
|
58
58
|
}>, {
|
59
59
|
modelValue: JSFunction;
|
60
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
60
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
61
61
|
RadioSetter: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {
|
62
62
|
options: {
|
63
63
|
label: string;
|
@@ -77,7 +77,7 @@ export declare const setters: {
|
|
77
77
|
value: any;
|
78
78
|
svg?: string;
|
79
79
|
}[];
|
80
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
80
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
81
81
|
SizeSetter: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
82
82
|
change: (...args: any[]) => void;
|
83
83
|
}, string, PublicProps, Readonly< Props> & Readonly<{
|
@@ -98,7 +98,7 @@ export declare const setters: {
|
|
98
98
|
onChange?: ((...args: any[]) => any) | undefined;
|
99
99
|
}>, {
|
100
100
|
sections: number;
|
101
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
101
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
102
102
|
SliderSetter: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
103
103
|
change: (...args: any[]) => void;
|
104
104
|
"update:modelValue": (...args: any[]) => void;
|
@@ -107,12 +107,12 @@ export declare const setters: {
|
|
107
107
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
108
108
|
}>, {
|
109
109
|
modelValue: number | number[];
|
110
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
110
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
111
111
|
FileSetter: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
112
112
|
change: (...args: any[]) => void;
|
113
113
|
"update:modelValue": (...args: any[]) => void;
|
114
114
|
}, string, PublicProps, Readonly< Props> & Readonly<{
|
115
115
|
onChange?: ((...args: any[]) => any) | undefined;
|
116
116
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
117
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
117
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
118
118
|
};
|
@@ -10,5 +10,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
10
10
|
}>, {
|
11
11
|
type: "Array" | "Object" | "JSON";
|
12
12
|
modelValue: any;
|
13
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
13
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
14
14
|
export default _default;
|
@@ -9,5 +9,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
9
9
|
onChange?: ((...args: any[]) => any) | undefined;
|
10
10
|
}>, {
|
11
11
|
sections: number;
|
12
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
12
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
13
13
|
export default _default;
|
@@ -10,5 +10,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
10
10
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
11
11
|
}>, {
|
12
12
|
modelValue: number | number[];
|
13
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
13
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
14
14
|
export default _default;
|
@@ -19,5 +19,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
19
19
|
value: any;
|
20
20
|
svg?: string;
|
21
21
|
}[];
|
22
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
22
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
23
23
|
export default _default;
|
@@ -15,6 +15,7 @@ export interface Props {
|
|
15
15
|
unbindEnabled?: boolean;
|
16
16
|
}
|
17
17
|
declare function __VLS_template(): {
|
18
|
+
attrs: Partial<{}>;
|
18
19
|
slots: {
|
19
20
|
default?(_: {}): any;
|
20
21
|
};
|
@@ -196,7 +197,7 @@ declare function __VLS_template(): {
|
|
196
197
|
};
|
197
198
|
}) | null;
|
198
199
|
};
|
199
|
-
|
200
|
+
rootEl: any;
|
200
201
|
};
|
201
202
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
202
203
|
declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
@@ -9,11 +9,12 @@ export interface Props {
|
|
9
9
|
tagType?: 'warning' | 'success' | 'danger' | 'primary';
|
10
10
|
}
|
11
11
|
declare function __VLS_template(): {
|
12
|
+
attrs: Partial<{}>;
|
12
13
|
slots: {
|
13
14
|
default?(_: {}): any;
|
14
15
|
};
|
15
16
|
refs: {};
|
16
|
-
|
17
|
+
rootEl: HTMLDivElement;
|
17
18
|
};
|
18
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
19
20
|
declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
@@ -28,7 +29,7 @@ declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentO
|
|
28
29
|
onDragstart?: ((...args: any[]) => any) | undefined;
|
29
30
|
onEdit?: ((...args: any[]) => any) | undefined;
|
30
31
|
onRemove?: ((...args: any[]) => any) | undefined;
|
31
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
32
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
32
33
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
33
34
|
export default _default;
|
34
35
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
@@ -66,12 +66,13 @@ export interface Props {
|
|
66
66
|
textTags?: string[];
|
67
67
|
}
|
68
68
|
declare function __VLS_template(): {
|
69
|
+
attrs: Partial<{}>;
|
69
70
|
slots: {
|
70
71
|
default?(_: {}): any;
|
71
72
|
status?(_: {}): any;
|
72
73
|
};
|
73
74
|
refs: {};
|
74
|
-
|
75
|
+
rootEl: any;
|
75
76
|
};
|
76
77
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
77
78
|
declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
@@ -14,13 +14,14 @@ export interface Props {
|
|
14
14
|
menus?: ActionMenuItem[];
|
15
15
|
}
|
16
16
|
declare function __VLS_template(): {
|
17
|
+
attrs: Partial<{}>;
|
17
18
|
slots: {
|
18
19
|
actions?(_: {}): any;
|
19
20
|
default?(_: {}): any;
|
20
21
|
footer?(_: {}): any;
|
21
22
|
};
|
22
23
|
refs: {};
|
23
|
-
|
24
|
+
rootEl: any;
|
24
25
|
};
|
25
26
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
26
27
|
declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
@@ -8,11 +8,12 @@ export interface Props {
|
|
8
8
|
checkable?: boolean;
|
9
9
|
}
|
10
10
|
declare function __VLS_template(): {
|
11
|
+
attrs: Partial<{}>;
|
11
12
|
slots: {
|
12
13
|
default?(_: {}): any;
|
13
14
|
};
|
14
15
|
refs: {};
|
15
|
-
|
16
|
+
rootEl: any;
|
16
17
|
};
|
17
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
18
19
|
declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
@@ -9,5 +9,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
9
9
|
}, string, PublicProps, Readonly<Props> & Readonly<{
|
10
10
|
onCopy?: ((...args: any[]) => any) | undefined;
|
11
11
|
onPick?: ((...args: any[]) => any) | undefined;
|
12
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
12
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
13
13
|
export default _default;
|
@@ -5,16 +5,17 @@ export interface Props {
|
|
5
5
|
height?: number;
|
6
6
|
}
|
7
7
|
declare function __VLS_template(): {
|
8
|
+
attrs: Partial<{}>;
|
8
9
|
slots: {
|
9
10
|
default?(_: {}): any;
|
10
11
|
};
|
11
12
|
refs: {};
|
12
|
-
|
13
|
+
rootEl: HTMLDivElement;
|
13
14
|
};
|
14
15
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
15
16
|
declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
|
16
17
|
mode: "pc" | "pad" | "mobile";
|
17
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
18
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
18
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
19
20
|
export default _default;
|
20
21
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
@@ -4,5 +4,5 @@ export interface Props {
|
|
4
4
|
isLogined: any;
|
5
5
|
toRemoteAuth: any;
|
6
6
|
}
|
7
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
7
|
+
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
8
8
|
export default _default;
|
@@ -2,5 +2,5 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
2
2
|
export interface Props {
|
3
3
|
link?: string;
|
4
4
|
}
|
5
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
5
|
+
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
6
6
|
export default _default;
|
@@ -2,5 +2,5 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
2
2
|
export interface Props {
|
3
3
|
categories?: string[];
|
4
4
|
}
|
5
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
5
|
+
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
6
6
|
export default _default;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
3
3
|
export default _default;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
3
3
|
export default _default;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
3
3
|
export default _default;
|
@@ -15,5 +15,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
15
15
|
onAction?: ((...args: any[]) => any) | undefined;
|
16
16
|
}>, {
|
17
17
|
path: Array<NodeModel | BlockModel>;
|
18
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
18
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
19
19
|
export default _default;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
3
3
|
export default _default;
|
@@ -11,7 +11,7 @@ export declare const widgets: {
|
|
11
11
|
Logo: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {
|
12
12
|
text: string;
|
13
13
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
14
|
-
EmptyWidget: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
14
|
+
EmptyWidget: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
15
15
|
Switcher: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
16
16
|
click: (...args: any[]) => void;
|
17
17
|
}, string, PublicProps, Readonly<{}> & Readonly<{
|
@@ -45,7 +45,7 @@ export declare const widgets: {
|
|
45
45
|
Style: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
46
46
|
Previewer: DefineComponent<Props, {
|
47
47
|
refresh: () => void;
|
48
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
48
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
49
49
|
NodePath: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
50
50
|
Schema: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
51
51
|
Raw: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
@@ -55,7 +55,7 @@ export declare const widgets: {
|
|
55
55
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {
|
56
56
|
url: string;
|
57
57
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
58
|
-
About: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
58
|
+
About: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
59
59
|
ProjectConfig: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
60
60
|
Market: DefineComponent<{}, {
|
61
61
|
openDesigner: () => void;
|
@@ -5,5 +5,5 @@ export interface Props {
|
|
5
5
|
}
|
6
6
|
declare const _default: DefineComponent<Props, {
|
7
7
|
refresh: () => void;
|
8
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
8
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
9
9
|
export default _default;
|
@@ -18,6 +18,7 @@ export interface Props {
|
|
18
18
|
itemTitle?: (data: any) => string;
|
19
19
|
}
|
20
20
|
declare function __VLS_template(): {
|
21
|
+
attrs: Partial<{}>;
|
21
22
|
slots: {
|
22
23
|
fields?(_: {
|
23
24
|
model: any;
|
@@ -320,7 +321,7 @@ declare function __VLS_template(): {
|
|
320
321
|
options: import("monaco-editor").editor.IEditorConstructionOptions;
|
321
322
|
lang: string;
|
322
323
|
minimap: boolean;
|
323
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {},
|
324
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
|
324
325
|
P: {};
|
325
326
|
B: {};
|
326
327
|
D: {};
|
@@ -343,7 +344,7 @@ declare function __VLS_template(): {
|
|
343
344
|
minimap: boolean;
|
344
345
|
}> | null;
|
345
346
|
};
|
346
|
-
|
347
|
+
rootEl: any;
|
347
348
|
};
|
348
349
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
349
350
|
declare const __VLS_component: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
|
@@ -12,5 +12,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
12
12
|
onClose?: ((...args: any[]) => any) | undefined;
|
13
13
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
14
14
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
15
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
15
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
16
16
|
export default _default;
|
package/types/version.d.ts
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
/**!
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/designer
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.9.
|
5
|
+
* @version 0.9.3
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.9.
|
8
|
+
export declare const version = "0.9.3";
|