@aws/mynah-ui 4.35.0-beta.4 → 4.35.0-beta.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.
@@ -24,6 +24,7 @@ export declare class ChatItemCard {
24
24
  private cardHeader;
25
25
  private cardTitle;
26
26
  private informationCard;
27
+ private summary;
27
28
  private tabbedCard;
28
29
  private cardIcon;
29
30
  private contentBody;
@@ -22,6 +22,7 @@ export declare enum MynahIcons {
22
22
  FILE = "file",
23
23
  FLASH = "flash",
24
24
  DOC = "doc",
25
+ DOT = "dot",
25
26
  EXTERNAL = "external",
26
27
  CANCEL = "cancel",
27
28
  CANCEL_CIRCLE = "cancel-circle",
@@ -93,6 +94,9 @@ export interface IconProps {
93
94
  }
94
95
  export declare class Icon {
95
96
  render: ExtendedHTMLElement;
97
+ props: IconProps;
96
98
  constructor(props: IconProps);
99
+ private readonly getIconName;
97
100
  private isCustomIcon;
101
+ update: (icon: MynahIcons | MynahIconsType | CustomIcon) => void;
98
102
  }
@@ -57,6 +57,7 @@ export declare enum OverlayVerticalDirection {
57
57
  export interface OverlayProps {
58
58
  testId?: string;
59
59
  referenceElement?: HTMLElement | ExtendedHTMLElement;
60
+ removeIfReferenceElementRemoved?: boolean;
60
61
  referencePoint?: {
61
62
  top: number;
62
63
  left: number;