hd-idevvue3 3.0.4 → 3.0.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/dist/static/css/index-DRHIlcVU.css +1 -0
- package/dist/static/js/index-DbUA6jg0.js +184 -0
- package/dist/static/js/index-Dl4O91nB.js +73768 -0
- package/package.json +13 -16
- package/pnpm-lock.yaml +1008 -131
- package/src/demo/extsets.vue +1 -1
- package/src/demo/hightquery.vue +1 -1
- package/src/demo/inlineedit.vue +1 -1
- package/src/hdcom/BillShow.vue +1 -1
- package/src/hdcom/BillUpload.vue +1 -1
- package/src/hdcom/ErrHint.vue +1 -1
- package/src/hdcom/HdComFaceRec.vue +1 -1
- package/src/hdcom/HdComGrid.vue +1 -1
- package/src/hdcom/HdGridSel.vue +1 -1
- package/src/hdcom/HdPopSel.vue +1 -1
- package/src/hdcom/HdTempSave.vue +1 -1
- package/src/hdcom/HdTreeTable/index.vue +1 -1
- package/src/views/layout/header/MainHeader.vue +1 -1
- package/src/views/privilege/commsg/commsg.vue +1 -1
- package/src/views/privilege/commsg/commsgto.vue +1 -1
- package/src/views/privilege/exfield/comexcolumn.vue +1 -1
- package/src/views/privilege/exfield/comexfieldsub.vue +1 -1
- package/src/views/privilege/mobile/authmobileupdate.vue +1 -1
- package/src/views/privilege/orgDept/orgnselect.vue +1 -1
- package/src/views/privilege/quartz/comquartzjob.vue +1 -1
- package/src/views/privilege/quartz/comquartzlog.vue +1 -1
- package/src/views/privilege/search/comsearch.vue +1 -1
- package/src/views/privilege/syscode/syscode.vue +1 -1
- package/src/views/privilege/syscode/sysfield.vue +1 -1
- package/src/views/privilege/syslog/syslogconfig.vue +1 -1
- package/vite.config.js +33 -9
- package/dist/assets/index.9c127719.css +0 -1
- package/dist/hd-idevvue3.mjs +0 -45913
- package/dist/hd-idevvue3.umd.js +0 -153
- package/npminstall-debug.log +0 -200
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hd-idevvue3",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"private": false,
|
|
3
|
+
"version": "3.0.7",
|
|
5
4
|
"description": "hd-idevvue3",
|
|
6
5
|
"author": "huadong",
|
|
7
6
|
"main": "dist/hd-idevvue3.mjs",
|
|
8
7
|
"dependencies": {
|
|
9
|
-
"@element-plus/icons": "^
|
|
10
|
-
"@
|
|
8
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
9
|
+
"@vueuse/core": "^12.0.0",
|
|
11
10
|
"async-validator": "^4.2.5",
|
|
12
11
|
"autoprefixer": "^10.4.21",
|
|
13
12
|
"axios": "^1.8.4",
|
|
@@ -31,25 +30,23 @@
|
|
|
31
30
|
"xlsx": "^0.18.5"
|
|
32
31
|
},
|
|
33
32
|
"devDependencies": {
|
|
34
|
-
"@
|
|
33
|
+
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
34
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
35
35
|
"eslint": "^9.22.0",
|
|
36
36
|
"eslint-plugin-vue": "^9.33.0",
|
|
37
|
+
"increase-memory-limit": "^1.0.7",
|
|
37
38
|
"sass": "^1.86.0",
|
|
38
39
|
"scss-loader": "^0.0.1",
|
|
39
40
|
"unplugin-auto-import": "^0.14.4",
|
|
40
|
-
"
|
|
41
|
+
"unplugin-icons": "^22.1.0",
|
|
42
|
+
"unplugin-vue-components": "^0.27.5",
|
|
43
|
+
"unplugin-vue-router": "^0.10.9",
|
|
44
|
+
"vite": "^6.2.0",
|
|
45
|
+
"vite-plugin-checker": "^0.9.1",
|
|
46
|
+
"vite-plugin-commonjs": "^0.10.4",
|
|
47
|
+
"vite-plugin-dynamic-import": "^1.6.0",
|
|
41
48
|
"vite-plugin-require-transform": "^1.0.21"
|
|
42
49
|
},
|
|
43
|
-
"browserslist": [
|
|
44
|
-
"> 1%",
|
|
45
|
-
"last 2 versions",
|
|
46
|
-
"not ie <= 9"
|
|
47
|
-
],
|
|
48
|
-
"engines": {
|
|
49
|
-
"node": ">= 4.0.0",
|
|
50
|
-
"npm": ">= 3.0.0"
|
|
51
|
-
},
|
|
52
|
-
"license": "commerical",
|
|
53
50
|
"scripts": {
|
|
54
51
|
"build": "vite build",
|
|
55
52
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
|