@zyui/components 0.0.124 → 0.0.125
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 +68 -68
- package/es/index.mjs +15038 -14999
- package/es/src/components/NodesEditor/PagesizeWrap/index.vue.d.ts +9 -0
- package/es/src/components/NodesEditor/index.vue.d.ts +9 -0
- package/es/style.css +1 -1
- package/lib/src/components/NodesEditor/PagesizeWrap/index.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/index.vue.d.ts +9 -0
- package/package.json +1 -1
|
@@ -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,6 +59,10 @@ 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;
|
|
@@ -125,6 +129,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
125
129
|
type: ObjectConstructor;
|
|
126
130
|
default: () => {};
|
|
127
131
|
};
|
|
132
|
+
pagesizeWrapStyle: {
|
|
133
|
+
type: ObjectConstructor;
|
|
134
|
+
default: () => {};
|
|
135
|
+
};
|
|
128
136
|
}>> & Readonly<{
|
|
129
137
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
130
138
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -144,6 +152,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
144
152
|
headerHtml: string;
|
|
145
153
|
footerHtml: string;
|
|
146
154
|
orientation: string;
|
|
155
|
+
pagesizeWrapStyle: Record<string, any>;
|
|
147
156
|
pagesizeStyle: Record<string, any>;
|
|
148
157
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
149
158
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|