@absolutejs/absolute 0.19.0-beta.982 → 0.19.0-beta.983
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 +98 -149
- package/dist/angular/index.js.map +8 -9
- package/dist/angular/server.js +98 -149
- package/dist/angular/server.js.map +8 -9
- package/dist/build.js +494 -696
- package/dist/build.js.map +8 -10
- package/dist/client/index.js +1 -3
- package/dist/client/index.js.map +4 -4
- package/dist/index.js +521 -723
- package/dist/index.js.map +8 -10
- package/dist/islands/index.js +1 -3
- package/dist/islands/index.js.map +4 -4
- package/dist/react/index.js +1 -3
- package/dist/react/index.js.map +4 -4
- package/dist/src/build/runAngularHandlerScan.d.ts +0 -5
- package/dist/svelte/index.js +1 -3
- package/dist/svelte/index.js.map +4 -4
- package/dist/types/angular.d.ts +0 -1
- package/dist/vue/index.js +1 -3
- package/dist/vue/index.js.map +4 -4
- package/package.json +1 -1
- package/dist/src/angular/loadRouteMounts.d.ts +0 -3
- package/dist/src/build/emitAngularProvidersFiles.d.ts +0 -29
- package/dist/src/build/emitAngularRouteMounts.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { AngularProvidersImport } from './parseAngularConfigImports';
|
|
2
|
-
import type { AngularHandlerCall } from './scanAngularHandlerCalls';
|
|
3
|
-
import type { AngularPageRoutes } from './scanAngularPageRoutes';
|
|
4
|
-
export type EmittedProvidersFile = {
|
|
5
|
-
manifestKey: string;
|
|
6
|
-
/** Absolute path to the emitted file. */
|
|
7
|
-
outputPath: string;
|
|
8
|
-
/** The mount path (e.g. `/portal/`) the generated file derived
|
|
9
|
-
* APP_BASE_HREF from, or null when the call wasn't inside a
|
|
10
|
-
* sub-router route. */
|
|
11
|
-
basePath: string | null;
|
|
12
|
-
/** `true` when the call carried a `providers:` argument. */
|
|
13
|
-
hasProviders: boolean;
|
|
14
|
-
};
|
|
15
|
-
export type EmitAngularProvidersOptions = {
|
|
16
|
-
/** AST-extracted import info for the user's `angular.providers`
|
|
17
|
-
* binding (from absolute.config.ts). Each emitted file re-imports
|
|
18
|
-
* the same binding by its source path so pages and per-handler
|
|
19
|
-
* calls never write providers themselves. Null when the config
|
|
20
|
-
* doesn't set `angular.providers` — the emitter skips the global
|
|
21
|
-
* import. */
|
|
22
|
-
providersImport?: AngularProvidersImport | null;
|
|
23
|
-
};
|
|
24
|
-
export declare const emitAngularProvidersFiles: (projectRoot: string, calls: AngularHandlerCall[], pageRoutes: AngularPageRoutes[], options?: EmitAngularProvidersOptions) => EmittedProvidersFile[];
|
|
25
|
-
/** Absolute path of the directory the emitter writes to. Exposed so other
|
|
26
|
-
* build steps (`compileAngular`'s client wrapper, the SSR `pageHandler`)
|
|
27
|
-
* can compute relative paths to the generated files without hard-coding
|
|
28
|
-
* the convention. */
|
|
29
|
-
export declare const getProvidersOutputDir: (projectRoot: string) => string;
|