@absolutejs/absolute 0.19.0-beta.737 → 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
 
@@ -14321,5 +14323,5 @@ export {
14321
14323
  Island
14322
14324
  };
14323
14325
 
14324
- //# debugId=CF6C34DE29113CA964756E2164756E21
14326
+ //# debugId=26D6547654B56A0864756E2164756E21
14325
14327
  //# sourceMappingURL=index.js.map