@flashist/appframework 0.0.50-appStorage.7 → 0.0.50-appStorage.8

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/app/AppModule.js CHANGED
@@ -27,7 +27,7 @@ var __assign = (this && this.__assign) || function () {
27
27
  import { serviceLocatorAdd } from "@flashist/flibs";
28
28
  import { BaseAppModule } from "../base/modules/BaseAppModule";
29
29
  import { AppManager } from "./managers/AppManager";
30
- import { AppModuleInitialState } from "./data/state/AppModuleState";
30
+ import { AppModuleInitialState } from './data/state/AppModuleState';
31
31
  import { appStorage } from "../state/AppStateModule";
32
32
  var AppModule = /** @class */ (function (_super) {
33
33
  __extends(AppModule, _super);
@@ -39,7 +39,11 @@ var AppModule = /** @class */ (function (_super) {
39
39
  AppModule.prototype.init = function () {
40
40
  _super.prototype.init.call(this);
41
41
  // Init the app with initial state
42
- appStorage().initializeWith(__assign(__assign({}, AppModuleInitialState), { debug: this.debug }));
42
+ appStorage().initializeWith(__assign(__assign({}, AppModuleInitialState), {
43
+ app: {
44
+ debug: this.debug
45
+ }
46
+ }));
43
47
  serviceLocatorAdd(AppManager, { isSingleton: true, forceCreation: true });
44
48
  };
45
49
  return AppModule;
@@ -1 +1 @@
1
- {"version":3,"file":"AppModule.js","sourceRoot":"","sources":["../../src/app/AppModule.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEpD,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAErD;IAA+B,6BAAa;IAExC,mBAAsB,KAAc;QAApC,YACI,iBAAO,SACV;QAFqB,WAAK,GAAL,KAAK,CAAS;;IAEpC,CAAC;IAED,wBAAI,GAAJ;QACI,iBAAM,IAAI,WAAE,CAAC;QAEb,kCAAkC;QAClC,UAAU,EAAE,CAAC,cAAc,uBACpB,qBAAqB,KACxB,KAAK,EAAE,IAAI,CAAC,KAAK,IACnB,CAAC;QAEH,iBAAiB,CAAC,UAAU,EAAE,EAAE,WAAW,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC,CAAC;IAC9E,CAAC;IACL,gBAAC;AAAD,CAAC,AAjBD,CAA+B,aAAa,GAiB3C"}
1
+ {"version":3,"file":"AppModule.js","sourceRoot":"","sources":["../../src/app/AppModule.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEpD,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,qBAAqB,EAAkB,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAErD;IAA+B,6BAAa;IAExC,mBAAsB,KAAc;QAApC,YACI,iBAAO,SACV;QAFqB,WAAK,GAAL,KAAK,CAAS;;IAEpC,CAAC;IAED,wBAAI,GAAJ;QACI,iBAAM,IAAI,WAAE,CAAC;QAEb,kCAAkC;QAClC,UAAU,EAAE,CAAC,cAAc,CAAC,sBACrB,qBAAqB,GACrB;YACC,GAAG,EAAE;gBACD,KAAK,EAAE,IAAI,CAAC,KAAK;aACpB;SACJ,CACc,CAAC,CAAC;QAErB,iBAAiB,CAAC,UAAU,EAAE,EAAE,WAAW,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC,CAAC;IAC9E,CAAC;IACL,gBAAC;AAAD,CAAC,AArBD,CAA+B,aAAa,GAqB3C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashist/appframework",
3
- "version": "0.0.50-appStorage.7",
3
+ "version": "0.0.50-appStorage.8",
4
4
  "scripts": {
5
5
  "build": "gulp",
6
6
  "publish:patch": "npm version patch && npm run build && cd ./dist && npm publish",