@ethlete/cdk 3.18.2 → 3.19.0
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 +16 -0
- package/esm2022/lib/components/filter/filter-overlay/utils/filter-overlay-ref.mjs +3 -3
- package/esm2022/lib/components/filter/rich-filter/components/rich-filter-host/rich-filter-host.component.mjs +5 -4
- package/esm2022/lib/components/forms/components/selection-list/directives/selection-list-option/selection-list-option.directive.mjs +2 -2
- package/esm2022/lib/components/pagination/components/pagination/pagination.component.mjs +4 -2
- package/fesm2022/ethlete-cdk.mjs +9 -7
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/lib/components/filter/rich-filter/components/rich-filter-host/rich-filter-host.component.d.ts +1 -0
- package/lib/components/pagination/components/pagination/pagination.component.d.ts +2 -2
- package/package.json +2 -2
|
@@ -16,6 +16,7 @@ export declare class RichFilterHostComponent {
|
|
|
16
16
|
readonly contentVisibilityChanges$: import("rxjs").Observable<import("@ethlete/core").ObserveVisibilityChange | null>;
|
|
17
17
|
readonly buttonSlotVisibilityChanges: import("@angular/core").Signal<import("@ethlete/core").ObserveVisibilityChange | null>;
|
|
18
18
|
readonly contentVisibilityChanges: import("@angular/core").Signal<import("@ethlete/core").ObserveVisibilityChange | null>;
|
|
19
|
+
readonly topElementRef: import("@angular/core").Signal<import("@angular/core").ElementRef<HTMLElement>>;
|
|
19
20
|
constructor();
|
|
20
21
|
scrollToTop(options?: ScrollIntoViewOptions): void;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<RichFilterHostComponent, never>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnDestroy, OnInit, TrackByFunction } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit, TrackByFunction } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
4
|
import { PaginationItem } from '../../types';
|
|
@@ -16,7 +16,7 @@ export declare class PaginationComponent implements OnInit, OnDestroy {
|
|
|
16
16
|
set headFirstPageTitle(v: string | null);
|
|
17
17
|
set headAddCanonicalTag(v: boolean);
|
|
18
18
|
ariaLabel: string;
|
|
19
|
-
pageChangeScrollAnchor: HTMLElement | null;
|
|
19
|
+
pageChangeScrollAnchor: HTMLElement | ElementRef<HTMLElement> | null;
|
|
20
20
|
protected pages$: BehaviorSubject<PaginationItem[] | null>;
|
|
21
21
|
protected trackByPage: TrackByFunction<PaginationItem>;
|
|
22
22
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethlete/cdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.19.0",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"css": "./src/lib/styles/index.css",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/animations": "16.2.5",
|
|
23
23
|
"@angular/platform-browser": "16.2.5",
|
|
24
24
|
"@angular/cdk": "16.2.6",
|
|
25
|
-
"@ethlete/core": "3.
|
|
25
|
+
"@ethlete/core": "3.10.0",
|
|
26
26
|
"@ethlete/query": "4.16.3"
|
|
27
27
|
},
|
|
28
28
|
"module": "fesm2022/ethlete-cdk.mjs",
|