@aws/mynah-ui 4.35.0-beta.4 → 4.35.0-beta.6

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;
@@ -12,11 +12,13 @@ export interface SelectProps {
12
12
  classNames?: string[];
13
13
  attributes?: Record<string, string>;
14
14
  handleIcon?: MynahIcons | MynahIconsType;
15
+ border?: boolean;
15
16
  icon?: MynahIcons | MynahIconsType;
16
17
  label?: HTMLElement | ExtendedHTMLElement | string;
17
18
  description?: ExtendedHTMLElement;
18
19
  value?: string;
19
20
  optional?: boolean;
21
+ autoWidth?: boolean;
20
22
  options?: SelectOption[];
21
23
  placeholder?: string;
22
24
  onChange?: (value: string) => void;
@@ -30,7 +32,9 @@ export declare abstract class SelectAbstract {
30
32
  setEnabled: (enabled: boolean) => void;
31
33
  }
32
34
  export declare class SelectInternal {
35
+ private readonly props;
33
36
  private readonly selectElement;
37
+ private readonly autoWidthSizer;
34
38
  render: ExtendedHTMLElement;
35
39
  constructor(props: SelectProps);
36
40
  setValue: (value: string) => void;
@@ -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;