@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.
package/dist/build.js CHANGED
@@ -44245,7 +44245,8 @@ var propProviders = Object.entries(pageProps).map(function(entry) {
44245
44245
  // page module. Required so DI tokens that the component (or any service it
44246
44246
  // injects) needs are available client-side too \u2014 without these, services
44247
44247
  // that worked in SSR fail with NG0201 after hydration.
44248
- var pageProviders = Array.isArray(pageModule.providers) ? pageModule.providers : [];
44248
+ var maybePageProviders = Reflect.get(pageModule, 'providers');
44249
+ var pageProviders = Array.isArray(maybePageProviders) ? maybePageProviders : [];
44249
44250
 
44250
44251
  // Re-Bootstrap HMR with View Transitions API
44251
44252
  if (window.__ANGULAR_APP__) {
@@ -44316,7 +44317,8 @@ var propProviders = Object.entries(pageProps).map(function(entry) {
44316
44317
  // page module. Required so DI tokens that the component (or any service it
44317
44318
  // injects) needs are available client-side too \u2014 without these, services
44318
44319
  // that worked in SSR fail with NG0201 after hydration.
44319
- var pageProviders = Array.isArray(pageModule.providers) ? pageModule.providers : [];
44320
+ var maybePageProviders = Reflect.get(pageModule, 'providers');
44321
+ var pageProviders = Array.isArray(maybePageProviders) ? maybePageProviders : [];
44320
44322
 
44321
44323
  enableProdMode();
44322
44324
 
@@ -49922,5 +49924,5 @@ export {
49922
49924
  build
49923
49925
  };
49924
49926
 
49925
- //# debugId=8B5D6253F9DE513464756E2164756E21
49927
+ //# debugId=E2CF1DC5C8E6083D64756E2164756E21
49926
49928
  //# sourceMappingURL=build.js.map