gy-ui-plus 1.0.4 → 1.0.6
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 +7 -7
- package/package.json +3 -7
package/README.md
CHANGED
|
@@ -48,8 +48,8 @@ import { JButton, JTable } from 'gy-ui-plus'
|
|
|
48
48
|
import 'gy-ui-plus/dist/gy-ui-plus.css'
|
|
49
49
|
|
|
50
50
|
const app = createApp(App)
|
|
51
|
-
app.component('
|
|
52
|
-
app.component('
|
|
51
|
+
app.component('GyButton', GyButton)
|
|
52
|
+
app.component('GyTable', GyTable)
|
|
53
53
|
app.mount('#app')
|
|
54
54
|
```
|
|
55
55
|
|
|
@@ -87,8 +87,8 @@ gy-ui-plus/
|
|
|
87
87
|
├── packages/ # 组件源码目录
|
|
88
88
|
│ ├── index.ts # 组件库入口
|
|
89
89
|
│ ├── withInstall.ts # 组件安装工具
|
|
90
|
-
│ ├──
|
|
91
|
-
│ └──
|
|
90
|
+
│ ├── gy-button/ # 按钮组件
|
|
91
|
+
│ └── gy-table/ # 表格组件
|
|
92
92
|
├── dist/ # 构建输出目录
|
|
93
93
|
├── vite.config.ts # Vite 配置
|
|
94
94
|
├── tsconfig.json # TypeScript 配置
|
|
@@ -105,10 +105,10 @@ MIT License
|
|
|
105
105
|
|
|
106
106
|
## 联系方式
|
|
107
107
|
|
|
108
|
-
如有问题或建议,欢迎通过以下方式联系:
|
|
108
|
+
<!-- 如有问题或建议,欢迎通过以下方式联系: -->
|
|
109
109
|
|
|
110
|
-
- GitHub Issues:
|
|
111
|
-
- Email:
|
|
110
|
+
<!-- - GitHub Issues:
|
|
111
|
+
- Email: -->
|
|
112
112
|
|
|
113
113
|
---
|
|
114
114
|
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
},
|
|
6
6
|
"author": "zyj",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"version": "1.0.
|
|
8
|
+
"version": "1.0.6",
|
|
9
9
|
"private": false,
|
|
10
10
|
"type": "module",
|
|
11
11
|
"main": "dist/gy-ui-plus.umd.js",
|
|
@@ -50,19 +50,15 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"sortablejs": "1.15.0",
|
|
53
|
-
"autofit.js": "^3.2.8",
|
|
54
53
|
"axios": "^1.13.2",
|
|
55
54
|
"element-plus": "^2.13.1",
|
|
56
|
-
"pinia": "^3.0.4",
|
|
57
|
-
"postcss-px-to-viewport": "^1.1.1",
|
|
58
55
|
"vue": "^3.5.25",
|
|
59
56
|
"vue-router": "^4.6.3"
|
|
60
57
|
},
|
|
61
58
|
"devDependencies": {
|
|
62
|
-
"@vitejs/plugin-vue": "^
|
|
63
|
-
"@vitejs/plugin-vue-jsx": "^2.0.1",
|
|
59
|
+
"@vitejs/plugin-vue": "^6.0.2",
|
|
64
60
|
"vite-plugin-compression": "^0.5.1",
|
|
65
|
-
"vite-plugin-dts": "^
|
|
61
|
+
"vite-plugin-dts": "^3.0.0",
|
|
66
62
|
"vite-plugin-vue-setup-extend": "^0.4.0",
|
|
67
63
|
"@prettier/plugin-oxc": "^0.0.5",
|
|
68
64
|
"@tsconfig/node24": "^24.0.3",
|