@absolutejs/absolute 0.19.0-beta.1019 → 0.19.0-beta.1020

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.
@@ -18,8 +18,11 @@ export declare const compileAngularFileJIT: (inputPath: string, outDir: string,
18
18
  * `.providers.ts` — circular; `provideRouter(undefined, ...)` then
19
19
  * throws NG04014 at SSR bootstrap). */
20
20
  export type AngularProvidersInjection = {
21
- /** Source `.ts` path of the user's `angular.providers` binding. */
22
- appProvidersSource: string;
21
+ /** Source `.ts` path of the user's `angular.providers` binding, or null
22
+ * when no global binding is configured. Router pages still get
23
+ * `provideRouter(routes)` + `APP_BASE_HREF` injected without it — the
24
+ * global `appProviders` spread is simply omitted. */
25
+ appProvidersSource: string | null;
23
26
  /** Source `.ts` path → page metadata for every page the scanner saw. */
24
27
  pagesByFile: Map<string, {
25
28
  hasRoutes: boolean;
package/package.json CHANGED
@@ -401,5 +401,5 @@
401
401
  ]
402
402
  }
403
403
  },
404
- "version": "0.19.0-beta.1019"
404
+ "version": "0.19.0-beta.1020"
405
405
  }