ls-pro-common 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/CHANGELOG.md +746 -0
- package/README.md +23 -0
- package/dist/common.js +2 -0
- package/dist/common.js.LICENSE.txt +29 -0
- package/dist/common.less +0 -0
- package/dist/common.min.js +2 -0
- package/dist/common.min.js.LICENSE.txt +29 -0
- package/es/components/EditModalForm.d.ts +7 -0
- package/es/components/EditModalForm.js +29 -0
- package/es/hooks/useSingle/index.d.ts +29 -0
- package/es/hooks/useSingle/index.js +267 -0
- package/es/http/index.d.ts +47 -0
- package/es/http/index.js +306 -0
- package/es/index.d.ts +10 -0
- package/es/index.js +8 -0
- package/es/service/BaseService.d.ts +15 -0
- package/es/service/BaseService.js +202 -0
- package/es/typing.d.ts +43 -0
- package/es/typing.js +1 -0
- package/es/utils/index.d.ts +80 -0
- package/es/utils/index.js +205 -0
- package/lib/components/EditModalForm.d.ts +7 -0
- package/lib/components/EditModalForm.js +42 -0
- package/lib/hooks/useSingle/index.d.ts +29 -0
- package/lib/hooks/useSingle/index.js +288 -0
- package/lib/http/index.d.ts +47 -0
- package/lib/http/index.js +331 -0
- package/lib/index.d.ts +10 -0
- package/lib/index.js +82 -0
- package/lib/service/BaseService.d.ts +15 -0
- package/lib/service/BaseService.js +216 -0
- package/lib/typing.d.ts +43 -0
- package/lib/typing.js +5 -0
- package/lib/utils/index.d.ts +80 -0
- package/lib/utils/index.js +264 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# ls-pro-utils
|
|
2
|
+
|
|
3
|
+
> ls-pro-utils.
|
|
4
|
+
|
|
5
|
+
See our website [ls-pro-utils](https://procomponent.ant.design/) for more information.
|
|
6
|
+
|
|
7
|
+
ls-pro-utils 基于 ant-design/pro-utils 1.32.5版本上进行优化
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
Using npm:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
$ npm install --save ls-pro-utils
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
or using yarn:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
$ yarn add ls-pro-utils
|
|
23
|
+
```
|