@absolutejs/absolute 0.19.0-beta.977 → 0.19.0-beta.979

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.
@@ -21,7 +21,7 @@ export type EmitAngularProvidersOptions = {
21
21
  * import. */
22
22
  providersImport?: AngularProvidersImport | null;
23
23
  };
24
- export declare const emitAngularProvidersFiles: (projectRoot: string, angularDir: string, calls: AngularHandlerCall[], pageRoutes: AngularPageRoutes[], options?: EmitAngularProvidersOptions) => EmittedProvidersFile[];
24
+ export declare const emitAngularProvidersFiles: (projectRoot: string, calls: AngularHandlerCall[], pageRoutes: AngularPageRoutes[], options?: EmitAngularProvidersOptions) => EmittedProvidersFile[];
25
25
  /** Absolute path of the directory the emitter writes to. Exposed so other
26
26
  * build steps (`compileAngular`'s client wrapper, the SSR `pageHandler`)
27
27
  * can compute relative paths to the generated files without hard-coding
@@ -8,14 +8,5 @@ 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[];
20
11
  };
21
12
  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.977"
405
+ "version": "0.19.0-beta.979"
406
406
  }
@@ -1,3 +0,0 @@
1
- import type { EnvironmentProviders, Provider } from '@angular/core';
2
- export declare const manifestKeyForPagePath: (pageSourcePath: string) => string;
3
- export declare const loadPageProviders: (pageSourcePath: string) => Promise<ReadonlyArray<Provider | EnvironmentProviders>>;