@epam/ai-dial-shared 0.47.0-dev.51 → 0.47.0-dev.54
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 +2 -0
- package/package.json +1 -1
- package/src/types/features.d.ts +2 -0
package/index.esm.js
CHANGED
|
@@ -9,6 +9,7 @@ var Feature;
|
|
|
9
9
|
Feature["PromptsPanelToggle"] = "prompts-panel-toggle";
|
|
10
10
|
Feature["ShowConversationsSectionByDefault"] = "showConversationsSectionByDefault";
|
|
11
11
|
Feature["ShowPromptsSectionByDefault"] = "showPromptsSectionByDefault";
|
|
12
|
+
Feature["MdSidebarOverlayBreakpoint"] = "md-sidebar-overlay-breakpoint";
|
|
12
13
|
Feature["ShowLayoutDividers"] = "show-layout-dividers";
|
|
13
14
|
Feature["AttachmentsManager"] = "attachments-manager";
|
|
14
15
|
Feature["ChatFullWidthByDefault"] = "chat-full-width-by-default";
|
|
@@ -23,6 +24,7 @@ var Feature;
|
|
|
23
24
|
Feature["HideTopContextMenu"] = "hide-top-context-menu";
|
|
24
25
|
Feature["DisallowChangeAgent"] = "disallow-change-agent";
|
|
25
26
|
// Conversation functions
|
|
27
|
+
Feature["CompareModeDisabled"] = "compare-mode-disabled";
|
|
26
28
|
Feature["Likes"] = "likes";
|
|
27
29
|
Feature["DislikeComment"] = "dislike-comment";
|
|
28
30
|
Feature["InputFiles"] = "input-files";
|
package/package.json
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare enum Feature {
|
|
|
7
7
|
PromptsPanelToggle = "prompts-panel-toggle",// Show prompts panel toggle in the corner without app header
|
|
8
8
|
ShowConversationsSectionByDefault = "showConversationsSectionByDefault",// show conversations sidebar by default on desktop
|
|
9
9
|
ShowPromptsSectionByDefault = "showPromptsSectionByDefault",// show prompts sidebar by default on desktop
|
|
10
|
+
MdSidebarOverlayBreakpoint = "md-sidebar-overlay-breakpoint",// use md (768px) instead of xl (1280px) sidebar overlay breakpoint in iframe embed
|
|
10
11
|
ShowLayoutDividers = "show-layout-dividers",// show dividers between chat and sidebars
|
|
11
12
|
AttachmentsManager = "attachments-manager",// Display attachments manager in conversation
|
|
12
13
|
ChatFullWidthByDefault = "chat-full-width-by-default",// Enforce chat full-width
|
|
@@ -18,6 +19,7 @@ export declare enum Feature {
|
|
|
18
19
|
TopChatModelSettings = "top-chat-model-settings",// Display change model settings button
|
|
19
20
|
HideTopContextMenu = "hide-top-context-menu",// Hide top context menu button
|
|
20
21
|
DisallowChangeAgent = "disallow-change-agent",// Disallow "Change agent" button
|
|
22
|
+
CompareModeDisabled = "compare-mode-disabled",// Disable compare mode (sidebar button, conversation context menu). Enabled by default
|
|
21
23
|
Likes = "likes",// Display likes
|
|
22
24
|
DislikeComment = "dislike-comment",// Enable adding comment when disliking a message
|
|
23
25
|
InputFiles = "input-files",// Allow attach files to conversation
|