@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.
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/angular/index.js +25 -19
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +25 -19
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +45 -49
- package/dist/build.js.map +5 -5
- package/dist/index.js +45 -49
- package/dist/index.js.map +5 -5
- package/dist/src/build/compileAngular.d.ts +5 -2
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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