@vsn-ux/ngx-gaia 0.9.9 → 0.9.10
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/index.d.ts
CHANGED
|
@@ -1077,12 +1077,15 @@ declare class GaSelectValueComponent {
|
|
|
1077
1077
|
declare function GA_SELECT_I18N_FACTORY(): GaSelectI18nDefault;
|
|
1078
1078
|
declare abstract class GaSelectI18n {
|
|
1079
1079
|
abstract clearLabel: string;
|
|
1080
|
+
abstract defaultSearchInputLabel: string;
|
|
1080
1081
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectI18n, never>;
|
|
1081
1082
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GaSelectI18n>;
|
|
1082
1083
|
}
|
|
1083
1084
|
declare class GaSelectI18nDefault extends GaSelectI18n {
|
|
1084
1085
|
/** A label for the clear button */
|
|
1085
1086
|
clearLabel: string;
|
|
1087
|
+
/** A default label for the search input, unless placeholder is set */
|
|
1088
|
+
defaultSearchInputLabel: string;
|
|
1086
1089
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaSelectI18nDefault, never>;
|
|
1087
1090
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GaSelectI18nDefault>;
|
|
1088
1091
|
}
|
|
@@ -1130,6 +1133,7 @@ declare class GaSelectComponent implements ControlValueAccessor, AfterContentIni
|
|
|
1130
1133
|
readonly isOpen: _angular_core.Signal<boolean>;
|
|
1131
1134
|
readonly disabled: _angular_core.WritableSignal<boolean>;
|
|
1132
1135
|
protected readonly menuStatusIcon: _angular_core.Signal<lucide_angular.LucideIconData>;
|
|
1136
|
+
protected readonly visibleOptions: _angular_core.Signal<GaOptionComponent<any>[]>;
|
|
1133
1137
|
readonly selectedOptions: _angular_core.Signal<GaOptionComponent<any>[]>;
|
|
1134
1138
|
readonly activeDescendantId: _angular_core.Signal<string | undefined>;
|
|
1135
1139
|
readonly hasValue: _angular_core.Signal<boolean>;
|