@truenewx/tnxvue3 2.6.6 → 3.0.0-alpha.7
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 +3 -3
- package/package.json +78 -76
- package/src/aj-captcha/Verify/VerifyPoints.vue +258 -258
- package/src/aj-captcha/Verify/VerifySlide.vue +379 -379
- package/src/aj-captcha/Verify.vue +375 -375
- package/src/element-plus/alert/Alert.vue +112 -112
- package/src/element-plus/avatar/Avatar.vue +124 -124
- package/src/element-plus/button/Button.vue +184 -184
- package/src/element-plus/dialog/Dialog.vue +269 -259
- package/src/element-plus/enum-select/EnumSelect.vue +134 -125
- package/src/element-plus/fetch-tags/FetchTags.vue +122 -122
- package/src/element-plus/fss-upload/FssUpload.vue +326 -310
- package/src/element-plus/fss-view/FssView.vue +198 -163
- package/src/element-plus/input-number/InputNumber.vue +150 -150
- package/src/element-plus/paged/Paged.vue +95 -76
- package/src/element-plus/permission-tree/PermissionTree.vue +18 -2
- package/src/element-plus/query-form/QueryForm.vue +138 -138
- package/src/element-plus/query-table/QueryTable.vue +420 -402
- package/src/element-plus/region-cascader/RegionCascader.vue +7 -1
- package/src/element-plus/select/Select.vue +503 -446
- package/src/element-plus/submit-form/SubmitForm.vue +35 -28
- package/src/element-plus/tabs/Tabs.vue +13 -10
- package/src/element-plus/tnxel.js +539 -531
- package/src/element-plus/upload/Upload.vue +869 -860
- package/src/tnxvue-cli.js +64 -64
- package/src/tnxvue-router.js +161 -161
- package/src/tnxvue-validator.js +365 -365
- package/src/tnxvue.js +371 -342
package/README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
# tnxvue3
|
|
2
|
-
|
|
3
|
-
互联网技术解决方案:Vue3扩展支持
|
|
1
|
+
# tnxvue3
|
|
2
|
+
|
|
3
|
+
互联网技术解决方案:Vue3扩展支持
|
package/package.json
CHANGED
|
@@ -1,76 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@truenewx/tnxvue3",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "互联网技术解决方案:Vue3扩展支持",
|
|
5
|
-
"private": false,
|
|
6
|
-
"publishConfig": {
|
|
7
|
-
"access": "public"
|
|
8
|
-
},
|
|
9
|
-
"main": "src/tnxvue.js",
|
|
10
|
-
"keywords": [
|
|
11
|
-
"truenewx",
|
|
12
|
-
"tnxvue3",
|
|
13
|
-
"tnx"
|
|
14
|
-
],
|
|
15
|
-
"author": "truenewx",
|
|
16
|
-
"license": "Apache-2.0",
|
|
17
|
-
"scripts": {
|
|
18
|
-
"serve": "vue-cli-service serve",
|
|
19
|
-
"build": "vue-cli-service build"
|
|
20
|
-
},
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"vue": "3.
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"@babel/
|
|
35
|
-
"@
|
|
36
|
-
"@
|
|
37
|
-
"@vue/cli-
|
|
38
|
-
"eslint": "
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@truenewx/tnxvue3",
|
|
3
|
+
"version": "3.0.0-alpha.7",
|
|
4
|
+
"description": "互联网技术解决方案:Vue3扩展支持",
|
|
5
|
+
"private": false,
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"main": "src/tnxvue.js",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"truenewx",
|
|
12
|
+
"tnxvue3",
|
|
13
|
+
"tnx"
|
|
14
|
+
],
|
|
15
|
+
"author": "truenewx",
|
|
16
|
+
"license": "Apache-2.0",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"serve": "vue-cli-service serve",
|
|
19
|
+
"build": "vue-cli-service build"
|
|
20
|
+
},
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"element-plus": "~2.8.0",
|
|
23
|
+
"vue": "~3.4.0",
|
|
24
|
+
"vue-router": "~4.4.0"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@truenewx/tnxcore": "3.0.0-alpha.4",
|
|
28
|
+
"@element-plus/icons-vue": "2.3.1",
|
|
29
|
+
"async-validator": "4.2.5",
|
|
30
|
+
"crypto-js": "4.2.0",
|
|
31
|
+
"mitt": "3.0.1"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@babel/core": "7.22.5",
|
|
35
|
+
"@babel/eslint-parser": "7.22.5",
|
|
36
|
+
"@babel/preset-env": "7.22.5",
|
|
37
|
+
"@vue/cli-plugin-babel": "5.0.8",
|
|
38
|
+
"@vue/cli-plugin-eslint": "5.0.8",
|
|
39
|
+
"@vue/cli-service": "5.0.8",
|
|
40
|
+
"eslint": "7.32.0",
|
|
41
|
+
"eslint-plugin-vue": "8.7.1",
|
|
42
|
+
"copy-webpack-plugin": "11.0.0",
|
|
43
|
+
"terser-webpack-plugin": "5.3.7"
|
|
44
|
+
},
|
|
45
|
+
"eslintConfig": {
|
|
46
|
+
"root": true,
|
|
47
|
+
"env": {
|
|
48
|
+
"node": true
|
|
49
|
+
},
|
|
50
|
+
"extends": [
|
|
51
|
+
"plugin:vue/vue3-essential",
|
|
52
|
+
"eslint:recommended"
|
|
53
|
+
],
|
|
54
|
+
"parserOptions": {
|
|
55
|
+
"parser": "@babel/eslint-parser"
|
|
56
|
+
},
|
|
57
|
+
"rules": {
|
|
58
|
+
"eqeqeq": "warn",
|
|
59
|
+
"no-unused-vars": [
|
|
60
|
+
"warn",
|
|
61
|
+
{
|
|
62
|
+
"vars": "local",
|
|
63
|
+
"args": "none"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"no-undef": "warn",
|
|
67
|
+
"no-useless-escape": "warn",
|
|
68
|
+
"vue/no-v-model-argument": "off",
|
|
69
|
+
"vue/multi-word-component-names": "off"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"browserslist": [
|
|
73
|
+
"> 1%",
|
|
74
|
+
"last 2 versions",
|
|
75
|
+
"not dead",
|
|
76
|
+
"not ie 11"
|
|
77
|
+
]
|
|
78
|
+
}
|