@airpower/web 0.0.17 → 0.0.21
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/dist/{airpower.es.js → airpower.web.js} +13234 -256
- package/dist/config/index.d.ts +1 -2
- package/dist/index.d.ts +1 -1
- package/dist/service/AbstractWebService.d.ts +2 -3
- package/dist/shared/index.d.ts +1 -0
- package/package.json +5 -5
- package/dist/airpower.umd.js +0 -27024
- package/dist/config/WebConstant.d.ts +0 -7
- package/dist/type.d.ts +0 -1
package/dist/config/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from './WebConfig
|
|
2
|
-
export * from './WebConstant.ts';
|
|
1
|
+
export * from './WebConfig';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { AbstractHttp, AbstractEntityService } from '@airpower/core';
|
|
2
|
-
import { AirEntity } from 'airpower';
|
|
1
|
+
import { AbstractHttp, AirEntity, AbstractEntityService } from '@airpower/core';
|
|
3
2
|
/**
|
|
4
3
|
* # 实体 `API` 服务超类
|
|
5
4
|
* 包含了常用的增删改查等方法
|
|
@@ -9,6 +8,6 @@ import { AirEntity } from 'airpower';
|
|
|
9
8
|
*/
|
|
10
9
|
export declare abstract class AbstractWebService<E extends AirEntity> extends AbstractEntityService<E> {
|
|
11
10
|
createHttp(url: string): AbstractHttp;
|
|
12
|
-
protected showError(errorMessage: string): void;
|
|
13
11
|
protected showSuccess(successMessage: string): void;
|
|
12
|
+
protected showError(errorMessage: string): void;
|
|
14
13
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@airpower/core';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@airpower/web",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.21",
|
|
5
5
|
"description": "AirPower-Web",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Hamm",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"oop",
|
|
22
22
|
"class"
|
|
23
23
|
],
|
|
24
|
-
"main": "dist/airpower.
|
|
24
|
+
"main": "dist/airpower.es.js",
|
|
25
25
|
"module": "dist/airpower.es.js",
|
|
26
26
|
"types": "dist/index.d.ts",
|
|
27
27
|
"files": [
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"preview": "vite preview"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@airpower/core": "^0.0.
|
|
38
|
-
"
|
|
37
|
+
"@airpower/core": "^0.0.30",
|
|
38
|
+
"vue": "^3.5.13",
|
|
39
39
|
"axios": "^1.8.4",
|
|
40
|
-
"vue": "
|
|
40
|
+
"ant-design-vue": "4.x"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@antfu/eslint-config": "^4.11.0",
|