@proximus/lavender-autocomplete 2.0.0-alpha.165 → 2.0.0-alpha.169

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.
@@ -31,13 +31,13 @@ export declare class Autocomplete extends WithExtraAttributes {
31
31
  setDefaultPopoverHeight(): void;
32
32
  get value(): string;
33
33
  set value(value: string);
34
- get name(): string;
34
+ get name(): string | null;
35
35
  formResetCallback(): void;
36
36
  formStateRestoreCallback(state: string): void;
37
37
  get $dropDown(): Dropdown;
38
38
  get $dropDownContent(): HTMLElement;
39
39
  get $input(): Input & HTMLInputElement;
40
- get $label(): HTMLElement;
41
- get popoverHeight(): string;
42
- set popoverHeight(value: string);
40
+ get $label(): HTMLElement | null;
41
+ get popoverHeight(): string | null;
42
+ set popoverHeight(value: string | null);
43
43
  }