Skip to content

Commit 0ef8a92

Browse files
authored
1a1b6df4 feat(effects): remove concatLatestFrom operator (#4367)
1 parent 866c759 commit 0ef8a92

File tree

5 files changed

+4
-20
lines changed

5 files changed

+4
-20
lines changed

commit_message

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c35794e0 docs: remove component-store/tapResponse docs (#4358)
1+
1a1b6df4 feat(effects): remove concatLatestFrom operator (#4367)

esm2022/src/index.mjs

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
import * as operators from '@ngrx/operators';
21
export * from './component-store';
32
export { provideComponentStore, } from './lifecycle_hooks';
4-
/**
5-
* @deprecated Use `tapResponse` from `@ngrx/operators` instead.
6-
*/
7-
export const tapResponse = operators.tapResponse;
8-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9tb2R1bGVzL2NvbXBvbmVudC1zdG9yZS9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxLQUFLLFNBQVMsTUFBTSxpQkFBaUIsQ0FBQztBQUU3QyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLE9BQU8sRUFDTCxxQkFBcUIsR0FHdEIsTUFBTSxtQkFBbUIsQ0FBQztBQUUzQjs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLFdBQVcsR0FBRyxTQUFTLENBQUMsV0FBVyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgb3BlcmF0b3JzIGZyb20gJ0BuZ3J4L29wZXJhdG9ycyc7XG5cbmV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50LXN0b3JlJztcbmV4cG9ydCB7XG4gIHByb3ZpZGVDb21wb25lbnRTdG9yZSxcbiAgT25TdGF0ZUluaXQsXG4gIE9uU3RvcmVJbml0LFxufSBmcm9tICcuL2xpZmVjeWNsZV9ob29rcyc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQgVXNlIGB0YXBSZXNwb25zZWAgZnJvbSBgQG5ncngvb3BlcmF0b3JzYCBpbnN0ZWFkLlxuICovXG5leHBvcnQgY29uc3QgdGFwUmVzcG9uc2UgPSBvcGVyYXRvcnMudGFwUmVzcG9uc2U7XG4iXX0=
3+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9tb2R1bGVzL2NvbXBvbmVudC1zdG9yZS9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxPQUFPLEVBQ0wscUJBQXFCLEdBR3RCLE1BQU0sbUJBQW1CLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudC1zdG9yZSc7XG5leHBvcnQge1xuICBwcm92aWRlQ29tcG9uZW50U3RvcmUsXG4gIE9uU3RhdGVJbml0LFxuICBPblN0b3JlSW5pdCxcbn0gZnJvbSAnLi9saWZlY3ljbGVfaG9va3MnO1xuIl19

fesm2022/ngrx-component-store.mjs

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import * as operators from '@ngrx/operators';
21
import { Observable, Subscription, asapScheduler, ReplaySubject, isObservable, of, queueScheduler, EMPTY, throwError, scheduled, combineLatest, Subject } from 'rxjs';
32
import { take, takeUntil, observeOn, tap, withLatestFrom, map, catchError, distinctUntilChanged, shareReplay } from 'rxjs/operators';
43
import * as i0 from '@angular/core';
@@ -405,11 +404,6 @@ function noopOperator() {
405404
return (source$) => source$;
406405
}
407406

408-
/**
409-
* @deprecated Use `tapResponse` from `@ngrx/operators` instead.
410-
*/
411-
const tapResponse = operators.tapResponse;
412-
413407
/**
414408
* DO NOT EDIT
415409
*
@@ -420,5 +414,5 @@ const tapResponse = operators.tapResponse;
420414
* Generated bundle index. Do not edit.
421415
*/
422416

423-
export { ComponentStore, INITIAL_STATE_TOKEN, provideComponentStore, tapResponse };
417+
export { ComponentStore, INITIAL_STATE_TOKEN, provideComponentStore };
424418
//# sourceMappingURL=ngrx-component-store.mjs.map

fesm2022/ngrx-component-store.mjs.map

+1-1
Large diffs are not rendered by default.

src/index.d.ts

-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
1-
import * as operators from '@ngrx/operators';
21
export * from './component-store';
32
export { provideComponentStore, OnStateInit, OnStoreInit, } from './lifecycle_hooks';
4-
/**
5-
* @deprecated Use `tapResponse` from `@ngrx/operators` instead.
6-
*/
7-
export declare const tapResponse: typeof operators.tapResponse;

0 commit comments

Comments
 (0)