view-ui-plus-derive 0.1.1 → 0.1.3
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 +69 -11
- package/dist/index.d.ts +76 -26
- package/dist/index.js +781 -725
- package/dist/less/Combi.less +38 -0
- package/dist/less/CountRange.less +36 -0
- package/dist/less/DateRange.less +38 -0
- package/dist/less/MCalendar.less +70 -0
- package/dist/less/PageTable.less +94 -0
- package/dist/less/ToggleColumn.less +26 -0
- package/dist/less/common.less +7 -0
- package/dist/less/index.less +6 -0
- package/dist/styles/PageTable.css +1 -1
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.js +1 -1
- package/package.json +12 -10
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "view-ui-plus-derive",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "基于view-ui-plus
|
|
5
|
+
"description": "基于view-ui-plus的组件&优化扩展等,可自定义组件名前缀",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"view-ui-plus-derive",
|
|
8
|
-
"iview
|
|
8
|
+
"iview derive",
|
|
9
9
|
"vue",
|
|
10
10
|
"component library",
|
|
11
11
|
"derive",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"./iview-mod.css": "./dist/iview-mod.css",
|
|
34
34
|
"./style": "./dist/style.js",
|
|
35
35
|
"./styles/*": "./dist/styles/*",
|
|
36
|
+
"./less/*": "./dist/less/*",
|
|
36
37
|
"./umd/index": "./dist/umd/index.js"
|
|
37
38
|
},
|
|
38
39
|
"files": [
|
|
@@ -51,7 +52,8 @@
|
|
|
51
52
|
"type-check": "vue-tsc --build",
|
|
52
53
|
"lint": "eslint . --fix",
|
|
53
54
|
"format": "prettier --write src/",
|
|
54
|
-
"
|
|
55
|
+
"check-auth": "npm whoami --registry=https://registry.npmjs.org",
|
|
56
|
+
"prepublishOnly": "npm run check-auth && npm run build && npm run release"
|
|
55
57
|
},
|
|
56
58
|
"publishConfig": {
|
|
57
59
|
"registry": "https://registry.npmjs.org"
|
|
@@ -74,8 +76,8 @@
|
|
|
74
76
|
"@commitlint/config-conventional": "^20.2.0",
|
|
75
77
|
"@tsconfig/node22": "^22.0.5",
|
|
76
78
|
"@types/jsdom": "^27.0.0",
|
|
77
|
-
"@types/node": "^
|
|
78
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
79
|
+
"@types/node": "^25.0.3",
|
|
80
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
79
81
|
"@vitejs/plugin-vue-jsx": "^5.1.2",
|
|
80
82
|
"@vitest/eslint-plugin": "1.5.2",
|
|
81
83
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
@@ -83,21 +85,21 @@
|
|
|
83
85
|
"@vue/test-utils": "^2.4.6",
|
|
84
86
|
"@vue/tsconfig": "^0.8.1",
|
|
85
87
|
"commit-and-tag-version": "^12.6.1",
|
|
86
|
-
"eslint": "^9.39.
|
|
88
|
+
"eslint": "^9.39.2",
|
|
87
89
|
"eslint-plugin-vue": "^10.6.2",
|
|
88
90
|
"husky": "^9.1.7",
|
|
89
91
|
"jiti": "^2.6.1",
|
|
90
92
|
"jsdom": "^27.3.0",
|
|
91
|
-
"less": "^4.
|
|
93
|
+
"less": "^4.5.1",
|
|
92
94
|
"npm-run-all2": "^8.0.4",
|
|
93
95
|
"prettier": "^3.7.4",
|
|
94
96
|
"typescript": "~5.9.3",
|
|
95
97
|
"utils-where": "^0.4.3",
|
|
96
98
|
"view-ui-plus": "^1.3.21",
|
|
97
|
-
"vite": "^7.
|
|
99
|
+
"vite": "^7.3.0",
|
|
98
100
|
"vite-plugin-dts": "^4.5.4",
|
|
99
101
|
"vite-plugin-vue-devtools": "^8.0.5",
|
|
100
|
-
"vitest": "^4.0.
|
|
102
|
+
"vitest": "^4.0.16",
|
|
101
103
|
"vue": "^3.5.25",
|
|
102
104
|
"vue-i18n": "^11.2.2",
|
|
103
105
|
"vue-tsc": "^3.1.8"
|