xframelib 0.6.8 → 0.7.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 +2 -0
- package/dist/assets/output-1225ced9.css +305 -0
- package/dist/assets/output-232043b1.css +305 -0
- package/dist/assets/output-79ea15e6.css +305 -0
- package/dist/core/IModel.d.ts +6 -0
- package/dist/index.cjs +7 -7
- package/dist/index.css +88 -88
- package/dist/index.js +7 -7
- package/dist/utils/AxiosHelper.d.ts +1 -1
- package/package.json +3 -2
|
@@ -21,7 +21,7 @@ declare function requestGet(apiUrl: string, baseUrl?: string, _params?: any, hea
|
|
|
21
21
|
* @param timeoutMS 超时时间,默认为60000毫秒
|
|
22
22
|
* @returns 返回Promise对象
|
|
23
23
|
*/
|
|
24
|
-
declare function requestPost(apiUrl: string, baseUrl?: string,
|
|
24
|
+
declare function requestPost(apiUrl: string, baseUrl?: string, _bodyFormParams?: any, _queryParams?: any, headers?: any, responseType?: ResponseType, timeoutMS?: number): Promise<any>;
|
|
25
25
|
/**
|
|
26
26
|
* Post服务请求-Body方式
|
|
27
27
|
* @param apiUrl API接口路径
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xframelib",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "积累的前端开发基础库",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"common": "dist/index.cjs",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"@hprose/rpc-html5": "^3.0.10",
|
|
29
29
|
"axios": "^1.2.1",
|
|
30
30
|
"localforage": "^1.10.0",
|
|
31
|
+
"loglevel": "^1.8.1",
|
|
31
32
|
"qs": "^6.11.0",
|
|
32
33
|
"spark-md5": "^3.0.2",
|
|
33
34
|
"streamsaver": "^2.0.6",
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"rimraf": "^3.0.2",
|
|
47
48
|
"rollup-plugin-copy": "^3.4.0",
|
|
48
49
|
"rollup-plugin-esbuild": "^5.0.0",
|
|
49
|
-
"rollup-plugin-scss": "^
|
|
50
|
+
"rollup-plugin-scss": "^3.0.0",
|
|
50
51
|
"rollup-plugin-terser": "^7.0.2",
|
|
51
52
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
52
53
|
"rollup-plugin-vue": "^6.0.0",
|