@epam/ai-dial-shared 0.44.0-rc.12 → 0.44.0-rc.121
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
|
@@ -7,8 +7,11 @@ var Feature;
|
|
|
7
7
|
Feature["PromptsSection"] = "prompts-section";
|
|
8
8
|
Feature["ShowConversationsSectionByDefault"] = "showConversationsSectionByDefault";
|
|
9
9
|
Feature["ShowPromptsSectionByDefault"] = "showPromptsSectionByDefault";
|
|
10
|
+
Feature["ShowLayoutDividers"] = "show-layout-dividers";
|
|
10
11
|
Feature["AttachmentsManager"] = "attachments-manager";
|
|
11
12
|
Feature["ChatFullWidthByDefault"] = "chat-full-width-by-default";
|
|
13
|
+
// Chat Header
|
|
14
|
+
Feature["ChatHeaderBorder"] = "chat-header-border";
|
|
12
15
|
// Conversation Header
|
|
13
16
|
Feature["HideNewConversation"] = "hide-new-conversation";
|
|
14
17
|
Feature["TopSettings"] = "top-settings";
|
|
@@ -23,6 +26,7 @@ var Feature;
|
|
|
23
26
|
Feature["InputFiles"] = "input-files";
|
|
24
27
|
Feature["InputLinks"] = "input-links";
|
|
25
28
|
Feature["MessageTemplates"] = "message-templates";
|
|
29
|
+
Feature["LiveChatInteraction"] = "live-chat-interaction";
|
|
26
30
|
// Edit assistant message
|
|
27
31
|
Feature["EditLastAssistantContent"] = "edit-last-assistant-message";
|
|
28
32
|
Feature["EditAllAssistantContent"] = "edit-all-assistant-message";
|
|
@@ -34,6 +38,7 @@ var Feature;
|
|
|
34
38
|
Feature["HideDeleteUserMessage"] = "hide-delete-user-message";
|
|
35
39
|
// Chat input
|
|
36
40
|
Feature["SkipFocusChatInputOnLoad"] = "skip-focus-chat-input-onload";
|
|
41
|
+
Feature["ChatInputBorder"] = "chat-input-border";
|
|
37
42
|
// Send button
|
|
38
43
|
Feature["DisabledSend"] = "disabled-send";
|
|
39
44
|
// Playback change
|
package/package.json
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -5,8 +5,10 @@ export declare enum Feature {
|
|
|
5
5
|
PromptsSection = "prompts-section",// Display prompts sidebar
|
|
6
6
|
ShowConversationsSectionByDefault = "showConversationsSectionByDefault",// show conversations sidebar by default on desktop
|
|
7
7
|
ShowPromptsSectionByDefault = "showPromptsSectionByDefault",// show prompts sidebar by default on desktop
|
|
8
|
+
ShowLayoutDividers = "show-layout-dividers",// show dividers between chat and sidebars
|
|
8
9
|
AttachmentsManager = "attachments-manager",// Display attachments manager in conversation
|
|
9
10
|
ChatFullWidthByDefault = "chat-full-width-by-default",// Enforce chat full-width
|
|
11
|
+
ChatHeaderBorder = "chat-header-border",// Display a separator line below the chat header
|
|
10
12
|
HideNewConversation = "hide-new-conversation",// hide "New conversation" button
|
|
11
13
|
TopSettings = "top-settings",// Display conversation top header
|
|
12
14
|
TopClearConversation = "top-clear-conversation",// Display clear conversations button in chat top settings
|
|
@@ -19,12 +21,14 @@ export declare enum Feature {
|
|
|
19
21
|
InputFiles = "input-files",// Allow attach files to conversation
|
|
20
22
|
InputLinks = "input-links",// Allow attach links to conversation
|
|
21
23
|
MessageTemplates = "message-templates",// message templates
|
|
24
|
+
LiveChatInteraction = "live-chat-interaction",
|
|
22
25
|
EditLastAssistantContent = "edit-last-assistant-message",// allow edit last assistant message only
|
|
23
26
|
EditAllAssistantContent = "edit-all-assistant-message",// allow edit all assistant messages
|
|
24
27
|
HideEditUserMessage = "hide-edit-user-message",// Hide editing button of user message
|
|
25
28
|
HideRegenerateAssistantMessage = "hide-regenerate-assistant-message",// Hide regenerate button of assistant message
|
|
26
29
|
HideDeleteUserMessage = "hide-delete-user-message",// Hide delete button of user message
|
|
27
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
|
|
28
32
|
DisabledSend = "disabled-send",// Disable input
|
|
29
33
|
DisabledPlaybackControls = "disabled-playback-controls",// Disable changing playback current message
|
|
30
34
|
EmptyChatSettings = "empty-chat-settings",// Display settings for empty chat
|
|
@@ -26,6 +26,7 @@ interface OverlaySignInOptions {
|
|
|
26
26
|
logInHint?: string;
|
|
27
27
|
signInInNewWindow?: boolean;
|
|
28
28
|
validationUserEmail?: string;
|
|
29
|
+
explicitToken?: string;
|
|
29
30
|
}
|
|
30
31
|
export declare enum MessageButtonPlacement {
|
|
31
32
|
PREPEND_DEFAULT_BUTTONS = "PREPEND_DEFAULT_BUTTONS",// Buttons to show before default buttons
|