@cniot/android-pda-components 0.2.6 → 0.2.8-4.beta.1
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 +9 -21
- package/abc.json +8 -0
- package/build/assets/index.4021f536.js +866 -0
- package/build/assets/index.8f58f1f3.css +1 -0
- package/build/index.html +6 -4
- package/change.md +16 -0
- package/doc/index.jsx +155 -79
- package/es/index.cjs.js +3 -3
- package/es/index.es.js +1185 -438
- package/es/style.css +1 -1
- package/index.html +4 -1
- package/package.json +4 -4
- package/build/assets/index.4884c14d.css +0 -1
- package/build/assets/index.4c150d5a.js +0 -485
- package/build/assets/vendor.999402d8.js +0 -40
package/README.md
CHANGED
|
@@ -1,34 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
## 手持 PDA 实操组件库
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 文档
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
tnpm install @cniot/android-pda-components;
|
|
5
|
+
- https://page.cainiao.com/lemo/android-pda-components/index.html
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
## 安装
|
|
9
8
|
|
|
10
|
-
* 使用
|
|
11
9
|
```
|
|
12
|
-
import {PdaButton} from '@cniot/android-pda-components';
|
|
13
|
-
import '@cniot/android-pda-components/es/style.css';
|
|
14
10
|
|
|
15
|
-
|
|
11
|
+
[t]npm install @cniot/android-pda-components --save
|
|
16
12
|
|
|
17
13
|
```
|
|
18
|
-
## 在线文档
|
|
19
|
-
|
|
20
|
-
<https://page.cainiao.com/lemo/android-pda-components/index.html>
|
|
21
|
-
````
|
|
22
14
|
|
|
23
|
-
|
|
24
|
-
> - 基本用法:在 package.json 配置 scripts.build,且生成产物放在 build目录
|
|
15
|
+
## 使用
|
|
25
16
|
|
|
26
17
|
```
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "build-cli"
|
|
29
|
-
}
|
|
30
18
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
> - package.json包含 name, version字段
|
|
19
|
+
import { Button } from '@cniot/android-pda-components';
|
|
20
|
+
import '@cniot/android-pda-components/es/style.css';
|
|
34
21
|
|
|
22
|
+
```
|