@vtj/designer 0.10.4 → 0.10.6
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/index.mjs +4 -4
- package/package.json +7 -7
- package/types/components/binders/event.d.ts +2 -46
- package/types/components/binders/variable.d.ts +2 -46
- package/types/components/editor/Editor.d.ts +1 -3
- package/types/components/editor/index.d.ts +1 -3
- package/types/components/regions/actions.d.ts +2 -33
- package/types/components/regions/apps.d.ts +2 -33
- package/types/components/regions/brand.d.ts +2 -33
- package/types/components/regions/empty.d.ts +1 -1
- package/types/components/regions/index.d.ts +11 -259
- package/types/components/regions/preview.d.ts +2 -33
- package/types/components/regions/settings.d.ts +2 -33
- package/types/components/regions/status.d.ts +2 -33
- package/types/components/regions/toolbar.d.ts +2 -33
- package/types/components/regions/workspace.d.ts +2 -33
- package/types/components/setters/css.d.ts +2 -46
- package/types/components/setters/file.d.ts +1 -1
- package/types/components/setters/function.d.ts +2 -46
- package/types/components/setters/icon.d.ts +1 -1
- package/types/components/setters/index.d.ts +10 -140
- package/types/components/setters/json.d.ts +2 -46
- 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/setters/vanIcon/index.d.ts +1 -1
- package/types/components/shared/binder.d.ts +70 -742
- package/types/components/shared/box.d.ts +45 -13
- package/types/components/shared/item.d.ts +143 -13
- package/types/components/shared/panel.d.ts +72 -15
- package/types/components/shared/tabs.d.ts +37 -13
- package/types/components/shared/viewer.d.ts +2 -766
- package/types/components/shared/viewport.d.ts +29 -13
- package/types/components/skeleton.d.ts +2 -180
- package/types/components/widgets/about/index.d.ts +1 -1
- package/types/components/widgets/actions/coder.d.ts +1 -1
- package/types/components/widgets/actions/index.d.ts +1 -1
- package/types/components/widgets/apis/base-info.d.ts +1 -1
- package/types/components/widgets/apis/form.d.ts +2 -1520
- 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/css/index.d.ts +2 -46
- package/types/components/widgets/designer/actions.d.ts +1 -1
- package/types/components/widgets/designer/index.d.ts +1 -4
- package/types/components/widgets/docs/index.d.ts +2 -101
- package/types/components/widgets/empty/index.d.ts +1 -1
- package/types/components/widgets/index.d.ts +11 -342
- package/types/components/widgets/market/index.d.ts +2 -101
- package/types/components/widgets/previewer/index.d.ts +1 -4
- package/types/components/widgets/raw/index.d.ts +2 -46
- package/types/components/widgets/schema/index.d.ts +2 -46
- package/types/components/widgets/scripts/group.d.ts +51 -983
- package/types/components/widgets/scripts/lifeCycles.d.ts +2 -46
- package/types/components/widgets/style/JsonMode.d.ts +2 -46
- package/types/components/widgets/style/positioning.d.ts +1 -3
- package/types/components/widgets/style/spacing-input.d.ts +2 -255
- package/types/components/widgets/style/spacing.d.ts +1 -4
- package/types/version.d.ts +2 -2
@@ -1,53 +1,9 @@
|
|
1
1
|
import { BlockModel } from '@vtj/core';
|
2
2
|
import { Context } from '@vtj/renderer';
|
3
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions
|
4
|
-
import { Props } from '../../editor/Editor';
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
5
4
|
export interface Props {
|
6
5
|
context: Context | null;
|
7
6
|
current: BlockModel | null;
|
8
7
|
}
|
9
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
10
|
-
editorRef: CreateComponentPublicInstanceWithMixins<Readonly< Props> & Readonly<{
|
11
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
12
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
13
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
14
|
-
}>, {
|
15
|
-
getEditor: () => import("monaco-editor").editor.IStandaloneCodeEditor | null;
|
16
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
17
|
-
blur: (...args: any[]) => void;
|
18
|
-
change: (...args: any[]) => void;
|
19
|
-
"update:modelValue": (...args: any[]) => void;
|
20
|
-
}, PublicProps, {
|
21
|
-
height: string;
|
22
|
-
modelValue: string;
|
23
|
-
dark: boolean;
|
24
|
-
readonly: boolean;
|
25
|
-
options: import("monaco-editor").editor.IEditorConstructionOptions;
|
26
|
-
lang: string;
|
27
|
-
minimap: boolean;
|
28
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
29
|
-
container: HTMLDivElement;
|
30
|
-
}, HTMLDivElement, ComponentProvideOptions, {
|
31
|
-
P: {};
|
32
|
-
B: {};
|
33
|
-
D: {};
|
34
|
-
C: {};
|
35
|
-
M: {};
|
36
|
-
Defaults: {};
|
37
|
-
}, Readonly< Props> & Readonly<{
|
38
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
39
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
40
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
41
|
-
}>, {
|
42
|
-
getEditor: () => import("monaco-editor").editor.IStandaloneCodeEditor | null;
|
43
|
-
}, {}, {}, {}, {
|
44
|
-
height: string;
|
45
|
-
modelValue: string;
|
46
|
-
dark: boolean;
|
47
|
-
readonly: boolean;
|
48
|
-
options: import("monaco-editor").editor.IEditorConstructionOptions;
|
49
|
-
lang: string;
|
50
|
-
minimap: boolean;
|
51
|
-
}> | null;
|
52
|
-
}, any>;
|
8
|
+
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
53
9
|
export default _default;
|
@@ -1,47 +1,3 @@
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions
|
2
|
-
|
3
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
4
|
-
editorRef: CreateComponentPublicInstanceWithMixins<Readonly< Props> & Readonly<{
|
5
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
6
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
7
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
8
|
-
}>, {
|
9
|
-
getEditor: () => import("monaco-editor").editor.IStandaloneCodeEditor | null;
|
10
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
11
|
-
blur: (...args: any[]) => void;
|
12
|
-
change: (...args: any[]) => void;
|
13
|
-
"update:modelValue": (...args: any[]) => void;
|
14
|
-
}, PublicProps, {
|
15
|
-
height: string;
|
16
|
-
modelValue: string;
|
17
|
-
dark: boolean;
|
18
|
-
readonly: boolean;
|
19
|
-
options: import("monaco-editor").editor.IEditorConstructionOptions;
|
20
|
-
lang: string;
|
21
|
-
minimap: boolean;
|
22
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
23
|
-
container: HTMLDivElement;
|
24
|
-
}, HTMLDivElement, ComponentProvideOptions, {
|
25
|
-
P: {};
|
26
|
-
B: {};
|
27
|
-
D: {};
|
28
|
-
C: {};
|
29
|
-
M: {};
|
30
|
-
Defaults: {};
|
31
|
-
}, Readonly< Props> & Readonly<{
|
32
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
33
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
34
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
35
|
-
}>, {
|
36
|
-
getEditor: () => import("monaco-editor").editor.IStandaloneCodeEditor | null;
|
37
|
-
}, {}, {}, {}, {
|
38
|
-
height: string;
|
39
|
-
modelValue: string;
|
40
|
-
dark: boolean;
|
41
|
-
readonly: boolean;
|
42
|
-
options: import("monaco-editor").editor.IEditorConstructionOptions;
|
43
|
-
lang: string;
|
44
|
-
minimap: boolean;
|
45
|
-
}> | null;
|
46
|
-
}, any>;
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
47
3
|
export default _default;
|
@@ -3,7 +3,5 @@ export interface Props {
|
|
3
3
|
styleJson: Record<string, any>;
|
4
4
|
setStyle: (name: string, value?: any) => void;
|
5
5
|
}
|
6
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
7
|
-
inner: HTMLDivElement;
|
8
|
-
}, any>;
|
6
|
+
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
9
7
|
export default _default;
|
@@ -1,6 +1,4 @@
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions
|
2
|
-
import { ContainerWrap, ContainerDirection, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent } from '@vtj/ui';
|
3
|
-
import { OnCleanup } from '@vue/reactivity';
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
4
2
|
export interface Props {
|
5
3
|
name: string;
|
6
4
|
modelValue?: string;
|
@@ -14,256 +12,5 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
14
12
|
onClose?: ((...args: any[]) => any) | undefined;
|
15
13
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
16
14
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
17
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
18
|
-
bodyRef: ({
|
19
|
-
$: ComponentInternalInstance;
|
20
|
-
$data: {};
|
21
|
-
$props: Partial<{
|
22
|
-
padding: boolean;
|
23
|
-
tag: string;
|
24
|
-
wrap: ContainerWrap;
|
25
|
-
fit: boolean;
|
26
|
-
flex: boolean;
|
27
|
-
inline: boolean;
|
28
|
-
direction: ContainerDirection;
|
29
|
-
justify: ContainerJustifyContent;
|
30
|
-
align: ContainerAlignItems;
|
31
|
-
alignContent: ContainerAlignContent;
|
32
|
-
grow: boolean;
|
33
|
-
shrink: boolean;
|
34
|
-
alignSelf: "auto" | ContainerAlignItems;
|
35
|
-
gap: boolean;
|
36
|
-
autoPointer: boolean;
|
37
|
-
}> & Omit<{
|
38
|
-
readonly tag: string;
|
39
|
-
readonly direction: ContainerDirection;
|
40
|
-
readonly inline: boolean;
|
41
|
-
readonly fit: boolean;
|
42
|
-
readonly padding: boolean;
|
43
|
-
readonly flex: boolean;
|
44
|
-
readonly wrap: ContainerWrap;
|
45
|
-
readonly justify: ContainerJustifyContent;
|
46
|
-
readonly align: ContainerAlignItems;
|
47
|
-
readonly alignContent: ContainerAlignContent;
|
48
|
-
readonly grow: boolean;
|
49
|
-
readonly shrink: boolean;
|
50
|
-
readonly alignSelf: "auto" | ContainerAlignItems;
|
51
|
-
readonly gap: boolean;
|
52
|
-
readonly autoPointer: boolean;
|
53
|
-
readonly height?: string | number | undefined;
|
54
|
-
readonly width?: string | number | undefined;
|
55
|
-
readonly overflow?: "visible" | "hidden" | "auto" | undefined;
|
56
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "tag" | "direction" | "inline" | "fit" | "padding" | "flex" | "wrap" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
|
57
|
-
$attrs: {
|
58
|
-
[x: string]: unknown;
|
59
|
-
};
|
60
|
-
$refs: {
|
61
|
-
[x: string]: unknown;
|
62
|
-
} & {
|
63
|
-
elRef: unknown;
|
64
|
-
};
|
65
|
-
$slots: Readonly<{
|
66
|
-
[name: string]: Slot<any> | undefined;
|
67
|
-
}>;
|
68
|
-
$root: ComponentPublicInstance | null;
|
69
|
-
$parent: ComponentPublicInstance | null;
|
70
|
-
$host: Element | null;
|
71
|
-
$emit: (event: string, ...args: any[]) => void;
|
72
|
-
$el: any;
|
73
|
-
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
74
|
-
tag: {
|
75
|
-
type: StringConstructor;
|
76
|
-
default: string;
|
77
|
-
};
|
78
|
-
fit: {
|
79
|
-
type: BooleanConstructor;
|
80
|
-
default: boolean;
|
81
|
-
};
|
82
|
-
width: {
|
83
|
-
type: (StringConstructor | NumberConstructor)[];
|
84
|
-
};
|
85
|
-
height: {
|
86
|
-
type: (StringConstructor | NumberConstructor)[];
|
87
|
-
};
|
88
|
-
flex: {
|
89
|
-
type: BooleanConstructor;
|
90
|
-
default: boolean;
|
91
|
-
};
|
92
|
-
inline: {
|
93
|
-
type: BooleanConstructor;
|
94
|
-
};
|
95
|
-
direction: {
|
96
|
-
type: PropType<ContainerDirection>;
|
97
|
-
default: string;
|
98
|
-
};
|
99
|
-
wrap: {
|
100
|
-
type: PropType<ContainerWrap>;
|
101
|
-
default: string;
|
102
|
-
};
|
103
|
-
justify: {
|
104
|
-
type: PropType<ContainerJustifyContent>;
|
105
|
-
default: string;
|
106
|
-
};
|
107
|
-
align: {
|
108
|
-
type: PropType<ContainerAlignItems>;
|
109
|
-
default: string;
|
110
|
-
};
|
111
|
-
alignContent: {
|
112
|
-
type: PropType<ContainerAlignContent>;
|
113
|
-
default: string;
|
114
|
-
};
|
115
|
-
grow: {
|
116
|
-
type: BooleanConstructor;
|
117
|
-
default: boolean;
|
118
|
-
};
|
119
|
-
shrink: {
|
120
|
-
type: BooleanConstructor;
|
121
|
-
default: boolean;
|
122
|
-
};
|
123
|
-
alignSelf: {
|
124
|
-
type: PropType<"auto" | ContainerAlignItems>;
|
125
|
-
default: string;
|
126
|
-
};
|
127
|
-
overflow: {
|
128
|
-
type: PropType<"auto" | "hidden" | "visible">;
|
129
|
-
};
|
130
|
-
padding: {
|
131
|
-
type: BooleanConstructor;
|
132
|
-
default: boolean;
|
133
|
-
};
|
134
|
-
gap: {
|
135
|
-
type: BooleanConstructor;
|
136
|
-
};
|
137
|
-
autoPointer: {
|
138
|
-
type: BooleanConstructor;
|
139
|
-
};
|
140
|
-
}>> & Readonly<{}>, {
|
141
|
-
$vtjEl: ComputedRef<any>;
|
142
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
143
|
-
padding: boolean;
|
144
|
-
tag: string;
|
145
|
-
wrap: ContainerWrap;
|
146
|
-
fit: boolean;
|
147
|
-
flex: boolean;
|
148
|
-
inline: boolean;
|
149
|
-
direction: ContainerDirection;
|
150
|
-
justify: ContainerJustifyContent;
|
151
|
-
align: ContainerAlignItems;
|
152
|
-
alignContent: ContainerAlignContent;
|
153
|
-
grow: boolean;
|
154
|
-
shrink: boolean;
|
155
|
-
alignSelf: "auto" | ContainerAlignItems;
|
156
|
-
gap: boolean;
|
157
|
-
autoPointer: boolean;
|
158
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
159
|
-
beforeCreate?: (() => void) | (() => void)[];
|
160
|
-
created?: (() => void) | (() => void)[];
|
161
|
-
beforeMount?: (() => void) | (() => void)[];
|
162
|
-
mounted?: (() => void) | (() => void)[];
|
163
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
164
|
-
updated?: (() => void) | (() => void)[];
|
165
|
-
activated?: (() => void) | (() => void)[];
|
166
|
-
deactivated?: (() => void) | (() => void)[];
|
167
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
168
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
169
|
-
destroyed?: (() => void) | (() => void)[];
|
170
|
-
unmounted?: (() => void) | (() => void)[];
|
171
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
172
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
173
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
174
|
-
};
|
175
|
-
$forceUpdate: () => void;
|
176
|
-
$nextTick: nextTick;
|
177
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
178
|
-
} & Readonly<{
|
179
|
-
padding: boolean;
|
180
|
-
tag: string;
|
181
|
-
wrap: ContainerWrap;
|
182
|
-
fit: boolean;
|
183
|
-
flex: boolean;
|
184
|
-
inline: boolean;
|
185
|
-
direction: ContainerDirection;
|
186
|
-
justify: ContainerJustifyContent;
|
187
|
-
align: ContainerAlignItems;
|
188
|
-
alignContent: ContainerAlignContent;
|
189
|
-
grow: boolean;
|
190
|
-
shrink: boolean;
|
191
|
-
alignSelf: "auto" | ContainerAlignItems;
|
192
|
-
gap: boolean;
|
193
|
-
autoPointer: boolean;
|
194
|
-
}> & Omit<Readonly< ExtractPropTypes<{
|
195
|
-
tag: {
|
196
|
-
type: StringConstructor;
|
197
|
-
default: string;
|
198
|
-
};
|
199
|
-
fit: {
|
200
|
-
type: BooleanConstructor;
|
201
|
-
default: boolean;
|
202
|
-
};
|
203
|
-
width: {
|
204
|
-
type: (StringConstructor | NumberConstructor)[];
|
205
|
-
};
|
206
|
-
height: {
|
207
|
-
type: (StringConstructor | NumberConstructor)[];
|
208
|
-
};
|
209
|
-
flex: {
|
210
|
-
type: BooleanConstructor;
|
211
|
-
default: boolean;
|
212
|
-
};
|
213
|
-
inline: {
|
214
|
-
type: BooleanConstructor;
|
215
|
-
};
|
216
|
-
direction: {
|
217
|
-
type: PropType<ContainerDirection>;
|
218
|
-
default: string;
|
219
|
-
};
|
220
|
-
wrap: {
|
221
|
-
type: PropType<ContainerWrap>;
|
222
|
-
default: string;
|
223
|
-
};
|
224
|
-
justify: {
|
225
|
-
type: PropType<ContainerJustifyContent>;
|
226
|
-
default: string;
|
227
|
-
};
|
228
|
-
align: {
|
229
|
-
type: PropType<ContainerAlignItems>;
|
230
|
-
default: string;
|
231
|
-
};
|
232
|
-
alignContent: {
|
233
|
-
type: PropType<ContainerAlignContent>;
|
234
|
-
default: string;
|
235
|
-
};
|
236
|
-
grow: {
|
237
|
-
type: BooleanConstructor;
|
238
|
-
default: boolean;
|
239
|
-
};
|
240
|
-
shrink: {
|
241
|
-
type: BooleanConstructor;
|
242
|
-
default: boolean;
|
243
|
-
};
|
244
|
-
alignSelf: {
|
245
|
-
type: PropType<"auto" | ContainerAlignItems>;
|
246
|
-
default: string;
|
247
|
-
};
|
248
|
-
overflow: {
|
249
|
-
type: PropType<"auto" | "hidden" | "visible">;
|
250
|
-
};
|
251
|
-
padding: {
|
252
|
-
type: BooleanConstructor;
|
253
|
-
default: boolean;
|
254
|
-
};
|
255
|
-
gap: {
|
256
|
-
type: BooleanConstructor;
|
257
|
-
};
|
258
|
-
autoPointer: {
|
259
|
-
type: BooleanConstructor;
|
260
|
-
};
|
261
|
-
}>> & Readonly<{}>, "tag" | "direction" | "$vtjEl" | "inline" | "fit" | "padding" | "flex" | "wrap" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer"> & ShallowUnwrapRef<{
|
262
|
-
$vtjEl: ComputedRef<any>;
|
263
|
-
}> & {} & ComponentCustomProperties & {} & {
|
264
|
-
$slots: {
|
265
|
-
default?(_: {}): any;
|
266
|
-
};
|
267
|
-
}) | null;
|
268
|
-
}, HTMLDivElement>;
|
15
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
269
16
|
export default _default;
|
@@ -3,8 +3,5 @@ export interface Props {
|
|
3
3
|
styleJson: Record<string, any>;
|
4
4
|
setStyle: (name: string, value?: any) => void;
|
5
5
|
}
|
6
|
-
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
7
|
-
container: HTMLDivElement;
|
8
|
-
inner: HTMLDivElement;
|
9
|
-
}, any>;
|
6
|
+
declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
10
7
|
export default _default;
|
package/types/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/designer
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.10.
|
5
|
+
* @version 0.10.5
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.10.
|
8
|
+
export declare const version = "0.10.5";
|