@vsn-ux/ngx-gaia 0.9.8 → 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/DOCS.md +5 -0
- package/fesm2022/vsn-ux-ngx-gaia.mjs +29 -9
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/index.d.ts +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -391,8 +391,8 @@ declare class GaDatepickerInputDirective implements ControlValueAccessor, Valida
|
|
|
391
391
|
readonly value: _angular_core.WritableSignal<any>;
|
|
392
392
|
readonly dateStruct: _angular_core.Signal<GaDatepickerStruct | null>;
|
|
393
393
|
readonly disabled: _angular_core.WritableSignal<boolean>;
|
|
394
|
-
private readonly lastEmittedStruct;
|
|
395
394
|
private readonly lastValueValid;
|
|
395
|
+
private readonly lastDateChangeEmittedValue;
|
|
396
396
|
private onNgChangeFn?;
|
|
397
397
|
private onNgTouchedFn?;
|
|
398
398
|
constructor();
|
|
@@ -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>;
|