@angular/core 20.1.0-rc.0 → 20.1.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 +1 -1
- package/discovery.d.d.ts +1 -1
- package/event_dispatcher.d.d.ts +1 -1
- package/fesm2022/attribute.mjs +1 -1
- package/fesm2022/core.mjs +48 -28
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/debug_node.mjs +56 -14
- package/fesm2022/debug_node.mjs.map +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 +112 -53
- 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/untracked.mjs +1 -1
- package/fesm2022/weak_ref.mjs +1 -1
- package/graph.d.d.ts +1 -1
- package/index.d.ts +16 -3
- 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-DEMoyu96.cjs → apply_import_manager-DnZuC0qd.cjs} +3 -3
- package/schematics/bundles/{checker-CwuJOWZI.cjs → checker-CwUJ2eKt.cjs} +470 -1127
- package/schematics/bundles/cleanup-unused-imports.cjs +6 -5
- package/schematics/bundles/{compiler_host-B1N_OYoF.cjs → compiler_host-CH53_d32.cjs} +2 -2
- package/schematics/bundles/control-flow-migration.cjs +3 -3
- package/schematics/bundles/document-core.cjs +6 -5
- package/schematics/bundles/imports-CIX-JgAN.cjs +1 -1
- package/schematics/bundles/{index-DPxKO2pR.cjs → index-BEVODdVo.cjs} +5 -4
- package/schematics/bundles/{index-CmuNlSML.cjs → index-C5Zc9zTo.cjs} +930 -54
- package/schematics/bundles/inject-flags.cjs +6 -5
- package/schematics/bundles/inject-migration.cjs +3 -3
- package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
- package/schematics/bundles/{migrate_ts_type_references-Da3yLjVM.cjs → migrate_ts_type_references-i9f_TsT7.cjs} +6 -441
- package/schematics/bundles/ng_decorators-B5HCqr20.cjs +1 -1
- package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
- package/schematics/bundles/output-migration.cjs +7 -6
- package/schematics/bundles/{project_paths-86Qe1BQQ.cjs → project_paths-BrdiLiLU.cjs} +39 -3
- package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.cjs +1 -1
- package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
- package/schematics/bundles/route-lazy-loading.cjs +3 -3
- package/schematics/bundles/self-closing-tags-migration.cjs +5 -4
- package/schematics/bundles/signal-input-migration.cjs +9 -8
- package/schematics/bundles/signal-queries-migration.cjs +8 -7
- package/schematics/bundles/signals.cjs +8 -7
- package/schematics/bundles/standalone-migration.cjs +4 -4
- package/schematics/bundles/symbol-VPWguRxr.cjs +1 -1
- package/schematics/bundles/test-bed-get.cjs +5 -4
- package/signal.d.d.ts +1 -1
- package/testing/index.d.ts +1 -1
- package/weak_ref.d.d.ts +1 -1
package/fesm2022/not_found.mjs
CHANGED
package/fesm2022/resource.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.1.
|
|
2
|
+
* @license Angular v20.1.1
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
import { isNotFound, getCurrentInjector, setCurrentInjector } from './not_found.mjs';
|
|
8
8
|
import { getActiveConsumer, SIGNAL, createSignal } from './signal.mjs';
|
|
9
9
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
10
|
-
import { NotFoundError, isNotFound as isNotFound$1 } from '@angular/core/primitives/di';
|
|
11
10
|
import { setActiveConsumer } from '@angular/core/primitives/signals';
|
|
11
|
+
import { isNotFound as isNotFound$1 } from '@angular/core/primitives/di';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Base URL for the error details page.
|
|
@@ -807,11 +807,17 @@ function stringifyTypeFromDebugInfo(debugInfo) {
|
|
|
807
807
|
}
|
|
808
808
|
}
|
|
809
809
|
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
810
|
+
const NG_RUNTIME_ERROR_CODE = getClosureSafeProperty({ 'ngErrorCode': getClosureSafeProperty });
|
|
811
|
+
const NG_RUNTIME_ERROR_MESSAGE = getClosureSafeProperty({ 'ngErrorMessage': getClosureSafeProperty });
|
|
812
|
+
const NG_TOKEN_PATH = getClosureSafeProperty({ 'ngTokenPath': getClosureSafeProperty });
|
|
813
|
+
/** Creates a circular dependency runtime error. */
|
|
814
|
+
function cyclicDependencyError(token, path) {
|
|
815
|
+
const message = ngDevMode ? `Circular dependency detected for \`${token}\`.` : '';
|
|
816
|
+
return createRuntimeError(message, -200 /* RuntimeErrorCode.CYCLIC_DI_DEPENDENCY */, path);
|
|
817
|
+
}
|
|
818
|
+
/** Creates a circular dependency runtime error including a dependency path in the error message. */
|
|
819
|
+
function cyclicDependencyErrorWithDetails(token, path) {
|
|
820
|
+
return augmentRuntimeError(cyclicDependencyError(token, path), null);
|
|
815
821
|
}
|
|
816
822
|
function throwMixedMultiProviderError() {
|
|
817
823
|
throw new Error(`Cannot mix multi providers and regular providers`);
|
|
@@ -839,6 +845,78 @@ function throwProviderNotFoundError(token, injectorName) {
|
|
|
839
845
|
`No provider for ${stringifyForError(token)} found${injectorName ? ` in ${injectorName}` : ''}`;
|
|
840
846
|
throw new RuntimeError(-201 /* RuntimeErrorCode.PROVIDER_NOT_FOUND */, errorMessage);
|
|
841
847
|
}
|
|
848
|
+
/**
|
|
849
|
+
* Given an Error instance and the current token - update the monkey-patched
|
|
850
|
+
* dependency path info to include that token.
|
|
851
|
+
*
|
|
852
|
+
* @param error Current instance of the Error class.
|
|
853
|
+
* @param token Extra token that should be appended.
|
|
854
|
+
*/
|
|
855
|
+
function prependTokenToDependencyPath(error, token) {
|
|
856
|
+
error[NG_TOKEN_PATH] ??= [];
|
|
857
|
+
// Append current token to the current token path. Since the error
|
|
858
|
+
// is bubbling up, add the token in front of other tokens.
|
|
859
|
+
const currentPath = error[NG_TOKEN_PATH];
|
|
860
|
+
// Do not append the same token multiple times.
|
|
861
|
+
let pathStr;
|
|
862
|
+
if (typeof token === 'object' && 'multi' in token && token?.multi === true) {
|
|
863
|
+
assertDefined(token.provide, 'Token with multi: true should have a provide property');
|
|
864
|
+
pathStr = stringifyForError(token.provide);
|
|
865
|
+
}
|
|
866
|
+
else {
|
|
867
|
+
pathStr = stringifyForError(token);
|
|
868
|
+
}
|
|
869
|
+
if (currentPath[0] !== pathStr) {
|
|
870
|
+
error[NG_TOKEN_PATH].unshift(pathStr);
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
/**
|
|
874
|
+
* Modifies an Error instance with an updated error message
|
|
875
|
+
* based on the accumulated dependency path.
|
|
876
|
+
*
|
|
877
|
+
* @param error Current instance of the Error class.
|
|
878
|
+
* @param source Extra info about the injector which started
|
|
879
|
+
* the resolution process, which eventually failed.
|
|
880
|
+
*/
|
|
881
|
+
function augmentRuntimeError(error, source) {
|
|
882
|
+
const tokenPath = error[NG_TOKEN_PATH];
|
|
883
|
+
const errorCode = error[NG_RUNTIME_ERROR_CODE];
|
|
884
|
+
const message = error[NG_RUNTIME_ERROR_MESSAGE] || error.message;
|
|
885
|
+
error.message = formatErrorMessage(message, errorCode, tokenPath, source);
|
|
886
|
+
return error;
|
|
887
|
+
}
|
|
888
|
+
/**
|
|
889
|
+
* Creates an initial RuntimeError instance when a problem is detected.
|
|
890
|
+
* Monkey-patches extra info in the RuntimeError instance, so that it can
|
|
891
|
+
* be reused later, before throwing the final error.
|
|
892
|
+
*/
|
|
893
|
+
function createRuntimeError(message, code, path) {
|
|
894
|
+
// Cast to `any`, so that extra info can be monkey-patched onto this instance.
|
|
895
|
+
const error = new RuntimeError(code, message);
|
|
896
|
+
// Monkey-patch a runtime error code and a path onto an Error instance.
|
|
897
|
+
error[NG_RUNTIME_ERROR_CODE] = code;
|
|
898
|
+
error[NG_RUNTIME_ERROR_MESSAGE] = message;
|
|
899
|
+
if (path) {
|
|
900
|
+
error[NG_TOKEN_PATH] = path;
|
|
901
|
+
}
|
|
902
|
+
return error;
|
|
903
|
+
}
|
|
904
|
+
/**
|
|
905
|
+
* Reads monkey-patched error code from the given Error instance.
|
|
906
|
+
*/
|
|
907
|
+
function getRuntimeErrorCode(error) {
|
|
908
|
+
return error[NG_RUNTIME_ERROR_CODE];
|
|
909
|
+
}
|
|
910
|
+
function formatErrorMessage(text, code, path = [], source = null) {
|
|
911
|
+
let pathDetails = '';
|
|
912
|
+
// If the path is empty or contains only one element (self) -
|
|
913
|
+
// do not append additional info the error message.
|
|
914
|
+
if (path && path.length > 1) {
|
|
915
|
+
pathDetails = ` Path: ${path.join(' -> ')}.`;
|
|
916
|
+
}
|
|
917
|
+
const sourceDetails = source ? ` Source: ${source}.` : '';
|
|
918
|
+
return formatRuntimeError(code, `${text}${sourceDetails}${pathDetails}`);
|
|
919
|
+
}
|
|
842
920
|
|
|
843
921
|
/**
|
|
844
922
|
* Current implementation of inject.
|
|
@@ -926,11 +1004,6 @@ class RetrievingInjector {
|
|
|
926
1004
|
}
|
|
927
1005
|
}
|
|
928
1006
|
}
|
|
929
|
-
const NG_TEMP_TOKEN_PATH = 'ngTempTokenPath';
|
|
930
|
-
const NG_TOKEN_PATH = 'ngTokenPath';
|
|
931
|
-
const NEW_LINE = /\n/gm;
|
|
932
|
-
const NO_NEW_LINE = 'ɵ';
|
|
933
|
-
const SOURCE = '__source';
|
|
934
1007
|
function injectInjectorOnly(token, flags = 0 /* InternalInjectFlags.Default */) {
|
|
935
1008
|
const currentInjector = getCurrentInjector();
|
|
936
1009
|
if (currentInjector === undefined) {
|
|
@@ -942,6 +1015,8 @@ function injectInjectorOnly(token, flags = 0 /* InternalInjectFlags.Default */)
|
|
|
942
1015
|
}
|
|
943
1016
|
else {
|
|
944
1017
|
const options = convertToInjectOptions(flags);
|
|
1018
|
+
// TODO: improve the typings here.
|
|
1019
|
+
// `token` can be a multi: true provider definition, which is considered as a Token but not represented in the typings
|
|
945
1020
|
const value = currentInjector.retrieve(token, options);
|
|
946
1021
|
ngDevMode && emitInjectEvent(token, value, flags);
|
|
947
1022
|
if (isNotFound(value)) {
|
|
@@ -1122,34 +1197,6 @@ function attachInjectFlag(decorator, flag) {
|
|
|
1122
1197
|
function getInjectFlag(token) {
|
|
1123
1198
|
return token[DI_DECORATOR_FLAG];
|
|
1124
1199
|
}
|
|
1125
|
-
function catchInjectorError(e, token, injectorErrorName, source) {
|
|
1126
|
-
const tokenPath = e[NG_TEMP_TOKEN_PATH];
|
|
1127
|
-
if (token[SOURCE]) {
|
|
1128
|
-
tokenPath.unshift(token[SOURCE]);
|
|
1129
|
-
}
|
|
1130
|
-
e.message = formatError('\n' + e.message, tokenPath, injectorErrorName, source);
|
|
1131
|
-
e[NG_TOKEN_PATH] = tokenPath;
|
|
1132
|
-
e[NG_TEMP_TOKEN_PATH] = null;
|
|
1133
|
-
throw e;
|
|
1134
|
-
}
|
|
1135
|
-
function formatError(text, obj, injectorErrorName, source = null) {
|
|
1136
|
-
text = text && text.charAt(0) === '\n' && text.charAt(1) == NO_NEW_LINE ? text.slice(2) : text;
|
|
1137
|
-
let context = stringify(obj);
|
|
1138
|
-
if (Array.isArray(obj)) {
|
|
1139
|
-
context = obj.map(stringify).join(' -> ');
|
|
1140
|
-
}
|
|
1141
|
-
else if (typeof obj === 'object') {
|
|
1142
|
-
let parts = [];
|
|
1143
|
-
for (let key in obj) {
|
|
1144
|
-
if (obj.hasOwnProperty(key)) {
|
|
1145
|
-
let value = obj[key];
|
|
1146
|
-
parts.push(key + ':' + (typeof value === 'string' ? JSON.stringify(value) : stringify(value)));
|
|
1147
|
-
}
|
|
1148
|
-
}
|
|
1149
|
-
context = `{${parts.join(', ')}}`;
|
|
1150
|
-
}
|
|
1151
|
-
return `${injectorErrorName}${source ? '(' + source + ')' : ''}[${context}]: ${text.replace(NEW_LINE, '\n ')}`;
|
|
1152
|
-
}
|
|
1153
1200
|
|
|
1154
1201
|
function getFactoryDef(type, throwNotFound) {
|
|
1155
1202
|
const hasFactoryDef = type.hasOwnProperty(NG_FACTORY_DEF);
|
|
@@ -1412,7 +1459,10 @@ const INJECTOR_DEF_TYPES = new InjectionToken(ngDevMode ? 'INJECTOR_DEF_TYPES' :
|
|
|
1412
1459
|
class NullInjector {
|
|
1413
1460
|
get(token, notFoundValue = THROW_IF_NOT_FOUND) {
|
|
1414
1461
|
if (notFoundValue === THROW_IF_NOT_FOUND) {
|
|
1415
|
-
const
|
|
1462
|
+
const message = ngDevMode ? `No provider found for \`${stringify(token)}\`.` : '';
|
|
1463
|
+
const error = createRuntimeError(message, -201 /* RuntimeErrorCode.PROVIDER_NOT_FOUND */);
|
|
1464
|
+
// Note: This is the name used by the primitives to identify a not found error.
|
|
1465
|
+
error.name = 'ɵNotFound';
|
|
1416
1466
|
throw error;
|
|
1417
1467
|
}
|
|
1418
1468
|
return notFoundValue;
|
|
@@ -1642,8 +1692,8 @@ function walkProviderTree(container, visitor, parents, dedup) {
|
|
|
1642
1692
|
// Check for circular dependencies.
|
|
1643
1693
|
if (ngDevMode && parents.indexOf(defType) !== -1) {
|
|
1644
1694
|
const defName = stringify(defType);
|
|
1645
|
-
const path = parents.map(stringify);
|
|
1646
|
-
|
|
1695
|
+
const path = parents.map(stringify).concat(defName);
|
|
1696
|
+
throw cyclicDependencyErrorWithDetails(defName, path);
|
|
1647
1697
|
}
|
|
1648
1698
|
// Check for multiple imports of the same module
|
|
1649
1699
|
const isDuplicate = dedup.has(defType);
|
|
@@ -1968,22 +2018,31 @@ class R3Injector extends EnvironmentInjector {
|
|
|
1968
2018
|
: notFoundValue;
|
|
1969
2019
|
return nextInjector.get(token, notFoundValue);
|
|
1970
2020
|
}
|
|
1971
|
-
catch (
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
2021
|
+
catch (error) {
|
|
2022
|
+
// If there was a cyclic dependency error or a token was not found,
|
|
2023
|
+
// an error is thrown at the level where the problem was detected.
|
|
2024
|
+
// The error propagates up the call stack and the code below appends
|
|
2025
|
+
// the current token into the path. As a result, the full path is assembled
|
|
2026
|
+
// at the very top of the call stack, so the final error message can be
|
|
2027
|
+
// formatted to include that path.
|
|
2028
|
+
const errorCode = getRuntimeErrorCode(error);
|
|
2029
|
+
if (errorCode === -200 /* RuntimeErrorCode.CYCLIC_DI_DEPENDENCY */ ||
|
|
2030
|
+
errorCode === -201 /* RuntimeErrorCode.PROVIDER_NOT_FOUND */) {
|
|
2031
|
+
if (!ngDevMode) {
|
|
2032
|
+
throw new RuntimeError(errorCode, null);
|
|
2033
|
+
}
|
|
2034
|
+
prependTokenToDependencyPath(error, token);
|
|
1976
2035
|
if (previousInjector) {
|
|
1977
2036
|
// We still have a parent injector, keep throwing
|
|
1978
|
-
throw
|
|
2037
|
+
throw error;
|
|
1979
2038
|
}
|
|
1980
2039
|
else {
|
|
1981
2040
|
// Format & throw the final error message when we don't have any previous injector
|
|
1982
|
-
|
|
2041
|
+
throw augmentRuntimeError(error, this.source);
|
|
1983
2042
|
}
|
|
1984
2043
|
}
|
|
1985
2044
|
else {
|
|
1986
|
-
throw
|
|
2045
|
+
throw error;
|
|
1987
2046
|
}
|
|
1988
2047
|
}
|
|
1989
2048
|
finally {
|
|
@@ -2085,7 +2144,7 @@ class R3Injector extends EnvironmentInjector {
|
|
|
2085
2144
|
const prevConsumer = setActiveConsumer(null);
|
|
2086
2145
|
try {
|
|
2087
2146
|
if (record.value === CIRCULAR) {
|
|
2088
|
-
|
|
2147
|
+
throw cyclicDependencyError(stringify(token));
|
|
2089
2148
|
}
|
|
2090
2149
|
else if (record.value === NOT_YET) {
|
|
2091
2150
|
record.value = CIRCULAR;
|
|
@@ -3930,5 +3989,5 @@ class ZoneAwareEffectScheduler {
|
|
|
3930
3989
|
}
|
|
3931
3990
|
}
|
|
3932
3991
|
|
|
3933
|
-
export { AFTER_RENDER_SEQUENCES_TO_ADD, CHILD_HEAD, CHILD_TAIL, CLEANUP, CONTAINER_HEADER_OFFSET, CONTEXT, ChangeDetectionScheduler, CheckNoChangesMode, DECLARATION_COMPONENT_VIEW, DECLARATION_LCONTAINER, DECLARATION_VIEW, DEHYDRATED_VIEWS, DOCUMENT, DestroyRef, EFFECTS, EFFECTS_TO_SCHEDULE, EMBEDDED_VIEW_INJECTOR, EMPTY_ARRAY, EMPTY_OBJ, ENVIRONMENT, ENVIRONMENT_INITIALIZER, EffectScheduler, EnvironmentInjector, ErrorHandler, FLAGS, HEADER_OFFSET, HOST, HYDRATION, ID, INJECTOR$1 as INJECTOR, INJECTOR as INJECTOR$1, INJECTOR_DEF_TYPES, INJECTOR_SCOPE, INTERNAL_APPLICATION_ERROR_HANDLER, InjectionToken, Injector, MATH_ML_NAMESPACE, MOVED_VIEWS, NATIVE, NEXT, NG_COMP_DEF, NG_DIR_DEF, NG_ELEMENT_ID, NG_FACTORY_DEF, NG_INJ_DEF, NG_MOD_DEF, NG_PIPE_DEF, NG_PROV_DEF, NodeInjectorDestroyRef, NullInjector, ON_DESTROY_HOOKS, PARENT, PREORDER_HOOK_FLAGS, PROVIDED_ZONELESS, PendingTasks, PendingTasksInternal, QUERIES, R3Injector, REACTIVE_TEMPLATE_CONSUMER, RENDERER, RuntimeError, SCHEDULE_IN_ROOT_ZONE, SVG_NAMESPACE, TVIEW, T_HOST, VIEW_REFS, ViewContext, XSS_SECURITY_URL, ZONELESS_ENABLED, ZONELESS_SCHEDULER_DISABLED, _global, addToArray, arrayEquals, arrayInsert2, arraySplice, assertComponentType, assertDefined, assertDirectiveDef, assertDomNode, assertElement, assertEqual, assertFirstCreatePass, assertFirstUpdatePass, assertFunction, assertGreaterThan, assertGreaterThanOrEqual, assertHasParent, assertInInjectionContext, assertIndexInDeclRange, assertIndexInExpandoRange, assertIndexInRange, assertInjectImplementationNotEqual, assertLContainer, assertLView, assertLessThan, assertNgModuleType, assertNodeInjector, assertNotDefined, assertNotEqual, assertNotInReactiveContext, assertNotReactive, assertNotSame, assertNumber, assertNumberInRange, assertOneOf, assertParentView, assertProjectionSlots, assertSame, assertString, assertTIcu, assertTNode, assertTNodeCreationIndex, assertTNodeForLView, assertTNodeForTView, attachInjectFlag, concatStringsWithSpace, convertToBitFlags, createInjector, createInjectorWithoutInjectorInstances, debugStringifyTypeForError, decreaseElementDepthCount, deepForEach, defineInjectable, emitEffectCreatedEvent, emitInjectEvent, emitInjectorToCreateInstanceEvent, emitInstanceCreatedByInjectorEvent, emitProviderConfiguredEvent, enterDI, enterSkipHydrationBlock, enterView, errorHandlerEnvironmentInitializer, fillProperties, flatten, formatRuntimeError, forwardRef, getBindingIndex, getBindingRoot, getBindingsEnabled, getClosureSafeProperty, getComponentDef, getComponentLViewByIndex, getConstant, getContextLView, getCurrentDirectiveDef, getCurrentDirectiveIndex, getCurrentParentTNode, getCurrentQueryIndex, getCurrentTNode, getCurrentTNodePlaceholderOk, getDirectiveDef, getDirectiveDefOrThrow, getElementDepthCount, getFactoryDef, getInjectableDef, getInjectorDef, getLView, getLViewParent, getNamespace, getNativeByIndex, getNativeByTNode, getNativeByTNodeOrNull, getNgModuleDef, getNgModuleDefOrThrow, getNullInjector, getOrCreateLViewCleanup, getOrCreateTViewCleanup, getPipeDef, getSelectedIndex, getSelectedTNode, getTNode, getTView, hasI18n, importProvidersFrom, increaseElementDepthCount, incrementBindingIndex, initNgDevMode, inject, injectRootLimpMode, internalImportProvidersFrom, isClassProvider, isComponentDef, isComponentHost, isContentQueryHost, isCreationMode, isCurrentTNodeParent, isDestroyed, isDirectiveHost, isEnvironmentProviders, isExhaustiveCheckNoChanges, isForwardRef, isInCheckNoChangesMode, isInI18nBlock, isInInjectionContext, isInSkipHydrationBlock, isInjectable, isLContainer, isLView, isProjectionTNode, isRefreshingViews, isRootView, isSignal, isSkipHydrationRootTNode, isStandalone, isTypeProvider, isWritableSignal, keyValueArrayGet, keyValueArrayIndexOf, keyValueArraySet, lastNodeWasCreated, leaveDI, leaveSkipHydrationBlock, leaveView, load, makeEnvironmentProviders, markAncestorsForTraversal, markViewForRefresh, newArray, nextBindingIndex, nextContextImpl, noop, provideBrowserGlobalErrorListeners, provideEnvironmentInitializer, providerToFactory, removeFromArray, removeLViewOnDestroy, renderStringify, requiresRefreshOrTraversal, resetPreOrderHookFlags, resolveForwardRef, runInInjectionContext, runInInjectorProfilerContext, setBindingIndex, setBindingRootForHostBindings, setCurrentDirectiveIndex, setCurrentQueryIndex, setCurrentTNode, setCurrentTNodeAsNotParent, setInI18nBlock, setInjectImplementation, setInjectorProfiler, setInjectorProfilerContext, setIsInCheckNoChangesMode, setIsRefreshingViews, setSelectedIndex, signal, signalAsReadonlyFn, store, storeCleanupWithContext, storeLViewOnDestroy, stringify, stringifyForError,
|
|
3992
|
+
export { AFTER_RENDER_SEQUENCES_TO_ADD, CHILD_HEAD, CHILD_TAIL, CLEANUP, CONTAINER_HEADER_OFFSET, CONTEXT, ChangeDetectionScheduler, CheckNoChangesMode, DECLARATION_COMPONENT_VIEW, DECLARATION_LCONTAINER, DECLARATION_VIEW, DEHYDRATED_VIEWS, DOCUMENT, DestroyRef, EFFECTS, EFFECTS_TO_SCHEDULE, EMBEDDED_VIEW_INJECTOR, EMPTY_ARRAY, EMPTY_OBJ, ENVIRONMENT, ENVIRONMENT_INITIALIZER, EffectScheduler, EnvironmentInjector, ErrorHandler, FLAGS, HEADER_OFFSET, HOST, HYDRATION, ID, INJECTOR$1 as INJECTOR, INJECTOR as INJECTOR$1, INJECTOR_DEF_TYPES, INJECTOR_SCOPE, INTERNAL_APPLICATION_ERROR_HANDLER, InjectionToken, Injector, MATH_ML_NAMESPACE, MOVED_VIEWS, NATIVE, NEXT, NG_COMP_DEF, NG_DIR_DEF, NG_ELEMENT_ID, NG_FACTORY_DEF, NG_INJ_DEF, NG_MOD_DEF, NG_PIPE_DEF, NG_PROV_DEF, NodeInjectorDestroyRef, NullInjector, ON_DESTROY_HOOKS, PARENT, PREORDER_HOOK_FLAGS, PROVIDED_ZONELESS, PendingTasks, PendingTasksInternal, QUERIES, R3Injector, REACTIVE_TEMPLATE_CONSUMER, RENDERER, RuntimeError, SCHEDULE_IN_ROOT_ZONE, SVG_NAMESPACE, TVIEW, T_HOST, VIEW_REFS, ViewContext, XSS_SECURITY_URL, ZONELESS_ENABLED, ZONELESS_SCHEDULER_DISABLED, _global, addToArray, arrayEquals, arrayInsert2, arraySplice, assertComponentType, assertDefined, assertDirectiveDef, assertDomNode, assertElement, assertEqual, assertFirstCreatePass, assertFirstUpdatePass, assertFunction, assertGreaterThan, assertGreaterThanOrEqual, assertHasParent, assertInInjectionContext, assertIndexInDeclRange, assertIndexInExpandoRange, assertIndexInRange, assertInjectImplementationNotEqual, assertLContainer, assertLView, assertLessThan, assertNgModuleType, assertNodeInjector, assertNotDefined, assertNotEqual, assertNotInReactiveContext, assertNotReactive, assertNotSame, assertNumber, assertNumberInRange, assertOneOf, assertParentView, assertProjectionSlots, assertSame, assertString, assertTIcu, assertTNode, assertTNodeCreationIndex, assertTNodeForLView, assertTNodeForTView, attachInjectFlag, concatStringsWithSpace, convertToBitFlags, createInjector, createInjectorWithoutInjectorInstances, cyclicDependencyError, cyclicDependencyErrorWithDetails, debugStringifyTypeForError, decreaseElementDepthCount, deepForEach, defineInjectable, emitEffectCreatedEvent, emitInjectEvent, emitInjectorToCreateInstanceEvent, emitInstanceCreatedByInjectorEvent, emitProviderConfiguredEvent, enterDI, enterSkipHydrationBlock, enterView, errorHandlerEnvironmentInitializer, fillProperties, flatten, formatRuntimeError, forwardRef, getBindingIndex, getBindingRoot, getBindingsEnabled, getClosureSafeProperty, getComponentDef, getComponentLViewByIndex, getConstant, getContextLView, getCurrentDirectiveDef, getCurrentDirectiveIndex, getCurrentParentTNode, getCurrentQueryIndex, getCurrentTNode, getCurrentTNodePlaceholderOk, getDirectiveDef, getDirectiveDefOrThrow, getElementDepthCount, getFactoryDef, getInjectableDef, getInjectorDef, getLView, getLViewParent, getNamespace, getNativeByIndex, getNativeByTNode, getNativeByTNodeOrNull, getNgModuleDef, getNgModuleDefOrThrow, getNullInjector, getOrCreateLViewCleanup, getOrCreateTViewCleanup, getPipeDef, getSelectedIndex, getSelectedTNode, getTNode, getTView, hasI18n, importProvidersFrom, increaseElementDepthCount, incrementBindingIndex, initNgDevMode, inject, injectRootLimpMode, internalImportProvidersFrom, isClassProvider, isComponentDef, isComponentHost, isContentQueryHost, isCreationMode, isCurrentTNodeParent, isDestroyed, isDirectiveHost, isEnvironmentProviders, isExhaustiveCheckNoChanges, isForwardRef, isInCheckNoChangesMode, isInI18nBlock, isInInjectionContext, isInSkipHydrationBlock, isInjectable, isLContainer, isLView, isProjectionTNode, isRefreshingViews, isRootView, isSignal, isSkipHydrationRootTNode, isStandalone, isTypeProvider, isWritableSignal, keyValueArrayGet, keyValueArrayIndexOf, keyValueArraySet, lastNodeWasCreated, leaveDI, leaveSkipHydrationBlock, leaveView, load, makeEnvironmentProviders, markAncestorsForTraversal, markViewForRefresh, newArray, nextBindingIndex, nextContextImpl, noop, provideBrowserGlobalErrorListeners, provideEnvironmentInitializer, providerToFactory, removeFromArray, removeLViewOnDestroy, renderStringify, requiresRefreshOrTraversal, resetPreOrderHookFlags, resolveForwardRef, runInInjectionContext, runInInjectorProfilerContext, setBindingIndex, setBindingRootForHostBindings, setCurrentDirectiveIndex, setCurrentQueryIndex, setCurrentTNode, setCurrentTNodeAsNotParent, setInI18nBlock, setInjectImplementation, setInjectorProfiler, setInjectorProfilerContext, setIsInCheckNoChangesMode, setIsRefreshingViews, setSelectedIndex, signal, signalAsReadonlyFn, store, storeCleanupWithContext, storeLViewOnDestroy, stringify, stringifyForError, throwError, throwProviderNotFoundError, truncateMiddle, unwrapLView, unwrapRNode, updateAncestorTraversalFlagsOnAttach, viewAttachedToChangeDetector, viewAttachedToContainer, walkProviderTree, walkUpViews, wasLastNodeCreated, ɵunwrapWritableSignal, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdisableBindings, ɵɵenableBindings, ɵɵinject, ɵɵinvalidFactoryDep, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵresetView, ɵɵrestoreView };
|
|
3934
3993
|
//# sourceMappingURL=root_effect_scheduler.mjs.map
|