@angular/core 14.1.3 → 14.2.0-rc.0

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.
Files changed (36) hide show
  1. package/esm2020/src/application_ref.mjs +26 -21
  2. package/esm2020/src/core_private_export.mjs +3 -3
  3. package/esm2020/src/core_render3_private_export.mjs +4 -4
  4. package/esm2020/src/di/interface/defs.mjs +4 -1
  5. package/esm2020/src/render3/component_ref.mjs +4 -31
  6. package/esm2020/src/render3/definition.mjs +5 -1
  7. package/esm2020/src/render3/index.mjs +4 -4
  8. package/esm2020/src/render3/instructions/change_detection.mjs +3 -19
  9. package/esm2020/src/render3/instructions/shared.mjs +1 -43
  10. package/esm2020/src/render3/interfaces/view.mjs +1 -1
  11. package/esm2020/src/render3/jit/module.mjs +2 -6
  12. package/esm2020/src/render3/util/change_detection_utils.mjs +7 -3
  13. package/esm2020/src/render3/util/misc_utils.mjs +1 -7
  14. package/esm2020/src/version.mjs +1 -1
  15. package/esm2020/testing/src/logger.mjs +3 -3
  16. package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
  17. package/esm2020/testing/src/resolvers.mjs +1 -1
  18. package/esm2020/testing/src/test_bed.mjs +442 -15
  19. package/esm2020/testing/src/test_bed_common.mjs +1 -1
  20. package/esm2020/testing/src/test_bed_compiler.mjs +823 -0
  21. package/esm2020/testing/src/test_hooks.mjs +5 -5
  22. package/esm2020/testing/src/testing.mjs +1 -1
  23. package/fesm2015/core.mjs +38 -116
  24. package/fesm2015/core.mjs.map +1 -1
  25. package/fesm2015/testing.mjs +114 -202
  26. package/fesm2015/testing.mjs.map +1 -1
  27. package/fesm2020/core.mjs +38 -116
  28. package/fesm2020/core.mjs.map +1 -1
  29. package/fesm2020/testing.mjs +114 -203
  30. package/fesm2020/testing.mjs.map +1 -1
  31. package/index.d.ts +13 -100
  32. package/package.json +1 -1
  33. package/testing/index.d.ts +18 -94
  34. package/esm2020/src/render3/interfaces/player.mjs +0 -9
  35. package/esm2020/testing/src/r3_test_bed.mjs +0 -433
  36. package/esm2020/testing/src/r3_test_bed_compiler.mjs +0 -823
