@ngrx-traits/core 21.0.0-beta.7 → 21.0.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -517,10 +517,10 @@ class TraitEffect {
|
|
|
517
517
|
? resolvedEffects$.pipe(takeUntil(this.actions$.pipe(ofType(getDestroyActionName(this.componentId)))))
|
|
518
518
|
: resolvedEffects$;
|
|
519
519
|
}
|
|
520
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
521
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
520
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: TraitEffect, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
521
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: TraitEffect }); }
|
|
522
522
|
}
|
|
523
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: TraitEffect, decorators: [{
|
|
524
524
|
type: Injectable
|
|
525
525
|
}] });
|
|
526
526
|
function getDestroyActionName(id) {
|
|
@@ -667,10 +667,10 @@ class TraitsLocalStore extends TraitEffect {
|
|
|
667
667
|
ngOnDestroy() {
|
|
668
668
|
this.traits.destroy();
|
|
669
669
|
}
|
|
670
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
671
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.
|
|
670
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: TraitsLocalStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
671
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: TraitsLocalStore }); }
|
|
672
672
|
}
|
|
673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: TraitsLocalStore, decorators: [{
|
|
674
674
|
type: Injectable
|
|
675
675
|
}], ctorParameters: () => [] });
|
|
676
676
|
|
|
@@ -915,11 +915,11 @@ function invalidaSubKeys(state) {
|
|
|
915
915
|
}
|
|
916
916
|
|
|
917
917
|
class CacheModule {
|
|
918
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.
|
|
919
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.
|
|
920
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.
|
|
918
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: CacheModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
919
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.1", ngImport: i0, type: CacheModule, imports: [i1.StoreFeatureModule] }); }
|
|
920
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: CacheModule, imports: [StoreModule.forFeature('cache', cacheReducer)] }); }
|
|
921
921
|
}
|
|
922
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.
|
|
922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: CacheModule, decorators: [{
|
|
923
923
|
type: NgModule,
|
|
924
924
|
args: [{
|
|
925
925
|
imports: [StoreModule.forFeature('cache', cacheReducer)],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Type as Type$1,
|
|
2
|
+
import { Type as Type$1, OnDestroy, Injector, InjectionToken } from '@angular/core';
|
|
3
3
|
import * as _ngrx_store from '@ngrx/store';
|
|
4
|
-
import { Store, ActionCreator, Action, Selector, SelectorWithProps,
|
|
4
|
+
import { Store, MemoizedSelector, ActionType, ActionCreator, Action, Selector, SelectorWithProps, ReducerTypes } from '@ngrx/store';
|
|
5
5
|
import { OnIdentifyEffects, OnRunEffects, Actions } from '@ngrx/effects';
|
|
6
6
|
import { Observable } from 'rxjs';
|
|
7
7
|
|