@absolutejs/absolute 0.19.0-beta.726 → 0.19.0-beta.728

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.
@@ -13890,7 +13890,6 @@ var resolvePageComponent = (pageModule) => {
13890
13890
  }
13891
13891
  return Object.values(pageModule).find((value) => isAngularComponent(value));
13892
13892
  };
13893
- var isAngularPageRequestInput = (value) => typeof value === "object" && value !== null && ("pagePath" in value) && ("indexPath" in value);
13894
13893
  var compilerImportPromise = null;
13895
13894
  var ensureAngularCompiler = () => {
13896
13895
  if (!compilerImportPromise) {
@@ -13934,13 +13933,10 @@ var resolveRuntimeAngularModulePath = async (pagePath) => {
13934
13933
  };
13935
13934
  var angularSsrContext = new AsyncLocalStorage3;
13936
13935
  setSsrContextGetter(() => angularSsrContext.getStore());
13937
- async function handleAngularPageRequest(input) {
13936
+ var handleAngularPageRequest = async (input) => {
13938
13937
  const requestId = `angular_${Date.now()}_${Math.random().toString(BASE_36_RADIX).substring(2, RANDOM_ID_END_INDEX)}`;
13939
13938
  return angularSsrContext.run(requestId, async () => {
13940
13939
  await ensureAngularCompiler();
13941
- if (!isAngularPageRequestInput(input)) {
13942
- throw new Error("Angular page handler requires an object input with pagePath and indexPath.");
13943
- }
13944
13940
  const resolvedHeadTag = input.headTag ?? "<head></head>";
13945
13941
  const resolvedIndexPath = input.indexPath;
13946
13942
  const options = input;
@@ -14005,7 +14001,7 @@ async function handleAngularPageRequest(input) {
14005
14001
  });
14006
14002
  }
14007
14003
  });
14008
- }
14004
+ };
14009
14005
  // src/angular/createIsland.ts
14010
14006
  init_renderIslandMarkup();
14011
14007
  var createTypedIsland = (registry) => (props) => renderIslandMarkup(registry, props);
@@ -14314,5 +14310,5 @@ export {
14314
14310
  Island
14315
14311
  };
14316
14312
 
14317
- //# debugId=3CB55B415035DFEF64756E2164756E21
14313
+ //# debugId=F8A760DCE8615D8764756E2164756E21
14318
14314
  //# sourceMappingURL=index.js.map