@saasquatch/squatch-js 2.8.2-7 → 2.8.2-8
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 +20 -25
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +20 -25
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +20 -25
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +1 -1
- package/package.json +1 -1
package/dist/squatch.js
CHANGED
|
@@ -2466,31 +2466,6 @@ 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
|
-
// }
|
|
2494
2469
|
async connectedCallback() {
|
|
2495
2470
|
var _a2;
|
|
2496
2471
|
this.loaded = true;
|
|
@@ -2541,9 +2516,29 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2541
2516
|
}
|
|
2542
2517
|
}
|
|
2543
2518
|
async connectedCallback() {
|
|
2519
|
+
var _a2;
|
|
2544
2520
|
this.loaded = true;
|
|
2545
2521
|
this.container = this.getAttribute("container");
|
|
2522
|
+
const skeletonHTML = `
|
|
2523
|
+
<div>
|
|
2524
|
+
<h1>Dynamic Content</h1>
|
|
2525
|
+
<p>This content was dynamically added to the widget before it loaded.</p>
|
|
2526
|
+
</div>
|
|
2527
|
+
`;
|
|
2528
|
+
const skeletonContainer = document.createElement("div");
|
|
2529
|
+
skeletonContainer.id = "loading-skeleton";
|
|
2530
|
+
skeletonContainer.innerHTML = skeletonHTML;
|
|
2531
|
+
if (!this.shadowRoot) {
|
|
2532
|
+
this.attachShadow({ mode: "open" });
|
|
2533
|
+
}
|
|
2534
|
+
if (this.shadowRoot) {
|
|
2535
|
+
this.shadowRoot.innerHTML = skeletonHTML;
|
|
2536
|
+
}
|
|
2546
2537
|
await this.renderWidget();
|
|
2538
|
+
const loadingElement = (_a2 = this.shadowRoot) == null ? void 0 : _a2.getElementById("loading-skeleton");
|
|
2539
|
+
if (loadingElement) {
|
|
2540
|
+
loadingElement.remove();
|
|
2541
|
+
}
|
|
2547
2542
|
if (this.getAttribute("open") !== null) this.open();
|
|
2548
2543
|
}
|
|
2549
2544
|
}
|