@vsn-ux/ngx-gaia 0.2.2 → 0.2.4
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/fesm2022/vsn-ux-ngx-gaia.mjs +188 -275
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/lib/form-field/field-label.component.d.ts +3 -0
- package/lib/form-field/form-control.di.d.ts +6 -5
- package/lib/input/input.directive.d.ts +1 -0
- package/lib/select/index.d.ts +3 -5
- package/lib/select/option.component.d.ts +2 -3
- package/lib/select/select-default-value.component.d.ts +7 -0
- package/lib/select/select-dropdown-loading.component.d.ts +5 -0
- package/lib/select/select-dropdown.component.d.ts +7 -0
- package/lib/select/select-value.component.d.ts +1 -3
- package/lib/select/select.component.d.ts +22 -11
- package/lib/select/select.module.d.ts +5 -7
- package/lib/tooltip/tooltip.component.d.ts +1 -1
- package/package.json +2 -2
- package/lib/select/select-content-loading.component.d.ts +0 -5
- package/lib/select/select-content.component.d.ts +0 -7
- package/lib/select/triggers/select-custom-trigger.component.d.ts +0 -5
- package/lib/select/triggers/select-searchable-trigger.component.d.ts +0 -22
- package/lib/select/triggers/select-trigger-di.d.ts +0 -2
- package/lib/select/triggers/select-trigger.component.d.ts +0 -15
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { GaFormFieldComponent } from './form-field.component';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class GaFieldLabelComponent {
|
|
4
|
+
private readonly document;
|
|
4
5
|
readonly formField: GaFormFieldComponent;
|
|
5
6
|
readonly for: import("@angular/core").InputSignal<string | undefined>;
|
|
6
7
|
readonly controlId: import("@angular/core").Signal<string>;
|
|
8
|
+
readonly controlElement: import("@angular/core").Signal<HTMLElement | null>;
|
|
9
|
+
focusControl(): void;
|
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaFieldLabelComponent, never>;
|
|
8
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<GaFieldLabelComponent, "ga-label", never, { "for": { "alias": "for"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9
12
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { InjectionToken, Signal } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
4
|
-
readonly
|
|
5
|
-
}
|
|
3
|
+
export type GaFormControl = {
|
|
4
|
+
readonly _formControlId: Signal<string | null | undefined>;
|
|
5
|
+
};
|
|
6
6
|
export declare const GA_FORM_CONTROL: InjectionToken<GaFormControl>;
|
|
7
|
-
export declare class GaFormControlDirective {
|
|
7
|
+
export declare class GaFormControlDirective implements GaFormControl {
|
|
8
|
+
readonly _formControlId: import("@angular/core").InputSignal<string | undefined>;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaFormControlDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GaFormControlDirective, "[gaFormControl]", never, {}, {}, never, never, true, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GaFormControlDirective, "[gaFormControl]", never, { "_formControlId": { "alias": "gaFormControl"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
11
|
}
|
|
@@ -14,6 +14,7 @@ export declare class GaInputDirective implements DoCheck, GaFormControl {
|
|
|
14
14
|
readonly invalid: import("@angular/core").Signal<boolean>;
|
|
15
15
|
readonly id: import("@angular/core").Signal<string>;
|
|
16
16
|
readonly errors: import("@angular/core").Signal<ValidationErrors | null>;
|
|
17
|
+
readonly _formControlId: import("@angular/core").Signal<string>;
|
|
17
18
|
ngDoCheck(): void;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaInputDirective, never>;
|
|
19
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<GaInputDirective, "[gaInput]", never, { "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
package/lib/select/index.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
export * from './select.component';
|
|
2
2
|
export * from './option.component';
|
|
3
3
|
export * from './opt-group.component';
|
|
4
|
-
export * from './select-
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './
|
|
7
|
-
export * from './triggers/select-searchable-trigger.component';
|
|
8
|
-
export * from './select-content-loading.component';
|
|
4
|
+
export * from './select-dropdown.component';
|
|
5
|
+
export * from './select-dropdown-loading.component';
|
|
6
|
+
export * from './select-value.component';
|
|
9
7
|
export * from './select-required.validator';
|
|
10
8
|
export * from './select.module';
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { CdkOption } from '@angular/cdk/listbox';
|
|
2
|
-
import { DoCheck } from '@angular/core';
|
|
3
2
|
import { GaSelectComponent } from './select.component';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
import * as i1 from "@angular/cdk/listbox";
|
|
6
|
-
export declare class GaOptionComponent<InputType = any>
|
|
5
|
+
export declare class GaOptionComponent<InputType = any> {
|
|
7
6
|
private readonly _isSelected;
|
|
8
7
|
private readonly _isActive;
|
|
9
8
|
protected readonly selectComponent: GaSelectComponent;
|
|
@@ -13,7 +12,7 @@ export declare class GaOptionComponent<InputType = any> implements DoCheck {
|
|
|
13
12
|
readonly withInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
14
13
|
readonly selected: import("@angular/core").Signal<boolean>;
|
|
15
14
|
readonly active: import("@angular/core").Signal<boolean>;
|
|
16
|
-
|
|
15
|
+
constructor();
|
|
17
16
|
onClick(): void;
|
|
18
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaOptionComponent<any>, never>;
|
|
19
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<GaOptionComponent<any>, "ga-option", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "withInput": { "alias": "withInput"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.CdkOption; inputs: { "cdkOption": "value"; "cdkOptionDisabled": "disabled"; "cdkOptionTypeaheadLabel": "typeaheadLabel"; }; outputs: {}; }]>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GaSelectDefaultValueComponent {
|
|
3
|
+
private readonly selectComponent;
|
|
4
|
+
readonly optionViewValue: import("@angular/core").Signal<string | null>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectDefaultValueComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectDefaultValueComponent, "ga-select-default-value", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GaSelectDropdownLoadingComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectDropdownLoadingComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectDropdownLoadingComponent, "ga-select-dropdown-loader", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/listbox";
|
|
3
|
+
export declare class GaSelectDropdownComponent {
|
|
4
|
+
readonly loading: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectDropdownComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectDropdownComponent, "ga-select-dropdown", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.CdkListbox; inputs: {}; outputs: {}; }]>;
|
|
7
|
+
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class GaSelectValueComponent {
|
|
3
|
-
private readonly selectComponent;
|
|
4
|
-
readonly optionViewValue: import("@angular/core").Signal<string | null>;
|
|
5
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectValueComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectValueComponent, "ga-select-value", never, {}, {}, never,
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectValueComponent, "ga-select-value", never, {}, {}, never, ["*"], true, never>;
|
|
7
5
|
}
|
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AfterContentInit, DoCheck, ElementRef } from '@angular/core';
|
|
2
|
+
import { CdkOverlayOrigin, ConnectedPosition } from '@angular/cdk/overlay';
|
|
2
3
|
import { GaIconData } from '../icon';
|
|
3
4
|
import { GaOptionComponent } from './option.component';
|
|
4
5
|
import { CdkListbox } from '@angular/cdk/listbox';
|
|
5
6
|
import { ControlValueAccessor } from '@angular/forms';
|
|
7
|
+
import { GaFormControl } from '../form-field/form-control.di';
|
|
8
|
+
import { GaSelectValueComponent } from './select-value.component';
|
|
6
9
|
import * as i0 from "@angular/core";
|
|
7
|
-
|
|
10
|
+
import * as i1 from "@angular/cdk/overlay";
|
|
11
|
+
export declare class GaSelectComponent implements ControlValueAccessor, GaFormControl, DoCheck, AfterContentInit {
|
|
12
|
+
private readonly _uniqueId;
|
|
8
13
|
private focusedTriggerElement;
|
|
9
14
|
private _onTouched?;
|
|
10
15
|
private _onModelChanged?;
|
|
11
16
|
protected readonly positions: ConnectedPosition[];
|
|
12
17
|
private readonly injector;
|
|
18
|
+
protected readonly overlayOrigin: CdkOverlayOrigin;
|
|
13
19
|
private readonly implicitInvalid;
|
|
14
20
|
private readonly _isOpen;
|
|
15
21
|
readonly value: import("@angular/core").ModelSignal<unknown>;
|
|
@@ -18,20 +24,24 @@ export declare class GaSelectComponent implements ControlValueAccessor {
|
|
|
18
24
|
readonly invalidInput: import("@angular/core").InputSignalWithTransform<boolean | null, unknown>;
|
|
19
25
|
readonly multiple: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
20
26
|
readonly compareWith: import("@angular/core").InputSignal<((o1: any, o2: any) => boolean) | undefined>;
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
27
|
+
readonly searchable: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
28
|
+
readonly textValue: import("@angular/core").ModelSignal<string>;
|
|
29
|
+
readonly leftIcon: import("@angular/core").InputSignal<GaIconData | undefined>;
|
|
30
|
+
readonly idInput: import("@angular/core").InputSignal<string | null>;
|
|
24
31
|
readonly gaOptions: import("@angular/core").Signal<readonly GaOptionComponent<any>[]>;
|
|
25
32
|
protected readonly cdkListbox: import("@angular/core").Signal<CdkListbox<any>>;
|
|
26
|
-
protected readonly
|
|
33
|
+
protected readonly customSelectValue: import("@angular/core").Signal<GaSelectValueComponent | undefined>;
|
|
34
|
+
protected readonly inputSearch: import("@angular/core").Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
35
|
+
protected readonly content: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
36
|
+
readonly id: import("@angular/core").Signal<string>;
|
|
27
37
|
readonly isOpen: import("@angular/core").Signal<boolean>;
|
|
28
38
|
readonly disabled: import("@angular/core").WritableSignal<boolean>;
|
|
29
|
-
protected readonly
|
|
39
|
+
protected readonly menuStatusIcon: import("@angular/core").Signal<GaIconData>;
|
|
30
40
|
readonly selectedOptions: import("@angular/core").Signal<GaOptionComponent<any>[]>;
|
|
31
41
|
readonly activeDescendantId: import("@angular/core").Signal<string | undefined>;
|
|
32
42
|
readonly hasValue: import("@angular/core").Signal<boolean>;
|
|
33
43
|
readonly invalid: import("@angular/core").Signal<boolean>;
|
|
34
|
-
readonly
|
|
44
|
+
readonly _formControlId: import("@angular/core").Signal<string>;
|
|
35
45
|
constructor();
|
|
36
46
|
ngAfterContentInit(): void;
|
|
37
47
|
ngDoCheck(): void;
|
|
@@ -40,16 +50,17 @@ export declare class GaSelectComponent implements ControlValueAccessor {
|
|
|
40
50
|
registerOnTouched(fn: any): void;
|
|
41
51
|
setDisabledState(disabled: boolean): void;
|
|
42
52
|
toggle(): void;
|
|
43
|
-
open():
|
|
44
|
-
close():
|
|
53
|
+
open(): void;
|
|
54
|
+
close(): void;
|
|
45
55
|
autoClose(): void;
|
|
46
56
|
focusListbox(): void;
|
|
47
57
|
setPreviousItemActive(): void;
|
|
48
58
|
setNextItemActive(): void;
|
|
49
59
|
setActiveItemAsSelected(): void;
|
|
60
|
+
protected onInputKeyDown(event: KeyboardEvent): void;
|
|
50
61
|
protected onOverlayAttach(): void;
|
|
51
62
|
protected onOverlayDetach(): void;
|
|
52
63
|
private setItemActive;
|
|
53
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectComponent, "ga-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; }
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectComponent, "ga-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "textValue": { "alias": "textValue"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "textValue": "textValueChange"; }, ["gaOptions", "cdkListbox", "customSelectValue"], ["ga-select-value", "ga-select-dropdown"], true, [{ directive: typeof i1.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
|
|
55
66
|
}
|
|
@@ -2,14 +2,12 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./select.component";
|
|
3
3
|
import * as i2 from "./option.component";
|
|
4
4
|
import * as i3 from "./opt-group.component";
|
|
5
|
-
import * as i4 from "./select-
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./select-content-loading.component";
|
|
10
|
-
import * as i9 from "./select-required.validator";
|
|
5
|
+
import * as i4 from "./select-dropdown.component";
|
|
6
|
+
import * as i5 from "./select-dropdown-loading.component";
|
|
7
|
+
import * as i6 from "./select-value.component";
|
|
8
|
+
import * as i7 from "./select-required.validator";
|
|
11
9
|
export declare class GaSelectModule {
|
|
12
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GaSelectModule, never, [typeof i1.GaSelectComponent, typeof i2.GaOptionComponent, typeof i3.GaOptgroupComponent, typeof i4.
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GaSelectModule, never, [typeof i1.GaSelectComponent, typeof i2.GaOptionComponent, typeof i3.GaOptgroupComponent, typeof i4.GaSelectDropdownComponent, typeof i5.GaSelectDropdownLoadingComponent, typeof i6.GaSelectValueComponent, typeof i7.GaSelectRequiredValidator], [typeof i1.GaSelectComponent, typeof i2.GaOptionComponent, typeof i3.GaOptgroupComponent, typeof i4.GaSelectDropdownComponent, typeof i5.GaSelectDropdownLoadingComponent, typeof i6.GaSelectValueComponent, typeof i7.GaSelectRequiredValidator]>;
|
|
14
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<GaSelectModule>;
|
|
15
13
|
}
|
|
@@ -11,7 +11,7 @@ export declare class GaTooltipComponent {
|
|
|
11
11
|
readonly content: import("@angular/core").InputSignal<string | TemplateRef<any>>;
|
|
12
12
|
readonly template: import("@angular/core").Signal<TemplateRef<any> | null>;
|
|
13
13
|
readonly text: import("@angular/core").Signal<string | null>;
|
|
14
|
-
readonly position: import("@angular/core").InputSignal<"top-start" | "top-end" | "
|
|
14
|
+
readonly position: import("@angular/core").InputSignal<"top-center" | "top-start" | "top-end" | "bottom-center" | "bottom-start" | "bottom-end" | "left-center" | "left-start" | "left-end" | "right-center" | "right-start" | "right-end" | undefined>;
|
|
15
15
|
readonly offset: import("@angular/core").InputSignal<number>;
|
|
16
16
|
readonly hideTriggered: import("@angular/core").OutputEmitterRef<void>;
|
|
17
17
|
readonly triggerHide: () => void;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vsn-ux/ngx-gaia",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^19.0.0",
|
|
6
6
|
"@angular/common": "^19.0.0",
|
|
7
7
|
"@angular/core": "^19.0.0",
|
|
8
|
-
"@vsn-ux/gaia-styles": "^0.2.
|
|
8
|
+
"@vsn-ux/gaia-styles": "^0.2.1",
|
|
9
9
|
"lucide-angular": "^0.475.0"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class GaSelectContentLoadingComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectContentLoadingComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectContentLoadingComponent, "ga-select-content-loading", never, {}, {}, never, never, true, never>;
|
|
5
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/cdk/listbox";
|
|
3
|
-
export declare class GaSelectContentComponent {
|
|
4
|
-
readonly loading: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectContentComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectContentComponent, "ga-select-content", never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.CdkListbox; inputs: {}; outputs: {}; }]>;
|
|
7
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class GaSelectCustomTriggerComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectCustomTriggerComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectCustomTriggerComponent, "ga-select-custom-trigger", never, {}, {}, never, ["*"], true, never>;
|
|
5
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { GaIconData } from '../../icon';
|
|
3
|
-
import { GaSelectComponent } from '../select.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class GaSelectComboboxTriggerComponent {
|
|
6
|
-
private readonly injector;
|
|
7
|
-
protected readonly selectComponent: GaSelectComponent;
|
|
8
|
-
protected readonly content: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
9
|
-
protected readonly inputSearch: import("@angular/core").Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
10
|
-
protected readonly hasCustomLabel: import("@angular/core").WritableSignal<boolean>;
|
|
11
|
-
protected readonly menuStatusIcon: import("@angular/core").Signal<GaIconData>;
|
|
12
|
-
protected readonly textValue: import("@angular/core").ModelSignal<string>;
|
|
13
|
-
protected readonly leftIcon: import("@angular/core").InputSignal<GaIconData | undefined>;
|
|
14
|
-
constructor();
|
|
15
|
-
ngAfterViewInit(): void;
|
|
16
|
-
checkIfHasCustomLabel(): void;
|
|
17
|
-
toggle(): void;
|
|
18
|
-
open(): void;
|
|
19
|
-
onInputKeyDown(event: KeyboardEvent): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectComboboxTriggerComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectComboboxTriggerComponent, "ga-select-searchable-trigger", never, { "textValue": { "alias": "textValue"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; }, { "textValue": "textValueChange"; }, never, ["*"], true, never>;
|
|
22
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { GaIconData } from '../../icon';
|
|
3
|
-
import { GaSelectComponent } from '../select.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class GaSelectTriggerComponent {
|
|
6
|
-
protected readonly selectComponent: GaSelectComponent;
|
|
7
|
-
protected readonly content: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
8
|
-
protected readonly hasCustomLabel: import("@angular/core").WritableSignal<boolean>;
|
|
9
|
-
protected readonly menuStatusIcon: import("@angular/core").Signal<GaIconData>;
|
|
10
|
-
protected readonly leftIcon: import("@angular/core").InputSignal<GaIconData | undefined>;
|
|
11
|
-
ngAfterViewInit(): void;
|
|
12
|
-
checkIfHasCustomLabel(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectTriggerComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectTriggerComponent, "ga-select-trigger", never, { "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
15
|
-
}
|