@telcomdev/ui 0.1.4 → 0.1.5
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/package.json
CHANGED
package/types/telcomdev-ui.d.ts
CHANGED
|
@@ -766,9 +766,11 @@ declare class TdInput implements ControlValueAccessor, FormValueControl<TdInputV
|
|
|
766
766
|
protected readonly counterVisible: _angular_core.Signal<boolean>;
|
|
767
767
|
protected readonly counterAtLimit: _angular_core.Signal<boolean>;
|
|
768
768
|
protected readonly hasSupportingContent: _angular_core.Signal<boolean>;
|
|
769
|
+
protected readonly hasValue: _angular_core.Signal<boolean>;
|
|
770
|
+
protected readonly labelFloating: _angular_core.Signal<boolean>;
|
|
769
771
|
protected readonly resolvedPattern: _angular_core.Signal<string | null>;
|
|
770
772
|
protected readonly resolvedInputMode: _angular_core.Signal<"numeric" | "decimal" | null>;
|
|
771
|
-
protected focused: boolean
|
|
773
|
+
protected readonly focused: _angular_core.WritableSignal<boolean>;
|
|
772
774
|
protected passwordVisible: boolean;
|
|
773
775
|
protected get inputId(): string;
|
|
774
776
|
protected get descriptionId(): string | null;
|
|
@@ -780,6 +782,7 @@ declare class TdInput implements ControlValueAccessor, FormValueControl<TdInputV
|
|
|
780
782
|
setDisabledState(disabled: boolean): void;
|
|
781
783
|
focus(options?: FocusOptions): void;
|
|
782
784
|
protected handleInput(event: Event): void;
|
|
785
|
+
protected handleFocus(): void;
|
|
783
786
|
protected handleBlur(): void;
|
|
784
787
|
protected clear(): void;
|
|
785
788
|
private parseInputValue;
|
|
@@ -861,11 +864,12 @@ declare class TdAutocompleteSelect<T = unknown> implements ControlValueAccessor,
|
|
|
861
864
|
protected search: string;
|
|
862
865
|
protected open: boolean;
|
|
863
866
|
protected activeIndex: number;
|
|
867
|
+
protected readonly focused: _angular_core.WritableSignal<boolean>;
|
|
864
868
|
protected readonly scrollStrategy: ScrollStrategy;
|
|
865
869
|
protected get inputId(): string;
|
|
866
870
|
protected get listId(): string;
|
|
867
871
|
protected get filteredOptions(): TdSelectOption<T>[];
|
|
868
|
-
protected
|
|
872
|
+
protected get labelFloating(): boolean;
|
|
869
873
|
private changed;
|
|
870
874
|
constructor();
|
|
871
875
|
writeValue(value: T | null): void;
|
|
@@ -875,6 +879,8 @@ declare class TdAutocompleteSelect<T = unknown> implements ControlValueAccessor,
|
|
|
875
879
|
focus(options?: FocusOptions): void;
|
|
876
880
|
protected compare(first: T | null, second: T | null): boolean;
|
|
877
881
|
protected openPanel(): void;
|
|
882
|
+
protected handleFocus(): void;
|
|
883
|
+
protected handleBlur(): void;
|
|
878
884
|
protected close(): void;
|
|
879
885
|
protected handleInput(event: Event): void;
|
|
880
886
|
protected select(option: TdSelectOption<T>): void;
|