@aws/mynah-ui 4.28.1-beta.1 → 4.29.0

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.
@@ -19,6 +19,7 @@ export declare class ChatItemCard {
19
19
  private readonly initialSpinner;
20
20
  private cardFooter;
21
21
  private cardHeader;
22
+ private cardTitle;
22
23
  private informationCard;
23
24
  private tabbedCard;
24
25
  private cardIcon;
@@ -38,6 +39,7 @@ export declare class ChatItemCard {
38
39
  constructor(props: ChatItemCardProps);
39
40
  private readonly getCardFooter;
40
41
  private readonly getCardHeader;
42
+ private readonly getCardTitle;
41
43
  private readonly generateCard;
42
44
  private readonly setMaxHeightClass;
43
45
  private readonly getCardClasses;
@@ -17,10 +17,14 @@ export declare class ChatItemFormItemsWrapper {
17
17
  private readonly options;
18
18
  private readonly validationItems;
19
19
  private isValid;
20
+ private tooltipOverlay;
21
+ private tooltipTimeout;
20
22
  onValidationChange?: (isValid: boolean) => void;
21
23
  onAllFormItemsDisabled?: () => void;
22
24
  render: ExtendedHTMLElement;
23
25
  constructor(props: ChatItemFormItemsWrapperProps);
26
+ private readonly showTooltip;
27
+ readonly hideTooltip: () => void;
24
28
  private readonly getHandlers;
25
29
  private readonly handleTextualItemKeyPressEvent;
26
30
  private readonly isItemValid;
@@ -28,8 +28,6 @@ export declare class ChatWrapper {
28
28
  private lastStreamingChatItemCard;
29
29
  private lastStreamingChatItemMessageId;
30
30
  private allRenderedChatItems;
31
- private scrollPos;
32
- private restoreScrollAfterResize;
33
31
  render: ExtendedHTMLElement;
34
32
  constructor(props: ChatWrapperProps);
35
33
  private readonly getNewConversationGroupElement;
@@ -12,7 +12,6 @@ export declare class DetailedListWrapper {
12
12
  private readonly detailedListItemGroupsContainer;
13
13
  private readonly filtersContainer;
14
14
  private readonly headerContainer;
15
- private readonly observer;
16
15
  private readonly props;
17
16
  private detailedListItemsBlockData;
18
17
  private activeTargetElementIndex;
@@ -16,6 +16,7 @@ export interface RadioGroupProps {
16
16
  attributes?: Record<string, string>;
17
17
  label?: HTMLElement | ExtendedHTMLElement | string;
18
18
  description?: ExtendedHTMLElement;
19
+ tooltip?: ExtendedHTMLElement;
19
20
  value?: string;
20
21
  optional?: boolean;
21
22
  options?: SelectOption[];
@@ -68,11 +68,13 @@ export declare enum MynahIcons {
68
68
  HELP = "help",
69
69
  MESSAGE = "message",
70
70
  TRASH = "trash",
71
- TRANSFORM = "transform"
71
+ TRANSFORM = "transform",
72
+ HISTORY = "history"
72
73
  }
73
74
  export type MynahIconsType = `${MynahIcons}`;
74
75
  export interface IconProps {
75
76
  icon: MynahIcons | MynahIconsType;
77
+ subtract?: boolean;
76
78
  classNames?: string[];
77
79
  }
78
80
  export declare class Icon {