From 3f85e9fa3c704ab4205a997c4463fb29557f5413 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 24 Jul 2023 13:59:46 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/smartrx.plugins.rxjs.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index aca9e57..ab31782 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartrx', - version: '3.0.5', + version: '3.0.6', description: 'smart wrapper for rxjs' } diff --git a/ts/smartrx.plugins.rxjs.ts b/ts/smartrx.plugins.rxjs.ts index eeec782..7e6cefc 100644 --- a/ts/smartrx.plugins.rxjs.ts +++ b/ts/smartrx.plugins.rxjs.ts @@ -4,7 +4,7 @@ export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from } fro export type { Observer } from 'rxjs'; -import { startWith, takeUntil, map, debounce, debounceTime, throttleTime } from 'rxjs/operators'; +import { startWith, takeUntil, map, debounce, debounceTime, throttleTime, filter } from 'rxjs/operators'; export const ops = { debounce, @@ -13,4 +13,5 @@ export const ops = { startWith, takeUntil, throttleTime, + filter, };