th-design 1.0.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 ADDED
@@ -0,0 +1,34 @@
1
+ # th-react-ui
2
+
3
+ ## Getting Started
4
+
5
+ 安装依赖,
6
+
7
+ ```bash
8
+ $ yarn
9
+ ```
10
+
11
+ 启动程序,
12
+
13
+ ```bash
14
+ $ yarn start
15
+ ```
16
+
17
+ 打包文档,
18
+
19
+ ```bash
20
+ $ yarn docs:build
21
+ ```
22
+ 打包后的文档存放在217 /home/th-react-ui-docs/ 目录下
23
+
24
+ 运行测试环境,
25
+
26
+ ```bash
27
+ $ yarn test
28
+ ```
29
+
30
+ 打包组件库 `father`,
31
+
32
+ ```bash
33
+ $ yarn build
34
+ ```
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import './index.less';
3
+ import type { ThSelectProps } from './typing';
4
+ declare const _default: import("react").MemoExoticComponent<(props: ThSelectProps) => JSX.Element>;
5
+ export default _default;