zova-suite-a-devui 5.0.4 → 5.0.7

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-module-a-devui",
3
- "version": "5.0.4",
3
+ "version": "5.0.7",
4
4
  "title": "a-devui",
5
5
  "zovaModule": {
6
6
  "capabilities": {
@@ -31,5 +31,5 @@
31
31
  "dist"
32
32
  ],
33
33
  "scripts": {},
34
- "gitHead": "cf251354cd9a92a06e02cfcc4dc2282a0c6d557b"
34
+ "gitHead": "6e879538e3d741f0c87136ad404eb0fe90c2bd7f"
35
35
  }
@@ -0,0 +1,2 @@
1
+ export * from './interface/index.js';
2
+ export * from './service/index.js';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export const services = {};
@@ -1,6 +1,7 @@
1
1
  import './assets/css/module.scss';
2
2
  export * from './config/index.js';
3
3
  export * from './resource/index.js';
4
+ export * from './api/index.js';
4
5
  export * from './routes.js';
5
6
  export * from './types.js';
6
7
  export * from './monkey.js';
@@ -1,10 +1,10 @@
1
- import { BeanBase, BeanContainerLike, BeanSimple, IMonkeySystem } from 'zova';
1
+ import { BeanBase, BeanContainer, BeanSimple, IMonkeySystem } from 'zova';
2
2
 
3
3
  export class Monkey extends BeanSimple implements IMonkeySystem {
4
- async appInitialize() {}
5
- async appInitialized() {}
6
- async beanInit(_bean: BeanContainerLike, _beanInstance: BeanBase) {}
7
- async beanInited(_bean: BeanContainerLike, _beanInstance: BeanBase) {}
8
- beanDispose(_bean: BeanContainerLike, _beanInstance: BeanBase) {}
9
- beanDisposed(_bean: BeanContainerLike, _beanInstance: BeanBase) {}
4
+ async appInitialize(_bean: BeanContainer) {}
5
+ async appInitialized(_bean: BeanContainer) {}
6
+ async beanInit(_bean: BeanContainer, _beanInstance: BeanBase) {}
7
+ async beanInited(_bean: BeanContainer, _beanInstance: BeanBase) {}
8
+ beanDispose(_bean: BeanContainer, _beanInstance: BeanBase) {}
9
+ beanDisposed(_bean: BeanContainer, _beanInstance: BeanBase) {}
10
10
  }
@@ -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.4",
3
+ "version": "5.0.7",
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.4"
9
+ "zova-module-a-devui": "^5.0.7"
10
10
  },
11
- "gitHead": "cf251354cd9a92a06e02cfcc4dc2282a0c6d557b"
11
+ "gitHead": "6e879538e3d741f0c87136ad404eb0fe90c2bd7f"
12
12
  }