@ngxs/store 3.8.1-dev.master-22a8ab1 → 3.8.1-dev.master-f7ec3a6

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 CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@ngxs/store",
3
- "version": "3.8.1-dev.master-22a8ab1",
3
+ "version": "3.8.1-dev.master-f7ec3a6",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
7
- "@angular/core": ">=12.0.0 <17.0.0",
7
+ "@angular/core": ">=12.0.0 <18.0.0",
8
8
  "rxjs": ">=6.5.5"
9
9
  },
10
10
  "schematics": "./schematics/collection.json",
@@ -1,4 +1,4 @@
1
- import { Subject, BehaviorSubject } from 'rxjs';
1
+ import { BehaviorSubject, Subject } from 'rxjs';
2
2
  /**
3
3
  * Custom Subject that ensures that subscribers are notified of values in the order that they arrived.
4
4
  * A standard Subject does not have this guarantee.