@zyui/components 0.0.123 → 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 +55 -55
- package/es/index.mjs +9850 -9805
- package/es/src/components/NodesEditor/NodesEditUI.vue.d.ts +3 -1
- package/es/src/components/NodesEditor/PagesizeWrap/index.vue.d.ts +9 -0
- package/es/src/components/NodesEditor/hooks/useInitNode.d.ts +1 -1
- package/es/src/components/NodesEditor/index.vue.d.ts +10 -0
- package/es/style.css +1 -1
- package/lib/src/components/NodesEditor/NodesEditUI.vue.d.ts +3 -1
- package/lib/src/components/NodesEditor/PagesizeWrap/index.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/hooks/useInitNode.d.ts +1 -1
- package/lib/src/components/NodesEditor/index.vue.d.ts +10 -0
- package/package.json +1 -1
|
@@ -12,7 +12,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
12
12
|
type: StringConstructor;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
|
-
}>, {
|
|
15
|
+
}>, {
|
|
16
|
+
initNodes: () => Promise<any[]>;
|
|
17
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
18
|
pagesize: {
|
|
17
19
|
type: StringConstructor;
|
|
18
20
|
default: string;
|
|
@@ -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,11 +59,16 @@ 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;
|
|
71
|
+
initNodes: () => any;
|
|
67
72
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
68
73
|
"update:modelValue": (...args: any[]) => void;
|
|
69
74
|
onSelectedNodes: (...args: any[]) => void;
|
|
@@ -124,6 +129,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
124
129
|
type: ObjectConstructor;
|
|
125
130
|
default: () => {};
|
|
126
131
|
};
|
|
132
|
+
pagesizeWrapStyle: {
|
|
133
|
+
type: ObjectConstructor;
|
|
134
|
+
default: () => {};
|
|
135
|
+
};
|
|
127
136
|
}>> & Readonly<{
|
|
128
137
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
129
138
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -143,6 +152,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
143
152
|
headerHtml: string;
|
|
144
153
|
footerHtml: string;
|
|
145
154
|
orientation: string;
|
|
155
|
+
pagesizeWrapStyle: Record<string, any>;
|
|
146
156
|
pagesizeStyle: Record<string, any>;
|
|
147
157
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
148
158
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|