zova-module-a-style 5.0.22 → 5.0.24
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/package.json +2 -2
- package/src/monkey.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zova-module-a-style",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.24",
|
|
4
4
|
"title": "a-style",
|
|
5
5
|
"zovaModule": {
|
|
6
6
|
"capabilities": {
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"tsc:publish": "npm run clean && tsc -b",
|
|
38
38
|
"prepublishOnly": "npm run tsc:publish"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "38b917802862663cf6c2e6829857de9a2a742dcd"
|
|
41
41
|
}
|
package/src/monkey.ts
CHANGED
|
@@ -15,6 +15,7 @@ export class Monkey extends BeanSimple implements IMonkeySystem {
|
|
|
15
15
|
const scope: ScopeModule = await bean.getScope(__ThisModule__);
|
|
16
16
|
this._beanStyleDefault = await bean._getBean(scope.config.defaultStyle, true);
|
|
17
17
|
}
|
|
18
|
+
async appReady(_bean: BeanContainer) {}
|
|
18
19
|
async beanInit(bean: BeanContainer, beanInstance: BeanBase) {
|
|
19
20
|
const self = this;
|
|
20
21
|
bean.defineProperty(beanInstance, '$style', {
|