@angular/core 20.2.3 → 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 +25 -27
- package/effect.d.d.ts +1 -1
- package/event_dispatcher.d.d.ts +1 -1
- package/fesm2022/attribute.mjs +1 -1
- package/fesm2022/core.mjs +19 -14
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/debug_node.mjs +48 -50
- package/fesm2022/debug_node.mjs.map +1 -1
- package/fesm2022/effect.mjs +1 -1
- 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 +1 -1
- package/fesm2022/resource.mjs +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/rxjs-interop.mjs.map +1 -1
- package/fesm2022/signal.mjs +1 -1
- package/fesm2022/testing.mjs +6 -4
- package/fesm2022/testing.mjs.map +1 -1
- package/fesm2022/weak_ref.mjs +1 -1
- package/graph.d.d.ts +1 -1
- package/index.d.ts +6 -13
- 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 +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{apply_import_manager-BTXb3nRr.cjs → apply_import_manager-yycO3l8f.cjs} +3 -3
- package/schematics/bundles/cleanup-unused-imports.cjs +5 -5
- package/schematics/bundles/{compiler_host-Btt7nH4b.cjs → compiler_host-DrXTGf_7.cjs} +2 -2
- package/schematics/bundles/control-flow-migration.cjs +19 -48
- package/schematics/bundles/{imports-CIX-JgAN.cjs → imports-26VeX8i-.cjs} +2 -1
- package/schematics/bundles/{index-rL7rOVXa.cjs → index-BdH2rlWJ.cjs} +4 -4
- package/schematics/bundles/{index-CAfBb4YL.cjs → index-jjHOgYYs.cjs} +28 -14
- package/schematics/bundles/inject-migration.cjs +5 -5
- package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
- package/schematics/bundles/{migrate_ts_type_references-Dyjkgb1x.cjs → migrate_ts_type_references-BVSg43hf.cjs} +9 -10
- 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-BUuKobrE.cjs → project_paths-T_M15e2g.cjs} +3 -3
- package/schematics/bundles/{project_tsconfig_paths-x7xrmbI9.cjs → project_tsconfig_paths-D7xzGqRi.cjs} +8 -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/{test-bed-get.cjs → router-last-successful-navigation.cjs} +30 -14
- package/schematics/bundles/self-closing-tags-migration.cjs +11 -207
- package/schematics/bundles/signal-input-migration.cjs +12 -13
- package/schematics/bundles/signal-queries-migration.cjs +7 -8
- package/schematics/bundles/signals.cjs +7 -8
- 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/schematics/migrations.json +7 -17
- package/testing/index.d.ts +1 -1
- package/weak_ref.d.d.ts +1 -1
- package/schematics/bundles/document-core.cjs +0 -95
- package/schematics/bundles/inject-flags.cjs +0 -147
package/fesm2022/debug_node.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular
|
|
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.
|
|
@@ -4896,6 +4889,12 @@ var ViewEncapsulation;
|
|
|
4896
4889
|
* all the Component's styling.
|
|
4897
4890
|
*/
|
|
4898
4891
|
ViewEncapsulation[ViewEncapsulation["ShadowDom"] = 3] = "ShadowDom";
|
|
4892
|
+
/**
|
|
4893
|
+
* Similar to `ShadowDom`, but prevents any external styles from leaking into the
|
|
4894
|
+
* component's ShadowRoot. This is useful when you want to ensure that the component's
|
|
4895
|
+
* styles are completely isolated from the rest of the application, including global styles.
|
|
4896
|
+
*/
|
|
4897
|
+
ViewEncapsulation[ViewEncapsulation["IsolatedShadowDom"] = 4] = "IsolatedShadowDom";
|
|
4899
4898
|
})(ViewEncapsulation || (ViewEncapsulation = {}));
|
|
4900
4899
|
|
|
4901
4900
|
/**
|
|
@@ -7990,7 +7989,9 @@ function locateHostElement(renderer, elementOrSelector, encapsulation, injector)
|
|
|
7990
7989
|
const preserveHostContent = injector.get(PRESERVE_HOST_CONTENT, PRESERVE_HOST_CONTENT_DEFAULT);
|
|
7991
7990
|
// When using native Shadow DOM, do not clear host element to allow native slot
|
|
7992
7991
|
// projection.
|
|
7993
|
-
const preserveContent = preserveHostContent ||
|
|
7992
|
+
const preserveContent = preserveHostContent ||
|
|
7993
|
+
encapsulation === ViewEncapsulation.ShadowDom ||
|
|
7994
|
+
encapsulation === ViewEncapsulation.IsolatedShadowDom;
|
|
7994
7995
|
const rootElement = renderer.selectRootElement(elementOrSelector, preserveContent);
|
|
7995
7996
|
applyRootElementTransform(rootElement);
|
|
7996
7997
|
return rootElement;
|
|
@@ -8398,13 +8399,7 @@ function handleUncaughtError(lView, error) {
|
|
|
8398
8399
|
if (!injector) {
|
|
8399
8400
|
return;
|
|
8400
8401
|
}
|
|
8401
|
-
|
|
8402
|
-
try {
|
|
8403
|
-
errorHandler = injector.get(INTERNAL_APPLICATION_ERROR_HANDLER, null);
|
|
8404
|
-
}
|
|
8405
|
-
catch {
|
|
8406
|
-
errorHandler = null;
|
|
8407
|
-
}
|
|
8402
|
+
const errorHandler = injector.get(INTERNAL_APPLICATION_ERROR_HANDLER, null);
|
|
8408
8403
|
errorHandler?.(error);
|
|
8409
8404
|
}
|
|
8410
8405
|
/**
|
|
@@ -13521,7 +13516,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
13521
13516
|
}
|
|
13522
13517
|
function createRootTView(rootSelectorOrNode, componentDef, componentBindings, directives) {
|
|
13523
13518
|
const tAttributes = rootSelectorOrNode
|
|
13524
|
-
? ['ng-version', '
|
|
13519
|
+
? ['ng-version', '21.0.0-next.1']
|
|
13525
13520
|
: // Extract attributes and classes from the first selector only to match VE behavior.
|
|
13526
13521
|
extractAttrsAndClassesFromSelector(componentDef.selectors[0]);
|
|
13527
13522
|
let creationBindings = null;
|
|
@@ -19958,20 +19953,6 @@ function publishSignalConfiguration() {
|
|
|
19958
19953
|
function isBoundToModule(cf) {
|
|
19959
19954
|
return cf.isBoundToModule;
|
|
19960
19955
|
}
|
|
19961
|
-
/**
|
|
19962
|
-
* A token for third-party components that can register themselves with NgProbe.
|
|
19963
|
-
*
|
|
19964
|
-
* @deprecated
|
|
19965
|
-
* @publicApi
|
|
19966
|
-
*/
|
|
19967
|
-
class NgProbeToken {
|
|
19968
|
-
name;
|
|
19969
|
-
token;
|
|
19970
|
-
constructor(name, token) {
|
|
19971
|
-
this.name = name;
|
|
19972
|
-
this.token = token;
|
|
19973
|
-
}
|
|
19974
|
-
}
|
|
19975
19956
|
/** Maximum number of times ApplicationRef will refresh all attached views in a single tick. */
|
|
19976
19957
|
const MAXIMUM_REFRESH_RERUNS = 10;
|
|
19977
19958
|
function optionsReducer(dst, objs) {
|
|
@@ -21787,7 +21768,6 @@ class ElementRegistry {
|
|
|
21787
21768
|
const details = this.outElements.get(el) ?? {
|
|
21788
21769
|
classes: null,
|
|
21789
21770
|
animateFn: () => { },
|
|
21790
|
-
isEventBinding: true,
|
|
21791
21771
|
};
|
|
21792
21772
|
details.animateFn = animateWrapperFn(el, value);
|
|
21793
21773
|
this.outElements.set(el, details);
|
|
@@ -21797,7 +21777,6 @@ class ElementRegistry {
|
|
|
21797
21777
|
const details = this.outElements.get(el) ?? {
|
|
21798
21778
|
classes: new Set(),
|
|
21799
21779
|
animateFn: () => { },
|
|
21800
|
-
isEventBinding: false,
|
|
21801
21780
|
};
|
|
21802
21781
|
if (typeof value === 'function') {
|
|
21803
21782
|
this.trackResolver(details, value);
|
|
@@ -21833,11 +21812,8 @@ class ElementRegistry {
|
|
|
21833
21812
|
};
|
|
21834
21813
|
// this timeout is used to ensure elements actually get removed in the case
|
|
21835
21814
|
// that the user forgot to call the remove callback. The timeout is cleared
|
|
21836
|
-
// in the DOM renderer during the remove child process.
|
|
21837
|
-
|
|
21838
|
-
if (details.isEventBinding) {
|
|
21839
|
-
timeoutId = setTimeout(remove, maxAnimationTimeout);
|
|
21840
|
-
}
|
|
21815
|
+
// in the DOM renderer during the remove child process.
|
|
21816
|
+
timeoutId = setTimeout(remove, maxAnimationTimeout);
|
|
21841
21817
|
details.animateFn(remove);
|
|
21842
21818
|
}
|
|
21843
21819
|
}
|
|
@@ -22084,6 +22060,7 @@ function ɵɵanimateEnter(value) {
|
|
|
22084
22060
|
// This also allows us to setup cancellation of animations in progress if the
|
|
22085
22061
|
// gets removed early.
|
|
22086
22062
|
const handleAnimationStart = (event) => {
|
|
22063
|
+
setupAnimationCancel(event, renderer);
|
|
22087
22064
|
const eventName = event instanceof AnimationEvent ? 'animationend' : 'transitionend';
|
|
22088
22065
|
ngZone.runOutsideAngular(() => {
|
|
22089
22066
|
cleanupFns.push(renderer.listen(nativeElement, eventName, handleInAnimationEnd));
|
|
@@ -22292,22 +22269,42 @@ function cancelAnimationsIfRunning(element, renderer) {
|
|
|
22292
22269
|
if (!areAnimationSupported)
|
|
22293
22270
|
return;
|
|
22294
22271
|
const elementData = enterClassMap.get(element);
|
|
22295
|
-
if (
|
|
22296
|
-
|
|
22297
|
-
|
|
22298
|
-
|
|
22299
|
-
|
|
22272
|
+
if (element.getAnimations().length > 0) {
|
|
22273
|
+
for (const animation of element.getAnimations()) {
|
|
22274
|
+
if (animation.playState === 'running') {
|
|
22275
|
+
animation.cancel();
|
|
22276
|
+
}
|
|
22277
|
+
}
|
|
22278
|
+
}
|
|
22279
|
+
else {
|
|
22280
|
+
if (elementData) {
|
|
22281
|
+
for (const klass of elementData.classList) {
|
|
22282
|
+
renderer.removeClass(element, klass);
|
|
22283
|
+
}
|
|
22300
22284
|
}
|
|
22301
22285
|
}
|
|
22302
22286
|
// We need to prevent any enter animation listeners from firing if they exist.
|
|
22303
22287
|
cleanupEnterClassData(element);
|
|
22304
22288
|
}
|
|
22305
|
-
function
|
|
22306
|
-
|
|
22307
|
-
|
|
22308
|
-
|
|
22289
|
+
function setupAnimationCancel(event, renderer) {
|
|
22290
|
+
if (!(event.target instanceof Element))
|
|
22291
|
+
return;
|
|
22292
|
+
const nativeElement = event.target;
|
|
22293
|
+
if (areAnimationSupported) {
|
|
22294
|
+
const elementData = enterClassMap.get(nativeElement);
|
|
22295
|
+
const animations = nativeElement.getAnimations();
|
|
22296
|
+
if (animations.length === 0)
|
|
22297
|
+
return;
|
|
22298
|
+
for (let animation of animations) {
|
|
22299
|
+
animation.addEventListener('cancel', (event) => {
|
|
22300
|
+
if (nativeElement === event.target && elementData?.classList) {
|
|
22301
|
+
for (const klass of elementData.classList) {
|
|
22302
|
+
renderer.removeClass(nativeElement, klass);
|
|
22303
|
+
}
|
|
22304
|
+
}
|
|
22305
|
+
});
|
|
22306
|
+
}
|
|
22309
22307
|
}
|
|
22310
|
-
return false;
|
|
22311
22308
|
}
|
|
22312
22309
|
function isLongestAnimation(event, nativeElement) {
|
|
22313
22310
|
const longestAnimation = longestAnimations.get(nativeElement);
|
|
@@ -29136,7 +29133,8 @@ function recreateLView(importMeta, id, newDef, oldDef, lView) {
|
|
|
29136
29133
|
// shadow root. The browser will throw if we attempt to attach another one and there's no way
|
|
29137
29134
|
// to detach it. Our only option is to make a clone only of the root node, replace the node
|
|
29138
29135
|
// with the clone and use it for the newly-created LView.
|
|
29139
|
-
if (oldDef.encapsulation === ViewEncapsulation.ShadowDom
|
|
29136
|
+
if (oldDef.encapsulation === ViewEncapsulation.ShadowDom ||
|
|
29137
|
+
oldDef.encapsulation === ViewEncapsulation.IsolatedShadowDom) {
|
|
29140
29138
|
const newHost = host.cloneNode(false);
|
|
29141
29139
|
host.replaceWith(newHost);
|
|
29142
29140
|
host = newHost;
|
|
@@ -31827,5 +31825,5 @@ function getDebugNode(nativeNode) {
|
|
|
31827
31825
|
return null;
|
|
31828
31826
|
}
|
|
31829
31827
|
|
|
31830
|
-
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 };
|
|
31831
31829
|
//# sourceMappingURL=debug_node.mjs.map
|