@zyui/components 0.0.105 → 0.0.107
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 +32 -32
- package/es/index.mjs +4392 -4358
- 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
|
@@ -6,13 +6,22 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
6
6
|
type: StringConstructor;
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
|
+
orientation: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
9
13
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
10
14
|
pagesize: {
|
|
11
15
|
type: StringConstructor;
|
|
12
16
|
default: string;
|
|
13
17
|
};
|
|
18
|
+
orientation: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
14
22
|
}>> & Readonly<{}>, {
|
|
15
23
|
pagesize: string;
|
|
24
|
+
orientation: string;
|
|
16
25
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
18
27
|
export default _default;
|
|
@@ -19,6 +19,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
19
19
|
type: StringConstructor;
|
|
20
20
|
default: string;
|
|
21
21
|
};
|
|
22
|
+
orientation: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
22
26
|
renderType: {
|
|
23
27
|
type: () => RenderType;
|
|
24
28
|
default: string;
|
|
@@ -75,6 +79,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
75
79
|
type: StringConstructor;
|
|
76
80
|
default: string;
|
|
77
81
|
};
|
|
82
|
+
orientation: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
78
86
|
renderType: {
|
|
79
87
|
type: () => RenderType;
|
|
80
88
|
default: string;
|
|
@@ -124,6 +132,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
124
132
|
pagesize: string;
|
|
125
133
|
headerHtml: string;
|
|
126
134
|
footerHtml: string;
|
|
135
|
+
orientation: string;
|
|
127
136
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
128
137
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
129
138
|
export default _default;
|