@absolutejs/absolute 0.19.0-beta.977 → 0.19.0-beta.978
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 +88 -117
- package/dist/angular/index.js.map +5 -6
- package/dist/angular/server.js +86 -115
- package/dist/angular/server.js.map +5 -6
- package/dist/build.js +265 -274
- package/dist/build.js.map +6 -6
- package/dist/index.js +273 -282
- package/dist/index.js.map +6 -6
- package/dist/src/build/emitAngularProvidersFiles.d.ts +1 -1
- package/dist/src/build/runAngularHandlerScan.d.ts +0 -9
- package/package.json +1 -1
- package/dist/src/angular/loadGlobalProviders.d.ts +0 -3
|
@@ -21,7 +21,7 @@ export type EmitAngularProvidersOptions = {
|
|
|
21
21
|
* import. */
|
|
22
22
|
providersImport?: AngularProvidersImport | null;
|
|
23
23
|
};
|
|
24
|
-
export declare const emitAngularProvidersFiles: (projectRoot: string,
|
|
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
|
@@ -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>>;
|