@saasquatch/squatch-js 2.8.0-1 → 2.8.0-3
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/coverage/clover.xml +708 -0
- package/coverage/coverage-final.json +16 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +1276 -0
- package/dist/async.d.ts +1 -0
- package/dist/squatch.cjs.js +9 -9
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +9 -9
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +9 -9
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +1 -1
- package/dist/types.d.ts +0 -11
- package/package.json +1 -1
package/dist/squatch.esm.js
CHANGED
|
@@ -1106,7 +1106,7 @@ class EmbedWidget extends Widget {
|
|
|
1106
1106
|
if (container) this.container = container;
|
|
1107
1107
|
}
|
|
1108
1108
|
async load() {
|
|
1109
|
-
var _a2, _b, _c
|
|
1109
|
+
var _a2, _b, _c;
|
|
1110
1110
|
const frame = this._createFrame();
|
|
1111
1111
|
const element = this._findElement();
|
|
1112
1112
|
if ((_a2 = this.context) == null ? void 0 : _a2.container) {
|
|
@@ -1114,15 +1114,15 @@ class EmbedWidget extends Widget {
|
|
|
1114
1114
|
element.style.height = "0";
|
|
1115
1115
|
element.style["overflow-y"] = "hidden";
|
|
1116
1116
|
}
|
|
1117
|
-
const brandingConfig =
|
|
1118
|
-
const sizes = (
|
|
1117
|
+
const brandingConfig = window.SquatchBrandingConfig;
|
|
1118
|
+
const sizes = (_b = brandingConfig == null ? void 0 : brandingConfig.widgetSize) == null ? void 0 : _b.embeddedWidgets;
|
|
1119
1119
|
const maxWidth = (sizes == null ? void 0 : sizes.maxWidth) ? formatWidth(sizes.maxWidth) : "100%";
|
|
1120
1120
|
const minWidth = (sizes == null ? void 0 : sizes.minWidth) ? formatWidth(sizes.minWidth) : "100%";
|
|
1121
1121
|
element.style.maxWidth = maxWidth;
|
|
1122
1122
|
element.style.minWidth = minWidth;
|
|
1123
1123
|
if (this.container) {
|
|
1124
1124
|
if (element.shadowRoot) {
|
|
1125
|
-
if (((
|
|
1125
|
+
if (((_c = element.shadowRoot.lastChild) == null ? void 0 : _c.nodeName) === "IFRAME") {
|
|
1126
1126
|
element.shadowRoot.replaceChild(frame, element.shadowRoot.lastChild);
|
|
1127
1127
|
} else {
|
|
1128
1128
|
element.shadowRoot.appendChild(frame);
|
|
@@ -1245,10 +1245,10 @@ class PopupWidget extends Widget {
|
|
|
1245
1245
|
}
|
|
1246
1246
|
}
|
|
1247
1247
|
_createPopupDialog() {
|
|
1248
|
-
var _a2
|
|
1248
|
+
var _a2;
|
|
1249
1249
|
const dialog = document.createElement("dialog");
|
|
1250
|
-
const brandingConfig =
|
|
1251
|
-
const sizes = (
|
|
1250
|
+
const brandingConfig = window.SquatchBrandingConfig;
|
|
1251
|
+
const sizes = (_a2 = brandingConfig == null ? void 0 : brandingConfig.widgetSize) == null ? void 0 : _a2.popupWidgets;
|
|
1252
1252
|
const minWidth = (sizes == null ? void 0 : sizes.minWidth) ? formatWidth(sizes.minWidth) : "100%";
|
|
1253
1253
|
const maxWidth = (sizes == null ? void 0 : sizes.maxWidth) ? formatWidth(sizes.maxWidth) : "500px";
|
|
1254
1254
|
dialog.id = this.id;
|
|
@@ -1885,6 +1885,7 @@ class DeclarativeWidget extends HTMLElement {
|
|
|
1885
1885
|
__publicField(this, "loaded");
|
|
1886
1886
|
__publicField(this, "_setWidget", (res, config) => {
|
|
1887
1887
|
var _a2;
|
|
1888
|
+
console.log({ res });
|
|
1888
1889
|
const params = {
|
|
1889
1890
|
api: this.widgetApi,
|
|
1890
1891
|
content: res.template,
|
|
@@ -1892,8 +1893,7 @@ class DeclarativeWidget extends HTMLElement {
|
|
|
1892
1893
|
type: config.type,
|
|
1893
1894
|
user: config.user,
|
|
1894
1895
|
container: this.container || void 0,
|
|
1895
|
-
engagementMedium: this.type
|
|
1896
|
-
widgetConfig: res.widgetConfig
|
|
1896
|
+
engagementMedium: this.type
|
|
1897
1897
|
},
|
|
1898
1898
|
type: this.widgetType,
|
|
1899
1899
|
domain: ((_a2 = this.config) == null ? void 0 : _a2.domain) || DEFAULT_DOMAIN,
|