@ngxs/store 3.7.6-dev.master-1bdb8c0 → 3.7.6-dev.master-fb318b1

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.
@@ -2853,9 +2853,7 @@
2853
2853
  factory: (/**
2854
2854
  * @return {?}
2855
2855
  */
2856
- function () { return ({
2857
- warnOnUnhandledActions: { ignore: [] }
2858
- }); })
2856
+ function () { return ({ warnOnUnhandledActions: true }); })
2859
2857
  });
2860
2858
 
2861
2859
  /**
@@ -2869,7 +2867,9 @@
2869
2867
  * list in the future via the `ignoreActions` method.
2870
2868
  */
2871
2869
  this._ignoredActions = new Set([InitState.type, UpdateState.type]);
2872
- this.ignoreActions.apply(this, __spread(options.warnOnUnhandledActions.ignore));
2870
+ if (typeof options.warnOnUnhandledActions === 'object') {
2871
+ this.ignoreActions.apply(this, __spread(options.warnOnUnhandledActions.ignore));
2872
+ }
2873
2873
  }
2874
2874
  /**
2875
2875
  * Adds actions to the internal list of actions that should be ignored.