@angular/core 17.0.0 → 17.0.2

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 (40) hide show
  1. package/esm2022/src/application_ref.mjs +1 -1
  2. package/esm2022/src/core_private_export.mjs +2 -2
  3. package/esm2022/src/core_render3_private_export.mjs +2 -2
  4. package/esm2022/src/defer/instructions.mjs +3 -3
  5. package/esm2022/src/hydration/api.mjs +3 -3
  6. package/esm2022/src/image_performance_warning.mjs +4 -4
  7. package/esm2022/src/linker/component_factory.mjs +1 -3
  8. package/esm2022/src/linker/view_ref.mjs +1 -1
  9. package/esm2022/src/render3/after_render_hooks.mjs +4 -4
  10. package/esm2022/src/render3/component_ref.mjs +3 -3
  11. package/esm2022/src/render3/features/standalone_feature.mjs +3 -6
  12. package/esm2022/src/render3/instructions/change_detection.mjs +22 -19
  13. package/esm2022/src/render3/instructions/control_flow.mjs +4 -7
  14. package/esm2022/src/render3/list_reconciliation.mjs +5 -4
  15. package/esm2022/src/render3/metadata.mjs +20 -20
  16. package/esm2022/src/render3/view_ref.mjs +5 -28
  17. package/esm2022/src/util/performance.mjs +9 -4
  18. package/esm2022/src/version.mjs +1 -1
  19. package/esm2022/testing/src/logger.mjs +3 -3
  20. package/esm2022/testing/src/test_bed.mjs +3 -3
  21. package/esm2022/testing/src/test_bed_compiler.mjs +7 -7
  22. package/fesm2022/core.mjs +70 -92
  23. package/fesm2022/core.mjs.map +1 -1
  24. package/fesm2022/primitives/signals.mjs +1 -1
  25. package/fesm2022/rxjs-interop.mjs +1 -1
  26. package/fesm2022/testing.mjs +8 -8
  27. package/fesm2022/testing.mjs.map +1 -1
  28. package/index.d.ts +12 -17
  29. package/package.json +1 -1
  30. package/primitives/signals/index.d.ts +1 -1
  31. package/rxjs-interop/index.d.ts +1 -1
  32. package/schematics/migrations/block-template-entities/bundle.js +160 -160
  33. package/schematics/migrations/block-template-entities/bundle.js.map +1 -1
  34. package/schematics/migrations/compiler-options/bundle.js +13 -13
  35. package/schematics/migrations/transfer-state/bundle.js +13 -13
  36. package/schematics/ng-generate/control-flow-migration/bundle.js +494 -370
  37. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  38. package/schematics/ng-generate/standalone-migration/bundle.js +506 -446
  39. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  40. package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.0
