@epam/ai-dial-shared 0.41.0-rc.55 → 0.41.0-rc.56

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
@@ -54,6 +54,7 @@ var Feature;
54
54
  // User settings
55
55
  Feature["HideUserSettings"] = "hide-user-settings";
56
56
  Feature["CustomLogo"] = "custom-logo";
57
+ Feature["HideUserMenu"] = "hide-user-menu";
57
58
  // Applications
58
59
  Feature["CustomApplications"] = "custom-applications";
59
60
  Feature["CodeApps"] = "code-apps";
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@epam/ai-dial-shared",
3
3
  "description": "Shared elements that support developing DIAL",
4
4
  "homepage": "https://dialx.ai",
5
- "version": "0.41.0-rc.55",
5
+ "version": "0.41.0-rc.56",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -38,6 +38,7 @@ export declare enum Feature {
38
38
  ReportAnIssue = "report-an-issue",// Display report issue modal
39
39
  HideUserSettings = "hide-user-settings",// Hide user settings
40
40
  CustomLogo = "custom-logo",// Enable setting for custom logo feature
41
+ HideUserMenu = "hide-user-menu",// Hide user menu button from top header
41
42
  CustomApplications = "custom-applications",// Enable creating of applications ('Add app' button/menu)
42
43
  CodeApps = "code-apps",// Enable creating of Code apps (into the 'Add app' menu)
43
44
  CodeInterpreter = "code-interpreter",// Enable Code Interpreter feature
@@ -23,6 +23,7 @@ export interface ChatOverlayOptions {
23
23
  interface OverlaySignInOptions {
24
24
  autoSignIn: boolean;
25
25
  signInProvider?: string;
26
+ logInHint?: string;
26
27
  signInInNewWindow?: boolean;
27
28
  validationUserEmail?: string;
28
29
  }