@saasquatch/squatch-js 2.8.2-4 → 2.8.2-5

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.js CHANGED
@@ -2466,8 +2466,32 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
2466
2466
  break;
2467
2467
  }
2468
2468
  }
2469
+ // async connectedCallback() {
2470
+ // this.loaded = true;
2471
+ // this.container = this.getAttribute("container");
2472
+ // // Dynamically assign arbitrary HTML content before rendering the widget
2473
+ // const dynamicContent = `
2474
+ // <div>
2475
+ // <h1>Dynamic Content</h1>
2476
+ // <p>This content was dynamically added to the widget before it loaded.</p>
2477
+ // </div>
2478
+ // `;
2479
+ // if (this.container) {
2480
+ // const containerElement = document.querySelector(this.container);
2481
+ // if (containerElement) {
2482
+ // containerElement.innerHTML = dynamicContent;
2483
+ // }
2484
+ // }
2485
+ // // Render the widget after setting the dynamic content
2486
+ // await this.renderWidget();
2487
+ // const slot = (
2488
+ // this.shadowRoot && Array.from(this.shadowRoot.children)
2489
+ // )?.find((c) => c.tagName === "SLOT") as Node;
2490
+ // if (slot) this.shadowRoot?.removeChild(slot);
2491
+ // if (this.getAttribute("open") !== null) this.open();
2492
+ // }
2493
+ // }
2469
2494
  async connectedCallback() {
2470
- var _a2, _b;
2471
2495
  this.loaded = true;
2472
2496
  this.container = this.getAttribute("container");
2473
2497
  const dynamicContent = `
@@ -2476,15 +2500,13 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
2476
2500
  <p>This content was dynamically added to the widget before it loaded.</p>
2477
2501
  </div>
2478
2502
  `;
2479
- if (this.container) {
2480
- const containerElement = document.querySelector(this.container);
2481
- if (containerElement) {
2482
- containerElement.innerHTML = dynamicContent;
2483
- }
2503
+ if (!this.shadowRoot) {
2504
+ this.attachShadow({ mode: "open" });
2505
+ }
2506
+ if (this.shadowRoot) {
2507
+ this.shadowRoot.innerHTML = dynamicContent;
2484
2508
  }
2485
2509
  await this.renderWidget();
2486
- const slot = (_a2 = this.shadowRoot && Array.from(this.shadowRoot.children)) == null ? void 0 : _a2.find((c) => c.tagName === "SLOT");
2487
- if (slot) (_b = this.shadowRoot) == null ? void 0 : _b.removeChild(slot);
2488
2510
  if (this.getAttribute("open") !== null) this.open();
2489
2511
  }
2490
2512
  }