2
+ * @license Angular v17.0.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -10253,8 +10253,6 @@ class ComponentRef$1 {
10253
10253
  * Instantiate a factory for a given type of component with `resolveComponentFactory()`.
10254
10254
  * Use the resulting `ComponentFactory.create()` method to create a component of that type.
10255
10255
  *
10256
- * @see [Dynamic Components](guide/dynamic-component-loader)
10257
- *
10258
10256
  * @publicApi
10259
10257
  *
10260
10258
  * @deprecated Angular no longer requires Component factories. Please use other APIs where
@@ -10425,7 +10423,7 @@ class Version {
10425
10423
  /**
10426
10424
  * @publicApi
10427
10425
  */
10428
- const VERSION = new Version('17.0.0');
10426
+ const VERSION = new Version('17.0.2');
10429
10427
 
10430
10428
  // This default value is when checking the hierarchy for a token.
10431
10429
  //
@@ -13306,24 +13304,7 @@ function detectChangesInternal(tView, lView, context, notifyErrorHandler = true)
13306
13304
  }
13307
13305
  try {
13308
13306
  refreshView(tView, lView, tView.template, context);
13309
- let retries = 0;
13310
- // If after running change detection, this view still needs to be refreshed or there are
13311
- // descendants views that need to be refreshed due to re-dirtying during the change detection
13312
- // run, detect changes on the view again. We run change detection in `Targeted` mode to only
13313
- // refresh views with the `RefreshView` flag.
13314
- while (lView[FLAGS] & (1024 /* LViewFlags.RefreshView */ | 8192 /* LViewFlags.HasChildViewsToRefresh */) ||
13315
- lView[REACTIVE_TEMPLATE_CONSUMER]?.dirty) {
13316
- if (retries === MAXIMUM_REFRESH_RERUNS) {
13317
- throw new RuntimeError(103 /* RuntimeErrorCode.INFINITE_CHANGE_DETECTION */, ngDevMode &&
13318
- 'Infinite change detection while trying to refresh views. ' +
13319
- 'There may be components which each cause the other to require a refresh, ' +
13320
- 'causing an infinite loop.');
13321
- }
13322
- retries++;
13323
- // Even if this view is detached, we still detect changes in targeted mode because this was
13324
- // the root of the change detection run.
13325
- detectChangesInView(lView, 1 /* ChangeDetectionMode.Targeted */);
13326
- }
13307
+ detectChangesInViewWhileDirty(lView);
13327
13308
  }
13328
13309
  catch (error) {
13329
13310
  if (notifyErrorHandler) {
@@ -13342,6 +13323,26 @@ function detectChangesInternal(tView, lView, context, notifyErrorHandler = true)
13342
13323
  }
13343
13324
  }
13344
13325
  }
