@salesforcedevs/dx-components 1.31.6 → 1.31.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforcedevs/dx-components",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.7",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"luxon": "3.4.4",
|
|
45
45
|
"msw": "^2.12.4"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "ef557a5501d2ffae9c2a6316a63bc976776263d5"
|
|
48
48
|
}
|
|
@@ -64,6 +64,7 @@ export default class AgentMiawUi extends LightningElement {
|
|
|
64
64
|
@api messagingUrl!: string;
|
|
65
65
|
@api deploymentDevName = "page_builder_miaw_ui";
|
|
66
66
|
@api richComponentVersion = "v1-stable";
|
|
67
|
+
@api isOnDigitalDomain = "true";
|
|
67
68
|
@api routingAttributes?: string;
|
|
68
69
|
/**
|
|
69
70
|
* JSON array of suggested prompt strings for the MIAW UI (e.g.
|
|
@@ -95,6 +96,7 @@ export default class AgentMiawUi extends LightningElement {
|
|
|
95
96
|
el.setAttribute("messaging-url", this.messagingUrl);
|
|
96
97
|
el.setAttribute("deployment-dev-name", this.deploymentDevName);
|
|
97
98
|
el.setAttribute("input-variant", "mini-sidebar");
|
|
99
|
+
el.setAttribute("is-on-digital-domain", this.isOnDigitalDomain);
|
|
98
100
|
el.setAttribute(
|
|
99
101
|
"rich-component-version",
|
|
100
102
|
this.richComponentVersion
|