@web-utils/component 1.0.16 → 1.0.20
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/README.md +25 -0
- package/dist/ElementDialog.js +1 -1
- package/dist/{Trigger.css → SplitPane.css} +0 -0
- package/dist/index.css +1 -1
- package/dist/index.es.js +2099 -1578
- package/package.json +12 -3
- package/web-types.json +8225 -5420
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@web-utils/component",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.es.js",
|
|
@@ -33,9 +33,7 @@
|
|
|
33
33
|
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
34
34
|
"@typescript-eslint/parser": "^5.21.0",
|
|
35
35
|
"@vue/eslint-config-typescript": "^10.0.0",
|
|
36
|
-
"@web-utils/core": "^1.4.6",
|
|
37
36
|
"chalk": "^4.1.2",
|
|
38
|
-
"element-ui": "^2.15.8",
|
|
39
37
|
"eslint": "^8.14.0",
|
|
40
38
|
"eslint-plugin-vue": "^8.7.1",
|
|
41
39
|
"execa": "^5.0.0",
|
|
@@ -48,6 +46,7 @@
|
|
|
48
46
|
"vite-plugin-style-import": "^1.4.1",
|
|
49
47
|
"vite-plugin-vue2": "^2.0.0",
|
|
50
48
|
"vue": "^2.6.14",
|
|
49
|
+
"vue-docgen-api": "^4.44.23",
|
|
51
50
|
"vue-router": "^3.5.3",
|
|
52
51
|
"vue-template-compiler": "^2.6.14"
|
|
53
52
|
},
|
|
@@ -71,6 +70,14 @@
|
|
|
71
70
|
"plugin:vue/recommended"
|
|
72
71
|
],
|
|
73
72
|
"rules": {
|
|
73
|
+
"semi": [
|
|
74
|
+
"error",
|
|
75
|
+
"never"
|
|
76
|
+
],
|
|
77
|
+
"quotes": [
|
|
78
|
+
"error",
|
|
79
|
+
"single"
|
|
80
|
+
],
|
|
74
81
|
"vue/no-deprecated-dollar-listeners-api": "off",
|
|
75
82
|
"vue/multi-word-component-names": "off",
|
|
76
83
|
"vue/no-v-html": "off",
|
|
@@ -107,8 +114,10 @@
|
|
|
107
114
|
}
|
|
108
115
|
},
|
|
109
116
|
"dependencies": {
|
|
117
|
+
"@web-utils/core": "^1.4.8",
|
|
110
118
|
"codemirror": "^5.65.3",
|
|
111
119
|
"echarts": "^5.3.2",
|
|
120
|
+
"element-ui": "^2.15.8",
|
|
112
121
|
"overlayscrollbars": "^1.13.1",
|
|
113
122
|
"resize-detector": "^0.3.0"
|
|
114
123
|
}
|