@saasquatch/squatch-js 2.8.0-3 → 2.8.0-4
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/dist/async.d.ts +0 -1
- package/dist/squatch.cjs.js +21 -11
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +21 -11
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +21 -11
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +1 -1
- package/dist/types.d.ts +11 -0
- package/package.json +1 -1
package/dist/async.d.ts
CHANGED
package/dist/squatch.cjs.js
CHANGED
|
@@ -1108,7 +1108,7 @@ class EmbedWidget extends Widget {
|
|
|
1108
1108
|
if (container) this.container = container;
|
|
1109
1109
|
}
|
|
1110
1110
|
async load() {
|
|
1111
|
-
var _a2, _b, _c;
|
|
1111
|
+
var _a2, _b, _c, _d, _e;
|
|
1112
1112
|
const frame = this._createFrame();
|
|
1113
1113
|
const element = this._findElement();
|
|
1114
1114
|
if ((_a2 = this.context) == null ? void 0 : _a2.container) {
|
|
@@ -1116,15 +1116,15 @@ class EmbedWidget extends Widget {
|
|
|
1116
1116
|
element.style.height = "0";
|
|
1117
1117
|
element.style["overflow-y"] = "hidden";
|
|
1118
1118
|
}
|
|
1119
|
-
const brandingConfig =
|
|
1120
|
-
const sizes = (
|
|
1119
|
+
const brandingConfig = (_c = (_b = this.context.widgetConfig) == null ? void 0 : _b.values) == null ? void 0 : _c.brandingConfig;
|
|
1120
|
+
const sizes = (_d = brandingConfig == null ? void 0 : brandingConfig.widgetSize) == null ? void 0 : _d.embeddedWidgets;
|
|
1121
1121
|
const maxWidth = (sizes == null ? void 0 : sizes.maxWidth) ? formatWidth(sizes.maxWidth) : "100%";
|
|
1122
1122
|
const minWidth = (sizes == null ? void 0 : sizes.minWidth) ? formatWidth(sizes.minWidth) : "100%";
|
|
1123
1123
|
element.style.maxWidth = maxWidth;
|
|
1124
1124
|
element.style.minWidth = minWidth;
|
|
1125
1125
|
if (this.container) {
|
|
1126
1126
|
if (element.shadowRoot) {
|
|
1127
|
-
if (((
|
|
1127
|
+
if (((_e = element.shadowRoot.lastChild) == null ? void 0 : _e.nodeName) === "IFRAME") {
|
|
1128
1128
|
element.shadowRoot.replaceChild(frame, element.shadowRoot.lastChild);
|
|
1129
1129
|
} else {
|
|
1130
1130
|
element.shadowRoot.appendChild(frame);
|
|
@@ -1247,10 +1247,10 @@ class PopupWidget extends Widget {
|
|
|
1247
1247
|
}
|
|
1248
1248
|
}
|
|
1249
1249
|
_createPopupDialog() {
|
|
1250
|
-
var _a2;
|
|
1250
|
+
var _a2, _b, _c;
|
|
1251
1251
|
const dialog = document.createElement("dialog");
|
|
1252
|
-
const brandingConfig =
|
|
1253
|
-
const sizes = (
|
|
1252
|
+
const brandingConfig = (_b = (_a2 = this.context.widgetConfig) == null ? void 0 : _a2.values) == null ? void 0 : _b.brandingConfig;
|
|
1253
|
+
const sizes = (_c = brandingConfig == null ? void 0 : brandingConfig.widgetSize) == null ? void 0 : _c.popupWidgets;
|
|
1254
1254
|
const minWidth = (sizes == null ? void 0 : sizes.minWidth) ? formatWidth(sizes.minWidth) : "100%";
|
|
1255
1255
|
const maxWidth = (sizes == null ? void 0 : sizes.maxWidth) ? formatWidth(sizes.maxWidth) : "500px";
|
|
1256
1256
|
dialog.id = this.id;
|
|
@@ -1423,7 +1423,12 @@ class Widgets {
|
|
|
1423
1423
|
user: clean.user,
|
|
1424
1424
|
engagementMedium: config.engagementMedium,
|
|
1425
1425
|
container: config.container,
|
|
1426
|
-
trigger: config.trigger
|
|
1426
|
+
trigger: config.trigger,
|
|
1427
|
+
widgetConfig: {
|
|
1428
|
+
values: {
|
|
1429
|
+
brandingConfig: response == null ? void 0 : response.brandingConfig
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1427
1432
|
}),
|
|
1428
1433
|
user: response.user
|
|
1429
1434
|
};
|
|
@@ -1460,7 +1465,12 @@ class Widgets {
|
|
|
1460
1465
|
type: "passwordless",
|
|
1461
1466
|
engagementMedium: clean.engagementMedium,
|
|
1462
1467
|
container: clean.container,
|
|
1463
|
-
trigger: clean.trigger
|
|
1468
|
+
trigger: clean.trigger,
|
|
1469
|
+
widgetConfig: {
|
|
1470
|
+
values: {
|
|
1471
|
+
brandingConfig: response == null ? void 0 : response.brandingConfig
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1464
1474
|
}),
|
|
1465
1475
|
user: response.user
|
|
1466
1476
|
};
|
|
@@ -1887,7 +1897,6 @@ class DeclarativeWidget extends HTMLElement {
|
|
|
1887
1897
|
__publicField(this, "loaded");
|
|
1888
1898
|
__publicField(this, "_setWidget", (res, config) => {
|
|
1889
1899
|
var _a2;
|
|
1890
|
-
console.log({ res });
|
|
1891
1900
|
const params = {
|
|
1892
1901
|
api: this.widgetApi,
|
|
1893
1902
|
content: res.template,
|
|
@@ -1895,7 +1904,8 @@ class DeclarativeWidget extends HTMLElement {
|
|
|
1895
1904
|
type: config.type,
|
|
1896
1905
|
user: config.user,
|
|
1897
1906
|
container: this.container || void 0,
|
|
1898
|
-
engagementMedium: this.type
|
|
1907
|
+
engagementMedium: this.type,
|
|
1908
|
+
widgetConfig: res.widgetConfig
|
|
1899
1909
|
},
|
|
1900
1910
|
type: this.widgetType,
|
|
1901
1911
|
domain: ((_a2 = this.config) == null ? void 0 : _a2.domain) || DEFAULT_DOMAIN,
|