@epam/ai-dial-shared 0.43.0-rc.9 → 0.43.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 +1 -0
- package/package.json +1 -1
- package/src/types/features.d.ts +1 -0
package/index.esm.js
CHANGED
|
@@ -8,6 +8,7 @@ var Feature;
|
|
|
8
8
|
Feature["ShowConversationsSectionByDefault"] = "showConversationsSectionByDefault";
|
|
9
9
|
Feature["ShowPromptsSectionByDefault"] = "showPromptsSectionByDefault";
|
|
10
10
|
Feature["AttachmentsManager"] = "attachments-manager";
|
|
11
|
+
Feature["ChatFullWidthByDefault"] = "chat-full-width-by-default";
|
|
11
12
|
// Conversation Header
|
|
12
13
|
Feature["HideNewConversation"] = "hide-new-conversation";
|
|
13
14
|
Feature["TopSettings"] = "top-settings";
|
package/package.json
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare enum Feature {
|
|
|
6
6
|
ShowConversationsSectionByDefault = "showConversationsSectionByDefault",// show conversations sidebar by default on desktop
|
|
7
7
|
ShowPromptsSectionByDefault = "showPromptsSectionByDefault",// show prompts sidebar by default on desktop
|
|
8
8
|
AttachmentsManager = "attachments-manager",// Display attachments manager in conversation
|
|
9
|
+
ChatFullWidthByDefault = "chat-full-width-by-default",// Enforce chat full-width
|
|
9
10
|
HideNewConversation = "hide-new-conversation",// hide "New conversation" button
|
|
10
11
|
TopSettings = "top-settings",// Display conversation top header
|
|
11
12
|
TopClearConversation = "top-clear-conversation",// Display clear conversations button in chat top settings
|