@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/index.js CHANGED
@@ -44437,7 +44437,8 @@ var propProviders = Object.entries(pageProps).map(function(entry) {
44437
44437
  // page module. Required so DI tokens that the component (or any service it
44438
44438
  // injects) needs are available client-side too \u2014 without these, services
44439
44439
  // that worked in SSR fail with NG0201 after hydration.
44440
- var pageProviders = Array.isArray(pageModule.providers) ? pageModule.providers : [];
44440
+ var maybePageProviders = Reflect.get(pageModule, 'providers');
44441
+ var pageProviders = Array.isArray(maybePageProviders) ? maybePageProviders : [];
44441
44442
 
44442
44443
  // Re-Bootstrap HMR with View Transitions API
44443
44444
  if (window.__ANGULAR_APP__) {
@@ -44508,7 +44509,8 @@ var propProviders = Object.entries(pageProps).map(function(entry) {
44508
44509
  // page module. Required so DI tokens that the component (or any service it
44509
44510
  // injects) needs are available client-side too \u2014 without these, services
44510
44511
  // that worked in SSR fail with NG0201 after hydration.
44511
- var pageProviders = Array.isArray(pageModule.providers) ? pageModule.providers : [];
44512
+ var maybePageProviders = Reflect.get(pageModule, 'providers');
44513
+ var pageProviders = Array.isArray(maybePageProviders) ? maybePageProviders : [];
44512
44514
 
44513
44515
  enableProdMode();
44514
44516
 
@@ -58382,5 +58384,5 @@ export {
58382
58384
  ANGULAR_INIT_TIMEOUT_MS
58383
58385
  };
58384
58386
 
58385
- //# debugId=69FC64DF6241AA5664756E2164756E21
58387
+ //# debugId=A657374A198E35BF64756E2164756E21
58386
58388
  //# sourceMappingURL=index.js.map