@ethlete/cdk 3.19.0 → 3.19.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.
- package/CHANGELOG.md +14 -0
- package/esm2022/lib/components/button/directives/button/button.directive.mjs +10 -25
- package/esm2022/lib/components/button/directives/query-button/query-button.directive.mjs +8 -17
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +7 -11
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +17 -14
- package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +6 -13
- package/esm2022/lib/components/forms/components/error/components/error/error.component.mjs +7 -9
- package/esm2022/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +6 -8
- package/esm2022/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +14 -18
- package/esm2022/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +5 -11
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +6 -8
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +14 -18
- package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +6 -11
- package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox/combobox.directive.mjs +17 -25
- package/esm2022/lib/components/forms/components/select/components/combobox/partials/combobox-body/combobox-body.component.mjs +20 -24
- package/esm2022/lib/components/forms/components/select/components/combobox/partials/combobox-option/combobox-option.component.mjs +11 -23
- package/esm2022/lib/components/forms/components/select/components/select/directives/select/select.directive.mjs +29 -22
- package/esm2022/lib/components/forms/components/select/components/select/directives/select-body/select-body.directive.mjs +7 -15
- package/esm2022/lib/components/forms/components/select/components/select/directives/select-option/select-option.directive.mjs +13 -14
- package/esm2022/lib/components/forms/components/select/components/select/partials/select-body/select-body.component.mjs +9 -3
- package/esm2022/lib/components/forms/components/select/directives/select-field/select-field.directive.mjs +3 -4
- package/esm2022/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +6 -8
- package/esm2022/lib/components/forms/components/slider/components/slider/slider.component.mjs +18 -41
- package/esm2022/lib/components/forms/directives/input/input.directive.mjs +4 -1
- package/esm2022/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +10 -23
- package/esm2022/lib/components/forms/services/input-state.service.mjs +21 -4
- package/esm2022/lib/components/forms/utils/decorated-form-field.base.mjs +5 -8
- package/esm2022/lib/components/forms/utils/decorated-input.base.mjs +26 -23
- package/esm2022/lib/components/masonry/components/masonry/masonry.component.mjs +6 -8
- package/esm2022/lib/components/overlay/components/overlay/components/overlay-container/overlay-container.component.mjs +11 -4
- package/esm2022/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +9 -3
- package/esm2022/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +4 -1
- package/esm2022/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +9 -3
- package/esm2022/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +4 -1
- package/esm2022/lib/components/picture/picture.component.mjs +7 -4
- package/fesm2022/ethlete-cdk.mjs +255 -356
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/lib/components/button/directives/button/button.directive.d.ts +4 -1
- package/lib/components/button/directives/query-button/query-button.directive.d.ts +4 -1
- package/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.d.ts +4 -1
- package/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.d.ts +11 -6
- package/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.d.ts +6 -4
- package/lib/components/forms/components/error/components/error/error.component.d.ts +4 -1
- package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +4 -1
- package/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.d.ts +12 -6
- package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts +4 -1
- package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +4 -1
- package/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.d.ts +12 -7
- package/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.d.ts +4 -1
- package/lib/components/forms/components/select/components/combobox/directives/combobox/combobox.directive.d.ts +10 -1
- package/lib/components/forms/components/select/components/combobox/partials/combobox-body/combobox-body.component.d.ts +13 -2
- package/lib/components/forms/components/select/components/combobox/partials/combobox-option/combobox-option.component.d.ts +8 -1
- package/lib/components/forms/components/select/components/select/directives/select/select.directive.d.ts +15 -3
- package/lib/components/forms/components/select/components/select/directives/select-body/select-body.directive.d.ts +4 -1
- package/lib/components/forms/components/select/components/select/directives/select-option/select-option.directive.d.ts +10 -1
- package/lib/components/forms/components/select/components/select/partials/select-body/select-body.component.d.ts +5 -1
- package/lib/components/forms/components/select/directives/select-field/select-field.directive.d.ts +2 -2
- package/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.d.ts +4 -1
- package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +8 -1
- package/lib/components/forms/directives/input/input.directive.d.ts +21 -19
- package/lib/components/forms/directives/writeable-input/writeable-input.directive.d.ts +4 -1
- package/lib/components/forms/services/input-state.service.d.ts +13 -6
- package/lib/components/forms/utils/decorated-form-field.base.d.ts +4 -1
- package/lib/components/forms/utils/decorated-input.base.d.ts +13 -6
- package/lib/components/masonry/components/masonry/masonry.component.d.ts +4 -1
- package/lib/components/overlay/components/overlay/components/overlay-container/overlay-container.component.d.ts +4 -1
- package/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.d.ts +5 -1
- package/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.d.ts +1 -0
- package/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.d.ts +5 -1
- package/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.d.ts +1 -0
- package/package.json +3 -3
|
@@ -15,7 +15,10 @@ export declare class ButtonDirective {
|
|
|
15
15
|
get pressed(): boolean;
|
|
16
16
|
set pressed(value: unknown);
|
|
17
17
|
private _pressed$;
|
|
18
|
-
readonly
|
|
18
|
+
readonly hostAttributeBindings: {
|
|
19
|
+
remove: (...tokens: string[]) => void;
|
|
20
|
+
has: (token: string) => boolean;
|
|
21
|
+
};
|
|
19
22
|
_removeDisabledBindings(): void;
|
|
20
23
|
_removeTabIndexBindings(): void;
|
|
21
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonDirective, never>;
|
|
@@ -26,7 +26,10 @@ export declare class QueryButtonDirective {
|
|
|
26
26
|
query: import("@ethlete/query").Query<any, any, any, any, any, any>;
|
|
27
27
|
} | null>;
|
|
28
28
|
private readonly _query$;
|
|
29
|
-
|
|
29
|
+
readonly hostAttributeBindings: {
|
|
30
|
+
remove: (...tokens: string[]) => void;
|
|
31
|
+
has: (token: string) => boolean;
|
|
32
|
+
};
|
|
30
33
|
constructor();
|
|
31
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryButtonDirective, never>;
|
|
32
35
|
static ɵdir: i0.ɵɵDirectiveDeclaration<QueryButtonDirective, never, ["etQueryButton"], { "skipSuccess": { "alias": "skipSuccess"; "required": false; }; "skipFailure": { "alias": "skipFailure"; "required": false; }; "skipLoading": { "alias": "skipLoading"; "required": false; }; "query": { "alias": "query"; "required": false; }; }, {}, never, never, true, never>;
|
package/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.d.ts
CHANGED
|
@@ -7,7 +7,10 @@ export declare class CheckboxDirective {
|
|
|
7
7
|
readonly input: InputDirective<boolean, HTMLInputElement>;
|
|
8
8
|
readonly checked$: import("rxjs").Observable<boolean>;
|
|
9
9
|
readonly indeterminate$: BehaviorSubject<boolean>;
|
|
10
|
-
readonly
|
|
10
|
+
readonly hostClassBindings: {
|
|
11
|
+
remove: (...tokens: string[]) => void;
|
|
12
|
+
has: (token: string) => boolean;
|
|
13
|
+
};
|
|
11
14
|
_onInputInteraction(event: Event): void;
|
|
12
15
|
_controlTouched(): void;
|
|
13
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxDirective, never>;
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { TypedQueryList } from '@ethlete/core';
|
|
2
3
|
import { InputStateService } from '../../../../services';
|
|
4
|
+
import { CheckboxDirective } from '../public-api';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
export declare const CHECKBOX_FIELD_TOKEN: InjectionToken<CheckboxFieldDirective>;
|
|
5
|
-
export declare class CheckboxFieldDirective
|
|
7
|
+
export declare class CheckboxFieldDirective {
|
|
6
8
|
readonly inputState: InputStateService<boolean, HTMLInputElement>;
|
|
7
|
-
|
|
8
|
-
private _checkbox
|
|
9
|
-
|
|
9
|
+
set checkbox(checkbox: TypedQueryList<CheckboxDirective>);
|
|
10
|
+
private _checkbox$;
|
|
11
|
+
readonly hostClassBindings: {
|
|
12
|
+
remove: (...tokens: string[]) => void;
|
|
13
|
+
has: (token: string) => boolean;
|
|
14
|
+
};
|
|
10
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxFieldDirective, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxFieldDirective, never, ["etCheckboxGroup"], {}, {}, ["
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxFieldDirective, never, ["etCheckboxGroup"], {}, {}, ["checkbox"], never, true, never>;
|
|
12
17
|
}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
2
|
import { InputDirective } from '../../../../directives';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare const CHECKBOX_GROUP_CONTROL_TOKEN: InjectionToken<CheckboxGroupControlDirective>;
|
|
5
|
-
export declare class CheckboxGroupControlDirective
|
|
5
|
+
export declare class CheckboxGroupControlDirective {
|
|
6
6
|
readonly checkbox: import("../checkbox").CheckboxDirective;
|
|
7
7
|
readonly input: InputDirective<boolean, HTMLInputElement>;
|
|
8
8
|
readonly group: import("../checkbox-group").CheckboxGroupDirective;
|
|
9
|
-
readonly
|
|
10
|
-
|
|
9
|
+
readonly inputAttributeBindings: {
|
|
10
|
+
remove: (...tokens: string[]) => void;
|
|
11
|
+
has: (token: string) => boolean;
|
|
12
|
+
};
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupControlDirective, never>;
|
|
12
14
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxGroupControlDirective, "[etCheckboxGroupControl]", ["etCheckboxGroupControl"], {}, {}, never, never, true, never>;
|
|
13
15
|
}
|
|
@@ -10,7 +10,10 @@ export declare class ErrorComponent {
|
|
|
10
10
|
get errors(): ValidationErrors | null;
|
|
11
11
|
set errors(v: ValidationErrors | null);
|
|
12
12
|
private _errors;
|
|
13
|
-
readonly
|
|
13
|
+
readonly hostClassBindings: {
|
|
14
|
+
remove: (...tokens: string[]) => void;
|
|
15
|
+
has: (token: string) => boolean;
|
|
16
|
+
};
|
|
14
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
15
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "et-error", never, { "errors": { "alias": "errors"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
19
|
}
|
|
@@ -13,7 +13,10 @@ export declare class RadioDirective {
|
|
|
13
13
|
private _disabled$;
|
|
14
14
|
readonly checked$: import("rxjs").Observable<boolean>;
|
|
15
15
|
readonly disabled$: import("rxjs").Observable<boolean>;
|
|
16
|
-
readonly
|
|
16
|
+
readonly hostClassBindings: {
|
|
17
|
+
remove: (...tokens: string[]) => void;
|
|
18
|
+
has: (token: string) => boolean;
|
|
19
|
+
};
|
|
17
20
|
_onInputInteraction(event: Event): void;
|
|
18
21
|
_controlTouched(): void;
|
|
19
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioDirective, never>;
|
package/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.d.ts
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { TypedQueryList } from '@ethlete/core';
|
|
2
3
|
import { InputStateService } from '../../../../services';
|
|
3
4
|
import { RadioValue } from '../../types';
|
|
5
|
+
import { RadioDirective } from '../radio';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare const RADIO_FIELD_TOKEN: InjectionToken<RadioFieldDirective>;
|
|
6
|
-
export declare class RadioFieldDirective
|
|
8
|
+
export declare class RadioFieldDirective {
|
|
7
9
|
readonly inputState: InputStateService<RadioValue, HTMLInputElement>;
|
|
8
|
-
|
|
9
|
-
private _radio
|
|
10
|
-
|
|
10
|
+
set radio(radio: TypedQueryList<RadioDirective>);
|
|
11
|
+
private _radio$;
|
|
12
|
+
readonly radioQueryList$: import("rxjs").Observable<TypedQueryList<RadioDirective> | null>;
|
|
13
|
+
readonly hostClassBindings: {
|
|
14
|
+
remove: (...tokens: string[]) => void;
|
|
15
|
+
has: (token: string) => boolean;
|
|
16
|
+
};
|
|
11
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioFieldDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioFieldDirective, never, ["etRadioField"], {}, {}, ["
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioFieldDirective, never, ["etRadioField"], {}, {}, ["radio"], never, true, never>;
|
|
13
19
|
}
|
package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts
CHANGED
|
@@ -4,7 +4,10 @@ export declare const RADIO_GROUP_TOKEN: InjectionToken<RadioGroupDirective>;
|
|
|
4
4
|
export declare class RadioGroupDirective {
|
|
5
5
|
private readonly _formGroupStateService;
|
|
6
6
|
readonly name: string;
|
|
7
|
-
readonly
|
|
7
|
+
readonly hostAttributeBindings: {
|
|
8
|
+
remove: (...tokens: string[]) => void;
|
|
9
|
+
has: (token: string) => boolean;
|
|
10
|
+
};
|
|
8
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupDirective, never>;
|
|
9
12
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioGroupDirective, never, ["etRadioGroup"], {}, {}, never, never, true, never>;
|
|
10
13
|
}
|
|
@@ -14,7 +14,10 @@ export declare class SegmentedButtonDirective {
|
|
|
14
14
|
private _disabled$;
|
|
15
15
|
readonly checked$: import("rxjs").Observable<boolean>;
|
|
16
16
|
readonly disabled$: import("rxjs").Observable<boolean>;
|
|
17
|
-
readonly
|
|
17
|
+
readonly hostClassBindings: {
|
|
18
|
+
remove: (...tokens: string[]) => void;
|
|
19
|
+
has: (token: string) => boolean;
|
|
20
|
+
};
|
|
18
21
|
get activeIndicatorElement$(): import("rxjs").Observable<HTMLElement | null>;
|
|
19
22
|
get activeIndicatorElement(): HTMLElement | null;
|
|
20
23
|
_setActiveIndicatorElement(element: HTMLElement): void;
|
|
@@ -1,13 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Primitive } from '@ethlete/core';
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { Primitive, TypedQueryList } from '@ethlete/core';
|
|
3
3
|
import { InputStateService } from '../../../../services';
|
|
4
|
+
import { SegmentedButtonDirective } from '../segmented-button';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const SEGMENTED_BUTTON_FIELD_TOKEN: InjectionToken<SegmentedButtonFieldDirective>;
|
|
6
|
-
export declare class SegmentedButtonFieldDirective
|
|
7
|
+
export declare class SegmentedButtonFieldDirective {
|
|
7
8
|
readonly inputState: InputStateService<Primitive, HTMLInputElement>;
|
|
8
|
-
|
|
9
|
-
private _segmentedButton
|
|
10
|
-
|
|
9
|
+
set segmentedButton(segmentedButton: TypedQueryList<SegmentedButtonDirective>);
|
|
10
|
+
private _segmentedButton$;
|
|
11
|
+
readonly segmentedButtonQueryList$: import("rxjs").Observable<TypedQueryList<SegmentedButtonDirective> | null>;
|
|
12
|
+
readonly hostClassBindings: {
|
|
13
|
+
remove: (...tokens: string[]) => void;
|
|
14
|
+
has: (token: string) => boolean;
|
|
15
|
+
};
|
|
11
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SegmentedButtonFieldDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SegmentedButtonFieldDirective, never, ["etSegmentedButtonField"], {}, {}, ["
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SegmentedButtonFieldDirective, never, ["etSegmentedButtonField"], {}, {}, ["segmentedButton"], never, true, never>;
|
|
13
18
|
}
|
|
@@ -6,7 +6,10 @@ export declare class SegmentedButtonGroupDirective implements AfterContentInit {
|
|
|
6
6
|
private readonly _inputStateService;
|
|
7
7
|
private readonly _destroy$;
|
|
8
8
|
readonly name: string;
|
|
9
|
-
readonly
|
|
9
|
+
readonly hostAttributeBindings: {
|
|
10
|
+
remove: (...tokens: string[]) => void;
|
|
11
|
+
has: (token: string) => boolean;
|
|
12
|
+
};
|
|
10
13
|
private _segmentedButtons?;
|
|
11
14
|
ngAfterContentInit(): void;
|
|
12
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SegmentedButtonGroupDirective, never>;
|
|
@@ -21,6 +21,7 @@ export declare class ComboboxDirective implements OnInit {
|
|
|
21
21
|
private readonly _selectField;
|
|
22
22
|
private readonly _animatedOverlay;
|
|
23
23
|
private readonly _comboboxConfig;
|
|
24
|
+
private readonly _themeProvider;
|
|
24
25
|
get options(): unknown[];
|
|
25
26
|
set options(value: unknown[]);
|
|
26
27
|
set initialValue(value: unknown);
|
|
@@ -85,6 +86,7 @@ export declare class ComboboxDirective implements OnInit {
|
|
|
85
86
|
private readonly _currentFilter$;
|
|
86
87
|
private get _isOpen();
|
|
87
88
|
readonly isOpen$: import("rxjs").Observable<boolean>;
|
|
89
|
+
readonly isOpen: import("@angular/core").Signal<boolean | undefined>;
|
|
88
90
|
readonly _selectionModel: SelectionModel<unknown>;
|
|
89
91
|
private readonly _activeSelectionModel;
|
|
90
92
|
private readonly _backspaceKeyPressManager;
|
|
@@ -105,7 +107,14 @@ export declare class ComboboxDirective implements OnInit {
|
|
|
105
107
|
private readonly _bodyEmptyTemplate$;
|
|
106
108
|
set bodyMoreItemsHintTemplate(value: TemplateRef<unknown> | undefined);
|
|
107
109
|
private readonly _bodyMoreItemsHintTemplate$;
|
|
108
|
-
readonly
|
|
110
|
+
readonly hostClassBindings: {
|
|
111
|
+
remove: (...tokens: string[]) => void;
|
|
112
|
+
has: (token: string) => boolean;
|
|
113
|
+
};
|
|
114
|
+
readonly fieldHostClassBindings: {
|
|
115
|
+
remove: (...tokens: string[]) => void;
|
|
116
|
+
has: (token: string) => boolean;
|
|
117
|
+
};
|
|
109
118
|
private _comboboxBodyComponent;
|
|
110
119
|
readonly customOptionTpl$: import("rxjs").Observable<TemplateRefWithOption | null>;
|
|
111
120
|
readonly customOptionComponent$: import("rxjs").Observable<ComponentWithOption | null>;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { ElementRef, InjectionToken, OnInit, TemplateRef, TrackByFunction } from '@angular/core';
|
|
2
2
|
import { AnimatedLifecycleDirective, TypedQueryList } from '@ethlete/core';
|
|
3
|
+
import { ProvideThemeDirective } from '@ethlete/theming';
|
|
3
4
|
import { BehaviorSubject } from 'rxjs';
|
|
4
5
|
import { AbstractComboboxBody, AbstractComboboxOption } from '../../directives';
|
|
5
6
|
import { ComboboxOptionComponent } from '../combobox-option';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
import * as i1 from "@ethlete/core";
|
|
9
|
+
import * as i2 from "@ethlete/theming";
|
|
8
10
|
export declare const COMBOBOX_BODY_TOKEN: InjectionToken<ComboboxBodyComponent>;
|
|
9
11
|
export declare class ComboboxBodyComponent implements OnInit, AbstractComboboxBody {
|
|
10
12
|
readonly id: string;
|
|
@@ -12,15 +14,24 @@ export declare class ComboboxBodyComponent implements OnInit, AbstractComboboxBo
|
|
|
12
14
|
_markForCheck?: (() => void) | undefined;
|
|
13
15
|
private readonly _destroy$;
|
|
14
16
|
private readonly _clickOutside;
|
|
17
|
+
private readonly _themeProvider;
|
|
15
18
|
protected readonly combobox: import("../../directives").ComboboxDirective;
|
|
16
19
|
readonly _containerElementRef: ElementRef<HTMLElement> | undefined;
|
|
17
20
|
readonly _animatedLifecycle?: AnimatedLifecycleDirective;
|
|
18
21
|
set _options(options: TypedQueryList<ComboboxOptionComponent>);
|
|
19
22
|
readonly _options$: BehaviorSubject<TypedQueryList<AbstractComboboxOption> | null>;
|
|
20
|
-
readonly
|
|
23
|
+
readonly hostClassBindings: {
|
|
24
|
+
remove: (...tokens: string[]) => void;
|
|
25
|
+
has: (token: string) => boolean;
|
|
26
|
+
};
|
|
27
|
+
readonly hostAttributeBindings: {
|
|
28
|
+
remove: (...tokens: string[]) => void;
|
|
29
|
+
has: (token: string) => boolean;
|
|
30
|
+
};
|
|
21
31
|
_bodyTemplate: TemplateRef<unknown> | null;
|
|
22
32
|
ngOnInit(): void;
|
|
23
33
|
protected trackByFn: TrackByFunction<unknown>;
|
|
34
|
+
_setThemeFromProvider(provider: ProvideThemeDirective): void;
|
|
24
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxBodyComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxBodyComponent, "et-combobox-body", never, {}, {}, never, never, true, [{ directive: typeof i1.ClickOutsideDirective; inputs: {}; outputs: {}; }]>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxBodyComponent, "et-combobox-body", never, {}, {}, never, never, true, [{ directive: typeof i1.ClickOutsideDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
26
37
|
}
|
|
@@ -13,7 +13,14 @@ export declare class ComboboxOptionComponent implements AbstractComboboxOption {
|
|
|
13
13
|
protected readonly disabled$: import("rxjs").Observable<boolean>;
|
|
14
14
|
protected readonly selected$: import("rxjs").Observable<boolean>;
|
|
15
15
|
protected readonly active$: import("rxjs").Observable<boolean>;
|
|
16
|
-
readonly
|
|
16
|
+
readonly hostClassBindings: {
|
|
17
|
+
remove: (...tokens: string[]) => void;
|
|
18
|
+
has: (token: string) => boolean;
|
|
19
|
+
};
|
|
20
|
+
readonly hostAttributeBindings: {
|
|
21
|
+
remove: (...tokens: string[]) => void;
|
|
22
|
+
has: (token: string) => boolean;
|
|
23
|
+
};
|
|
17
24
|
protected selectOption(): void;
|
|
18
25
|
protected ignoreBlur(): void;
|
|
19
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxOptionComponent, never>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentType } from '@angular/cdk/portal';
|
|
2
|
-
import { AfterContentInit, InjectionToken, OnInit, TemplateRef, TrackByFunction } from '@angular/core';
|
|
3
|
-
import { AnimatedOverlayComponentBase } from '@ethlete/core';
|
|
2
|
+
import { AfterContentInit, ElementRef, InjectionToken, OnInit, TemplateRef, TrackByFunction } from '@angular/core';
|
|
3
|
+
import { AnimatedOverlayComponentBase, SelectionModel } from '@ethlete/core';
|
|
4
4
|
import { SelectBodyDirective } from '../select-body';
|
|
5
5
|
import { SelectOptionDirective } from '../select-option';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -20,9 +20,13 @@ export declare class SelectDirective<T extends SelectDirectiveBodyComponentBase>
|
|
|
20
20
|
private readonly _destroy$;
|
|
21
21
|
private readonly _liveAnnouncer;
|
|
22
22
|
private readonly _selectField;
|
|
23
|
+
private readonly _themeProvider;
|
|
23
24
|
readonly input: import("../../../../../../directives").InputDirective<unknown, HTMLInputElement>;
|
|
24
25
|
private readonly _selectBodyId$;
|
|
25
26
|
private readonly _isOpen$;
|
|
27
|
+
readonly elementRef: ElementRef<HTMLElement>;
|
|
28
|
+
readonly _selectionModel: SelectionModel<SelectOptionDirective>;
|
|
29
|
+
private readonly _activeSelectionModel;
|
|
26
30
|
get multiple(): boolean;
|
|
27
31
|
set multiple(value: unknown);
|
|
28
32
|
private _multiple$;
|
|
@@ -51,13 +55,21 @@ export declare class SelectDirective<T extends SelectDirectiveBodyComponentBase>
|
|
|
51
55
|
} | null>;
|
|
52
56
|
readonly selectBodyId$: import("rxjs").Observable<string | null>;
|
|
53
57
|
readonly isOpen$: import("rxjs").Observable<boolean>;
|
|
58
|
+
readonly isOpen: import("@angular/core").Signal<boolean | undefined>;
|
|
54
59
|
readonly multiple$: import("rxjs").Observable<boolean>;
|
|
55
60
|
readonly selectCurrentValueId: string;
|
|
56
61
|
readonly ariaViewValue$: import("rxjs").Observable<string | null>;
|
|
57
62
|
readonly activeDescendant$: import("rxjs").Observable<string | null>;
|
|
58
63
|
readonly owns$: import("rxjs").Observable<string | null>;
|
|
59
64
|
readonly labelledBy$: import("rxjs").Observable<string>;
|
|
60
|
-
readonly
|
|
65
|
+
readonly hostClassBindings: {
|
|
66
|
+
remove: (...tokens: string[]) => void;
|
|
67
|
+
has: (token: string) => boolean;
|
|
68
|
+
};
|
|
69
|
+
readonly fieldHostClassBindings: {
|
|
70
|
+
remove: (...tokens: string[]) => void;
|
|
71
|
+
has: (token: string) => boolean;
|
|
72
|
+
};
|
|
61
73
|
constructor();
|
|
62
74
|
ngOnInit(): void;
|
|
63
75
|
ngAfterContentInit(): void;
|
|
@@ -7,7 +7,10 @@ export declare class SelectBodyDirective implements OnInit {
|
|
|
7
7
|
private readonly _select;
|
|
8
8
|
private readonly _clickOutside;
|
|
9
9
|
readonly id: string;
|
|
10
|
-
readonly
|
|
10
|
+
readonly hostAttributeBindings: {
|
|
11
|
+
remove: (...tokens: string[]) => void;
|
|
12
|
+
has: (token: string) => boolean;
|
|
13
|
+
};
|
|
11
14
|
ngOnInit(): void;
|
|
12
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBodyDirective, never>;
|
|
13
16
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectBodyDirective, never, never, {}, {}, never, never, true, [{ directive: typeof i1.ClickOutsideDirective; inputs: {}; outputs: {}; }]>;
|
|
@@ -15,10 +15,19 @@ export declare class SelectOptionDirective implements AfterContentInit {
|
|
|
15
15
|
set disabled(value: unknown);
|
|
16
16
|
private _disabled$;
|
|
17
17
|
readonly isSelected$: import("rxjs").Observable<boolean>;
|
|
18
|
+
readonly isSelected: import("@angular/core").Signal<boolean | undefined>;
|
|
19
|
+
get viewValue(): string;
|
|
18
20
|
readonly viewValue$: import("rxjs").Observable<string>;
|
|
19
21
|
readonly disabled$: import("rxjs").Observable<boolean>;
|
|
20
22
|
readonly isActive$: import("rxjs").Observable<boolean>;
|
|
21
|
-
readonly
|
|
23
|
+
readonly hostClassBindings: {
|
|
24
|
+
remove: (...tokens: string[]) => void;
|
|
25
|
+
has: (token: string) => boolean;
|
|
26
|
+
};
|
|
27
|
+
readonly hostAttributeBindings: {
|
|
28
|
+
remove: (...tokens: string[]) => void;
|
|
29
|
+
has: (token: string) => boolean;
|
|
30
|
+
};
|
|
22
31
|
ngAfterContentInit(): void;
|
|
23
32
|
setSelectValue(): Promise<void>;
|
|
24
33
|
_updateViewValue(): void;
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import { AnimatedLifecycleDirective } from '@ethlete/core';
|
|
3
|
+
import { ProvideThemeDirective } from '@ethlete/theming';
|
|
3
4
|
import { SelectBodyDirective } from '../../directives';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
import * as i1 from "../../directives/select-body/select-body.directive";
|
|
7
|
+
import * as i2 from "@ethlete/theming";
|
|
6
8
|
export declare class SelectBodyComponent {
|
|
7
9
|
readonly selectBody: SelectBodyDirective;
|
|
10
|
+
private readonly _themeProvider;
|
|
8
11
|
readonly _animatedLifecycle?: AnimatedLifecycleDirective;
|
|
9
12
|
_bodyTemplate: TemplateRef<unknown> | null;
|
|
13
|
+
_setThemeFromProvider(provider: ProvideThemeDirective): void;
|
|
10
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBodyComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBodyComponent, "et-select-body", never, {}, {}, never, never, true, [{ directive: typeof i1.SelectBodyDirective; inputs: {}; outputs: {}; }]>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBodyComponent, "et-select-body", never, {}, {}, never, never, true, [{ directive: typeof i1.SelectBodyDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
12
16
|
}
|
package/lib/components/forms/components/select/directives/select-field/select-field.directive.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
1
|
+
import { ElementRef, InjectionToken } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare const SELECT_FIELD_TOKEN: InjectionToken<SelectFieldDirective>;
|
|
4
4
|
export declare class SelectFieldDirective {
|
|
5
|
-
readonly
|
|
5
|
+
readonly elementRef: ElementRef<HTMLElement>;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectFieldDirective, never>;
|
|
7
7
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectFieldDirective, never, ["etSelectField"], {}, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
@@ -5,7 +5,10 @@ export declare const SLIDE_TOGGLE_TOKEN: InjectionToken<SlideToggleDirective>;
|
|
|
5
5
|
export declare class SlideToggleDirective {
|
|
6
6
|
readonly input: InputDirective<boolean, HTMLInputElement>;
|
|
7
7
|
readonly checked$: import("rxjs").Observable<boolean>;
|
|
8
|
-
readonly
|
|
8
|
+
readonly hostClassBindings: {
|
|
9
|
+
remove: (...tokens: string[]) => void;
|
|
10
|
+
has: (token: string) => boolean;
|
|
11
|
+
};
|
|
9
12
|
_onInputInteraction(event: Event): void;
|
|
10
13
|
_controlTouched(): void;
|
|
11
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlideToggleDirective, never>;
|
|
@@ -53,7 +53,14 @@ export declare class SliderComponent implements OnInit {
|
|
|
53
53
|
protected readonly disableAnimations$: BehaviorSubject<boolean>;
|
|
54
54
|
protected readonly touchId$: BehaviorSubject<number | null>;
|
|
55
55
|
protected readonly lastPointerEvent$: BehaviorSubject<MouseEvent | TouchEvent | null>;
|
|
56
|
-
readonly
|
|
56
|
+
readonly hostClassBindings: {
|
|
57
|
+
remove: (...tokens: string[]) => void;
|
|
58
|
+
has: (token: string) => boolean;
|
|
59
|
+
};
|
|
60
|
+
readonly hostAttributeBindings: {
|
|
61
|
+
remove: (...tokens: string[]) => void;
|
|
62
|
+
has: (token: string) => boolean;
|
|
63
|
+
};
|
|
57
64
|
ngOnInit(): void;
|
|
58
65
|
private _initializeSlide;
|
|
59
66
|
private _bindGlobalEvents;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FocusOrigin } from '@angular/cdk/a11y';
|
|
2
2
|
import { InjectionToken, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
3
4
|
import { NativeInputRefDirective } from '../native-input-ref';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const INPUT_TOKEN: InjectionToken<InputDirective<unknown, HTMLInputElement>>;
|
|
@@ -18,38 +19,38 @@ export declare class InputDirective<T = unknown, J extends HTMLInputElement | HT
|
|
|
18
19
|
autocomplete: string | null;
|
|
19
20
|
placeholder: string | null;
|
|
20
21
|
get id(): string;
|
|
21
|
-
get value$():
|
|
22
|
+
get value$(): Observable<T | null>;
|
|
22
23
|
get value(): T | null;
|
|
23
|
-
get lastUpdateType$():
|
|
24
|
+
get lastUpdateType$(): Observable<import("../../types").InputValueUpdateType | null>;
|
|
24
25
|
get lastUpdateType(): import("../../types").InputValueUpdateType | null;
|
|
25
|
-
get valueChange$():
|
|
26
|
-
get disabled$():
|
|
26
|
+
get valueChange$(): Observable<T>;
|
|
27
|
+
get disabled$(): Observable<boolean>;
|
|
27
28
|
get disabled(): boolean;
|
|
28
|
-
get disabledChange$():
|
|
29
|
-
get required$():
|
|
29
|
+
get disabledChange$(): Observable<boolean>;
|
|
30
|
+
get required$(): Observable<boolean>;
|
|
30
31
|
get required(): boolean;
|
|
31
|
-
get requiredChange$():
|
|
32
|
-
get labelId$():
|
|
32
|
+
get requiredChange$(): Observable<boolean>;
|
|
33
|
+
get labelId$(): Observable<string | null>;
|
|
33
34
|
get labelId(): string | null;
|
|
34
|
-
get invalid$():
|
|
35
|
+
get invalid$(): Observable<boolean>;
|
|
35
36
|
get invalid(): boolean;
|
|
36
|
-
get usesImplicitControl$():
|
|
37
|
+
get usesImplicitControl$(): Observable<boolean>;
|
|
37
38
|
get usesImplicitControl(): boolean;
|
|
38
|
-
get nativeInputRef$():
|
|
39
|
+
get nativeInputRef$(): Observable<NativeInputRefDirective<J> | null>;
|
|
39
40
|
get nativeInputRef(): NativeInputRefDirective<J> | null;
|
|
40
|
-
get autofilled$():
|
|
41
|
+
get autofilled$(): Observable<boolean>;
|
|
41
42
|
get autofilled(): boolean;
|
|
42
|
-
get errors$():
|
|
43
|
+
get errors$(): Observable<import("../../types").ValidatorErrors | null>;
|
|
43
44
|
get errors(): import("../../types").ValidatorErrors | null;
|
|
44
|
-
get shouldDisplayError$():
|
|
45
|
+
get shouldDisplayError$(): Observable<boolean>;
|
|
45
46
|
get shouldDisplayError(): boolean;
|
|
46
|
-
get isFocusedVia$():
|
|
47
|
+
get isFocusedVia$(): Observable<FocusOrigin>;
|
|
47
48
|
get isFocusedVia(): "touch" | "mouse" | "keyboard" | "program" | null;
|
|
48
|
-
get errorId$():
|
|
49
|
+
get errorId$(): Observable<string | null>;
|
|
49
50
|
get errorId(): string | null;
|
|
50
|
-
readonly describedBy$:
|
|
51
|
-
readonly onInternalUpdate$:
|
|
52
|
-
readonly onExternalUpdate$:
|
|
51
|
+
readonly describedBy$: Observable<string | null>;
|
|
52
|
+
readonly onInternalUpdate$: Observable<import("../../types").InputValueUpdateType | null>;
|
|
53
|
+
readonly onExternalUpdate$: Observable<import("../../types").InputValueUpdateType | null>;
|
|
53
54
|
constructor();
|
|
54
55
|
ngOnInit(): void;
|
|
55
56
|
ngOnDestroy(): void;
|
|
@@ -62,6 +63,7 @@ export declare class InputDirective<T = unknown, J extends HTMLInputElement | HT
|
|
|
62
63
|
_setNativeInputRef(ref: NativeInputRefDirective<J> | null): void;
|
|
63
64
|
_setAutofilled(value: boolean): void;
|
|
64
65
|
_setShouldDisplayError(value: boolean): void;
|
|
66
|
+
_setEmptyHelper(value: unknown | Observable<unknown>): void;
|
|
65
67
|
private _detectControlRequiredValidationChanges;
|
|
66
68
|
private _detectControlDisabledChanges;
|
|
67
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective<any, any>, never>;
|
|
@@ -11,7 +11,10 @@ export declare const WRITEABLE_INPUT_VALUE_ACCESSOR: {
|
|
|
11
11
|
};
|
|
12
12
|
export declare class WriteableInputDirective implements ControlValueAccessor {
|
|
13
13
|
readonly _inputStateService: InputStateService<unknown, HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement | HTMLButtonElement>;
|
|
14
|
-
readonly
|
|
14
|
+
readonly hostClassBindings: {
|
|
15
|
+
remove: (...tokens: string[]) => void;
|
|
16
|
+
has: (token: string) => boolean;
|
|
17
|
+
};
|
|
15
18
|
writeValue(value: unknown): void;
|
|
16
19
|
registerOnChange(fn: InputValueChangeFn): void;
|
|
17
20
|
registerOnTouched(fn: InputTouchedFn): void;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { FocusOrigin } from '@angular/cdk/a11y';
|
|
2
|
-
import { BehaviorSubject, Subject } from 'rxjs';
|
|
2
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
3
3
|
import { NativeInputRefDirective } from '../directives';
|
|
4
4
|
import { InputTouchedFn, InputValueChangeFn, InputValueUpdateType, ValidatorErrors } from '../types';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class InputStateService<T = unknown, J extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement | HTMLButtonElement = HTMLInputElement> {
|
|
7
7
|
readonly lastUpdateType$: BehaviorSubject<InputValueUpdateType | null>;
|
|
8
8
|
readonly lastUpdateType: import("@angular/core").Signal<InputValueUpdateType | null>;
|
|
9
|
-
readonly onInternalUpdate$:
|
|
10
|
-
readonly onExternalUpdate$:
|
|
9
|
+
readonly onInternalUpdate$: Observable<InputValueUpdateType | null>;
|
|
10
|
+
readonly onExternalUpdate$: Observable<InputValueUpdateType | null>;
|
|
11
11
|
readonly value$: BehaviorSubject<T | null>;
|
|
12
12
|
readonly value: import("@angular/core").Signal<T | null>;
|
|
13
13
|
readonly disabled$: BehaviorSubject<boolean>;
|
|
@@ -23,11 +23,18 @@ export declare class InputStateService<T = unknown, J extends HTMLInputElement |
|
|
|
23
23
|
readonly nativeInputRef: import("@angular/core").Signal<NativeInputRefDirective<J> | null>;
|
|
24
24
|
readonly autofilled$: BehaviorSubject<boolean>;
|
|
25
25
|
readonly autofilled: import("@angular/core").Signal<boolean>;
|
|
26
|
-
readonly valueIsTruthy$:
|
|
26
|
+
readonly valueIsTruthy$: Observable<boolean>;
|
|
27
27
|
readonly valueIsTruthy: import("@angular/core").Signal<boolean>;
|
|
28
|
-
readonly valueIsFalsy$:
|
|
28
|
+
readonly valueIsFalsy$: Observable<boolean>;
|
|
29
29
|
readonly valueIsFalsy: import("@angular/core").Signal<boolean>;
|
|
30
|
-
|
|
30
|
+
/**
|
|
31
|
+
* Selects might have a option that is "null".
|
|
32
|
+
* This helper can be used to enhance the detection of empty values.
|
|
33
|
+
* The input is empty if the helper returns a falsy value and the value itself is falsy or an empty array.
|
|
34
|
+
*/
|
|
35
|
+
readonly isEmptyHelper$: BehaviorSubject<unknown>;
|
|
36
|
+
readonly isEmptyHelper: import("@angular/core").Signal<unknown>;
|
|
37
|
+
readonly valueIsEmpty$: Observable<boolean>;
|
|
31
38
|
readonly valueIsEmpty: import("@angular/core").Signal<boolean>;
|
|
32
39
|
readonly errors$: BehaviorSubject<ValidatorErrors | null>;
|
|
33
40
|
readonly errors: import("@angular/core").Signal<ValidatorErrors | null>;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class DecoratedFormFieldBase {
|
|
3
3
|
private readonly _formFieldStateService;
|
|
4
|
-
readonly
|
|
4
|
+
readonly hostClassBindings: {
|
|
5
|
+
remove: (...tokens: string[]) => void;
|
|
6
|
+
has: (token: string) => boolean;
|
|
7
|
+
};
|
|
5
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DecoratedFormFieldBase, never>;
|
|
6
9
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DecoratedFormFieldBase, never, never, {}, {}, never, never, false, never>;
|
|
7
10
|
}
|
|
@@ -1,15 +1,22 @@
|
|
|
1
|
-
import { AfterContentInit } from '@angular/core';
|
|
2
1
|
import { TypedQueryList } from '@ethlete/core';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
3
|
import { InputPrefixDirective, InputSuffixDirective } from '../directives';
|
|
4
4
|
import { InputBase } from './input.base';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class DecoratedInputBase extends InputBase
|
|
6
|
+
export declare class DecoratedInputBase extends InputBase {
|
|
7
7
|
private readonly _formFieldStateService;
|
|
8
8
|
readonly _destroy$: import("rxjs").Observable<boolean>;
|
|
9
|
-
|
|
10
|
-
protected readonly
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
set inputPrefix(inputPrefix: TypedQueryList<InputPrefixDirective>);
|
|
10
|
+
protected readonly inputPrefix$: BehaviorSubject<TypedQueryList<InputPrefixDirective> | null>;
|
|
11
|
+
set inputSuffix(inputSuffix: TypedQueryList<InputSuffixDirective>);
|
|
12
|
+
protected readonly inputSuffix$: BehaviorSubject<TypedQueryList<InputSuffixDirective> | null>;
|
|
13
|
+
readonly hasPrefix$: import("rxjs").Observable<boolean>;
|
|
14
|
+
readonly hasSuffix$: import("rxjs").Observable<boolean>;
|
|
15
|
+
readonly hostClassBindings: {
|
|
16
|
+
remove: (...tokens: string[]) => void;
|
|
17
|
+
has: (token: string) => boolean;
|
|
18
|
+
};
|
|
19
|
+
constructor();
|
|
13
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DecoratedInputBase, never>;
|
|
14
21
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DecoratedInputBase, never, never, {}, {}, ["inputPrefix", "inputSuffix"], never, false, never>;
|
|
15
22
|
}
|
|
@@ -16,7 +16,10 @@ export declare class MasonryComponent implements AfterContentInit {
|
|
|
16
16
|
private readonly _didResize$;
|
|
17
17
|
private readonly _didInitialize$;
|
|
18
18
|
private readonly _hideOverflow$;
|
|
19
|
-
readonly
|
|
19
|
+
readonly hostClassBindings: {
|
|
20
|
+
remove: (...tokens: string[]) => void;
|
|
21
|
+
has: (token: string) => boolean;
|
|
22
|
+
};
|
|
20
23
|
private readonly _state;
|
|
21
24
|
ngAfterContentInit(): void;
|
|
22
25
|
invalidate(config?: {
|