@rklink/components 0.1.0
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 +23 -0
- package/dist/index.cjs +718 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +189 -0
- package/dist/index.d.ts +189 -0
- package/dist/index.js +705 -0
- package/dist/index.js.map +1 -0
- package/package.json +65 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# RK Components
|
|
2
|
+
|
|
3
|
+
基于 Ant Design 和 ProComponents 的 React 业务组件库。
|
|
4
|
+
|
|
5
|
+
## 常用命令
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install
|
|
9
|
+
npm run dev
|
|
10
|
+
npm run docs:build
|
|
11
|
+
npm run build
|
|
12
|
+
npm run release
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## 使用方式
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
import { RKTable, RKConfirmAction, RKSchemaForm, RKRemoteSelect } from '@rklink/components';
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## 发布
|
|
22
|
+
|
|
23
|
+
`npm run release` 会先执行类型检查、Lint、组件构建和文档构建,然后发布 npm 包。
|