vue-amazing-ui 2.2.3 → 2.2.5
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 +21 -1
- package/README.zh-CN.md +22 -2
- package/dist/index.iife.js +18 -18
- package/dist/index.js +1871 -1825
- package/dist/index.umd.cjs +15 -15
- package/dist/style.css +1 -1
- package/es/calendar/Calendar.css +1 -1
- package/es/calendar/Calendar.vue.js +1 -1
- package/es/progress/Progress.css +1 -1
- package/es/progress/Progress.d.ts +2 -2
- package/es/progress/Progress.vue.js +2 -2
- package/es/progress/index.d.ts +3 -3
- package/es/qrcode/QRCode.css +1 -1
- package/es/qrcode/QRCode.d.ts +13 -2
- package/es/qrcode/QRCode.vue.js +1 -1
- package/es/qrcode/QRCode.vue2.js +66 -20
- package/es/qrcode/index.d.ts +22 -4
- package/es/video/Video.d.ts +1 -1
- package/es/video/index.d.ts +3 -3
- package/lib/calendar/Calendar.css +1 -1
- package/lib/calendar/Calendar.vue.cjs +1 -1
- package/lib/progress/Progress.css +1 -1
- package/lib/progress/Progress.d.ts +2 -2
- package/lib/progress/Progress.vue.cjs +1 -1
- package/lib/progress/index.d.ts +3 -3
- package/lib/qrcode/QRCode.css +1 -1
- package/lib/qrcode/QRCode.d.ts +13 -2
- package/lib/qrcode/QRCode.vue.cjs +1 -1
- package/lib/qrcode/QRCode.vue2.cjs +1 -1
- package/lib/qrcode/index.d.ts +22 -4
- package/lib/video/Video.d.ts +1 -1
- package/lib/video/index.d.ts +3 -3
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -124,7 +124,9 @@ export default defineConfig({
|
|
|
124
124
|
Components({
|
|
125
125
|
resolvers: [
|
|
126
126
|
// auto import components from VueAmazingUI
|
|
127
|
-
VueAmazingUIResolver(
|
|
127
|
+
VueAmazingUIResolver({
|
|
128
|
+
cjs: false // whether use commonjs build, default false
|
|
129
|
+
})
|
|
128
130
|
]
|
|
129
131
|
})
|
|
130
132
|
]
|
|
@@ -202,10 +204,28 @@ pnpm i
|
|
|
202
204
|
pnpm dev
|
|
203
205
|
```
|
|
204
206
|
|
|
207
|
+
- Run docs
|
|
208
|
+
|
|
209
|
+
```sh
|
|
210
|
+
docs:dev
|
|
211
|
+
```
|
|
212
|
+
|
|
205
213
|
## Blogs
|
|
206
214
|
|
|
207
215
|
[My CSDN Blogs](https://blog.csdn.net/Dandrose)
|
|
208
216
|
|
|
217
|
+
## Sponsorship
|
|
218
|
+
|
|
219
|
+
`Vue Amazing UI` is an open-source project licensed under the `MIT` license, and it is completely free to use. All work on the component library and documentation is completed by the author alone, and the development and iteration process has been challenging. For the healthy and sustainable development of the component library, your support and sponsorship are greatly appreciated.
|
|
220
|
+
|
|
221
|
+
#### [Become a Sponsor](https://themusecatcher.github.io/vue-amazing-ui/sponsor/charge.html)
|
|
222
|
+
|
|
223
|
+
## Sponsors 🫡
|
|
224
|
+
|
|
225
|
+
All sponsors will be listed here, thank you very much for your support and sponsorship ❤️❤️
|
|
226
|
+
|
|
227
|
+
<a href="https://github.com/themusecatcher" target="_blank"><img width="64" height="64" src="https://github.com/themusecatcher.png" alt="GitHub@themusecatcher"></a> <img width="64" height="64" src="./docs/public/avatars/1.jpeg" alt="WeChat@Ant" /> <a href="https://github.com/nizhensh-i" target="_blank"><img width="64" height="64" src="./docs/public/avatars/2.jpg" alt="GitHub@nizhensh-i"></a>
|
|
228
|
+
|
|
209
229
|
## Components
|
|
210
230
|
|
|
211
231
|
Name | Description | Name | Description
|
package/README.zh-CN.md
CHANGED
|
@@ -124,7 +124,9 @@ export default defineConfig({
|
|
|
124
124
|
Components({
|
|
125
125
|
resolvers: [
|
|
126
126
|
// auto import components from VueAmazingUI
|
|
127
|
-
VueAmazingUIResolver(
|
|
127
|
+
VueAmazingUIResolver({
|
|
128
|
+
cjs: false // whether use commonjs build, default false
|
|
129
|
+
})
|
|
128
130
|
]
|
|
129
131
|
})
|
|
130
132
|
]
|
|
@@ -196,16 +198,34 @@ cd vue-amazing-ui
|
|
|
196
198
|
pnpm i
|
|
197
199
|
```
|
|
198
200
|
|
|
199
|
-
-
|
|
201
|
+
- 启动项目
|
|
200
202
|
|
|
201
203
|
```sh
|
|
202
204
|
pnpm dev
|
|
203
205
|
```
|
|
204
206
|
|
|
207
|
+
- 启动文档
|
|
208
|
+
|
|
209
|
+
```sh
|
|
210
|
+
docs:dev
|
|
211
|
+
```
|
|
212
|
+
|
|
205
213
|
## 博客
|
|
206
214
|
|
|
207
215
|
[My CSDN Blogs](https://blog.csdn.net/Dandrose)
|
|
208
216
|
|
|
217
|
+
## 赞助
|
|
218
|
+
|
|
219
|
+
`Vue Amazing UI` 是采用 `MIT` 许可的开源项目,使用完全免费。组件库及文档所有工作均由作者一人完成,开发迭代过程实属不易...为了组件库的健康可持续发展,非常期望能获得您的支持与赞助。
|
|
220
|
+
|
|
221
|
+
#### [成为赞助者](https://themusecatcher.github.io/vue-amazing-ui/sponsor/charge.html)
|
|
222
|
+
|
|
223
|
+
## 赞助者 🫡
|
|
224
|
+
|
|
225
|
+
所有的赞助者都将出现在此处,非常感谢你们的支持与赞助 ❤️❤️
|
|
226
|
+
|
|
227
|
+
<a href="https://github.com/themusecatcher" target="_blank"><img width="64" height="64" src="https://github.com/themusecatcher.png" alt="GitHub@themusecatcher"></a><img width="64" height="64" src="./docs/public/avatars/1.jpeg" alt="WeChat@Ant"><a href="https://github.com/nizhensh-i" target="_blank"><img width="64" height="64" src="./docs/public/avatars/2.jpg" alt="GitHub@nizhensh-i"></a>
|
|
228
|
+
|
|
209
229
|
## 组件
|
|
210
230
|
|
|
211
231
|
名称 | 说明 | 名称 | 说明
|