@ethlete/cdk 4.21.0 → 4.22.1
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/esm2022/lib/components/button/directives/button/button.directive.mjs +2 -2
- package/esm2022/lib/components/overlay/components/menu/components/menu/menu.component.mjs +1 -1
- package/esm2022/lib/components/scrollable/components/scrollable/scrollable.component.mjs +13 -4
- package/esm2022/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +1 -1
- package/esm2022/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +1 -1
- package/fesm2022/ethlete-cdk.mjs +16 -7
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/lib/components/button/directives/button/button.directive.d.ts +3 -3
- package/lib/components/button/directives/query-button/query-button.directive.d.ts +3 -3
- package/lib/components/carousel/carousel.directive.d.ts +6 -6
- package/lib/components/carousel/controls/carousel-next-button.directive.d.ts +3 -3
- package/lib/components/carousel/controls/carousel-previous-button.directive.d.ts +3 -3
- package/lib/components/carousel/et-carousel-item.directive.d.ts +3 -3
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.d.ts +3 -3
- package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts +3 -3
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.d.ts +3 -3
- package/lib/components/forms/components/select/components/combobox/partials/combobox-body/combobox-body.component.d.ts +3 -3
- package/lib/components/forms/components/select/components/combobox/partials/combobox-option/combobox-option.component.d.ts +3 -3
- package/lib/components/forms/components/select/components/select/directives/select-body/select-body.directive.d.ts +3 -3
- package/lib/components/forms/components/select/components/select/directives/select-option/select-option.directive.d.ts +3 -3
- package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +3 -3
- package/lib/components/overlay/components/menu/components/menu/menu.component.d.ts +3 -3
- package/lib/components/overlay/components/menu/components/menu-checkbox-item/menu-checkbox-item.component.d.ts +3 -3
- package/lib/components/overlay/components/menu/components/menu-radio-item/menu-radio-item.component.d.ts +3 -3
- package/lib/components/overlay/components/menu/directives/menu-group/menu-group.directive.d.ts +3 -3
- package/lib/components/overlay/components/menu/directives/menu-item/menu-item.directive.d.ts +3 -3
- package/lib/components/overlay/components/menu/directives/menu-trigger/menu-trigger.directive.d.ts +3 -3
- package/lib/components/scrollable/components/scrollable/scrollable.component.d.ts +16 -7
- package/lib/components/scrollable/directives/scrollable-ignore-child/scrollable-ignore-child.directive.d.ts +3 -3
- package/lib/components/scrollable/directives/scrollable-is-active-child/scrollable-is-active-child.directive.d.ts +3 -3
- package/package.json +1 -1
|
@@ -16,10 +16,10 @@ export declare class ButtonDirective {
|
|
|
16
16
|
set pressed(value: unknown);
|
|
17
17
|
private _pressed$;
|
|
18
18
|
readonly hostAttributeBindings: {
|
|
19
|
-
remove: (
|
|
19
|
+
remove: (tokens: string) => void;
|
|
20
20
|
removeMany: (tokens: string[]) => void;
|
|
21
|
-
has: (
|
|
22
|
-
push: (
|
|
21
|
+
has: (tokens: string) => boolean;
|
|
22
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
23
23
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
24
24
|
};
|
|
25
25
|
readonly hostClassBindings: {
|
|
@@ -27,10 +27,10 @@ export declare class QueryButtonDirective {
|
|
|
27
27
|
} | null>;
|
|
28
28
|
private readonly _query$;
|
|
29
29
|
readonly hostAttributeBindings: {
|
|
30
|
-
remove: (
|
|
30
|
+
remove: (tokens: string) => void;
|
|
31
31
|
removeMany: (tokens: string[]) => void;
|
|
32
|
-
has: (
|
|
33
|
-
push: (
|
|
32
|
+
has: (tokens: string) => boolean;
|
|
33
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
34
34
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
35
35
|
};
|
|
36
36
|
constructor();
|
|
@@ -32,17 +32,17 @@ export declare class CarouselDirective {
|
|
|
32
32
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
33
33
|
};
|
|
34
34
|
hostAttributeBindings: {
|
|
35
|
-
remove: (
|
|
35
|
+
remove: (tokens: string) => void;
|
|
36
36
|
removeMany: (tokens: string[]) => void;
|
|
37
|
-
has: (
|
|
38
|
-
push: (
|
|
37
|
+
has: (tokens: string) => boolean;
|
|
38
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
39
39
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
40
40
|
};
|
|
41
41
|
hostStyleBindings: {
|
|
42
|
-
remove: (
|
|
42
|
+
remove: (tokens: string) => void;
|
|
43
43
|
removeMany: (tokens: string[]) => void;
|
|
44
|
-
has: (
|
|
45
|
-
push: (
|
|
44
|
+
has: (tokens: string) => boolean;
|
|
45
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
46
46
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
47
47
|
};
|
|
48
48
|
activeItemAutoPlayDuration: import("@angular/core").Signal<number | null>;
|
|
@@ -6,10 +6,10 @@ export declare class CarouselNextButtonDirective {
|
|
|
6
6
|
readonly isButton: boolean;
|
|
7
7
|
canGoNext: import("@angular/core").Signal<boolean>;
|
|
8
8
|
hostAttributeBindings: {
|
|
9
|
-
remove: (
|
|
9
|
+
remove: (tokens: string) => void;
|
|
10
10
|
removeMany: (tokens: string[]) => void;
|
|
11
|
-
has: (
|
|
12
|
-
push: (
|
|
11
|
+
has: (tokens: string) => boolean;
|
|
12
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
13
13
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
14
14
|
};
|
|
15
15
|
constructor();
|
|
@@ -6,10 +6,10 @@ export declare class CarouselPreviousButtonDirective {
|
|
|
6
6
|
readonly isButton: boolean;
|
|
7
7
|
canGoPrevious: import("@angular/core").Signal<boolean>;
|
|
8
8
|
hostAttributeBindings: {
|
|
9
|
-
remove: (
|
|
9
|
+
remove: (tokens: string) => void;
|
|
10
10
|
removeMany: (tokens: string[]) => void;
|
|
11
|
-
has: (
|
|
12
|
-
push: (
|
|
11
|
+
has: (tokens: string) => boolean;
|
|
12
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
13
13
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
14
14
|
};
|
|
15
15
|
constructor();
|
|
@@ -15,10 +15,10 @@ export declare class CarouselItemDirective {
|
|
|
15
15
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
16
16
|
};
|
|
17
17
|
hostAttributeBindings: {
|
|
18
|
-
remove: (
|
|
18
|
+
remove: (tokens: string) => void;
|
|
19
19
|
removeMany: (tokens: string[]) => void;
|
|
20
|
-
has: (
|
|
21
|
-
push: (
|
|
20
|
+
has: (tokens: string) => boolean;
|
|
21
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
22
22
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
23
23
|
};
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemDirective, never>;
|
|
@@ -7,10 +7,10 @@ export declare class CheckboxGroupControlDirective {
|
|
|
7
7
|
readonly input: InputDirective<boolean, HTMLElement>;
|
|
8
8
|
readonly group: import("../checkbox-group").CheckboxGroupDirective;
|
|
9
9
|
readonly inputAttributeBindings: {
|
|
10
|
-
remove: (
|
|
10
|
+
remove: (tokens: string) => void;
|
|
11
11
|
removeMany: (tokens: string[]) => void;
|
|
12
|
-
has: (
|
|
13
|
-
push: (
|
|
12
|
+
has: (tokens: string) => boolean;
|
|
13
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
14
14
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
15
15
|
};
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupControlDirective, never>;
|
package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts
CHANGED
|
@@ -5,10 +5,10 @@ export declare class RadioGroupDirective {
|
|
|
5
5
|
private readonly _formGroupStateService;
|
|
6
6
|
readonly name: string;
|
|
7
7
|
readonly hostAttributeBindings: {
|
|
8
|
-
remove: (
|
|
8
|
+
remove: (tokens: string) => void;
|
|
9
9
|
removeMany: (tokens: string[]) => void;
|
|
10
|
-
has: (
|
|
11
|
-
push: (
|
|
10
|
+
has: (tokens: string) => boolean;
|
|
11
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
12
12
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
13
13
|
};
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupDirective, never>;
|
|
@@ -7,10 +7,10 @@ export declare class SegmentedButtonGroupDirective implements AfterContentInit {
|
|
|
7
7
|
private readonly _destroy$;
|
|
8
8
|
readonly name: string;
|
|
9
9
|
readonly hostAttributeBindings: {
|
|
10
|
-
remove: (
|
|
10
|
+
remove: (tokens: string) => void;
|
|
11
11
|
removeMany: (tokens: string[]) => void;
|
|
12
|
-
has: (
|
|
13
|
-
push: (
|
|
12
|
+
has: (tokens: string) => boolean;
|
|
13
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
14
14
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
15
15
|
};
|
|
16
16
|
private _segmentedButtons?;
|
|
@@ -25,10 +25,10 @@ export declare class ComboboxBodyComponent implements AbstractComboboxBody {
|
|
|
25
25
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
26
26
|
};
|
|
27
27
|
_hostAttributeBindings: {
|
|
28
|
-
remove: (
|
|
28
|
+
remove: (tokens: string) => void;
|
|
29
29
|
removeMany: (tokens: string[]) => void;
|
|
30
|
-
has: (
|
|
31
|
-
push: (
|
|
30
|
+
has: (tokens: string) => boolean;
|
|
31
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
32
32
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
33
33
|
};
|
|
34
34
|
_customErrorComponentInputs: import("@angular/core").Signal<{
|
|
@@ -22,10 +22,10 @@ export declare class ComboboxOptionComponent implements AbstractComboboxOption {
|
|
|
22
22
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
23
23
|
};
|
|
24
24
|
_hostAttributeBindings: {
|
|
25
|
-
remove: (
|
|
25
|
+
remove: (tokens: string) => void;
|
|
26
26
|
removeMany: (tokens: string[]) => void;
|
|
27
|
-
has: (
|
|
28
|
-
push: (
|
|
27
|
+
has: (tokens: string) => boolean;
|
|
28
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
29
29
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
30
30
|
};
|
|
31
31
|
_selectOption(): void;
|
|
@@ -9,10 +9,10 @@ export declare class SelectBodyDirective implements OnInit {
|
|
|
9
9
|
private readonly _clickOutside;
|
|
10
10
|
readonly id: string;
|
|
11
11
|
readonly hostAttributeBindings: {
|
|
12
|
-
remove: (
|
|
12
|
+
remove: (tokens: string) => void;
|
|
13
13
|
removeMany: (tokens: string[]) => void;
|
|
14
|
-
has: (
|
|
15
|
-
push: (
|
|
14
|
+
has: (tokens: string) => boolean;
|
|
15
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
16
16
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
17
17
|
};
|
|
18
18
|
ngOnInit(): void;
|
|
@@ -27,10 +27,10 @@ export declare class SelectOptionDirective implements AfterViewInit {
|
|
|
27
27
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
28
28
|
};
|
|
29
29
|
readonly hostAttributeBindings: {
|
|
30
|
-
remove: (
|
|
30
|
+
remove: (tokens: string) => void;
|
|
31
31
|
removeMany: (tokens: string[]) => void;
|
|
32
|
-
has: (
|
|
33
|
-
push: (
|
|
32
|
+
has: (tokens: string) => boolean;
|
|
33
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
34
34
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
35
35
|
};
|
|
36
36
|
ngAfterViewInit(): void;
|
|
@@ -61,10 +61,10 @@ export declare class SliderComponent implements OnInit {
|
|
|
61
61
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
62
62
|
};
|
|
63
63
|
readonly hostAttributeBindings: {
|
|
64
|
-
remove: (
|
|
64
|
+
remove: (tokens: string) => void;
|
|
65
65
|
removeMany: (tokens: string[]) => void;
|
|
66
|
-
has: (
|
|
67
|
-
push: (
|
|
66
|
+
has: (tokens: string) => boolean;
|
|
67
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
68
68
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
69
69
|
};
|
|
70
70
|
ngOnInit(): void;
|
|
@@ -18,10 +18,10 @@ export declare class MenuComponent implements OnDestroy {
|
|
|
18
18
|
private set __orientation(value);
|
|
19
19
|
readonly orientation: import("@angular/core").WritableSignal<"vertical" | "horizontal">;
|
|
20
20
|
readonly hostAttributeBindings: {
|
|
21
|
-
remove: (
|
|
21
|
+
remove: (tokens: string) => void;
|
|
22
22
|
removeMany: (tokens: string[]) => void;
|
|
23
|
-
has: (
|
|
24
|
-
push: (
|
|
23
|
+
has: (tokens: string) => boolean;
|
|
24
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
25
25
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
26
26
|
};
|
|
27
27
|
constructor();
|
|
@@ -15,10 +15,10 @@ export declare class MenuCheckboxItemComponent extends InputBase {
|
|
|
15
15
|
protected readonly checkbox: CheckboxDirective;
|
|
16
16
|
protected readonly menuItem: MenuItemDirective;
|
|
17
17
|
readonly hostAttributeBindings: {
|
|
18
|
-
remove: (
|
|
18
|
+
remove: (tokens: string) => void;
|
|
19
19
|
removeMany: (tokens: string[]) => void;
|
|
20
|
-
has: (
|
|
21
|
-
push: (
|
|
20
|
+
has: (tokens: string) => boolean;
|
|
21
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
22
22
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
23
23
|
};
|
|
24
24
|
constructor();
|
|
@@ -13,10 +13,10 @@ export declare class MenuRadioItemComponent extends InputBase {
|
|
|
13
13
|
protected readonly radio: RadioDirective;
|
|
14
14
|
protected readonly menuItem: MenuItemDirective;
|
|
15
15
|
readonly hostAttributeBindings: {
|
|
16
|
-
remove: (
|
|
16
|
+
remove: (tokens: string) => void;
|
|
17
17
|
removeMany: (tokens: string[]) => void;
|
|
18
|
-
has: (
|
|
19
|
-
push: (
|
|
18
|
+
has: (tokens: string) => boolean;
|
|
19
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
20
20
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
21
21
|
};
|
|
22
22
|
constructor();
|
package/lib/components/overlay/components/menu/directives/menu-group/menu-group.directive.d.ts
CHANGED
|
@@ -5,10 +5,10 @@ export declare const MENU_GROUP_TOKEN: InjectionToken<MenuGroupDirective>;
|
|
|
5
5
|
export declare class MenuGroupDirective {
|
|
6
6
|
private readonly _currentTitle;
|
|
7
7
|
readonly hostAttributeBindings: {
|
|
8
|
-
remove: (
|
|
8
|
+
remove: (tokens: string) => void;
|
|
9
9
|
removeMany: (tokens: string[]) => void;
|
|
10
|
-
has: (
|
|
11
|
-
push: (
|
|
10
|
+
has: (tokens: string) => boolean;
|
|
11
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
12
12
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
13
13
|
};
|
|
14
14
|
_connectWithTitle(title: MenuGroupTitleDirective): void;
|
package/lib/components/overlay/components/menu/directives/menu-item/menu-item.directive.d.ts
CHANGED
|
@@ -10,10 +10,10 @@ export declare class MenuItemDirective {
|
|
|
10
10
|
readonly disabled: import("@angular/core").WritableSignal<boolean>;
|
|
11
11
|
readonly isFocused: import("@angular/core").Signal<boolean>;
|
|
12
12
|
readonly hostAttributeBindings: {
|
|
13
|
-
remove: (
|
|
13
|
+
remove: (tokens: string) => void;
|
|
14
14
|
removeMany: (tokens: string[]) => void;
|
|
15
|
-
has: (
|
|
16
|
-
push: (
|
|
15
|
+
has: (tokens: string) => boolean;
|
|
16
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
17
17
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
18
18
|
};
|
|
19
19
|
readonly hostClassBindings: {
|
package/lib/components/overlay/components/menu/directives/menu-trigger/menu-trigger.directive.d.ts
CHANGED
|
@@ -27,10 +27,10 @@ export declare class MenuTriggerDirective implements OnDestroy {
|
|
|
27
27
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
28
28
|
};
|
|
29
29
|
readonly hostAttributeBindings: {
|
|
30
|
-
remove: (
|
|
30
|
+
remove: (tokens: string) => void;
|
|
31
31
|
removeMany: (tokens: string[]) => void;
|
|
32
|
-
has: (
|
|
33
|
-
push: (
|
|
32
|
+
has: (tokens: string) => boolean;
|
|
33
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
34
34
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
35
35
|
};
|
|
36
36
|
constructor();
|
|
@@ -33,6 +33,7 @@ export declare class ScrollableComponent {
|
|
|
33
33
|
snap: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
34
34
|
scrollMargin: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
35
35
|
scrollOrigin: import("@angular/core").InputSignal<ScrollableScrollOrigin>;
|
|
36
|
+
darkenNonIntersectingItems: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
36
37
|
scrollStateChange: import("@angular/core").OutputEmitterRef<ScrollObserverScrollState>;
|
|
37
38
|
intersectionChange: import("@angular/core").OutputEmitterRef<ScrollableIntersectionChange[]>;
|
|
38
39
|
scrollable: import("@angular/core").Signal<ElementRef<HTMLElement> | undefined>;
|
|
@@ -66,11 +67,19 @@ export declare class ScrollableComponent {
|
|
|
66
67
|
scrollableContentIntersections: import("@angular/core").WritableSignal<IntersectionObserverEntry[]>;
|
|
67
68
|
scrollableContentIntersections$: import("rxjs").Observable<IntersectionObserverEntry[]>;
|
|
68
69
|
nonScrollableIntersections: import("@angular/core").Signal<HTMLElement[]>;
|
|
70
|
+
allScrollableElements: import("@angular/core").Signal<HTMLElement[]>;
|
|
69
71
|
canScroll: import("@angular/core").Signal<boolean>;
|
|
70
72
|
isAtStart: import("@angular/core").Signal<boolean>;
|
|
71
73
|
isAtEnd: import("@angular/core").Signal<boolean>;
|
|
72
74
|
scrollableNavigation: import("@angular/core").Signal<ScrollableNavigationItem[]>;
|
|
73
75
|
activeIndex: import("@angular/core").Signal<number>;
|
|
76
|
+
allChildElementClassBindings: {
|
|
77
|
+
remove: (tokens: string) => void;
|
|
78
|
+
removeMany: (tokens: string[]) => void;
|
|
79
|
+
has: (tokens: string) => boolean;
|
|
80
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
81
|
+
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
82
|
+
};
|
|
74
83
|
nonFullIntersectingElementClassBindings: {
|
|
75
84
|
remove: (tokens: string) => void;
|
|
76
85
|
removeMany: (tokens: string[]) => void;
|
|
@@ -79,10 +88,10 @@ export declare class ScrollableComponent {
|
|
|
79
88
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
80
89
|
};
|
|
81
90
|
hostAttributeBindings: {
|
|
82
|
-
remove: (
|
|
91
|
+
remove: (tokens: string) => void;
|
|
83
92
|
removeMany: (tokens: string[]) => void;
|
|
84
|
-
has: (
|
|
85
|
-
push: (
|
|
93
|
+
has: (tokens: string) => boolean;
|
|
94
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
86
95
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
87
96
|
};
|
|
88
97
|
hostClassBindings: {
|
|
@@ -93,10 +102,10 @@ export declare class ScrollableComponent {
|
|
|
93
102
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
94
103
|
};
|
|
95
104
|
hostStyleBindings: {
|
|
96
|
-
remove: (
|
|
105
|
+
remove: (tokens: string) => void;
|
|
97
106
|
removeMany: (tokens: string[]) => void;
|
|
98
|
-
has: (
|
|
99
|
-
push: (
|
|
107
|
+
has: (tokens: string) => boolean;
|
|
108
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
100
109
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
101
110
|
};
|
|
102
111
|
constructor();
|
|
@@ -117,6 +126,6 @@ export declare class ScrollableComponent {
|
|
|
117
126
|
private _enableSnapping;
|
|
118
127
|
private _disableSnapping;
|
|
119
128
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollableComponent, never>;
|
|
120
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollableComponent, "et-scrollable", never, { "itemSize": { "alias": "itemSize"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "scrollableRole": { "alias": "scrollableRole"; "required": false; "isSignal": true; }; "scrollableClass": { "alias": "scrollableClass"; "required": false; "isSignal": true; }; "renderNavigation": { "alias": "renderNavigation"; "required": false; "isSignal": true; }; "renderMasks": { "alias": "renderMasks"; "required": false; "isSignal": true; }; "renderButtons": { "alias": "renderButtons"; "required": false; "isSignal": true; }; "buttonPosition": { "alias": "buttonPosition"; "required": false; "isSignal": true; }; "renderScrollbars": { "alias": "renderScrollbars"; "required": false; "isSignal": true; }; "stickyButtons": { "alias": "stickyButtons"; "required": false; "isSignal": true; }; "cursorDragScroll": { "alias": "cursorDragScroll"; "required": false; "isSignal": true; }; "disableActiveElementScrolling": { "alias": "disableActiveElementScrolling"; "required": false; "isSignal": true; }; "scrollMode": { "alias": "scrollMode"; "required": false; "isSignal": true; }; "snap": { "alias": "snap"; "required": false; "isSignal": true; }; "scrollMargin": { "alias": "scrollMargin"; "required": false; "isSignal": true; }; "scrollOrigin": { "alias": "scrollOrigin"; "required": false; "isSignal": true; }; }, { "scrollStateChange": "scrollStateChange"; "intersectionChange": "intersectionChange"; }, ["activeElementList"], ["*"], true, never>;
|
|
129
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollableComponent, "et-scrollable", never, { "itemSize": { "alias": "itemSize"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "scrollableRole": { "alias": "scrollableRole"; "required": false; "isSignal": true; }; "scrollableClass": { "alias": "scrollableClass"; "required": false; "isSignal": true; }; "renderNavigation": { "alias": "renderNavigation"; "required": false; "isSignal": true; }; "renderMasks": { "alias": "renderMasks"; "required": false; "isSignal": true; }; "renderButtons": { "alias": "renderButtons"; "required": false; "isSignal": true; }; "buttonPosition": { "alias": "buttonPosition"; "required": false; "isSignal": true; }; "renderScrollbars": { "alias": "renderScrollbars"; "required": false; "isSignal": true; }; "stickyButtons": { "alias": "stickyButtons"; "required": false; "isSignal": true; }; "cursorDragScroll": { "alias": "cursorDragScroll"; "required": false; "isSignal": true; }; "disableActiveElementScrolling": { "alias": "disableActiveElementScrolling"; "required": false; "isSignal": true; }; "scrollMode": { "alias": "scrollMode"; "required": false; "isSignal": true; }; "snap": { "alias": "snap"; "required": false; "isSignal": true; }; "scrollMargin": { "alias": "scrollMargin"; "required": false; "isSignal": true; }; "scrollOrigin": { "alias": "scrollOrigin"; "required": false; "isSignal": true; }; "darkenNonIntersectingItems": { "alias": "darkenNonIntersectingItems"; "required": false; "isSignal": true; }; }, { "scrollStateChange": "scrollStateChange"; "intersectionChange": "intersectionChange"; }, ["activeElementList"], ["*"], true, never>;
|
|
121
130
|
}
|
|
122
131
|
export {};
|
|
@@ -7,10 +7,10 @@ export declare class ScrollableIgnoreChildDirective {
|
|
|
7
7
|
set _ignoreChildEnabled(v: boolean);
|
|
8
8
|
readonly ignoreChildEnabled: import("@angular/core").WritableSignal<boolean>;
|
|
9
9
|
readonly hostAttributeBindings: {
|
|
10
|
-
remove: (
|
|
10
|
+
remove: (tokens: string) => void;
|
|
11
11
|
removeMany: (tokens: string[]) => void;
|
|
12
|
-
has: (
|
|
13
|
-
push: (
|
|
12
|
+
has: (tokens: string) => boolean;
|
|
13
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
14
14
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
15
15
|
};
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollableIgnoreChildDirective, never>;
|
|
@@ -8,10 +8,10 @@ export declare class ScrollableIsActiveChildDirective {
|
|
|
8
8
|
set _isActiveChildEnabled(v: boolean);
|
|
9
9
|
readonly isActiveChildEnabled: import("@angular/core").WritableSignal<boolean>;
|
|
10
10
|
readonly hostAttributeBindings: {
|
|
11
|
-
remove: (
|
|
11
|
+
remove: (tokens: string) => void;
|
|
12
12
|
removeMany: (tokens: string[]) => void;
|
|
13
|
-
has: (
|
|
14
|
-
push: (
|
|
13
|
+
has: (tokens: string) => boolean;
|
|
14
|
+
push: (tokens: string, signal: import("@angular/core").Signal<unknown>) => void;
|
|
15
15
|
pushMany: (map: Record<string, import("@angular/core").Signal<unknown>>) => void;
|
|
16
16
|
};
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollableIsActiveChildDirective, never>;
|