@aws/mynah-ui 3.1.0 → 3.1.2

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.
@@ -16,12 +16,16 @@ export declare class ChatItemCard {
16
16
  chatAvatar: ExtendedHTMLElement;
17
17
  updateStack: Array<Partial<ChatItem>>;
18
18
  typewriterItemIndex: number;
19
+ previousTypewriterItemIndex: number;
20
+ typewriterId: string;
19
21
  private updateTimer;
20
22
  constructor(props: ChatItemCardProps);
21
23
  private readonly generateCard;
22
24
  private readonly getCardClasses;
23
25
  private readonly getCardContent;
24
26
  private readonly getChatAvatar;
27
+ private readonly getInsertedTypewriterPartsCss;
28
+ private readonly getInsertingTypewriterPartsCss;
25
29
  readonly updateCard: () => void;
26
30
  readonly updateCardStack: (updateWith: Partial<ChatItem>) => void;
27
31
  }
@@ -4,7 +4,7 @@
4
4
  */
5
5
  import { ExtendedHTMLElement } from '../../helper/dom';
6
6
  export declare const MAX_USER_INPUT = 4000;
7
- export declare const MAX_USER_INPUT_TRESHOLD = 96;
7
+ export declare const MAX_USER_INPUT_THRESHOLD = 96;
8
8
  export interface ChatPromptInputProps {
9
9
  tabId: string;
10
10
  }