@absolutejs/absolute 0.19.0-beta.974 → 0.19.0-beta.975

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.
@@ -8,5 +8,14 @@ export type AngularHandlerScanResult = {
8
8
  /** Set of manifest keys that have a generated providers file the
9
9
  * client bundle can import. */
10
10
  manifestKeysWithProviders: Set<string>;
11
+ /** Source path of the user's `angular.providers` binding (from
12
+ * `absolute.config.ts`), if any. The build orchestrator adds this
13
+ * to the angular compile entry list so `compileAngularFileJIT`
14
+ * walks the providers chain (including any transitively-imported
15
+ * components like a dynamically-mounted consent banner) and inlines
16
+ * every `templateUrl`/`styleUrl` it finds. Without this, the SSR
17
+ * loader's dynamic-import of `.providers.ts` would chase raw `.ts`
18
+ * sources whose component templates JIT-fetches via `fetch()`. */
19
+ angularEntryAddons: string[];
11
20
  };
12
21
  export declare const runAngularHandlerScan: (projectRoot: string, angularDirectory: string) => AngularHandlerScanResult;
package/package.json CHANGED
@@ -402,5 +402,5 @@
402
402
  ]
403
403
  }
404
404
  },
405
- "version": "0.19.0-beta.974"
405
+ "version": "0.19.0-beta.975"
406
406
  }