@aws/mynah-ui 3.1.1 → 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,6 +16,8 @@ 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;
@@ -24,7 +26,6 @@ export declare class ChatItemCard {
24
26
  private readonly getChatAvatar;
25
27
  private readonly getInsertedTypewriterPartsCss;
26
28
  private readonly getInsertingTypewriterPartsCss;
27
- private readonly getCompletedTypewriterPartsCss;
28
29
  readonly updateCard: () => void;
29
30
  readonly updateCardStack: (updateWith: Partial<ChatItem>) => void;
30
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
  }