@saasquatch/squatch-js 2.8.2-3 → 2.8.2-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.
@@ -2466,6 +2466,18 @@ class DeclarativeEmbedWidget extends DeclarativeWidget {
2466
2466
  var _a2, _b;
2467
2467
  this.loaded = true;
2468
2468
  this.container = this.getAttribute("container");
2469
+ const dynamicContent = `
2470
+ <div>
2471
+ <h1>Dynamic Content</h1>
2472
+ <p>This content was dynamically added to the widget before it loaded.</p>
2473
+ </div>
2474
+ `;
2475
+ if (this.container) {
2476
+ const containerElement = document.querySelector(this.container);
2477
+ if (containerElement) {
2478
+ containerElement.innerHTML = dynamicContent;
2479
+ }
2480
+ }
2469
2481
  await this.renderWidget();
2470
2482
  const slot = (_a2 = this.shadowRoot && Array.from(this.shadowRoot.children)) == null ? void 0 : _a2.find((c) => c.tagName === "SLOT");
2471
2483
  if (slot) (_b = this.shadowRoot) == null ? void 0 : _b.removeChild(slot);