@ngrdt/core 0.0.68 → 0.0.69
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.
- package/index.d.ts +2 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ interface RdtOnViewWillLeave {
|
|
|
67
67
|
interface RdtOnViewWillEnter {
|
|
68
68
|
rdtOnViewWillEnter(): void;
|
|
69
69
|
}
|
|
70
|
-
declare const RDT_GUARDED_COMPONENT: InjectionToken<
|
|
70
|
+
declare const RDT_GUARDED_COMPONENT: InjectionToken<RdtCanLeaveView | RdtCanEnterView | RdtOnViewWillEnter | RdtOnViewWillLeave | RdtIsActive>;
|
|
71
71
|
declare const RDT_CONTAINER: InjectionToken<RdtContainerDirective>;
|
|
72
72
|
declare function canTransition$(from: Nullable<RdtContainerDirective>, to: Nullable<RdtContainerDirective>): rxjs.Observable<boolean>;
|
|
73
73
|
|
|
@@ -85,7 +85,7 @@ declare class RdtChildDirective implements OnInit, OnDestroy {
|
|
|
85
85
|
readonly guardStore: RdtComponentGuardStoreService;
|
|
86
86
|
readonly destroyRef: DestroyRef;
|
|
87
87
|
readonly container: RdtContainerDirective | null;
|
|
88
|
-
readonly guardedComponent:
|
|
88
|
+
readonly guardedComponent: RdtCanLeaveView | RdtCanEnterView | RdtOnViewWillEnter | RdtOnViewWillLeave | RdtIsActive | null;
|
|
89
89
|
ngOnInit(): void;
|
|
90
90
|
ngOnDestroy(): void;
|
|
91
91
|
isActive(): boolean;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngrdt/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.69",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/core": ">=18.2.0",
|
|
6
6
|
"@angular/common": ">=18.2.0",
|
|
7
7
|
"rxjs": ">=7.0.0",
|
|
8
|
-
"@ngrdt/utils": "^0.0.
|
|
8
|
+
"@ngrdt/utils": "^0.0.69"
|
|
9
9
|
},
|
|
10
10
|
"sideEffects": false,
|
|
11
11
|
"module": "fesm2022/ngrdt-core.mjs",
|