@angular/core 21.0.0-next.0 → 21.0.0-next.1
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/api.d.d.ts +1 -1
- package/chrome_dev_tools_performance.d.d.ts +2 -17
- package/discovery.d.d.ts +8 -26
- package/{signal.d.d.ts → effect.d.d.ts} +13 -3
- package/event_dispatcher.d.d.ts +1 -1
- package/fesm2022/attribute.mjs +1 -1
- package/fesm2022/core.mjs +5 -5
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/debug_node.mjs +49 -53
- package/fesm2022/debug_node.mjs.map +1 -1
- package/fesm2022/{untracked.mjs → effect.mjs} +29 -4
- package/fesm2022/effect.mjs.map +1 -0
- package/fesm2022/not_found.mjs +1 -1
- package/fesm2022/primitives/di.mjs +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +2 -2
- package/fesm2022/resource.mjs +18 -27
- package/fesm2022/resource.mjs.map +1 -1
- package/fesm2022/root_effect_scheduler.mjs +2 -8
- package/fesm2022/root_effect_scheduler.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +2 -2
- package/fesm2022/signal.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/fesm2022/weak_ref.mjs +1 -1
- package/graph.d.d.ts +1 -1
- package/index.d.ts +5 -12
- package/package.json +2 -2
- package/primitives/di/index.d.ts +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +3 -3
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{apply_import_manager-DR9xXCle.cjs → apply_import_manager-yycO3l8f.cjs} +3 -3
- package/schematics/bundles/cleanup-unused-imports.cjs +5 -5
- package/schematics/bundles/{compiler_host-BXBP7CE2.cjs → compiler_host-DrXTGf_7.cjs} +2 -2
- package/schematics/bundles/control-flow-migration.cjs +13 -41
- package/schematics/bundles/{imports-CIX-JgAN.cjs → imports-26VeX8i-.cjs} +2 -1
- package/schematics/bundles/{index-CfTQUOiz.cjs → index-BdH2rlWJ.cjs} +4 -4
- package/schematics/bundles/{index-esqfDjNB.cjs → index-jjHOgYYs.cjs} +12 -12
- package/schematics/bundles/inject-migration.cjs +5 -5
- package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
- package/schematics/bundles/{migrate_ts_type_references-6NtAj-Wk.cjs → migrate_ts_type_references-BVSg43hf.cjs} +5 -5
- package/schematics/bundles/ng_component_template-DjLc4mdL.cjs +186 -0
- package/schematics/bundles/{ng_decorators-B5HCqr20.cjs → ng_decorators-CtYwz9Lw.cjs} +2 -2
- package/schematics/bundles/ngclass-to-class-migration.cjs +533 -0
- package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
- package/schematics/bundles/output-migration.cjs +6 -6
- package/schematics/bundles/parse_html-CXR8hziE.cjs +41 -0
- package/schematics/bundles/{project_paths-DcaODbky.cjs → project_paths-T_M15e2g.cjs} +3 -3
- package/schematics/bundles/{project_tsconfig_paths-CS-eSeHC.cjs → project_tsconfig_paths-D7xzGqRi.cjs} +28 -5
- package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
- package/schematics/bundles/route-lazy-loading.cjs +3 -3
- package/schematics/bundles/router-current-navigation.cjs +5 -5
- package/schematics/bundles/router-last-successful-navigation.cjs +5 -5
- package/schematics/bundles/self-closing-tags-migration.cjs +11 -207
- package/schematics/bundles/signal-input-migration.cjs +7 -7
- package/schematics/bundles/signal-queries-migration.cjs +7 -7
- package/schematics/bundles/signals.cjs +7 -7
- package/schematics/bundles/standalone-migration.cjs +6 -6
- package/schematics/bundles/symbol-VPWguRxr.cjs +1 -1
- package/schematics/collection.json +6 -0
- package/schematics/migrations/ngclass-to-class-migration/schema.json +20 -0
- package/testing/index.d.ts +2 -2
- package/weak_ref.d.d.ts +1 -1
- package/fesm2022/untracked.mjs.map +0 -1
package/fesm2022/debug_node.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v21.0.0-next.
|
|
2
|
+
* @license Angular v21.0.0-next.1
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3593,13 +3593,6 @@ const PLATFORM_ID = new InjectionToken(ngDevMode ? 'Platform ID' : '', {
|
|
|
3593
3593
|
providedIn: 'platform',
|
|
3594
3594
|
factory: () => 'unknown', // set a default platform name, when none set explicitly
|
|
3595
3595
|
});
|
|
3596
|
-
/**
|
|
3597
|
-
* A DI token that indicates the root directory of
|
|
3598
|
-
* the application
|
|
3599
|
-
* @publicApi
|
|
3600
|
-
* @deprecated
|
|
3601
|
-
*/
|
|
3602
|
-
const PACKAGE_ROOT_URL = new InjectionToken(ngDevMode ? 'Application Packages Root URL' : '');
|
|
3603
3596
|
// We keep this token here, rather than the animations package, so that modules that only care
|
|
3604
3597
|
// about which animations module is loaded (e.g. the CDK) can retrieve it without having to
|
|
3605
3598
|
// include extra dependencies. See #44970 for more context.
|
|
@@ -13523,7 +13516,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
13523
13516
|
}
|
|
13524
13517
|
function createRootTView(rootSelectorOrNode, componentDef, componentBindings, directives) {
|
|
13525
13518
|
const tAttributes = rootSelectorOrNode
|
|
13526
|
-
? ['ng-version', '21.0.0-next.
|
|
13519
|
+
? ['ng-version', '21.0.0-next.1']
|
|
13527
13520
|
: // Extract attributes and classes from the first selector only to match VE behavior.
|
|
13528
13521
|
extractAttrsAndClassesFromSelector(componentDef.selectors[0]);
|
|
13529
13522
|
let creationBindings = null;
|
|
@@ -19960,20 +19953,6 @@ function publishSignalConfiguration() {
|
|
|
19960
19953
|
function isBoundToModule(cf) {
|
|
19961
19954
|
return cf.isBoundToModule;
|
|
19962
19955
|
}
|
|
19963
|
-
/**
|
|
19964
|
-
* A token for third-party components that can register themselves with NgProbe.
|
|
19965
|
-
*
|
|
19966
|
-
* @deprecated
|
|
19967
|
-
* @publicApi
|
|
19968
|
-
*/
|
|
19969
|
-
class NgProbeToken {
|
|
19970
|
-
name;
|
|
19971
|
-
token;
|
|
19972
|
-
constructor(name, token) {
|
|
19973
|
-
this.name = name;
|
|
19974
|
-
this.token = token;
|
|
19975
|
-
}
|
|
19976
|
-
}
|
|
19977
19956
|
/** Maximum number of times ApplicationRef will refresh all attached views in a single tick. */
|
|
19978
19957
|
const MAXIMUM_REFRESH_RERUNS = 10;
|
|
19979
19958
|
function optionsReducer(dst, objs) {
|
|
@@ -22005,11 +21984,39 @@ const longestAnimations = new WeakMap();
|
|
|
22005
21984
|
// used to prevent duplicate nodes from showing up when nodes have been toggled quickly
|
|
22006
21985
|
// from an `@if` or `@for`.
|
|
22007
21986
|
const leavingNodes = new WeakMap();
|
|
22008
|
-
function clearLeavingNodes(tNode) {
|
|
22009
|
-
|
|
21987
|
+
function clearLeavingNodes(tNode, el) {
|
|
21988
|
+
const nodes = leavingNodes.get(tNode);
|
|
21989
|
+
if (nodes && nodes.length > 0) {
|
|
21990
|
+
const ix = nodes.findIndex((node) => node === el);
|
|
21991
|
+
if (ix > -1)
|
|
21992
|
+
nodes.splice(ix, 1);
|
|
21993
|
+
}
|
|
21994
|
+
if (nodes?.length === 0) {
|
|
22010
21995
|
leavingNodes.delete(tNode);
|
|
22011
21996
|
}
|
|
22012
21997
|
}
|
|
21998
|
+
/**
|
|
21999
|
+
* In the case that we have an existing node that's animating away, like when
|
|
22000
|
+
* an `@if` toggles quickly, we need to end the animation for the former node
|
|
22001
|
+
* and remove it right away to prevent duplicate nodes showing up.
|
|
22002
|
+
*/
|
|
22003
|
+
function cancelLeavingNodes(tNode, lView) {
|
|
22004
|
+
const leavingEl = leavingNodes.get(tNode)?.shift();
|
|
22005
|
+
const lContainer = lView[DECLARATION_LCONTAINER];
|
|
22006
|
+
if (lContainer) {
|
|
22007
|
+
// this is the insertion point for the new TNode element.
|
|
22008
|
+
// it will be inserted before the declaring containers anchor.
|
|
22009
|
+
const beforeNode = getBeforeNodeForView(tNode.index, lContainer);
|
|
22010
|
+
// here we need to check the previous sibling of that anchor
|
|
22011
|
+
const previousNode = beforeNode?.previousSibling;
|
|
22012
|
+
// We really only want to cancel animations if the leaving node is the
|
|
22013
|
+
// same as the node before where the new node will be inserted. This is
|
|
22014
|
+
// the control flow scenario where an if was toggled.
|
|
22015
|
+
if (leavingEl && previousNode && leavingEl === previousNode) {
|
|
22016
|
+
leavingEl.dispatchEvent(new CustomEvent('animationend', { detail: { cancel: true } }));
|
|
22017
|
+
}
|
|
22018
|
+
}
|
|
22019
|
+
}
|
|
22013
22020
|
function trackLeavingNodes(tNode, el) {
|
|
22014
22021
|
// We need to track this tNode's element just to be sure we don't add
|
|
22015
22022
|
// a new RNode for this TNode while this one is still animating away.
|
|
@@ -22041,6 +22048,7 @@ function ɵɵanimateEnter(value) {
|
|
|
22041
22048
|
}
|
|
22042
22049
|
const tNode = getCurrentTNode();
|
|
22043
22050
|
const nativeElement = getNativeByTNode(tNode, lView);
|
|
22051
|
+
ngDevMode && assertElementNodes(nativeElement, 'animate.enter');
|
|
22044
22052
|
const renderer = lView[RENDERER];
|
|
22045
22053
|
const ngZone = lView[INJECTOR].get(NgZone);
|
|
22046
22054
|
// Retrieve the actual class list from the value. This will resolve any resolver functions from
|
|
@@ -22068,14 +22076,7 @@ function ɵɵanimateEnter(value) {
|
|
|
22068
22076
|
cleanupFns.push(renderer.listen(nativeElement, 'animationstart', handleAnimationStart));
|
|
22069
22077
|
cleanupFns.push(renderer.listen(nativeElement, 'transitionstart', handleAnimationStart));
|
|
22070
22078
|
});
|
|
22071
|
-
|
|
22072
|
-
// an `@if` toggles quickly or `@for` adds and removes elements quickly, we
|
|
22073
|
-
// need to end the animation for the former node and remove it right away to
|
|
22074
|
-
// prevent duplicate nodes showing up.
|
|
22075
|
-
leavingNodes
|
|
22076
|
-
.get(tNode)
|
|
22077
|
-
?.pop()
|
|
22078
|
-
?.dispatchEvent(new CustomEvent('animationend', { detail: { cancel: true } }));
|
|
22079
|
+
cancelLeavingNodes(tNode, lView);
|
|
22079
22080
|
trackEnterClasses(nativeElement, activeClasses, cleanupFns);
|
|
22080
22081
|
for (const klass of activeClasses) {
|
|
22081
22082
|
renderer.addClass(nativeElement, klass);
|
|
@@ -22138,14 +22139,8 @@ function ɵɵanimateEnterListener(value) {
|
|
|
22138
22139
|
}
|
|
22139
22140
|
const tNode = getCurrentTNode();
|
|
22140
22141
|
const nativeElement = getNativeByTNode(tNode, lView);
|
|
22141
|
-
|
|
22142
|
-
|
|
22143
|
-
// need to end the animation for the former node and remove it right away to
|
|
22144
|
-
// prevent duplicate nodes showing up.
|
|
22145
|
-
leavingNodes
|
|
22146
|
-
.get(tNode)
|
|
22147
|
-
?.pop()
|
|
22148
|
-
?.dispatchEvent(new CustomEvent('animationend', { detail: { cancel: true } }));
|
|
22142
|
+
ngDevMode && assertElementNodes(nativeElement, 'animate.enter');
|
|
22143
|
+
cancelLeavingNodes(tNode, lView);
|
|
22149
22144
|
value.call(lView[CONTEXT], { target: nativeElement, animationComplete: noOpAnimationComplete });
|
|
22150
22145
|
return ɵɵanimateEnterListener;
|
|
22151
22146
|
}
|
|
@@ -22173,6 +22168,7 @@ function ɵɵanimateLeave(value) {
|
|
|
22173
22168
|
const tView = getTView();
|
|
22174
22169
|
const tNode = getCurrentTNode();
|
|
22175
22170
|
const nativeElement = getNativeByTNode(tNode, lView);
|
|
22171
|
+
ngDevMode && assertElementNodes(nativeElement, 'animate.leave');
|
|
22176
22172
|
// This instruction is called in the update pass.
|
|
22177
22173
|
const renderer = lView[RENDERER];
|
|
22178
22174
|
const elementRegistry = getAnimationElementRemovalRegistry();
|
|
@@ -22217,9 +22213,7 @@ function ɵɵanimateLeaveListener(value) {
|
|
|
22217
22213
|
const tNode = getCurrentTNode();
|
|
22218
22214
|
const tView = getTView();
|
|
22219
22215
|
const nativeElement = getNativeByTNode(tNode, lView);
|
|
22220
|
-
|
|
22221
|
-
return ɵɵanimateLeaveListener;
|
|
22222
|
-
}
|
|
22216
|
+
ngDevMode && assertElementNodes(nativeElement, 'animate.leave');
|
|
22223
22217
|
const elementRegistry = getAnimationElementRemovalRegistry();
|
|
22224
22218
|
ngDevMode &&
|
|
22225
22219
|
assertDefined(elementRegistry.elements, 'Expected `ElementRegistry` to be present in animations subsystem');
|
|
@@ -22235,7 +22229,7 @@ function ɵɵanimateLeaveListener(value) {
|
|
|
22235
22229
|
const event = {
|
|
22236
22230
|
target: nativeElement,
|
|
22237
22231
|
animationComplete: () => {
|
|
22238
|
-
clearLeavingNodes(tNode);
|
|
22232
|
+
clearLeavingNodes(tNode, _el);
|
|
22239
22233
|
removeFn();
|
|
22240
22234
|
},
|
|
22241
22235
|
};
|
|
@@ -22261,15 +22255,12 @@ function getClassList(value, resolvers) {
|
|
|
22261
22255
|
const classList = new Set(value);
|
|
22262
22256
|
if (resolvers && resolvers.length) {
|
|
22263
22257
|
for (const resolverFn of resolvers) {
|
|
22264
|
-
const resolvedValue = resolverFn
|
|
22265
|
-
if (resolvedValue
|
|
22258
|
+
const resolvedValue = getClassListFromValue(resolverFn);
|
|
22259
|
+
if (resolvedValue) {
|
|
22266
22260
|
for (const rv of resolvedValue) {
|
|
22267
22261
|
classList.add(rv);
|
|
22268
22262
|
}
|
|
22269
22263
|
}
|
|
22270
|
-
else {
|
|
22271
|
-
classList.add(resolvedValue);
|
|
22272
|
-
}
|
|
22273
22264
|
}
|
|
22274
22265
|
}
|
|
22275
22266
|
return classList;
|
|
@@ -22345,6 +22336,11 @@ function assertAnimationTypes(value, instruction) {
|
|
|
22345
22336
|
throw new RuntimeError(650 /* RuntimeErrorCode.ANIMATE_INVALID_VALUE */, `'${instruction}' value must be a string of CSS classes or an animation function, got ${stringify(value)}`);
|
|
22346
22337
|
}
|
|
22347
22338
|
}
|
|
22339
|
+
function assertElementNodes(nativeElement, instruction) {
|
|
22340
|
+
if (nativeElement.nodeType !== Node.ELEMENT_NODE) {
|
|
22341
|
+
throw new RuntimeError(650 /* RuntimeErrorCode.ANIMATE_INVALID_VALUE */, `'${instruction}' can only be used on an element node, got ${stringify(nativeElement.nodeType)}`);
|
|
22342
|
+
}
|
|
22343
|
+
}
|
|
22348
22344
|
/**
|
|
22349
22345
|
* This function actually adds the classes that animate element that's leaving the DOM.
|
|
22350
22346
|
* Once it finishes, it calls the remove function that was provided by the DOM renderer.
|
|
@@ -22364,7 +22360,7 @@ function animateLeaveClassRunner(el, tNode, classList, finalRemoveFn, renderer,
|
|
|
22364
22360
|
// affect any other animations on the page.
|
|
22365
22361
|
event.stopImmediatePropagation();
|
|
22366
22362
|
longestAnimations.delete(el);
|
|
22367
|
-
clearLeavingNodes(tNode);
|
|
22363
|
+
clearLeavingNodes(tNode, el);
|
|
22368
22364
|
finalRemoveFn();
|
|
22369
22365
|
}
|
|
22370
22366
|
};
|
|
@@ -22383,7 +22379,7 @@ function animateLeaveClassRunner(el, tNode, classList, finalRemoveFn, renderer,
|
|
|
22383
22379
|
requestAnimationFrame(() => {
|
|
22384
22380
|
determineLongestAnimation(el, longestAnimations, areAnimationSupported);
|
|
22385
22381
|
if (!longestAnimations.has(el)) {
|
|
22386
|
-
clearLeavingNodes(tNode);
|
|
22382
|
+
clearLeavingNodes(tNode, el);
|
|
22387
22383
|
finalRemoveFn();
|
|
22388
22384
|
}
|
|
22389
22385
|
});
|
|
@@ -31829,5 +31825,5 @@ function getDebugNode(nativeNode) {
|
|
|
31829
31825
|
return null;
|
|
31830
31826
|
}
|
|
31831
31827
|
|
|
31832
|
-
export { AFTER_RENDER_PHASES, ANIMATIONS_DISABLED, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AcxChangeDetectionStrategy, AcxViewEncapsulation, AfterRenderImpl, AfterRenderManager, AfterRenderSequence, ApplicationInitStatus, ApplicationRef, Attribute, COMPILER_OPTIONS, CONTAINERS, CSP_NONCE, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionSchedulerImpl, ChangeDetectionStrategy, Compiler, CompilerFactory, Component, ComponentFactory, ComponentFactory$1, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ComponentRef as ComponentRef$1, Console, DEFAULT_CURRENCY_CODE, DEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DEFER_BLOCK_ID, DEFER_BLOCK_SSR_ID_ATTRIBUTE, DEFER_BLOCK_STATE$1 as DEFER_BLOCK_STATE, DEFER_BLOCK_STATE as DEFER_BLOCK_STATE$1, DEFER_HYDRATE_TRIGGERS, DEFER_PARENT_BLOCK_ID, DEHYDRATED_BLOCK_REGISTRY, DISCONNECTED_NODES, DebugElement, DebugEventListener, DebugNode, DeferBlockBehavior, DeferBlockState, DehydratedBlockRegistry, Directive, ELEMENT_CONTAINERS, EVENT_REPLAY_ENABLED_DEFAULT, ElementRef, ElementRegistry, EnvironmentNgModuleRefAdapter, EventEmitter, Framework, Host, HostBinding, HostListener, HydrationStatus, I18N_DATA, IMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS, IS_ENABLED_BLOCKING_INITIAL_NAVIGATION, IS_EVENT_REPLAY_ENABLED, IS_HYDRATION_DOM_REUSE_ENABLED, IS_I18N_HYDRATION_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED, Inject, Injectable, Input, JSACTION_BLOCK_ELEMENT_MAP, JSACTION_EVENT_CONTRACT, LContext, LOCALE_ID, LocaleDataIndex, MAX_ANIMATION_TIMEOUT, MULTIPLIER, MissingTranslationStrategy, ModuleWithComponentFactories, NGH_ATTR_NAME, NGH_DATA_KEY, NGH_DEFER_BLOCKS_KEY, NODES, NOOP_AFTER_RENDER_REF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE, NO_ERRORS_SCHEMA, NUM_ROOT_NODES, NgModule, NgModuleFactory, NgModuleFactory$1, NgModuleRef, NgModuleRef$1,
|
|
31828
|
+
export { AFTER_RENDER_PHASES, ANIMATIONS_DISABLED, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AcxChangeDetectionStrategy, AcxViewEncapsulation, AfterRenderImpl, AfterRenderManager, AfterRenderSequence, ApplicationInitStatus, ApplicationRef, Attribute, COMPILER_OPTIONS, CONTAINERS, CSP_NONCE, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionSchedulerImpl, ChangeDetectionStrategy, Compiler, CompilerFactory, Component, ComponentFactory, ComponentFactory$1, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ComponentRef as ComponentRef$1, Console, DEFAULT_CURRENCY_CODE, DEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DEFER_BLOCK_ID, DEFER_BLOCK_SSR_ID_ATTRIBUTE, DEFER_BLOCK_STATE$1 as DEFER_BLOCK_STATE, DEFER_BLOCK_STATE as DEFER_BLOCK_STATE$1, DEFER_HYDRATE_TRIGGERS, DEFER_PARENT_BLOCK_ID, DEHYDRATED_BLOCK_REGISTRY, DISCONNECTED_NODES, DebugElement, DebugEventListener, DebugNode, DeferBlockBehavior, DeferBlockState, DehydratedBlockRegistry, Directive, ELEMENT_CONTAINERS, EVENT_REPLAY_ENABLED_DEFAULT, ElementRef, ElementRegistry, EnvironmentNgModuleRefAdapter, EventEmitter, Framework, Host, HostBinding, HostListener, HydrationStatus, I18N_DATA, IMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS, IS_ENABLED_BLOCKING_INITIAL_NAVIGATION, IS_EVENT_REPLAY_ENABLED, IS_HYDRATION_DOM_REUSE_ENABLED, IS_I18N_HYDRATION_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED, Inject, Injectable, Input, JSACTION_BLOCK_ELEMENT_MAP, JSACTION_EVENT_CONTRACT, LContext, LOCALE_ID, LocaleDataIndex, MAX_ANIMATION_TIMEOUT, MULTIPLIER, MissingTranslationStrategy, ModuleWithComponentFactories, NGH_ATTR_NAME, NGH_DATA_KEY, NGH_DEFER_BLOCKS_KEY, NODES, NOOP_AFTER_RENDER_REF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE, NO_ERRORS_SCHEMA, NUM_ROOT_NODES, NgModule, NgModuleFactory, NgModuleFactory$1, NgModuleRef, NgModuleRef$1, NgZone, NoopNgZone, Optional, Output, PLATFORM_ID, PLATFORM_INITIALIZER, PRESERVE_HOST_CONTENT, PROVIDED_NG_ZONE, Pipe, QueryList, ReflectionCapabilities, Renderer2, RendererFactory2, RendererStyleFlags2, SKIP_HYDRATION_ATTR_NAME, SSR_CONTENT_INTEGRITY_MARKER, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TEMPLATES, TEMPLATE_ID, TESTABILITY, TESTABILITY_GETTER, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TimerScheduler, TracingAction, TracingService, TransferState, Type, UseExhaustiveCheckNoChanges, ViewContainerRef, ViewEncapsulation, ViewRef, _sanitizeHtml, _sanitizeUrl, afterEveryRender, afterNextRender, allowSanitizationBypassAndThrow, angularCoreEnv, appendDeferBlocksToJSActionMap, asNativeElements, assertComponentDef, assertStandaloneComponentType, bypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript, bypassSanitizationTrustStyle, bypassSanitizationTrustUrl, calcPathForNode, checkNoChangesInternal, cleanupDehydratedViews, clearResolutionOfComponentResourcesQueue, collectNativeNodes, collectNativeNodesInLContainer, compileComponent, compileDirective, compileNgModule, compileNgModuleDefs, compilePipe, convertHydrateTriggersToJsAction, countBlocksSkippedByHydration, createEnvironmentInjector, createMultiResultQuerySignalFn, createNgModule, createNgModuleRef, createNgModuleRefWithProviders, createSingleResultOptionalQuerySignalFn, createSingleResultRequiredQuerySignalFn, depsTracker, devModeEqual, enableApplyRootElementTransformImpl, enableClaimDehydratedIcuCaseImpl, enableFindMatchingDehydratedViewImpl, enableLocateOrCreateContainerAnchorImpl, enableLocateOrCreateContainerRefImpl, enableLocateOrCreateElementContainerNodeImpl, enableLocateOrCreateElementNodeImpl, enableLocateOrCreateI18nNodeImpl, enableLocateOrCreateTextNodeImpl, enablePrepareI18nBlockForHydrationImpl, enableProfiling, enableRetrieveDeferBlockDataImpl, enableRetrieveHydrationInfoImpl, enableStashEventListenerImpl, findLocaleData, flushModuleScopingQueueAsMuchAsPossible, gatherDeferBlocksCommentNodes, generateStandaloneInDeclarationsError, getAsyncClassMetadataFn, getCompilerFacade, getDebugNode, getDeferBlocks$1 as getDeferBlocks, getDirectives, getDocument, getHostElement, getLContext, getLDeferBlockDetails, getLNodeForHydration, getLocaleCurrencyCode, getLocalePluralCase, getNgZone, getNgZoneOptions, getOrComputeI18nChildren, getRegisteredNgModuleType, getSanitizationBypassType, getTDeferBlockDetails, getTransferState, inferTagNameFromDefinition, inputBinding, internalProvideZoneChangeDetection, invokeListeners, isBoundToModule, isComponentDefPendingResolution, isComponentResourceResolutionQueueEmpty, isDeferBlock, isDetachedByI18n, isDisconnectedNode, isI18nHydrationEnabled, isI18nHydrationSupportEnabled, isInSkipHydrationBlock, isIncrementalHydrationEnabled, isJsObject, isLetDeclaration, isListLikeIterable, isNgModule, isPromise, isSubscribable, isTNodeShape, isViewDirty, iterateListLike, makePropDecorator, makeStateKey, markForRefresh, noSideEffects, optionsReducer, outputBinding, patchComponentDefWithScope, performanceMarkFeature, processAndInitTriggers, processBlockData, processTextNodeBeforeSerialization, profiler, provideAppInitializer, provideNgReflectAttributes, provideZoneChangeDetection, provideZonelessChangeDetection, publishDefaultGlobalUtils, publishExternalGlobalUtil, publishSignalConfiguration, readHydrationInfo, readPatchedLView, registerLocaleData, registerNgModuleType, remove, removeListeners, renderDeferBlockState, resetCompiledComponents, resetJitOptions, resolveComponentResources, restoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest, setClassMetadata, setClassMetadataAsync, setDocument, setIsI18nHydrationSupportEnabled, setJSActionAttributes, setJitOptions, setLocaleId, setStashFn, setTestabilityGetter, sharedMapFunction, sharedStashFunction, transitiveScopesFor, triggerHydrationFromBlockName, triggerResourceLoading, trySerializeI18nBlock, twoWayBinding, unregisterAllLocaleData, unsupportedProjectionOfDomNodes, unwrapSafeValue, validateMatchingNode, validateNodeExists, verifySsrContentsIntegrity, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, ɵsetClassDebugInfo, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, ɵɵAnimationsFeature, ɵɵCopyDefinitionFeature, ɵɵExternalStylesFeature, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵanimateEnter, ɵɵanimateEnterListener, ɵɵanimateLeave, ɵɵanimateLeaveListener, ɵɵariaProperty, ɵɵattachSourceLocations, ɵɵattribute, ɵɵclassMap, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵconditionalBranchCreate, ɵɵconditionalCreate, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵdeclareLet, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferHydrateNever, ɵɵdeferHydrateOnHover, ɵɵdeferHydrateOnIdle, ɵɵdeferHydrateOnImmediate, ɵɵdeferHydrateOnInteraction, ɵɵdeferHydrateOnTimer, ɵɵdeferHydrateOnViewport, ɵɵdeferHydrateWhen, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdomElement, ɵɵdomElementContainer, ɵɵdomElementContainerEnd, ɵɵdomElementContainerStart, ɵɵdomElementEnd, ɵɵdomElementStart, ɵɵdomListener, ɵɵdomProperty, ɵɵdomTemplate, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵgetReplaceMetadataURL, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinjectAttribute, ɵɵinterpolate, ɵɵinterpolate1, ɵɵinterpolate2, ɵɵinterpolate3, ɵɵinterpolate4, ɵɵinterpolate5, ɵɵinterpolate6, ɵɵinterpolate7, ɵɵinterpolate8, ɵɵinterpolateV, ɵɵinvalidFactory, ɵɵlistener, ɵɵloadQuery, ɵɵnextContext, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryAdvance, ɵɵqueryRefresh, ɵɵreadContextLet, ɵɵreference, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵreplaceMetadata, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstoreLet, ɵɵstyleMap, ɵɵstyleProp, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
31833
31829
|
//# sourceMappingURL=debug_node.mjs.map
|