@absolutejs/absolute 0.19.0-beta.738 → 0.19.0-beta.739

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.
@@ -3966,7 +3966,8 @@ var propProviders = Object.entries(pageProps).map(function(entry) {
3966
3966
  // page module. Required so DI tokens that the component (or any service it
3967
3967
  // injects) needs are available client-side too \u2014 without these, services
3968
3968
  // that worked in SSR fail with NG0201 after hydration.
3969
- var pageProviders = Array.isArray(pageModule.providers) ? pageModule.providers : [];
3969
+ var maybePageProviders = Reflect.get(pageModule, 'providers');
3970
+ var pageProviders = Array.isArray(maybePageProviders) ? maybePageProviders : [];
3970
3971
 
3971
3972
  // Re-Bootstrap HMR with View Transitions API
3972
3973
  if (window.__ANGULAR_APP__) {
@@ -4037,7 +4038,8 @@ var propProviders = Object.entries(pageProps).map(function(entry) {
4037
4038
  // page module. Required so DI tokens that the component (or any service it
4038
4039
  // injects) needs are available client-side too \u2014 without these, services
4039
4040
  // that worked in SSR fail with NG0201 after hydration.
4040
- var pageProviders = Array.isArray(pageModule.providers) ? pageModule.providers : [];
4041
+ var maybePageProviders = Reflect.get(pageModule, 'providers');
4042
+ var pageProviders = Array.isArray(maybePageProviders) ? maybePageProviders : [];
4041
4043
 
4042
4044
  enableProdMode();
4043
4045
 
@@ -5077,5 +5079,5 @@ export {
5077
5079
  handleAngularPageRequest
5078
5080
  };
5079
5081
 
5080
- //# debugId=278DED88D3A6D98164756E2164756E21
5082
+ //# debugId=BE57FD8D6737129D64756E2164756E21
5081
5083
  //# sourceMappingURL=server.js.map