@absolutejs/absolute 0.19.0-beta.430 → 0.19.0-beta.432

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.
@@ -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 : "";
@@ -180715,7 +180720,7 @@ var streamSwapRuntime = () => {
180715
180720
  return;
180716
180721
  }
180717
180722
  }
180718
- if (isAngularDeferPayload(payload)) {
180723
+ if (isAngularDeferPayload(payload) || isVueSuspensePayload(payload)) {
180719
180724
  pending[id] = payload;
180720
180725
  return;
180721
180726
  }
@@ -181931,5 +181936,5 @@ export {
181931
181936
  DeferErrorTemplateDirective
181932
181937
  };
181933
181938
 
181934
- //# debugId=502D97E89465ABBE64756E2164756E21
181939
+ //# debugId=78C6DABA956B3DDD64756E2164756E21
181935
181940
  //# sourceMappingURL=index.js.map