@ethlete/core 4.29.5 → 4.29.7
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/CHANGELOG.md +12 -0
- package/fesm2022/ethlete-core.mjs +43 -8
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { ComponentPortal, ComponentType } from '@angular/cdk/portal';
|
|
|
11
11
|
import { Placement, OffsetOptions, Padding } from '@floating-ui/dom';
|
|
12
12
|
import * as _ethlete_core from '@ethlete/core';
|
|
13
13
|
import * as _angular_router from '@angular/router';
|
|
14
|
-
import { Data, Params } from '@angular/router';
|
|
14
|
+
import { Data, Params, Event } from '@angular/router';
|
|
15
15
|
import * as _angular_forms from '@angular/forms';
|
|
16
16
|
import { FormGroup, AbstractControl, FormControl, ValidatorFn, ValidationErrors } from '@angular/forms';
|
|
17
17
|
|
|
@@ -1058,6 +1058,7 @@ declare class RouterStateService {
|
|
|
1058
1058
|
get dataChanges$(): Observable<Partial<Data>>;
|
|
1059
1059
|
get queryParamChanges$(): Observable<Partial<Params>>;
|
|
1060
1060
|
get pathParamChanges$(): Observable<Partial<Params>>;
|
|
1061
|
+
latestEvent: i0.WritableSignal<Event | null>;
|
|
1061
1062
|
constructor();
|
|
1062
1063
|
enableScrollEnhancements(config?: ScrollEnhancementsConfig): void;
|
|
1063
1064
|
selectQueryParam<T = string | undefined>(key: string): Observable<T>;
|