@cniot/android-pda-components 0.2.75 → 0.2.79
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 +14 -9
- package/build/assets/{index.7b104ddc.js → index.c3401ceb.js} +12 -12
- package/build/assets/index.c65dbd9d.css +1 -0
- package/build/index.html +6 -3
- package/es/index.cjs.js +2 -2
- package/es/index.es.js +10 -5
- package/es/style.css +1 -1
- package/index.html +4 -1
- package/package.json +1 -1
- package/build/assets/index.0cca1dda.css +0 -1
package/README.md
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
## 手持 PDA 实操组件库
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 文档
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- https://page.cainiao.com/lemo/android-pda-components/index.html
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
> - 基本用法:在 package.json 配置 scripts.build,且生成产物放在 build目录
|
|
7
|
+
## 安装
|
|
9
8
|
|
|
10
9
|
```
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
|
|
11
|
+
[t]npm install @cniot/android-pda-components --save
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## 使用
|
|
14
16
|
|
|
15
17
|
```
|
|
16
18
|
|
|
17
|
-
|
|
19
|
+
import { Button } from '@cniot/android-pda-components';
|
|
20
|
+
import '@cniot/android-pda-components/es/style.css';
|
|
21
|
+
|
|
22
|
+
```
|