@zyui/components 0.0.135 → 0.0.137
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 +54 -54
- package/es/index.mjs +6647 -6651
- package/es/src/components/NodesEditor/HtmlRender/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/HtmlRender/index.vue.d.ts +9 -0
- package/lib/src/components/NodesEditor/index.vue.d.ts +9 -0
- package/package.json +3 -3
|
@@ -11,6 +11,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11
11
|
type: StringConstructor;
|
|
12
12
|
default: string;
|
|
13
13
|
};
|
|
14
|
+
autoHeight: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
14
18
|
}>, {
|
|
15
19
|
renderHtml: () => void;
|
|
16
20
|
getInnerHTML: () => any;
|
|
@@ -30,11 +34,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
30
34
|
type: StringConstructor;
|
|
31
35
|
default: string;
|
|
32
36
|
};
|
|
37
|
+
autoHeight: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
33
41
|
}>> & Readonly<{
|
|
34
42
|
onOnUiReady?: ((...args: any[]) => any) | undefined;
|
|
35
43
|
}>, {
|
|
36
44
|
pagesize: string;
|
|
37
45
|
headerHtml: string;
|
|
38
46
|
footerHtml: string;
|
|
47
|
+
autoHeight: boolean;
|
|
39
48
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
40
49
|
export default _default;
|
|
@@ -67,6 +67,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
67
67
|
type: BooleanConstructor;
|
|
68
68
|
default: boolean;
|
|
69
69
|
};
|
|
70
|
+
autoHeight: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
70
74
|
}>, {
|
|
71
75
|
formRef: {
|
|
72
76
|
validate: () => any;
|
|
@@ -143,6 +147,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
143
147
|
type: BooleanConstructor;
|
|
144
148
|
default: boolean;
|
|
145
149
|
};
|
|
150
|
+
autoHeight: {
|
|
151
|
+
type: BooleanConstructor;
|
|
152
|
+
default: boolean;
|
|
153
|
+
};
|
|
146
154
|
}>> & Readonly<{
|
|
147
155
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
148
156
|
onOnSelectedNodes?: ((...args: any[]) => any) | undefined;
|
|
@@ -161,6 +169,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
161
169
|
pagesize: string;
|
|
162
170
|
headerHtml: string;
|
|
163
171
|
footerHtml: string;
|
|
172
|
+
autoHeight: boolean;
|
|
164
173
|
orientation: string;
|
|
165
174
|
pagesizeWrapStyle: Record<string, any>;
|
|
166
175
|
pagesizeStyle: Record<string, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zyui/components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.137",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.mjs",
|
|
6
6
|
"types": "./es/index.d.ts",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"vue-hooks-plus": "^2.2.1",
|
|
44
44
|
"xmldom": "^0.6.0",
|
|
45
45
|
"xpath": "^0.0.34",
|
|
46
|
-
"@zyui/
|
|
47
|
-
"@zyui/
|
|
46
|
+
"@zyui/hooks": "0.0.5",
|
|
47
|
+
"@zyui/utils": "0.0.9"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/lodash-es": "^4.17.12"
|