@absolutejs/absolute 0.19.0-beta.853 → 0.19.0-beta.854
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 +50 -76
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +51 -77
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +416 -652
- package/dist/build.js.map +6 -7
- package/dist/dev/client/hmrClient.ts +35 -6
- package/dist/index.js +437 -673
- package/dist/index.js.map +6 -7
- package/dist/src/dev/angular/fastHmrCompiler.d.ts +14 -1
- package/dist/src/dev/rebuildTrigger.d.ts +1 -0
- package/package.json +1 -1
- package/dist/dev/client/handlers/angular.ts +0 -684
- package/dist/dev/client/handlers/angularRuntime.ts +0 -415
- package/dist/src/dev/angular/editTypeDetection.d.ts +0 -8
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import ts from 'typescript';
|
|
2
|
-
export type FastHmrFallbackReason = 'file-not-found' | 'class-not-found' | 'no-component-decorator' | 'unsupported-decorator-args' | 'not-standalone' | 'inherits-decorated-class' | 'multiple-decorators-on-class' | 'template-parse-error' | 'template-resource-not-found' | 'style-resource-not-found' | 'unexpected-error';
|
|
2
|
+
export type FastHmrFallbackReason = 'file-not-found' | 'class-not-found' | 'no-component-decorator' | 'unsupported-decorator-args' | 'not-standalone' | 'inherits-decorated-class' | 'multiple-decorators-on-class' | 'template-parse-error' | 'template-resource-not-found' | 'style-resource-not-found' | 'structural-change' | 'unexpected-error';
|
|
3
|
+
export type ComponentFingerprint = {
|
|
4
|
+
className: string;
|
|
5
|
+
selector: string | null;
|
|
6
|
+
standalone: boolean;
|
|
7
|
+
ctorParamTypes: string[];
|
|
8
|
+
importsArity: number;
|
|
9
|
+
hasProviders: boolean;
|
|
10
|
+
hasViewProviders: boolean;
|
|
11
|
+
inputs: string[];
|
|
12
|
+
outputs: string[];
|
|
13
|
+
};
|
|
3
14
|
export type FastHmrSuccess = {
|
|
4
15
|
ok: true;
|
|
5
16
|
moduleText: string;
|
|
@@ -11,6 +22,8 @@ export type FastHmrFailure = {
|
|
|
11
22
|
detail?: string;
|
|
12
23
|
};
|
|
13
24
|
export type FastHmrResult = FastHmrSuccess | FastHmrFailure;
|
|
25
|
+
export declare const recordFingerprint: (id: string, fp: ComponentFingerprint) => void;
|
|
26
|
+
export declare const invalidateFingerprintCache: () => void;
|
|
14
27
|
export type TryFastHmrParams = {
|
|
15
28
|
componentFilePath: string;
|
|
16
29
|
className: string;
|
|
@@ -4,6 +4,7 @@ export declare const queueFileChange: (state: HMRState, filePath: string, config
|
|
|
4
4
|
manifest: Record<string, string>;
|
|
5
5
|
hmrState: HMRState;
|
|
6
6
|
}) => void) => Promise<void>;
|
|
7
|
+
export type AngularHmrTier = 0 | 1 | 2;
|
|
7
8
|
export declare const triggerRebuild: (state: HMRState, config: BuildConfig, onRebuildComplete: (result: {
|
|
8
9
|
manifest: Record<string, string>;
|
|
9
10
|
hmrState: HMRState;
|
package/package.json
CHANGED