zova-suite-a-devui 5.0.3 → 5.0.6
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/modules/a-devui/package.json +5 -2
- package/modules/a-devui/src/api/index.ts +2 -0
- package/modules/a-devui/src/api/interface/index.ts +1 -0
- package/modules/a-devui/src/api/service/index.ts +1 -0
- package/modules/a-devui/src/index.ts +1 -0
- package/modules/a-devui/src/monkey.ts +2 -2
- package/modules/a-devui/src/resource/scope.ts +3 -1
- package/package.json +3 -3
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-module-a-devui",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"title": "a-devui",
|
|
5
5
|
"zovaModule": {
|
|
6
6
|
"capabilities": {
|
|
7
7
|
"monkey": true
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"a-core": "5.0.0"
|
|
8
11
|
}
|
|
9
12
|
},
|
|
10
13
|
"type": "module",
|
|
@@ -28,5 +31,5 @@
|
|
|
28
31
|
"dist"
|
|
29
32
|
],
|
|
30
33
|
"scripts": {},
|
|
31
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "90bb78df182aa8db862d6b44e86d23aa33b195fa"
|
|
32
35
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const services = {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { BeanBase, BeanContainerLike, BeanSimple, IMonkeySystem } from 'zova';
|
|
2
2
|
|
|
3
3
|
export class Monkey extends BeanSimple implements IMonkeySystem {
|
|
4
|
-
async appInitialize() {}
|
|
5
|
-
async appInitialized() {}
|
|
4
|
+
async appInitialize(_bean: BeanContainerLike) {}
|
|
5
|
+
async appInitialized(_bean: BeanContainerLike) {}
|
|
6
6
|
async beanInit(_bean: BeanContainerLike, _beanInstance: BeanBase) {}
|
|
7
7
|
async beanInited(_bean: BeanContainerLike, _beanInstance: BeanBase) {}
|
|
8
8
|
beanDispose(_bean: BeanContainerLike, _beanInstance: BeanBase) {}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BeanScopeBase, Scope, TypeLocaleBase, TypeModuleResource } from 'zova';
|
|
2
2
|
import { config, Errors, locales, constants } from '../config/index.js';
|
|
3
3
|
import { components } from './components.js';
|
|
4
|
+
import { services } from '../api/service/index.js';
|
|
4
5
|
|
|
5
6
|
@Scope()
|
|
6
7
|
export class ScopeModuleADevui extends BeanScopeBase {}
|
|
@@ -11,7 +12,8 @@ export interface ScopeModuleADevui
|
|
|
11
12
|
typeof config,
|
|
12
13
|
typeof Errors,
|
|
13
14
|
(typeof locales)[TypeLocaleBase],
|
|
14
|
-
typeof constants
|
|
15
|
+
typeof constants,
|
|
16
|
+
typeof services
|
|
15
17
|
> {}
|
|
16
18
|
|
|
17
19
|
import 'zova';
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-suite-a-devui",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"title": "a-devui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "devui",
|
|
7
7
|
"author": "zhennann",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"zova-module-a-devui": "^5.0.
|
|
9
|
+
"zova-module-a-devui": "^5.0.6"
|
|
10
10
|
},
|
|
11
|
-
"gitHead": "
|
|
11
|
+
"gitHead": "90bb78df182aa8db862d6b44e86d23aa33b195fa"
|
|
12
12
|
}
|