@ngxs/store 3.7.4-dev.master-c961545 → 3.7.4-dev.master-a6cc926
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/bundles/ngxs-store.umd.js +1 -1
- package/bundles/ngxs-store.umd.js.map +1 -1
- package/bundles/ngxs-store.umd.min.js +1 -1
- package/bundles/ngxs-store.umd.min.js.map +1 -1
- package/esm2015/src/store.js +3 -3
- package/esm5/src/store.js +3 -3
- package/fesm2015/ngxs-store.js +2 -2
- package/fesm2015/ngxs-store.js.map +1 -1
- package/fesm5/ngxs-store.js +2 -2
- package/fesm5/ngxs-store.js.map +1 -1
- package/ngxs-store.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3683,7 +3683,7 @@
|
|
|
3683
3683
|
* because state is being changed actually within the `<root>` zone, see `InternalDispatcher#dispatchSingle`.
|
|
3684
3684
|
* All selects would use this stream, and it would call leave only once for any state change across all active selectors.
|
|
3685
3685
|
*/
|
|
3686
|
-
this._selectableStateStream = this._stateStream.pipe(leaveNgxs(this._internalExecutionStrategy), operators.
|
|
3686
|
+
this._selectableStateStream = this._stateStream.pipe(leaveNgxs(this._internalExecutionStrategy), operators.shareReplay({ bufferSize: 1, refCount: true }));
|
|
3687
3687
|
this.initStateStream(initialStateValue);
|
|
3688
3688
|
}
|
|
3689
3689
|
/**
|