@saasquatch/squatch-js 2.8.2-5 → 2.8.2-6
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/squatch.cjs.js +6 -1
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +6 -1
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +6 -1
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +1 -1
- package/package.json +1 -1
package/dist/squatch.esm.js
CHANGED
|
@@ -2488,10 +2488,11 @@ class DeclarativeEmbedWidget extends DeclarativeWidget {
|
|
|
2488
2488
|
// }
|
|
2489
2489
|
// }
|
|
2490
2490
|
async connectedCallback() {
|
|
2491
|
+
var _a2;
|
|
2491
2492
|
this.loaded = true;
|
|
2492
2493
|
this.container = this.getAttribute("container");
|
|
2493
2494
|
const dynamicContent = `
|
|
2494
|
-
<div>
|
|
2495
|
+
<div id="dynamic-content">
|
|
2495
2496
|
<h1>Dynamic Content</h1>
|
|
2496
2497
|
<p>This content was dynamically added to the widget before it loaded.</p>
|
|
2497
2498
|
</div>
|
|
@@ -2503,6 +2504,10 @@ class DeclarativeEmbedWidget extends DeclarativeWidget {
|
|
|
2503
2504
|
this.shadowRoot.innerHTML = dynamicContent;
|
|
2504
2505
|
}
|
|
2505
2506
|
await this.renderWidget();
|
|
2507
|
+
const dynamicElement = (_a2 = this.shadowRoot) == null ? void 0 : _a2.getElementById("dynamic-content");
|
|
2508
|
+
if (dynamicElement) {
|
|
2509
|
+
dynamicElement.remove();
|
|
2510
|
+
}
|
|
2506
2511
|
if (this.getAttribute("open") !== null) this.open();
|
|
2507
2512
|
}
|
|
2508
2513
|
}
|