@absolutejs/absolute 0.19.0-beta.741 → 0.19.0-beta.742

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.
@@ -14013,7 +14013,13 @@ var handleAngularPageRequest = async (input) => {
14013
14013
  if (ssrResult?.core)
14014
14014
  resetSsrSanitizer();
14015
14015
  const sanitizer = getSsrSanitizer(deps);
14016
- const providers = buildProviders(deps, sanitizer, maybeProps, tokenMap, userProviders);
14016
+ const pageProvidersExport = Reflect.get(pageModule, "providers");
14017
+ const pageProviders = Array.isArray(pageProvidersExport) ? pageProvidersExport : [];
14018
+ const combinedProviders = [
14019
+ ...userProviders ?? [],
14020
+ ...pageProviders
14021
+ ];
14022
+ const providers = buildProviders(deps, sanitizer, maybeProps, tokenMap, combinedProviders);
14017
14023
  const rawHtml = await renderAngularApp(deps, PageComponent, providers, htmlString, resolvedUrl);
14018
14024
  const shouldProcessIslands = hasIslands || rawHtml.includes("<absolute-island");
14019
14025
  const htmlWithLoweredIslands = shouldProcessIslands ? await lowerAngularServerIslands(rawHtml) : rawHtml;
@@ -14344,5 +14350,5 @@ export {
14344
14350
  Island
14345
14351
  };
14346
14352
 
14347
- //# debugId=278C518DD69255CE64756E2164756E21
14353
+ //# debugId=00D12D2EEE8CB33D64756E2164756E21
14348
14354
  //# sourceMappingURL=index.js.map