ant-design-x-vue 0.0.3 → 0.0.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 +11 -1
- package/dist/index.mjs +3354 -1724
- package/dist/index.umd.js +13 -13
- package/dist/typings/_util/cssinjs/StyleContext.d.ts +6 -6
- package/dist/typings/_util/cssinjs/index.d.ts +3 -3
- package/dist/typings/attachments/Attachments.vue.d.ts +6 -0
- package/dist/typings/attachments/DropArea.vue.d.ts +3 -0
- package/dist/typings/attachments/FileList/AudioIcon.vue.d.ts +2 -0
- package/dist/typings/attachments/FileList/FileList.vue.d.ts +3 -0
- package/dist/typings/attachments/FileList/FileListCard.vue.d.ts +5 -0
- package/dist/typings/attachments/FileList/VideoIcon.vue.d.ts +2 -0
- package/dist/typings/attachments/FileList/index.d.ts +3 -0
- package/dist/typings/attachments/PlaceholderUploader.vue.d.ts +450 -0
- package/dist/typings/attachments/SilentUploader.vue.d.ts +450 -0
- package/dist/typings/attachments/context.d.ts +21 -0
- package/dist/typings/attachments/index.d.ts +29 -0
- package/dist/typings/attachments/interface.d.ts +75 -0
- package/dist/typings/attachments/style/fileCard.d.ts +4 -0
- package/dist/typings/attachments/style/index.d.ts +9 -0
- package/dist/typings/attachments/util.d.ts +2 -0
- package/dist/typings/index.d.ts +1 -0
- package/dist/typings/theme/components.d.ts +2 -0
- package/dist/typings/x-provider/context.d.ts +2 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Ant Design X For Vue.(WIP) 疯狂研发中🔥
|
|
7
7
|
|
|
8
|
+
这里是[Ant Design X](https://github.com/ant-design/x)的Vue实现。
|
|
9
|
+
|
|
8
10
|
## Usage
|
|
9
11
|
|
|
10
12
|
First, install `ant-design-vue` and `ant-design-x-vue`:
|
|
@@ -47,7 +49,9 @@ $ pnpm lint
|
|
|
47
49
|
|
|
48
50
|
## Contributing
|
|
49
51
|
|
|
50
|
-
|
|
52
|
+
您的贡献至关重要!
|
|
53
|
+
|
|
54
|
+
现在Ant Desgin X Vue正在全力同步[Ant Design X](https://github.com/ant-design/x) 的组件,因此,协助我们同步组件是最好的贡献方式,在开始您的工作前,请遵照如下流程:
|
|
51
55
|
1. 在[Roadmap](https://github.com/wzc520pyfm/ant-design-x-vue/issues/1)中提及@wzc520pyfm认领一个组件,在得到答复后开始工作
|
|
52
56
|
2. Fork本仓库,并为你认领的组件创建一个开发分支,分支名和commit请遵守《通用提交规范》,建议在完成一个阶段性工作时就进行一次commit,不建议单个commit积累太多内容。
|
|
53
57
|
3. 目前完成一个新组件的大致工作如下(可参考`bubble`组件):
|
|
@@ -60,6 +64,12 @@ $ pnpm lint
|
|
|
60
64
|
|
|
61
65
|
除此之外,我们仍有很多事要做,您也可以参考Roadmap,从中挑选您感兴趣的部分。
|
|
62
66
|
|
|
67
|
+
## Contributors
|
|
68
|
+
|
|
69
|
+
<a href="https://github.com/wzc520pyfm/ohcolor/graphs/contributors">
|
|
70
|
+
<img src="https://contrib.rocks/image?repo=wzc520pyfm/ohcolor" />
|
|
71
|
+
</a>
|
|
72
|
+
|
|
63
73
|
## LICENSE
|
|
64
74
|
|
|
65
75
|
MIT
|