@10yun/cv-pc-ui 0.3.52 → 0.3.54
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/lib/cv-ui.cjs +6 -6
- package/lib/cv-ui.css +1 -1
- package/lib/cv-ui.js +213 -197
- package/package.json +14 -14
- package/src/mixins/attrs.js +2 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@10yun/cv-pc-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.54",
|
|
4
4
|
"description": "cvjs-pc-ui组件",
|
|
5
5
|
"author": "10yun",
|
|
6
6
|
"private": false,
|
|
@@ -50,42 +50,42 @@
|
|
|
50
50
|
"@codemirror/lang-cpp": "^6.0.3",
|
|
51
51
|
"@codemirror/lang-css": "^6.3.1",
|
|
52
52
|
"@codemirror/lang-go": "^6.0.1",
|
|
53
|
-
"@codemirror/lang-html": "^6.4.
|
|
53
|
+
"@codemirror/lang-html": "^6.4.11",
|
|
54
54
|
"@codemirror/lang-java": "^6.0.2",
|
|
55
55
|
"@codemirror/lang-javascript": "^6.2.4",
|
|
56
56
|
"@codemirror/lang-json": "^6.0.2",
|
|
57
57
|
"@codemirror/lang-lezer": "^6.0.2",
|
|
58
|
-
"@codemirror/lang-markdown": "^6.
|
|
58
|
+
"@codemirror/lang-markdown": "^6.4.0",
|
|
59
59
|
"@codemirror/lang-php": "^6.0.2",
|
|
60
60
|
"@codemirror/lang-python": "^6.2.1",
|
|
61
61
|
"@codemirror/lang-rust": "^6.0.2",
|
|
62
|
-
"@codemirror/lang-sql": "^6.
|
|
62
|
+
"@codemirror/lang-sql": "^6.10.0",
|
|
63
63
|
"@codemirror/lang-vue": "^0.1.3",
|
|
64
64
|
"@codemirror/lang-xml": "^6.1.0",
|
|
65
65
|
"@codemirror/language": "6.x",
|
|
66
|
-
"@codemirror/legacy-modes": "^6.5.
|
|
66
|
+
"@codemirror/legacy-modes": "^6.5.2",
|
|
67
67
|
"@codemirror/state": "6.x",
|
|
68
68
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
69
69
|
"@codemirror/view": "6.x",
|
|
70
|
-
"@ddietr/codemirror-themes": "^1.5.
|
|
70
|
+
"@ddietr/codemirror-themes": "^1.5.2",
|
|
71
71
|
"@element-plus/icons-vue": "^2.3.2",
|
|
72
72
|
"@lezer/highlight": "^1.2.1",
|
|
73
|
-
"@vitejs/plugin-vue-jsx": "^5.1.
|
|
74
|
-
"@vueuse/core": "^13.
|
|
73
|
+
"@vitejs/plugin-vue-jsx": "^5.1.1",
|
|
74
|
+
"@vueuse/core": "^13.9.0",
|
|
75
75
|
"codemirror": "^6.0.2",
|
|
76
|
-
"element-plus": "^2.11.
|
|
76
|
+
"element-plus": "^2.11.4",
|
|
77
77
|
"highlight.js": "^11.11.1",
|
|
78
78
|
"html-to-md": "^0.8.8",
|
|
79
|
-
"vue": "^3.5.
|
|
79
|
+
"vue": "^3.5.22",
|
|
80
80
|
"vue-cropper": "^1.1.4",
|
|
81
|
-
"vue-router": "^4.
|
|
81
|
+
"vue-router": "^4.6.0"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@10yun/cv-js-utils": "^0.3.
|
|
84
|
+
"@10yun/cv-js-utils": "^0.3.33",
|
|
85
85
|
"@rollup/plugin-terser": "^0.4.4",
|
|
86
86
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
87
|
-
"vite": "^7.1.
|
|
88
|
-
"vue-tsc": "^3.
|
|
87
|
+
"vite": "^7.1.9",
|
|
88
|
+
"vue-tsc": "^3.1.1"
|
|
89
89
|
},
|
|
90
90
|
"engines": {
|
|
91
91
|
"node": ">=20.0.0"
|
package/src/mixins/attrs.js
CHANGED
|
@@ -21,6 +21,8 @@ export default {
|
|
|
21
21
|
const globalCompoAttr = globalAttrs[this.componentName] || {};
|
|
22
22
|
const lastCompAttrs = Object.assign({}, globalUploadAttrs, globalCompoAttr);
|
|
23
23
|
// console.log('---lastCompAttrs---', this.componentName, lastCompAttrs, this.$props, this.$attrs);
|
|
24
|
+
console.log(globalAttrs);
|
|
25
|
+
console.log(globalCompoAttr);
|
|
24
26
|
return Object.assign(
|
|
25
27
|
{},
|
|
26
28
|
lastCompAttrs,
|
|
@@ -29,9 +31,6 @@ export default {
|
|
|
29
31
|
// { disabled: this.disabled || this.$attrs.disabled },
|
|
30
32
|
// { readonly: this.readonly || this.$attrs.readonly }
|
|
31
33
|
);
|
|
32
|
-
console.log(globalAttrs);
|
|
33
|
-
console.log(globalCompoAttr);
|
|
34
|
-
return 'NQWBZ-VG6KO-YUDWV-SCAPV-MFRYH-QJB7S';
|
|
35
34
|
}
|
|
36
35
|
}
|
|
37
36
|
};
|