@absolutejs/absolute 0.19.0-beta.431 → 0.19.0-beta.433
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/angular/index.js +10 -1
- package/dist/angular/index.js.map +3 -3
- package/dist/client/index.js +10 -1
- package/dist/client/index.js.map +3 -3
- package/dist/index.js +10 -1
- package/dist/index.js.map +3 -3
- package/dist/react/index.js +10 -1
- package/dist/react/index.js.map +3 -3
- package/dist/svelte/index.js +10 -1
- package/dist/svelte/index.js.map +3 -3
- package/dist/vue/components/index.js +35 -4
- package/dist/vue/components/index.js.map +3 -3
- package/dist/vue/index.js +44 -4
- package/dist/vue/index.js.map +4 -4
- package/package.json +1 -1
package/dist/angular/index.js
CHANGED
|
@@ -180692,6 +180692,11 @@ var streamSwapRuntime = () => {
|
|
|
180692
180692
|
return false;
|
|
180693
180693
|
return payload.kind === "angular-defer";
|
|
180694
180694
|
};
|
|
180695
|
+
const isVueSuspensePayload = (payload) => {
|
|
180696
|
+
if (!payload || typeof payload !== "object")
|
|
180697
|
+
return false;
|
|
180698
|
+
return payload.kind === "vue-suspense";
|
|
180699
|
+
};
|
|
180695
180700
|
const resolveHtml = (payload) => {
|
|
180696
180701
|
if (!payload || typeof payload !== "object") {
|
|
180697
180702
|
return typeof payload === "string" ? payload : "";
|
|
@@ -180729,6 +180734,10 @@ var streamSwapRuntime = () => {
|
|
|
180729
180734
|
window.dispatchEvent(new CustomEvent(SLOT_PATCH_EVENT, {
|
|
180730
180735
|
detail: { html, id, payload }
|
|
180731
180736
|
}));
|
|
180737
|
+
if (isVueSuspensePayload(payload)) {
|
|
180738
|
+
pending[id] = payload;
|
|
180739
|
+
return;
|
|
180740
|
+
}
|
|
180732
180741
|
delete pending[id];
|
|
180733
180742
|
};
|
|
180734
180743
|
const flush = () => {
|
|
@@ -181931,5 +181940,5 @@ export {
|
|
|
181931
181940
|
DeferErrorTemplateDirective
|
|
181932
181941
|
};
|
|
181933
181942
|
|
|
181934
|
-
//# debugId=
|
|
181943
|
+
//# debugId=0C67DBD8EAFD44E764756E2164756E21
|
|
181935
181944
|
//# sourceMappingURL=index.js.map
|