@zyui/components 0.0.131 → 0.0.132
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 +22 -22
- package/es/index.mjs +5834 -5826
- package/es/src/components/NodesEditor/index.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/index.vue.d.ts +9 -0
- package/package.json +1 -1
|
@@ -63,6 +63,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
63
63
|
type: ObjectConstructor;
|
|
64
64
|
default: () => {};
|
|
65
65
|
};
|
|
66
|
+
hasPageSizeWrap: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
66
70
|
}>, {
|
|
67
71
|
formRef: {
|
|
68
72
|
validate: () => any;
|
|
@@ -135,6 +139,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
135
139
|
type: ObjectConstructor;
|
|
136
140
|
default: () => {};
|
|
137
141
|
};
|
|
142
|
+
hasPageSizeWrap: {
|
|
143
|
+
type: BooleanConstructor;
|
|
144
|
+
default: boolean;
|
|
145
|
+
};
|
|
138
146
|
}>> & Readonly<{
|
|
139
147
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
140
148
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -156,6 +164,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
156
164
|
orientation: string;
|
|
157
165
|
pagesizeWrapStyle: Record<string, any>;
|
|
158
166
|
pagesizeStyle: Record<string, any>;
|
|
167
|
+
hasPageSizeWrap: boolean;
|
|
159
168
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
160
169
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
161
170
|
export default _default;
|
|
@@ -63,6 +63,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
63
63
|
type: ObjectConstructor;
|
|
64
64
|
default: () => {};
|
|
65
65
|
};
|
|
66
|
+
hasPageSizeWrap: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
66
70
|
}>, {
|
|
67
71
|
formRef: {
|
|
68
72
|
validate: () => any;
|
|
@@ -135,6 +139,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
135
139
|
type: ObjectConstructor;
|
|
136
140
|
default: () => {};
|
|
137
141
|
};
|
|
142
|
+
hasPageSizeWrap: {
|
|
143
|
+
type: BooleanConstructor;
|
|
144
|
+
default: boolean;
|
|
145
|
+
};
|
|
138
146
|
}>> & Readonly<{
|
|
139
147
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
140
148
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -156,6 +164,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
156
164
|
orientation: string;
|
|
157
165
|
pagesizeWrapStyle: Record<string, any>;
|
|
158
166
|
pagesizeStyle: Record<string, any>;
|
|
167
|
+
hasPageSizeWrap: boolean;
|
|
159
168
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
160
169
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
161
170
|
export default _default;
|