@openproject/primer-view-components 0.79.0-rc.f83f38125 → 0.79.1-rc.bfd002c20

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.
@@ -1,7 +1,15 @@
1
1
  export declare class AvatarFallbackElement extends HTMLElement {
2
2
  uniqueId: string;
3
3
  altText: string;
4
+ fallbackSrc: string;
5
+ private img;
6
+ private boundErrorHandler?;
4
7
  connectedCallback(): void;
8
+ disconnectedCallback(): void;
9
+ private isImageBroken;
10
+ private handleImageError;
11
+ private applyColor;
5
12
  private valueHash;
6
13
  private updateSvgColor;
14
+ private isFallbackImage;
7
15
  }