@epam/ai-dial-shared 0.44.0-rc.99 → 0.45.0-rc.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.
package/index.esm.js CHANGED
@@ -10,6 +10,8 @@ var Feature;
10
10
  Feature["ShowLayoutDividers"] = "show-layout-dividers";
11
11
  Feature["AttachmentsManager"] = "attachments-manager";
12
12
  Feature["ChatFullWidthByDefault"] = "chat-full-width-by-default";
13
+ // Chat Header
14
+ Feature["ChatHeaderBorder"] = "chat-header-border";
13
15
  // Conversation Header
14
16
  Feature["HideNewConversation"] = "hide-new-conversation";
15
17
  Feature["TopSettings"] = "top-settings";
@@ -24,6 +26,7 @@ var Feature;
24
26
  Feature["InputFiles"] = "input-files";
25
27
  Feature["InputLinks"] = "input-links";
26
28
  Feature["MessageTemplates"] = "message-templates";
29
+ Feature["LiveChatInteraction"] = "live-chat-interaction";
27
30
  // Edit assistant message
28
31
  Feature["EditLastAssistantContent"] = "edit-last-assistant-message";
29
32
  Feature["EditAllAssistantContent"] = "edit-all-assistant-message";
@@ -35,6 +38,7 @@ var Feature;
35
38
  Feature["HideDeleteUserMessage"] = "hide-delete-user-message";
36
39
  // Chat input
37
40
  Feature["SkipFocusChatInputOnLoad"] = "skip-focus-chat-input-onload";
41
+ Feature["ChatInputBorder"] = "chat-input-border";
38
42
  // Send button
39
43
  Feature["DisabledSend"] = "disabled-send";
40
44
  // Playback change
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@epam/ai-dial-shared",
3
3
  "description": "Shared elements that support developing DIAL",
4
4
  "homepage": "https://dialx.ai",
5
- "version": "0.44.0-rc.99",
5
+ "version": "0.45.0-rc.0",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -8,6 +8,7 @@ export declare enum Feature {
8
8
  ShowLayoutDividers = "show-layout-dividers",// show dividers between chat and sidebars
9
9
  AttachmentsManager = "attachments-manager",// Display attachments manager in conversation
10
10
  ChatFullWidthByDefault = "chat-full-width-by-default",// Enforce chat full-width
11
+ ChatHeaderBorder = "chat-header-border",// Display a separator line below the chat header
11
12
  HideNewConversation = "hide-new-conversation",// hide "New conversation" button
12
13
  TopSettings = "top-settings",// Display conversation top header
13
14
  TopClearConversation = "top-clear-conversation",// Display clear conversations button in chat top settings
@@ -20,12 +21,14 @@ export declare enum Feature {
20
21
  InputFiles = "input-files",// Allow attach files to conversation
21
22
  InputLinks = "input-links",// Allow attach links to conversation
22
23
  MessageTemplates = "message-templates",// message templates
24
+ LiveChatInteraction = "live-chat-interaction",
23
25
  EditLastAssistantContent = "edit-last-assistant-message",// allow edit last assistant message only
24
26
  EditAllAssistantContent = "edit-all-assistant-message",// allow edit all assistant messages
25
27
  HideEditUserMessage = "hide-edit-user-message",// Hide editing button of user message
26
28
  HideRegenerateAssistantMessage = "hide-regenerate-assistant-message",// Hide regenerate button of assistant message
27
29
  HideDeleteUserMessage = "hide-delete-user-message",// Hide delete button of user message
28
30
  SkipFocusChatInputOnLoad = "skip-focus-chat-input-onload",// Skip default focusing chat input when on screen onload or after navigation
31
+ ChatInputBorder = "chat-input-border",// Display border around chat input area
29
32
  DisabledSend = "disabled-send",// Disable input
30
33
  DisabledPlaybackControls = "disabled-playback-controls",// Disable changing playback current message
31
34
  EmptyChatSettings = "empty-chat-settings",// Display settings for empty chat
@@ -15,6 +15,7 @@ export interface CustomVisualizerDataLayout {
15
15
  themeId?: string;
16
16
  logInHint?: string;
17
17
  providerId?: string;
18
+ accessToken?: string;
18
19
  }
19
20
  export interface CustomVisualizerData {
20
21
  layout: CustomVisualizerDataLayout;