@epam/ai-dial-shared 0.44.0-rc.103 → 0.44.0-rc.105
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 +3 -0
- package/package.json +1 -1
- package/src/types/features.d.ts +2 -0
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";
|
|
@@ -35,6 +37,7 @@ var Feature;
|
|
|
35
37
|
Feature["HideDeleteUserMessage"] = "hide-delete-user-message";
|
|
36
38
|
// Chat input
|
|
37
39
|
Feature["SkipFocusChatInputOnLoad"] = "skip-focus-chat-input-onload";
|
|
40
|
+
Feature["ChatInputBorder"] = "chat-input-border";
|
|
38
41
|
// Send button
|
|
39
42
|
Feature["DisabledSend"] = "disabled-send";
|
|
40
43
|
// Playback change
|
package/package.json
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -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
|
|
@@ -26,6 +27,7 @@ export declare enum Feature {
|
|
|
26
27
|
HideRegenerateAssistantMessage = "hide-regenerate-assistant-message",// Hide regenerate button of assistant message
|
|
27
28
|
HideDeleteUserMessage = "hide-delete-user-message",// Hide delete button of user message
|
|
28
29
|
SkipFocusChatInputOnLoad = "skip-focus-chat-input-onload",// Skip default focusing chat input when on screen onload or after navigation
|
|
30
|
+
ChatInputBorder = "chat-input-border",// Display border around chat input area
|
|
29
31
|
DisabledSend = "disabled-send",// Disable input
|
|
30
32
|
DisabledPlaybackControls = "disabled-playback-controls",// Disable changing playback current message
|
|
31
33
|
EmptyChatSettings = "empty-chat-settings",// Display settings for empty chat
|