@epam/ai-dial-shared 0.47.0-dev.51 → 0.47.0-dev.52
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
|
@@ -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";
|
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
|