@easemate/web-kit 0.3.4 → 0.3.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.
@@ -27,15 +27,15 @@ type Placement = 'top-start' | 'top-center' | 'top-end' | 'bottom-start' | 'bott
27
27
  declare class Popover extends HTMLElement {
28
28
  #private;
29
29
  requestRender: () => void;
30
- get contentElement(): HTMLElement | null;
30
+ accessor contentElement: HTMLElement | null;
31
31
  accessor placement: Placement;
32
32
  accessor offset: number;
33
33
  accessor open: boolean;
34
+ handleOffsetChange(): void;
35
+ handleOpenChange(): void;
34
36
  connectedCallback(): void;
35
- disconnectedCallback(): void;
37
+ afterRender(): void;
36
38
  render(): TemplateResult;
37
- handlePlacementChange(): void;
38
- handleOffsetChange(): void;
39
39
  }
40
40
 
41
41
  declare class Tooltip extends HTMLElement {
@@ -27,15 +27,15 @@ type Placement = 'top-start' | 'top-center' | 'top-end' | 'bottom-start' | 'bott
27
27
  declare class Popover extends HTMLElement {
28
28
  #private;
29
29
  requestRender: () => void;
30
- get contentElement(): HTMLElement | null;
30
+ accessor contentElement: HTMLElement | null;
31
31
  accessor placement: Placement;
32
32
  accessor offset: number;
33
33
  accessor open: boolean;
34
+ handleOffsetChange(): void;
35
+ handleOpenChange(): void;
34
36
  connectedCallback(): void;
35
- disconnectedCallback(): void;
37
+ afterRender(): void;
36
38
  render(): TemplateResult;
37
- handlePlacementChange(): void;
38
- handleOffsetChange(): void;
39
39
  }
40
40
 
41
41
  declare class Tooltip extends HTMLElement {