zova-module-a-style 5.0.12 → 5.0.13

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-style",
3
- "version": "5.0.12",
3
+ "version": "5.0.13",
4
4
  "title": "a-style",
5
5
  "zovaModule": {
6
6
  "capabilities": {
@@ -34,5 +34,5 @@
34
34
  "tsc:publish": "npm run clean && tsc -b",
35
35
  "prepublishOnly": "npm run tsc:publish"
36
36
  },
37
- "gitHead": "90bb78df182aa8db862d6b44e86d23aa33b195fa"
37
+ "gitHead": "7ed3f754f876b8469790f652698b6c116ab377e8"
38
38
  }
package/src/monkey.ts CHANGED
@@ -7,12 +7,12 @@ export class Monkey extends BeanSimple implements IMonkeySystem {
7
7
  private _storeTheme: StoreTheme;
8
8
  private _storeStyleDefault: any;
9
9
 
10
- async appInitialize(_bean: BeanContainerLike) {
10
+ async appInitialize(bean: BeanContainerLike) {
11
11
  // theme
12
- this._storeTheme = await this.bean._getBean(StoreTheme, true);
12
+ this._storeTheme = await bean._getBean(StoreTheme, true);
13
13
  // style default
14
- const scope: ScopeModule = await this.bean.getScope(__ThisModule__);
15
- this._storeStyleDefault = await this.bean._getBean(scope.config.defaultStyle, true);
14
+ const scope: ScopeModule = await bean.getScope(__ThisModule__);
15
+ this._storeStyleDefault = await bean._getBean(scope.config.defaultStyle, true);
16
16
  }
17
17
  async appInitialized(_bean: BeanContainerLike) {}
18
18
  async beanInit(bean: BeanContainerLike, beanInstance: BeanBase) {