@saasquatch/squatch-js 2.8.2-4 → 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.
@@ -2462,25 +2462,52 @@ class DeclarativeEmbedWidget extends DeclarativeWidget {
2462
2462
  break;
2463
2463
  }
2464
2464
  }
2465
+ // async connectedCallback() {
2466
+ // this.loaded = true;
2467
+ // this.container = this.getAttribute("container");
2468
+ // // Dynamically assign arbitrary HTML content before rendering the widget
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
+ // }
2481
+ // // Render the widget after setting the dynamic content
2482
+ // await this.renderWidget();
2483
+ // const slot = (
2484
+ // this.shadowRoot && Array.from(this.shadowRoot.children)
2485
+ // )?.find((c) => c.tagName === "SLOT") as Node;
2486
+ // if (slot) this.shadowRoot?.removeChild(slot);
2487
+ // if (this.getAttribute("open") !== null) this.open();
2488
+ // }
2489
+ // }
2465
2490
  async connectedCallback() {
2466
- var _a2, _b;
2491
+ var _a2;
2467
2492
  this.loaded = true;
2468
2493
  this.container = this.getAttribute("container");
2469
2494
  const dynamicContent = `
2470
- <div>
2495
+ <div id="dynamic-content">
2471
2496
  <h1>Dynamic Content</h1>
2472
2497
  <p>This content was dynamically added to the widget before it loaded.</p>
2473
2498
  </div>
2474
2499
  `;
2475
- if (this.container) {
2476
- const containerElement = document.querySelector(this.container);
2477
- if (containerElement) {
2478
- containerElement.innerHTML = dynamicContent;
2479
- }
2500
+ if (!this.shadowRoot) {
2501
+ this.attachShadow({ mode: "open" });
2502
+ }
2503
+ if (this.shadowRoot) {
2504
+ this.shadowRoot.innerHTML = dynamicContent;
2480
2505
  }
2481
2506
  await this.renderWidget();
2482
- const slot = (_a2 = this.shadowRoot && Array.from(this.shadowRoot.children)) == null ? void 0 : _a2.find((c) => c.tagName === "SLOT");
2483
- if (slot) (_b = this.shadowRoot) == null ? void 0 : _b.removeChild(slot);
2507
+ const dynamicElement = (_a2 = this.shadowRoot) == null ? void 0 : _a2.getElementById("dynamic-content");
2508
+ if (dynamicElement) {
2509
+ dynamicElement.remove();
2510
+ }
2484
2511
  if (this.getAttribute("open") !== null) this.open();
2485
2512
  }
2486
2513
  }