ls-pro-common 1.0.18 → 1.0.19
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 +5 -6
- package/dist/common.js +1 -1
- package/dist/common.min.js +1 -1
- package/es/hooks/useDtl/index.d.ts +1 -1
- package/es/hooks/useDtl/index.js +57 -23
- package/es/http/index.js +5 -2
- package/es/utils/index.js +1 -1
- package/lib/hooks/useDtl/index.d.ts +1 -1
- package/lib/hooks/useDtl/index.js +57 -23
- package/lib/http/index.js +4 -1
- package/lib/utils/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
# ls-pro-
|
|
1
|
+
# ls-pro-common
|
|
2
2
|
|
|
3
|
-
> ls-pro-
|
|
3
|
+
> ls-pro-common.
|
|
4
4
|
|
|
5
|
-
See our website [ls-pro-utils](https://procomponent.ant.design/) for more information.
|
|
6
5
|
|
|
7
|
-
ls-pro-
|
|
6
|
+
ls-pro-common 基于 ant-design/pro-component 进行封装的业务功能及组件,主要包括通用的页面布局组件,CRUD,导入导出 功能 hooks封装, http请求封装等。
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
|
|
@@ -13,11 +12,11 @@ ls-pro-utils 基于 ant-design/pro-utils 1.32.5版本上进行优化
|
|
|
13
12
|
Using npm:
|
|
14
13
|
|
|
15
14
|
```bash
|
|
16
|
-
$ npm install --save ls-pro-
|
|
15
|
+
$ npm install --save ls-pro-common
|
|
17
16
|
```
|
|
18
17
|
|
|
19
18
|
or using yarn:
|
|
20
19
|
|
|
21
20
|
```bash
|
|
22
|
-
$ yarn add ls-pro-
|
|
21
|
+
$ yarn add ls-pro-common
|
|
23
22
|
```
|