@absolutejs/absolute 0.19.0-beta.380 → 0.19.0-beta.381
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/build.js +13 -4
- package/dist/build.js.map +3 -3
- package/dist/index.js +13 -4
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -172066,9 +172066,18 @@ if (isHMR) {
|
|
|
172066
172066
|
if (typeof window !== "undefined") {
|
|
172067
172067
|
window.__SVELTE_COMPONENT__ = component;
|
|
172068
172068
|
window.__SVELTE_UNMOUNT__ = function() { unmount(component); };
|
|
172069
|
-
|
|
172070
|
-
|
|
172071
|
-
window.__ABS_SLOT_FLUSH__
|
|
172069
|
+
var releaseStreamingSlots = function() {
|
|
172070
|
+
window.__ABS_SLOT_HYDRATION_PENDING__ = false;
|
|
172071
|
+
if (typeof window.__ABS_SLOT_FLUSH__ === "function") {
|
|
172072
|
+
window.__ABS_SLOT_FLUSH__();
|
|
172073
|
+
}
|
|
172074
|
+
};
|
|
172075
|
+
if (typeof requestAnimationFrame === "function") {
|
|
172076
|
+
requestAnimationFrame(function() {
|
|
172077
|
+
requestAnimationFrame(releaseStreamingSlots);
|
|
172078
|
+
});
|
|
172079
|
+
} else {
|
|
172080
|
+
setTimeout(releaseStreamingSlots, 0);
|
|
172072
172081
|
}
|
|
172073
172082
|
}`;
|
|
172074
172083
|
await mkdir2(dirname6(indexPath), { recursive: true });
|
|
@@ -179178,5 +179187,5 @@ export {
|
|
|
179178
179187
|
build
|
|
179179
179188
|
};
|
|
179180
179189
|
|
|
179181
|
-
//# debugId=
|
|
179190
|
+
//# debugId=6CA1C603320407BC64756E2164756E21
|
|
179182
179191
|
//# sourceMappingURL=build.js.map
|