@proximus/lavender-mega-dropdown 2.0.0-alpha.17 → 2.0.0-alpha.170

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.
@@ -10,11 +10,11 @@ export declare class MddSectionItem extends HTMLElement {
10
10
  private updateView;
11
11
  connectedCallback(): void;
12
12
  private handleClick;
13
- configureAfterIcon(icon: any): void;
14
- get href(): string;
15
- set href(value: string);
16
- get $link(): HTMLAnchorElement;
17
- get $button(): HTMLButtonElement;
13
+ configureAfterIcon(icon: HTMLElement): void;
14
+ get href(): string | null;
15
+ set href(value: string | null);
16
+ get $link(): HTMLAnchorElement | null;
17
+ get $button(): HTMLButtonElement | null;
18
18
  get $after(): HTMLSlotElement;
19
19
  get $arrowIcon(): HTMLElement;
20
20
  }
@@ -18,12 +18,12 @@ export declare class MegaDropDown extends HTMLElement {
18
18
  get $dialog(): HTMLDialogElement;
19
19
  get hidden(): boolean;
20
20
  set hidden(value: boolean);
21
- get name(): string;
22
- set name(value: string);
23
- get closeButtonAriaLabel(): string;
24
- set closeButtonAriaLabel(value: string);
25
- get backToMenuLabel(): string;
26
- set backToMenuLabel(value: string);
21
+ get name(): string | null;
22
+ set name(value: string | null);
23
+ get closeButtonAriaLabel(): string | null;
24
+ set closeButtonAriaLabel(value: string | null);
25
+ get backToMenuLabel(): string | null;
26
+ set backToMenuLabel(value: string | null);
27
27
  get $slotMddFooter(): HTMLSlotElement;
28
28
  set dialogOffsetTop(value: string);
29
29
  }