zova-module-a-model 5.0.26 → 5.0.28

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/monkey.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-module-a-model",
3
- "version": "5.0.26",
3
+ "version": "5.0.28",
4
4
  "title": "a-model",
5
5
  "zovaModule": {
6
6
  "capabilities": {
@@ -55,5 +55,5 @@
55
55
  "@tanstack/vue-query": "^5.45.0",
56
56
  "localforage": "^1.10.0"
57
57
  },
58
- "gitHead": "b87bdd8540395b181993a617d33cad57b3c4d446"
58
+ "gitHead": "200ff5791bd6362080428f5b6c6c8f2a82c7d9d0"
59
59
  }
package/src/monkey.ts CHANGED
@@ -6,12 +6,12 @@ import { markRaw } from 'vue';
6
6
  export class Monkey extends BeanSimple implements IMonkeySystem {
7
7
  storage: LocalStorage;
8
8
 
9
- async appInitialize(bean: BeanContainer) {
9
+ async appInitialize() {
10
10
  // storage
11
- this.storage = await bean._newBean(LocalStorage, false);
11
+ this.storage = await this.bean._newBean(LocalStorage, false);
12
12
  }
13
- async appInitialized(_bean: BeanContainer) {}
14
- async appReady(_bean: BeanContainer) {}
13
+ async appInitialized() {}
14
+ async appReady() {}
15
15
 
16
16
  async beanInit(bean: BeanContainer, beanInstance: BeanBase) {
17
17
  bean.defineProperty(beanInstance, '$queryClient', {