package/fesm2020/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.1.3
2
+ * @license Angular v14.2.0-rc.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -429,6 +429,9 @@ function ɵɵdefineInjector(options) {
429
429
  function getInjectableDef(type) {
430
430
  return getOwnDefinition(type, NG_PROV_DEF) || getOwnDefinition(type, NG_INJECTABLE_DEF);
431
431
  }
432
+ function isInjectable(type) {
433
+ return getInjectableDef(type) !== null;
434
+ }
432
435
  /**
433
436
  * Return definition only if it is defined directly on `type` and is not inherited from a base
434
437
  * class of `type`.
@@ -1135,6 +1138,10 @@ function getDirectiveDef(type) {
1135
1138
  function getPipeDef$1(type) {
1136
1139
  return type[NG_PIPE_DEF] || null;
1137
1140
  }
1141
+ function isStandalone(type) {
1142
+ const def = getComponentDef(type) || getDirectiveDef(type) || getPipeDef$1(type);
1143
+ return def !== null ? def.standalone : false;
1144
+ }
1138
1145
  function getNgModuleDef(type, throwNotFound) {
1139
1146
  const ngModuleDef = type[NG_MOD_DEF] || null;
1140
1147
  if (!ngModuleDef && throwNotFound === true) {
@@ -7254,7 +7261,7 @@ class Version {
7254
7261
  /**
7255
7262
  * @publicApi
7256
7263
  */
7257
- const VERSION = new Version('14.1.3');
7264
+ const VERSION = new Version('14.2.0-rc.0');
7258
7265
 
7259
7266
  /**
7260
7267
  * @license
@@ -8111,11 +8118,6 @@ function discoverLocalRefs(lView, nodeIndex) {
8111
8118
  * Use of this source code is governed by an MIT-style license that can be
8112
8119
  * found in the LICENSE file at https://angular.io/license
8113
8120
  */
8114
- const defaultScheduler = (() => (typeof requestAnimationFrame !== 'undefined' &&
8115
- requestAnimationFrame || // browser only
8116
- setTimeout // everything else
8117
- )
8118
- .bind(_global))();
8119
8121
  /**
8120
8122
  *
8121
8123
  * @codeGenApi
@@ -11710,11 +11712,6 @@ class LContainerDebug {
11710
11712
  * Use of this source code is governed by an MIT-style license that can be
11711
11713
  * found in the LICENSE file at https://angular.io/license
11712
11714
  */
11713
- /**
11714
- * A permanent marker promise which signifies that the current CD tree is
11715
- * clean.
11716
- */
11717
- const _CLEAN_PROMISE = (() => Promise.resolve(null))();
11718
11715
  /**
11719
11716
  * Invoke `HostBindingsFunction`s for view.
11720
11717
  *
@@ -13212,42 +13209,6 @@ function markViewDirty(lView) {
13212
13209
  }
13213
13210
  return null;
13214
13211
  }
13215
- /**
13216
- * Used to schedule change detection on the whole application.
13217
- *
13218
- * Unlike `tick`, `scheduleTick` coalesces multiple calls into one change detection run.
13219
- * It is usually called indirectly by calling `markDirty` when the view needs to be
13220
- * re-rendered.
13221
- *
13222
- * Typically `scheduleTick` uses `requestAnimationFrame` to coalesce multiple
13223
- * `scheduleTick` requests. The scheduling function can be overridden in
13224
- * `renderComponent`'s `scheduler` option.
13225
- */
13226
- function scheduleTick(rootContext, flags) {
13227
- const nothingScheduled = rootContext.flags === 0 /* RootContextFlags.Empty */;
13228
- if (nothingScheduled && rootContext.clean == _CLEAN_PROMISE) {
13229
- // https://github.com/angular/angular/issues/39296
13230
- // should only attach the flags when really scheduling a tick
13231
- rootContext.flags |= flags;
13232
- let res;
13233
- rootContext.clean = new Promise((r) => res = r);
13234
- rootContext.scheduler(() => {
13235
- if (rootContext.flags & 1 /* RootContextFlags.DetectChanges */) {
13236
- rootContext.flags &= ~1 /* RootContextFlags.DetectChanges */;
13237
- tickRootContext(rootContext);
13238
- }
13239
- if (rootContext.flags & 2 /* RootContextFlags.FlushPlayers */) {
13240
- rootContext.flags &= ~2 /* RootContextFlags.FlushPlayers */;
13241
- const playerHandler = rootContext.playerHandler;
13242
- if (playerHandler) {
13243
- playerHandler.flushPlayers();
13244
- }
13245
- }
13246
- rootContext.clean = _CLEAN_PROMISE;
13247
- res(null);
13248
- });
13249
- }
13250
- }
13251
13212
  function tickRootContext(rootContext) {
13252
13213
  for (let i = 0; i < rootContext.components.length; i++) {
13253
13214
  const rootComponent = rootContext.components[i];
@@ -13356,7 +13317,6 @@ function storePropertyBindingMetadata(tData, tNode, propertyName, bindingIndex,
13356
13317
  }
13357
13318
  }
13358
13319
  }
13359
- const CLEAN_PROMISE = _CLEAN_PROMISE;
13360
13320
  function getOrCreateLViewCleanup(view) {
13361
13321
  // top level variables should not be exported for performance reasons (PERF_NOTES.md)
13362
13322
  return view[CLEANUP] || (view[CLEANUP] = ngDevMode ? new LCleanup() : []);
@@ -14115,14 +14075,8 @@ function createRootComponent(componentView, componentDef, rootLView, rootContext
14115
14075
  }
14116
14076
  return component;
14117
14077
  }
14118
- function createRootContext(scheduler, playerHandler) {
14119
- return {
14120
- components: [],
14121
- scheduler: scheduler || defaultScheduler,
14122
- clean: CLEAN_PROMISE,
14123
- playerHandler: playerHandler || null,
14124
- flags: 0 /* RootContextFlags.Empty */
14125
- };
14078
+ function createRootContext() {
14079
+ return { components: [] };
14126
14080
  }
14127
14081
  /**
14128
14082
  * Used to enable lifecycle hooks on the root component.
@@ -14142,25 +14096,6 @@ function LifecycleHooksFeature() {
14142
14096
  ngDevMode && assertDefined(tNode, 'TNode is required');
14143
14097
  registerPostOrderHooks(getLView()[TVIEW], tNode);
14144
14098
  }
14145
- /**
14146
- * Wait on component until it is rendered.
14147
- *
14148
- * This function returns a `Promise` which is resolved when the component's
14149
- * change detection is executed. This is determined by finding the scheduler
14150
- * associated with the `component`'s render tree and waiting until the scheduler
14151
- * flushes. If nothing is scheduled, the function returns a resolved promise.
14152
- *
14153
- * Example:
14154
- * ```
14155
- * await whenRendered(myComponent);
14156
- * ```
14157
- *
14158
- * @param component Component to wait upon
14159
- * @returns Promise which resolves when the component is rendered.
14160
- */
14161
- function whenRendered(component) {
14162
- return getRootContext(component).clean;
14163
- }
14164
14099
 
14165
14100
  /**
14166
14101
  * @license
@@ -15145,21 +15080,6 @@ function detectChanges(component) {
15145
15080
  const view = getComponentViewByInstance(component);
15146
15081
  detectChangesInternal(view[TVIEW], view, component);
15147
15082
  }
15148
- /**
15149
- * Marks the component as dirty (needing change detection). Marking a component dirty will
15150
- * schedule a change detection on it at some point in the future.
15151
- *
15152
- * Marking an already dirty component as dirty won't do anything. Only one outstanding change
15153
- * detection can be scheduled per component tree.
15154
- *
15155
- * @param component Component to mark as dirty.
15156
- */
15157
- function markDirty(component) {
15158
- ngDevMode && assertDefined(component, 'component');
15159
- const rootView = markViewDirty(getComponentViewByInstance(component));
15160
- ngDevMode && assertDefined(rootView[CONTEXT], 'rootContext should be defined');
15161
- scheduleTick(rootView[CONTEXT], 1 /* RootContextFlags.DetectChanges */);
15162
- }
15163
15083
 
15164
15084
  /**
15165
15085
  * @license
@@ -24344,10 +24264,6 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
24344
24264
  configurable: !!ngDevMode,
24345
24265
  });
24346
24266
  }
24347
- function isStandalone(type) {
24348
- const def = getComponentDef(type) || getDirectiveDef(type) || getPipeDef$1(type);
24349
- return def !== null ? def.standalone : false;
24350
- }
24351
24267
  function generateStandaloneInDeclarationsError(type, location) {
24352
24268
  const prefix = `Unexpected "${stringifyForError(type)}" found in the "declarations" array of the`;
24353
24269
  const suffix = `"${stringifyForError(type)}" is marked as standalone and can't be declared ` +
@@ -25946,7 +25862,8 @@ class CompilerFactory {
25946
25862
  * @globalApi ng
25947
25863
  */
25948
25864
  function applyChanges(component) {
25949
- markDirty(component);
25865
+ ngDevMode && assertDefined(component, 'component');
25866
+ markViewDirty(getComponentViewByInstance(component));
25950
25867
  getRootComponents(component).forEach(rootComponent => detectChanges(rootComponent));
25951
25868
  }
25952
25869
 
@@ -26875,7 +26792,8 @@ function runPlatformInitializers(injector) {
26875
26792
  }
26876
26793
  }
26877
26794
  /**
26878
- * Internal bootstrap application API that implements the core bootstrap logic.
26795
+ * Internal create application API that implements the core application creation logic and optional
26796
+ * bootstrap logic.
26879
26797
  *
26880
26798
  * Platforms (such as `platform-browser`) may require different set of application and platform
26881
26799
  * providers for an application to function correctly. As a result, platforms may use this function
@@ -26884,11 +26802,13 @@ function runPlatformInitializers(injector) {
26884
26802
  *
26885
26803
  * @returns A promise that returns an `ApplicationRef` instance once resolved.
26886
26804
  */
26887
- function internalBootstrapApplication(config) {
26805
+ function internalCreateApplication(config) {
26888
26806
  const { rootComponent, appProviders, platformProviders } = config;
26889
- NG_DEV_MODE && assertStandaloneComponentType(rootComponent);
26807
+ if (NG_DEV_MODE && rootComponent !== undefined) {
26808
+ assertStandaloneComponentType(rootComponent);
26809
+ }
26890
26810
  const platformInjector = createOrReusePlatformInjector(platformProviders);
26891
- const ngZone = new NgZone(getNgZoneOptions());
26811
+ const ngZone = getNgZone('zone.js', getNgZoneOptions());
26892
26812
  return ngZone.run(() => {
26893
26813
  // Create root application injector based on a set of providers configured at the platform
26894
26814
  // bootstrap level as well as providers passed to the bootstrap call by a user.
@@ -26896,8 +26816,8 @@ function internalBootstrapApplication(config) {
26896
26816
  { provide: NgZone, useValue: ngZone },
26897
26817
  ...(appProviders || []), //
26898
26818
  ];
26899
- const appInjector = createEnvironmentInjector(allAppProviders, platformInjector, 'Environment Injector');
26900
- const exceptionHandler = appInjector.get(ErrorHandler, null);
26819
+ const envInjector = createEnvironmentInjector(allAppProviders, platformInjector, 'Environment Injector');
26820
+ const exceptionHandler = envInjector.get(ErrorHandler, null);
26901
26821
  if (NG_DEV_MODE && !exceptionHandler) {
26902
26822
  throw new RuntimeError(402 /* RuntimeErrorCode.ERROR_HANDLER_NOT_FOUND */, 'No `ErrorHandler` found in the Dependency Injection tree.');
26903
26823
  }
@@ -26909,23 +26829,25 @@ function internalBootstrapApplication(config) {
26909
26829
  }
26910
26830
  });
26911
26831
  });
26832
+ // If the whole platform is destroyed, invoke the `destroy` method
26833
+ // for all bootstrapped applications as well.
26834
+ const destroyListener = () => envInjector.destroy();
26835
+ const onPlatformDestroyListeners = platformInjector.get(PLATFORM_DESTROY_LISTENERS);
26836
+ onPlatformDestroyListeners.add(destroyListener);
26837
+ envInjector.onDestroy(() => {
26838
+ onErrorSubscription.unsubscribe();
26839
+ onPlatformDestroyListeners.delete(destroyListener);
26840
+ });
26912
26841
  return _callAndReportToErrorHandler(exceptionHandler, ngZone, () => {
26913
- const initStatus = appInjector.get(ApplicationInitStatus);
26842
+ const initStatus = envInjector.get(ApplicationInitStatus);
26914
26843
  initStatus.runInitializers();
26915
26844
  return initStatus.donePromise.then(() => {
26916
- const localeId = appInjector.get(LOCALE_ID, DEFAULT_LOCALE_ID);
26845
+ const localeId = envInjector.get(LOCALE_ID, DEFAULT_LOCALE_ID);
26917
26846
  setLocaleId(localeId || DEFAULT_LOCALE_ID);
26918
- const appRef = appInjector.get(ApplicationRef);
26919
- // If the whole platform is destroyed, invoke the `destroy` method
26920
- // for all bootstrapped applications as well.
26921
- const destroyListener = () => appRef.destroy();
26922
- const onPlatformDestroyListeners = platformInjector.get(PLATFORM_DESTROY_LISTENERS, null);
26923
- onPlatformDestroyListeners?.add(destroyListener);
26924
- appRef.onDestroy(() => {
26925
- onPlatformDestroyListeners?.delete(destroyListener);
26926
- onErrorSubscription.unsubscribe();
26927
- });
26928
- appRef.bootstrap(rootComponent);
26847
+ const appRef = envInjector.get(ApplicationRef);
26848
+ if (rootComponent !== undefined) {
26849
+ appRef.bootstrap(rootComponent);
26850
+ }
26929
26851
  return appRef;
26930
26852
  });
26931
26853
  });
@@ -29897,5 +29819,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
29897
29819
  * Generated bundle index. Do not edit.
29898
29820
  */
29899
29821
 
29900
- export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, platformCore, reflectComponentType, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, ViewRef$1 as ɵViewRef, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getDebugNode as ɵgetDebugNode, getDebugNodeR2 as ɵgetDebugNodeR2, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalBootstrapApplication as ɵinternalBootstrapApplication, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isStandalone as ɵisStandalone, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, whenRendered as ɵwhenRendered, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵStandaloneFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcontentQuery, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryRefresh, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵviewQuery };
29822
+ export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, platformCore, reflectComponentType, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, ViewRef$1 as ɵViewRef, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, getDebugNode as ɵgetDebugNode, getDebugNodeR2 as ɵgetDebugNodeR2, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isInjectable as ɵisInjectable, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isStandalone as ɵisStandalone, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵStandaloneFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcontentQuery, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryRefresh, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵviewQuery };
29901
29823
  //# sourceMappingURL=core.mjs.map