@absolutejs/absolute 0.19.0-beta.867 → 0.19.0-beta.868
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/build.js +76 -7
- package/dist/build.js.map +5 -5
- package/dist/dev/client/handlers/angularHmrShim.ts +9 -1
- package/dist/dev/client/handlers/angularRemount.ts +267 -0
- package/dist/dev/client/handlers/angularRemountWiring.ts +55 -0
- package/dist/dev/client/hmrClient.ts +29 -1
- package/dist/index.js +76 -7
- package/dist/index.js.map +5 -5
- package/dist/src/dev/angular/fastHmrCompiler.d.ts +1 -0
- package/dist/src/dev/angular/vendor/lview/lViewOps.d.ts +17 -0
- package/dist/src/dev/angular/vendor/lview/slotConstants.d.ts +24 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export type LView = unknown[];
|
|
2
|
+
export type LContainer = unknown[];
|
|
3
|
+
export type TView = {
|
|
4
|
+
bindingStartIndex: number;
|
|
5
|
+
cleanup: unknown[] | null;
|
|
6
|
+
destroyHooks: unknown[] | null;
|
|
7
|
+
};
|
|
8
|
+
export type TNode = {
|
|
9
|
+
index: number;
|
|
10
|
+
};
|
|
11
|
+
export declare const isLView: (v: unknown) => v is LView;
|
|
12
|
+
export declare const isLContainer: (v: unknown) => v is LContainer;
|
|
13
|
+
export declare const isDestroyed: (lView: LView) => boolean;
|
|
14
|
+
export declare const replaceLViewInTree: (parentLView: LView, oldLView: LView, newLView: LView, index: number) => void;
|
|
15
|
+
export declare const executeOnDestroys: (tView: TView, lView: LView) => void;
|
|
16
|
+
export declare const processCleanups: (tView: TView, lView: LView) => void;
|
|
17
|
+
export declare const markLViewDestroyed: (lView: LView) => void;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const HOST = 0;
|
|
2
|
+
export declare const TVIEW = 1;
|
|
3
|
+
export declare const FLAGS = 2;
|
|
4
|
+
export declare const PARENT = 3;
|
|
5
|
+
export declare const NEXT = 4;
|
|
6
|
+
export declare const T_HOST = 5;
|
|
7
|
+
export declare const HYDRATION = 6;
|
|
8
|
+
export declare const CLEANUP = 7;
|
|
9
|
+
export declare const CONTEXT = 8;
|
|
10
|
+
export declare const INJECTOR = 9;
|
|
11
|
+
export declare const ENVIRONMENT = 10;
|
|
12
|
+
export declare const RENDERER = 11;
|
|
13
|
+
export declare const CHILD_HEAD = 12;
|
|
14
|
+
export declare const CHILD_TAIL = 13;
|
|
15
|
+
export declare const DECLARATION_VIEW = 14;
|
|
16
|
+
export declare const DECLARATION_COMPONENT_VIEW = 15;
|
|
17
|
+
export declare const DECLARATION_LCONTAINER = 16;
|
|
18
|
+
export declare const PREORDER_HOOK_FLAGS = 17;
|
|
19
|
+
export declare const QUERIES = 18;
|
|
20
|
+
export declare const ID = 19;
|
|
21
|
+
export declare const EMBEDDED_VIEW_INJECTOR = 20;
|
|
22
|
+
export declare const ON_DESTROY_HOOKS = 21;
|
|
23
|
+
export declare const HEADER_OFFSET = 27;
|
|
24
|
+
export declare const LFLAG_DESTROYED = 256;
|
package/package.json
CHANGED