@ngrx/component-store
Advanced tools
Changelog
10.0.1 (2020-10-07)
<a name="10.0.0"></a>
Changelog
10.0.0-rc.0 (2020-08-06)
BEFORE:
If effect was const e = effect((o: Observable<string>) => ....) it was still possible to call e() without passing any strings
AFTER:
If effect was const e = effect((o: Observable<string>) => ....) its not allowed to call e() without passing any strings
<a name="10.0.0-beta.1"></a>
Changelog
10.0.0-beta.1 (2020-07-20)
BEFORE:
ng generate container UsersPage --skipTest
AFTER:
ng generate container UsersPage --skipTests
<a name="10.0.0-beta.0"></a>
Changelog
10.0.0-beta.0 (2020-06-25)
Even though an id can be a string, the result of a comparison shouldn't be.
BEFORE:
The sortComparer types allow for a string to be returned
AFTER:
The sortComparer types only allow a number to be returned
Angular v9 are minimum dependencies
AFTER:
Angular v10 are minimum dependencies
<a name="9.2.0"></a>