@zyui/components 0.0.124 → 0.0.126
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/es/index.js +69 -69
- package/es/index.mjs +15701 -15644
- package/es/src/components/NodesEditor/HtmlRender/index.vue.d.ts +2 -0
- package/es/src/components/NodesEditor/PagesizeWrap/index.vue.d.ts +9 -0
- package/es/src/components/NodesEditor/index.vue.d.ts +11 -0
- package/es/style.css +1 -1
- package/lib/src/components/NodesEditor/HtmlRender/index.vue.d.ts +2 -0
- package/lib/src/components/NodesEditor/PagesizeWrap/index.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/index.vue.d.ts +11 -0
- package/package.json +1 -1
|
@@ -13,6 +13,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
};
|
|
14
14
|
}>, {
|
|
15
15
|
renderHtml: () => void;
|
|
16
|
+
getInnerHTML: () => any;
|
|
17
|
+
getContainerHTML: () => string;
|
|
16
18
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
19
|
onUiReady: (...args: any[]) => void;
|
|
18
20
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -14,6 +14,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
14
14
|
type: ObjectConstructor;
|
|
15
15
|
default: () => {};
|
|
16
16
|
};
|
|
17
|
+
pagesizeWrapStyle: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
default: () => {};
|
|
20
|
+
};
|
|
17
21
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
18
22
|
pagesize: {
|
|
19
23
|
type: StringConstructor;
|
|
@@ -27,10 +31,15 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
27
31
|
type: ObjectConstructor;
|
|
28
32
|
default: () => {};
|
|
29
33
|
};
|
|
34
|
+
pagesizeWrapStyle: {
|
|
35
|
+
type: ObjectConstructor;
|
|
36
|
+
default: () => {};
|
|
37
|
+
};
|
|
30
38
|
}>> & Readonly<{}>, {
|
|
31
39
|
style: Record<string, any>;
|
|
32
40
|
pagesize: string;
|
|
33
41
|
orientation: string;
|
|
42
|
+
pagesizeWrapStyle: Record<string, any>;
|
|
34
43
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
35
44
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
36
45
|
export default _default;
|
|
@@ -59,12 +59,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
59
59
|
type: ObjectConstructor;
|
|
60
60
|
default: () => {};
|
|
61
61
|
};
|
|
62
|
+
pagesizeWrapStyle: {
|
|
63
|
+
type: ObjectConstructor;
|
|
64
|
+
default: () => {};
|
|
65
|
+
};
|
|
62
66
|
}>, {
|
|
63
67
|
formRef: {
|
|
64
68
|
validate: () => any;
|
|
65
69
|
};
|
|
66
70
|
setSelectedNodes: (nodes: NodeItem[]) => void;
|
|
67
71
|
initNodes: () => any;
|
|
72
|
+
getInnerHTML: () => any;
|
|
73
|
+
getContainerHTML: () => any;
|
|
68
74
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
69
75
|
"update:modelValue": (...args: any[]) => void;
|
|
70
76
|
onSelectedNodes: (...args: any[]) => void;
|
|
@@ -125,6 +131,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
125
131
|
type: ObjectConstructor;
|
|
126
132
|
default: () => {};
|
|
127
133
|
};
|
|
134
|
+
pagesizeWrapStyle: {
|
|
135
|
+
type: ObjectConstructor;
|
|
136
|
+
default: () => {};
|
|
137
|
+
};
|
|
128
138
|
}>> & Readonly<{
|
|
129
139
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
130
140
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -144,6 +154,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
144
154
|
headerHtml: string;
|
|
145
155
|
footerHtml: string;
|
|
146
156
|
orientation: string;
|
|
157
|
+
pagesizeWrapStyle: Record<string, any>;
|
|
147
158
|
pagesizeStyle: Record<string, any>;
|
|
148
159
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
149
160
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|