13326
+ function detectChangesInViewWhileDirty(lView) {
13327
+ let retries = 0;
13328
+ // If after running change detection, this view still needs to be refreshed or there are
13329
+ // descendants views that need to be refreshed due to re-dirtying during the change detection
13330
+ // run, detect changes on the view again. We run change detection in `Targeted` mode to only
13331
+ // refresh views with the `RefreshView` flag.
13332
+ while (lView[FLAGS] & (1024 /* LViewFlags.RefreshView */ | 8192 /* LViewFlags.HasChildViewsToRefresh */) ||
13333
+ lView[REACTIVE_TEMPLATE_CONSUMER]?.dirty) {
13334
+ if (retries === MAXIMUM_REFRESH_RERUNS) {
13335
+ throw new RuntimeError(103 /* RuntimeErrorCode.INFINITE_CHANGE_DETECTION */, ngDevMode &&
13336
+ 'Infinite change detection while trying to refresh views. ' +
13337
+ 'There may be components which each cause the other to require a refresh, ' +
13338
+ 'causing an infinite loop.');
13339
+ }
13340
+ retries++;
13341
+ // Even if this view is detached, we still detect changes in targeted mode because this was
13342
+ // the root of the change detection run.
13343
+ detectChangesInView(lView, 1 /* ChangeDetectionMode.Targeted */);
13344
+ }
13345
+ }
13345
13346
  function checkNoChangesInternal(tView, lView, context, notifyErrorHandler = true) {
13346
13347
  setIsInCheckNoChangesMode(true);
13347
13348
  try {
@@ -13685,9 +13686,10 @@ class ViewRef$1 {
13685
13686
  *
13686
13687
  * This may be different from `_lView` if the `_cdRefInjectingView` is an embedded view.
13687
13688
  */
13688
- _cdRefInjectingView) {
13689
+ _cdRefInjectingView, notifyErrorHandler = true) {
13689
13690
  this._lView = _lView;
13690
13691
  this._cdRefInjectingView = _cdRefInjectingView;
13692
+ this.notifyErrorHandler = notifyErrorHandler;
13691
13693
  this._appRef = null;
13692
13694
  this._attachedToViewContainer = false;
13693
13695
  }
@@ -13905,7 +13907,7 @@ class ViewRef$1 {
13905
13907
  * See {@link ChangeDetectorRef#detach} for more information.
13906
13908
  */
13907
13909
  detectChanges() {
13908
- detectChangesInternal(this._lView[TVIEW], this._lView, this.context);
13910
+ detectChangesInternal(this._lView[TVIEW], this._lView, this.context, this.notifyErrorHandler);
13909
13911
  }
13910
13912
  /**
13911
13913
  * Checks the change detector and its children, and throws if any changes are detected.
@@ -13915,7 +13917,7 @@ class ViewRef$1 {
13915
13917
  */
13916
13918
  checkNoChanges() {
13917
13919
  if (ngDevMode) {
13918
- checkNoChangesInternal(this._lView[TVIEW], this._lView, this.context);
13920
+ checkNoChangesInternal(this._lView[TVIEW], this._lView, this.context, this.notifyErrorHandler);
13919
13921
  }
13920
13922
  }
13921
13923
  attachToViewContainerRef() {
@@ -13935,30 +13937,6 @@ class ViewRef$1 {
13935
13937
  this._appRef = appRef;
13936
13938
  }
13937
13939
  }
13938
- /** @internal */
13939
- class RootViewRef extends ViewRef$1 {
13940
- constructor(_view) {
13941
- super(_view);
13942
- this._view = _view;
13943
- }
13944
- detectChanges() {
13945
- const lView = this._view;
13946
- const tView = lView[TVIEW];
13947
- const context = lView[CONTEXT];
13948
- detectChangesInternal(tView, lView, context, false);
13949
- }
13950
- checkNoChanges() {
13951
- if (ngDevMode) {
13952
- const lView = this._view;
13953
- const tView = lView[TVIEW];
13954
- const context = lView[CONTEXT];
13955
- checkNoChangesInternal(tView, lView, context, false);
13956
- }
13957
- }
13958
- get context() {
13959
- return null;
13960
- }
13961
- }
13962
13940
 
13963
13941
  /**
13964
13942
  * Base class that provides change detection functionality.
@@ -14284,16 +14262,21 @@ function effect(effectFn, options) {
14284
14262
  // clang-format off
14285
14263
  // clang-format on
14286
14264
 
14265
+ const markedFeatures = new Set();
14287
14266
  // tslint:disable:ban
14288
14267
  /**
14289
- * A guarded `performance.mark`.
14268
+ * A guarded `performance.mark` for feature marking.
14290
14269
  *
14291
14270
  * This method exists because while all supported browser and node.js version supported by Angular
14292
14271
  * support performance.mark API. This is not the case for other environments such as JSDOM and
14293
14272
  * Cloudflare workers.
14294
14273
  */
14295
- function performanceMark(markName, markOptions) {
14296
- return performance?.mark?.(markName, markOptions);
14274
+ function performanceMarkFeature(feature) {
14275
+ if (markedFeatures.has(feature)) {
14276
+ return;
14277
+ }
14278
+ markedFeatures.add(feature);
14279
+ performance?.mark?.('mark_use_counter', { detail: { feature } });
14297
14280
  }
14298
14281
 
14299
14282
  /// <reference types="rxjs" />
@@ -15012,7 +14995,7 @@ function afterRender(callback, options) {
15012
14995
  if (!isPlatformBrowser(injector)) {
15013
14996
  return NOOP_AFTER_RENDER_REF;
15014
14997
  }
15015
- performanceMark('mark_use_counter', { detail: { feature: 'NgAfterRender' } });
14998
+ performanceMarkFeature('NgAfterRender');
15016
14999
  const afterRenderEventManager = injector.get(AfterRenderEventManager);
15017
15000
  // Lazily initialize the handler implementation, if necessary. This is so that it can be
15018
15001
  // tree-shaken if `afterRender` and `afterNextRender` aren't used.
@@ -15082,7 +15065,7 @@ function afterNextRender(callback, options) {
15082
15065
  if (!isPlatformBrowser(injector)) {
15083
15066
  return NOOP_AFTER_RENDER_REF;
15084
15067
  }
15085
- performanceMark('mark_use_counter', { detail: { feature: 'NgAfterNextRender' } });
15068
+ performanceMarkFeature('NgAfterNextRender');
15086
15069
  const afterRenderEventManager = injector.get(AfterRenderEventManager);
15087
15070
  // Lazily initialize the handler implementation, if necessary. This is so that it can be
15088
15071
  // tree-shaken if `afterRender` and `afterNextRender` aren't used.
@@ -15573,7 +15556,7 @@ class ComponentRef extends ComponentRef$1 {
15573
15556
  this._tNode = _tNode;
15574
15557
  this.previousInputValues = null;
15575
15558
  this.instance = instance;
15576
- this.hostView = this.changeDetectorRef = new RootViewRef(_rootLView);
15559
+ this.hostView = this.changeDetectorRef = new ViewRef$1(_rootLView, undefined, /* _cdRefInjectingView */ false);
15577
15560
  this.componentType = componentType;
15578
15561
  }
15579
15562
  setInput(name, value) {
@@ -19668,7 +19651,9 @@ function reconcile(liveCollection, newCollection, trackByFn) {
19668
19651
  liveCollection.destroy(liveCollection.detach(liveEndIdx--));
19669
19652
  }
19670
19653
  // - destroy items that were detached but never attached again.
19671
- detachedItems?.forEach(item => liveCollection.destroy(item));
19654
+ detachedItems?.forEach(item => {
19655
+ liveCollection.destroy(item);
19656
+ });
19672
19657
  }
19673
19658
  function attachPreviouslyDetached(prevCollection, detachedItems, index, key) {
19674
19659
  if (detachedItems !== undefined && detachedItems.has(key)) {
@@ -19705,8 +19690,7 @@ class MultiMap {
19705
19690
  delete(key) {
19706
19691
  const listOfKeys = this.map.get(key);
19707
19692
  if (listOfKeys !== undefined) {
19708
- // THINK: pop from the end or shift from the front? "Correct" vs. "slow".
19709
- listOfKeys.pop();
19693
+ listOfKeys.shift();
19710
19694
  return true;
19711
19695
  }
19712
19696
  return false;
@@ -20330,9 +20314,6 @@ function enableLocateOrCreateContainerAnchorImpl() {
20330
20314
  _locateOrCreateContainerAnchor = locateOrCreateContainerAnchorImpl;
20331
20315
  }
20332
20316
 
20333
- const PERF_MARK_CONTROL_FLOW = {
20334
- detail: { feature: 'NgControlFlow' }
20335
- };
20336
20317
  /**
20337
20318
  * The conditional instruction represents the basic building block on the runtime side to support
20338
20319
  * built-in "if" and "switch". On the high level this instruction is responsible for adding and
@@ -20345,7 +20326,7 @@ const PERF_MARK_CONTROL_FLOW = {
20345
20326
  * @codeGenApi
20346
20327
  */
20347
20328
  function ɵɵconditional(containerIndex, matchingTemplateIndex, value) {
20348
- performanceMark('mark_use_counter', PERF_MARK_CONTROL_FLOW);
20329
+ performanceMarkFeature('NgControlFlow');
20349
20330
  const hostLView = getLView();
20350
20331
  const bindingIndex = nextBindingIndex();
20351
20332
  const lContainer = getLContainer(hostLView, HEADER_OFFSET + containerIndex);
@@ -20441,7 +20422,7 @@ class RepeaterMetadata {
20441
20422
  * @codeGenApi
20442
20423
  */
20443
20424
  function ɵɵrepeaterCreate(index, templateFn, decls, vars, tagName, attrsIndex, trackByFn, trackByUsesComponentInstance, emptyTemplateFn, emptyDecls, emptyVars) {
20444
- performanceMark('mark_use_counter', PERF_MARK_CONTROL_FLOW);
20425
+ performanceMarkFeature('NgControlFlow');
20445
20426
  const hasEmptyBlock = emptyTemplateFn !== undefined;
20446
20427
  const hostLView = getLView();
20447
20428
  const boundTrackBy = trackByUsesComponentInstance ?
@@ -21423,7 +21404,7 @@ function ɵɵdefer(index, primaryTmplIndex, dependencyResolverFn, loadingTmplInd
21423
21404
  const adjustedIndex = index + HEADER_OFFSET;
21424
21405
  ɵɵtemplate(index, null, 0, 0);
21425
21406
  if (tView.firstCreatePass) {
21426
- performanceMark('mark_use_counter', { detail: { feature: 'NgDefer' } });
21407
+ performanceMarkFeature('NgDefer');
21427
21408
  const tDetails = {
21428
21409
  primaryTmplIndex,
21429
21410
  loadingTmplIndex: loadingTmplIndex ?? null,
@@ -26744,9 +26725,6 @@ class StandaloneService {
26744
26725
  factory: () => new StandaloneService(ɵɵinject(EnvironmentInjector)),
26745
26726
  }); }
26746
26727
  }
26747
- const PERF_MARK_STANDALONE = {
26748
- detail: { feature: 'NgStandalone' }
26749
- };
26750
26728
  /**
26751
26729
  * A feature that acts as a setup code for the {@link StandaloneService}.
26752
26730
  *
@@ -26758,7 +26736,7 @@ const PERF_MARK_STANDALONE = {
26758
26736
  * @codeGenApi
26759
26737
  */
26760
26738
  function ɵɵStandaloneFeature(definition) {
26761
- performanceMark('mark_use_counter', PERF_MARK_STANDALONE);
26739
+ performanceMarkFeature('NgStandalone');
26762
26740
  definition.getStandaloneInjector = (parentInjector) => {
26763
26741
  return parentInjector.get(StandaloneService).getOrCreateStandaloneInjector(definition);
26764
26742
  };
@@ -27196,22 +27174,23 @@ function assertDomElement(value) {
27196
27174
  }
27197
27175
 
27198
27176
  /**
27199
- * The name of a field that Angular monkey-patches onto a class
27200
- * to keep track of the Promise that represents dependency loading
27201
- * state.
27177
+ * The name of a field that Angular monkey-patches onto a component
27178
+ * class to store a function that loads defer-loadable dependencies
27179
+ * and applies metadata to a class.
27202
27180
  */
27203
- const ASYNC_COMPONENT_METADATA = '__ngAsyncComponentMetadata__';
27181
+ const ASYNC_COMPONENT_METADATA_FN = '__ngAsyncComponentMetadataFn__';
27204
27182
  /**
27205
- * If a given component has unresolved async metadata - this function returns a reference to
27206
- * a Promise that represents dependency loading. Otherwise - this function returns `null`.
27183
+ * If a given component has unresolved async metadata - returns a reference
27184
+ * to a function that applies component metadata after resolving defer-loadable
27185
+ * dependencies. Otherwise - this function returns `null`.
27207
27186
  */
27208
- function getAsyncClassMetadata(type) {
27209
- const componentClass = type; // cast to `any`, so that we can monkey-patch it
27210
- return componentClass[ASYNC_COMPONENT_METADATA] ?? null;
27187
+ function getAsyncClassMetadataFn(type) {
27188
+ const componentClass = type; // cast to `any`, so that we can read a monkey-patched field
27189
+ return componentClass[ASYNC_COMPONENT_METADATA_FN] ?? null;
27211
27190
  }
27212
27191
  /**
27213
27192
  * Handles the process of applying metadata info to a component class in case
27214
- * component template had defer blocks (thus some dependencies became deferrable).
27193
+ * component template has defer blocks (thus some dependencies became deferrable).
27215
27194
  *
27216
27195
  * @param type Component class where metadata should be added
27217
27196
  * @param dependencyLoaderFn Function that loads dependencies
@@ -27219,15 +27198,14 @@ function getAsyncClassMetadata(type) {
27219
27198
  */
27220
27199
  function setClassMetadataAsync(type, dependencyLoaderFn, metadataSetterFn) {
27221
27200
  const componentClass = type; // cast to `any`, so that we can monkey-patch it
27222
- componentClass[ASYNC_COMPONENT_METADATA] =
27223
- Promise.all(dependencyLoaderFn()).then(dependencies => {
27224
- metadataSetterFn(...dependencies);
27225
- // Metadata is now set, reset field value to indicate that this component
27226
- // can by used/compiled synchronously.
27227
- componentClass[ASYNC_COMPONENT_METADATA] = null;
27228
- return dependencies;
27229
- });
27230
- return componentClass[ASYNC_COMPONENT_METADATA];
27201
+ componentClass[ASYNC_COMPONENT_METADATA_FN] = () => Promise.all(dependencyLoaderFn()).then(dependencies => {
27202
+ metadataSetterFn(...dependencies);
27203
+ // Metadata is now set, reset field value to indicate that this component
27204
+ // can by used/compiled synchronously.
27205
+ componentClass[ASYNC_COMPONENT_METADATA_FN] = null;
27206
+ return dependencies;
27207
+ });
27208
+ return componentClass[ASYNC_COMPONENT_METADATA_FN];
27231
27209
  }
27232
27210
  /**
27233
27211
  * Adds decorator, constructor, and property metadata to a given type via static metadata fields
@@ -30428,18 +30406,18 @@ class ImagePerformanceWarning {
30428
30406
  }], null, null); })();
30429
30407
  function logLazyLCPWarning(src) {
30430
30408
  console.warn(formatRuntimeError(-913 /* RuntimeErrorCode.IMAGE_PERFORMANCE_WARNING */, `An image with src ${src} is the Largest Contentful Paint (LCP) element ` +
30431
- `but was given a "loading" value of "lazy", which can negatively impact` +
30409
+ `but was given a "loading" value of "lazy", which can negatively impact ` +
30432
30410
  `application loading performance. This warning can be addressed by ` +
30433
30411
  `changing the loading value of the LCP image to "eager", or by using the ` +
30434
30412
  `NgOptimizedImage directive's prioritization utilities. For more ` +
30435
30413
  `information about addressing or disabling this warning, see ` +
30436
- `https://angular.io/errors/NG2965`));
30414
+ `https://angular.io/errors/NG0913`));
30437
30415
  }
30438
30416
  function logOversizedImageWarning(src) {
30439
30417
  console.warn(formatRuntimeError(-913 /* RuntimeErrorCode.IMAGE_PERFORMANCE_WARNING */, `An image with src ${src} has intrinsic file dimensions much larger than its ` +
30440
30418
  `rendered size. This can negatively impact application loading performance. ` +
30441
30419
  `For more information about addressing or disabling this warning, see ` +
30442
- `https://angular.io/errors/NG2965`));
30420
+ `https://angular.io/errors/NG0913`));
30443
30421
  }
30444
30422
 
30445
30423
  /**
@@ -34592,7 +34570,7 @@ function withDomHydration() {
34592
34570
  }
34593
34571
  }
34594
34572
  if (isEnabled) {
34595
- performanceMark('mark_use_counter', { detail: { feature: 'NgHydration' } });
34573
+ performanceMarkFeature('NgHydration');
34596
34574
  }
34597
34575
  return isEnabled;
34598
34576
  },
@@ -35006,5 +34984,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
35006
34984
  * Generated bundle index. Do not edit.
35007
34985
  */
35008
34986
 
35009
- export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, 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, DestroyRef, 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, Renderer2, RendererFactory2, RendererStyleFlags2, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, afterNextRender, afterRender, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, numberAttribute, platformCore, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderEventManager as ɵAfterRenderEventManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, InitialRenderPendingTasks as ɵInitialRenderPendingTasks, 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, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, ZoneAwareQueueingScheduler as ɵZoneAwareQueueingScheduler, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadata as ɵgetAsyncClassMetadata, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, 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, internalAfterNextRender as ɵinternalAfterNextRender, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMark as ɵperformanceMark, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵ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, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵ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, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵ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, ɵɵvalidateIframeAttribute, ɵɵviewQuery };
34987
+ export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, 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, DestroyRef, 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, Renderer2, RendererFactory2, RendererStyleFlags2, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, afterNextRender, afterRender, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, numberAttribute, platformCore, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderEventManager as ɵAfterRenderEventManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, InitialRenderPendingTasks as ɵInitialRenderPendingTasks, 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, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, ZoneAwareQueueingScheduler as ɵZoneAwareQueueingScheduler, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, 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, internalAfterNextRender as ɵinternalAfterNextRender, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵ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, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵ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, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵ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, ɵɵvalidateIframeAttribute, ɵɵviewQuery };
35010
34988
  //# sourceMappingURL=core.mjs.map