@yetuzi/vue3-query-components 1.1.38 → 1.2.1
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/CHANGELOG.md +105 -0
- package/README.md +127 -68
- package/dist/index.css +1 -1
- package/dist/index.d.ts +481 -74
- package/dist/index.js +944 -953
- package/dist/index.js.map +1 -1
- package/dist/version-info.json +28 -0
- package/package.json +89 -79
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.2.1",
|
|
3
|
+
"publishDate": "2025-01-06",
|
|
4
|
+
"name": "@yetuzi/vue3-query-components",
|
|
5
|
+
"description": "Vue3查询页面组件库,基于Element Plus封装的表格查询组件 - 开箱即用",
|
|
6
|
+
"repository": "https://gitee.com/yetuzi_open/vue3-query-components",
|
|
7
|
+
"homepage": "https://gitee.com/yetuzi_open/vue3-query-components",
|
|
8
|
+
"bugs": "https://gitee.com/yetuzi_open/vue3-query-components/issues",
|
|
9
|
+
"recentChanges": [
|
|
10
|
+
{
|
|
11
|
+
"version": "1.2.0",
|
|
12
|
+
"date": "2025-01-06",
|
|
13
|
+
"content": "1.2.0] - 2025-01-06\r\n\r\n### 优化\r\n- ✨ CommonForm - 优化类型命名,提升代码可读性\r\n - `CommonFormPropForm` → `CommonFormItemArray`\r\n - `CommonFormSupplement` → `CommonFormItemBase`\r\n - `CommonFormCustomComponentsItem` → `CommonFormCustomItem`\r\n- ✨ CommonTable - 优化类型命名,与 CommonForm 保持一致\r\n - `TableColumnSupplement` → `TableColumnBase`\r\n- 📝 为所有类型定义添加详细的 JSDoc 注释\r\n- 📝 添加类型参数说明和使用示例\r\n- 📝 改善 IDE 智能提示体验\r\n\r\n### 文档\r\n- 📝 优化文档内容和结构\r\n- 📝 添加 CSS 引入说明\r\n- 📝 修复文档中的无效 demo 标签\r\n\r\n### 修复\r\n- 🔧 替换 sass 为 sass-embedded,解决 Da..."
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"version": "1.0.4",
|
|
17
|
+
"date": "2024-12-11",
|
|
18
|
+
"content": "1.0.4] - 2024-12-11\r\n\r\n### 修复\r\n- 🔧 修复 Element Plus 组件样式缺失问题\r\n- 📝 为所有组件手动添加对应的 Element Plus CSS 导入\r\n\r\n### 优化\r\n- ✨ CommonQueryTable - 添加 ElLoading 样式\r\n- ✨ CommonTable - 添加 ElTable、ElEmpty、ElTableColumn 样式\r\n- ✨ CommonForm - 添加 ElForm、ElFormItem、ElButton 样式\r\n- ✨ CommonInput - 添加 ElInput 样式\r\n- ✨ CommonSelect - 添加 ElSelect、ElOption 样式\r\n- ✨ CommonDatePicker - 添加 ElDatePicker 样式\r\n- ✨ CommonPagination - 添加 ElPagination 样式\r\n- ✨ CommonRadio - 添加 ElRadioGroup、ElRadio 样式\r\n- ✨ CommonCheckbox - 添加 ElCheckbox..."
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=16.0.0"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"element-plus": "^2.11.5",
|
|
26
|
+
"vue": "^3.5.0"
|
|
27
|
+
}
|
|
28
|
+
}
|
package/package.json
CHANGED
|
@@ -1,79 +1,89 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@yetuzi/vue3-query-components",
|
|
3
|
-
"version": "1.1
|
|
4
|
-
"description": "Vue3查询页面组件库,基于Element Plus封装的表格查询组件 - 开箱即用",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/index.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/index.js",
|
|
12
|
-
"types": "./dist/index.d.ts"
|
|
13
|
-
},
|
|
14
|
-
"./dist/style.css": "./dist/index.css",
|
|
15
|
-
"./dist/index.css": "./dist/index.css"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"README.md",
|
|
20
|
-
"LICENSE"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
"build
|
|
26
|
-
"build:
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
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
|
-
"vue
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@yetuzi/vue3-query-components",
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "Vue3查询页面组件库,基于Element Plus封装的表格查询组件 - 开箱即用",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./dist/style.css": "./dist/index.css",
|
|
15
|
+
"./dist/index.css": "./dist/index.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"CHANGELOG.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite build --watch",
|
|
25
|
+
"build": "node scripts/build.js",
|
|
26
|
+
"build:patch": "node scripts/build.js patch",
|
|
27
|
+
"build:minor": "node scripts/build.js minor",
|
|
28
|
+
"build:major": "node scripts/build.js major",
|
|
29
|
+
"type-check": "vue-tsc --noEmit",
|
|
30
|
+
"test": "npm run build",
|
|
31
|
+
"release": "standard-version",
|
|
32
|
+
"release:patch": "standard-version --release-as patch",
|
|
33
|
+
"release:minor": "standard-version --release-as minor",
|
|
34
|
+
"release:major": "standard-version --release-as major",
|
|
35
|
+
"release:dry": "standard-version --dry-run",
|
|
36
|
+
"version": "node scripts/generate-version-info.js"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"vue3",
|
|
40
|
+
"element-plus",
|
|
41
|
+
"components",
|
|
42
|
+
"typescript",
|
|
43
|
+
"ui",
|
|
44
|
+
"table",
|
|
45
|
+
"form",
|
|
46
|
+
"query",
|
|
47
|
+
"search",
|
|
48
|
+
"list-page",
|
|
49
|
+
"data-table",
|
|
50
|
+
"crud"
|
|
51
|
+
],
|
|
52
|
+
"author": "yetuzi",
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "https://gitee.com/yetuzi_open/vue3-query-components"
|
|
57
|
+
},
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://gitee.com/yetuzi_open/vue3-query-components/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://gitee.com/yetuzi_open/vue3-query-components",
|
|
62
|
+
"peerDependencies": {
|
|
63
|
+
"element-plus": "^2.11.5",
|
|
64
|
+
"vue": "^3.5.0"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"dayjs": "^1.11.18",
|
|
68
|
+
"lodash-es": "^4.17.21",
|
|
69
|
+
"vue-hooks-plus": "^2.4.1"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@types/node": "^22.0.0",
|
|
73
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
74
|
+
"@vue/tsconfig": "^0.8.0",
|
|
75
|
+
"sass": "^1.97.0",
|
|
76
|
+
"standard-version": "^9.5.0",
|
|
77
|
+
"typescript": "~5.9.0",
|
|
78
|
+
"unplugin-element-plus": "^0.11.2",
|
|
79
|
+
"vite": "^6.0.0",
|
|
80
|
+
"vite-plugin-dts": "^4.5.4",
|
|
81
|
+
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
82
|
+
"vite-plugin-package-version": "^1.1.0",
|
|
83
|
+
"vue-component-type-helpers": "^3.2.1",
|
|
84
|
+
"vue-tsc": "^3.0.0"
|
|
85
|
+
},
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=16.0.0"
|
|
88
|
+
}
|
|
89
|
+
}
|