Skip to content

Commit

Permalink
Adapt RxJS peer dependency version to allow clients to use v6 or v7 a…
Browse files Browse the repository at this point in the history
…t will with Angular 13 (#2108)
  • Loading branch information
christophercr authored Oct 17, 2022
1 parent d71246a commit 5a34e71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projects/swimlane/ngx-datatable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@angular/common": ">=11.0.2",
"@angular/core": ">=11.0.2",
"@angular/platform-browser": ">=11.0.2",
"rxjs": "^6.6.3"
"rxjs": "^6.6.3 || ^7.4.0"
},
"dependencies": {
"tslib": "^2.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import { Observable, Subject } from 'rxjs';
*/
@Injectable()
export class ColumnChangesService {
private columnInputChanges = new Subject<undefined>();
private columnInputChanges = new Subject<void>();

get columnInputChanges$(): Observable<undefined> {
get columnInputChanges$(): Observable<void> {
return this.columnInputChanges.asObservable();
}

Expand Down

0 comments on commit 5a34e71

Please sign in to comment.