ant-design-x-vue 0.1.2 → 0.1.4
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 +22 -15
- package/dist/index.mjs +1108 -1068
- package/dist/index.umd.js +9 -9
- package/dist/typings/attachments/interface.d.ts +48 -1
- package/dist/typings/sender/components/ClearButton.vue.d.ts +2 -33
- package/dist/typings/sender/components/LoadingButton.vue.d.ts +2 -33
- package/dist/typings/sender/components/SendButton.vue.d.ts +3 -0
- package/dist/typings/sender/components/SpeechButton/index.vue.d.ts +2 -33
- package/dist/typings/sender/interface.d.ts +21 -2
- package/dist/typings/x-provider/context.d.ts +26 -1
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# Ant Design X Vue
|
|
2
2
|
|
|
3
|
-
[![
|
|
4
|
-
[![
|
|
3
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
4
|
+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
5
|
+
[![bundle][bundle-src]][bundle-href]
|
|
6
|
+
[![Github Actions][github-actions-src]][github-actions-href]
|
|
7
|
+
![Netlify Build][netlify-build-src]
|
|
8
|
+
[![License][license-src]][license-href]
|
|
5
9
|
|
|
6
|
-
Ant Design X For Vue
|
|
10
|
+
Ant Design X For Vue. 🔥
|
|
7
11
|
|
|
8
12
|
这里是[Ant Design X](https://github.com/ant-design/x)的Vue实现。
|
|
9
13
|
|
|
@@ -59,18 +63,7 @@ $ pnpm lint
|
|
|
59
63
|
|
|
60
64
|
您的贡献至关重要!
|
|
61
65
|
|
|
62
|
-
|
|
63
|
-
1. 在[Roadmap](https://github.com/wzc520pyfm/ant-design-x-vue/issues/1)中提及@wzc520pyfm认领一个组件,在得到答复后开始工作
|
|
64
|
-
2. Fork本仓库,并为你认领的组件创建一个开发分支,分支名和commit请遵守《通用提交规范》,建议在完成一个阶段性工作时就进行一次commit,不建议单个commit积累太多内容。
|
|
65
|
-
3. 目前完成一个新组件的大致工作如下(可参考`bubble`组件):
|
|
66
|
-
1. 对照react版本同步组件代码为Vue,尽量保障目录一致、代码结构一致
|
|
67
|
-
2. 编写demo,与React版demo一致
|
|
68
|
-
1. demo写在 docs/example/[component]/*目录下
|
|
69
|
-
3. 编写文档,与React版一致
|
|
70
|
-
1. 文档写在docs/component/*目录下
|
|
71
|
-
4. 提交pr到本仓库main分支,等待审核
|
|
72
|
-
|
|
73
|
-
除此之外,我们仍有很多事要做,您也可以参考Roadmap,从中挑选您感兴趣的部分。
|
|
66
|
+
您可以参考[Roadmap](https://github.com/wzc520pyfm/ant-design-x-vue/issues/1),从中挑选您感兴趣的部分。
|
|
74
67
|
|
|
75
68
|
## Contributors
|
|
76
69
|
|
|
@@ -81,3 +74,17 @@ $ pnpm lint
|
|
|
81
74
|
## LICENSE
|
|
82
75
|
|
|
83
76
|
MIT
|
|
77
|
+
|
|
78
|
+
<!-- Badges -->
|
|
79
|
+
|
|
80
|
+
[npm-version-src]: https://img.shields.io/npm/v/ant-design-x-vue.svg?style=flat
|
|
81
|
+
[npm-version-href]: https://npmjs.com/package/ant-design-x-vue
|
|
82
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/ant-design-x-vue.svg?style=flat
|
|
83
|
+
[npm-downloads-href]: https://npmjs.com/package/ant-design-x-vue
|
|
84
|
+
[bundle-src]: https://img.shields.io/bundlephobia/minzip/ant-design-x-vue?style=flat
|
|
85
|
+
[bundle-href]: https://bundlephobia.com/result?p=ant-design-x-vue
|
|
86
|
+
[github-actions-src]: https://img.shields.io/github/actions/workflow/status/wzc520pyfm/ant-design-x-vue/ci.yml?branch=main&style=flat
|
|
87
|
+
[github-actions-href]: https://github.com/wzc520pyfm/ant-design-x-vue/actions?query=workflow%3Aci
|
|
88
|
+
[netlify-build-src]: https://img.shields.io/netlify/cb006e4e-afce-4c3e-9652-6f8a065b5b6e
|
|
89
|
+
[license-src]: https://img.shields.io/github/license/wzc520pyfm/ant-design-x-vue?style=flat
|
|
90
|
+
[license-href]: https://github.com/wzc520pyfm/ant-design-x-vue/blob/main/LICENSE
|