core
core copied to clipboard
Core functionality for the ngrx platform
Hello dear community, we encounter flakiness when executing unit tests in our project. we would appreciate any help or input on that issue. to reproduce that issue you will need...
The current version of ngrx/core (1.2.0) has a dependency to rxjs version "^5.0.0-beta.11" and a peer dependency to "^5.0.0-beta.12". Those a very deprecated versions (current latest version is 6.2.1) and...
RxJs 6 changed the way operators are used on Observables, making them usable as functions inside .pipe(). LeaveZone is not comapatible with it
Can you please update package json files and sync dependency versions with current Angular 5 versions and dependencies? Right mos opf the ngrx dependencies are in discrepancy with Angular dependency...
A number of developers have asked if the ngrx organization would be willing to develop and maintain a reactive forms library for Angular. Please use this ticket to report either...
```typescript export interface SelectSignature { (key: keyof T, ...paths: string[]): Observable; (mapFn: (state: T) => R): Observable; } ``` So TypeScript can check for using the correct key at least...
Without this fix, it will get typescript compiler error with typescript v2.4.1 when `compose` has more than three args passed in. As in https://www.typescriptlang.org/docs/handbook/functions.html, the office example also places the...
I am using EnterZone with `@ngrx/effects` in order to get Angular to do change detection upon receiving data from Electron IPC. I noticed the operator immediately above `.enterZone()` is not...
The astute @robwormald once told me: "Everything is a stream, and thats fine you know?" So lets make animations into streams. Not sure if this is the right place for...
I'm having the following errors: ERROR in node_modules/@ngrx/core/src/compose.ts (12,43): Rest parameter 'functions' implicitly has an 'any[]' type. node_modules/@ngrx/core/src/compose.ts (13,19): Parameter 'arg' implicitly has an 'any' type. when using this repo...