@angular/core 17.0.2 → 17.0.4

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/esm2022/src/core_render3_private_export.mjs +2 -2
  2. package/esm2022/src/defer/instructions.mjs +3 -2
  3. package/esm2022/src/defer/utils.mjs +2 -2
  4. package/esm2022/src/image_performance_warning.mjs +14 -3
  5. package/esm2022/src/render3/index.mjs +2 -2
  6. package/esm2022/src/render3/instructions/change_detection.mjs +10 -20
  7. package/esm2022/src/render3/instructions/control_flow.mjs +9 -11
  8. package/esm2022/src/render3/instructions/shared.mjs +4 -5
  9. package/esm2022/src/render3/interfaces/container.mjs +22 -17
  10. package/esm2022/src/render3/interfaces/view.mjs +2 -2
  11. package/esm2022/src/render3/node_manipulation.mjs +3 -3
  12. package/esm2022/src/render3/util/change_detection_utils.mjs +13 -2
  13. package/esm2022/src/render3/util/injector_discovery_utils.mjs +10 -13
  14. package/esm2022/src/render3/util/view_utils.mjs +4 -4
  15. package/esm2022/src/render3/view_ref.mjs +3 -3
  16. package/esm2022/src/version.mjs +1 -1
  17. package/esm2022/testing/src/logger.mjs +3 -3
  18. package/esm2022/testing/src/test_bed_compiler.mjs +4 -1
  19. package/fesm2022/core.mjs +83 -70
  20. package/fesm2022/core.mjs.map +1 -1
  21. package/fesm2022/primitives/signals.mjs +1 -1
  22. package/fesm2022/rxjs-interop.mjs +1 -1
  23. package/fesm2022/testing.mjs +4 -1
  24. package/fesm2022/testing.mjs.map +1 -1
  25. package/index.d.ts +28 -40
  26. package/package.json +1 -1
  27. package/primitives/signals/index.d.ts +1 -1
  28. package/rxjs-interop/index.d.ts +1 -1
  29. package/schematics/migrations/block-template-entities/bundle.js +385 -159
  30. package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
  31. package/schematics/ng-generate/control-flow-migration/bundle.js +867 -371
  32. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  33. package/schematics/ng-generate/control-flow-migration/schema.json +6 -0
  34. package/schematics/ng-generate/standalone-migration/bundle.js +422 -168
  35. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  36. package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.2
2
+ * @license Angular v17.0.4
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -2178,8 +2178,8 @@ function getComponentId(componentDef) {
2178
2178
  // Uglify will inline these when minifying so there shouldn't be a cost.
2179
2179
  const HOST = 0;
2180
2180
  const TVIEW = 1;
2181
- const FLAGS = 2;
2182
2181
  // Shared with LContainer
2182
+ const FLAGS = 2;
2183
2183
  const PARENT = 3;
2184
2184
  const NEXT = 4;
2185
2185
  const T_HOST = 5;
@@ -2223,31 +2223,36 @@ const TYPE = 1;
2223
2223
  * without having to remember the specific indices.
2224
2224
  * Uglify will inline these when minifying so there shouldn't be a cost.
2225
2225
  */
2226
- /**
2227
- * Flag to signify that this `LContainer` may have transplanted views which need to be change
2228
- * detected. (see: `LView[DECLARATION_COMPONENT_VIEW])`.
2229
- *
2230
- * This flag, once set, is never unset for the `LContainer`. This means that when unset we can skip
2231
- * a lot of work in `refreshEmbeddedViews`. But when set we still need to verify
2232
- * that the `MOVED_VIEWS` are transplanted and on-push.
2233
- */
2234
- const HAS_TRANSPLANTED_VIEWS = 2;
2235
- // PARENT and NEXT are indices 3 and 4
2226
+ // FLAGS, PARENT, NEXT, and T_HOST are indices 2, 3, 4, and 5
2236
2227
  // As we already have these constants in LView, we don't need to re-create them.
2237
- // T_HOST is index 5
2238
- // We already have this constants in LView, we don't need to re-create it.
2239
- const HAS_CHILD_VIEWS_TO_REFRESH = 6;
2228
+ const DEHYDRATED_VIEWS = 6;
2240
2229
  const NATIVE = 7;
2241
2230
  const VIEW_REFS = 8;
2242
2231
  const MOVED_VIEWS = 9;
2243
- const DEHYDRATED_VIEWS = 10;
2244
2232
  /**
2245
2233
  * Size of LContainer's header. Represents the index after which all views in the
2246
2234
  * container will be inserted. We need to keep a record of current views so we know
2247
2235
  * which views are already in the DOM (and don't need to be re-added) and so we can
2248
2236
  * remove views from the DOM when they are no longer required.
2249
2237
  */
2250
- const CONTAINER_HEADER_OFFSET = 11;
2238
+ const CONTAINER_HEADER_OFFSET = 10;
2239
+ /** Flags associated with an LContainer (saved in LContainer[FLAGS]) */
2240
+ var LContainerFlags;
2241
+ (function (LContainerFlags) {
2242
+ LContainerFlags[LContainerFlags["None"] = 0] = "None";
2243
+ /**
2244
+ * Flag to signify that this `LContainer` may have transplanted views which need to be change
2245
+ * detected. (see: `LView[DECLARATION_COMPONENT_VIEW])`.
2246
+ *
2247
+ * This flag, once set, is never unset for the `LContainer`.
2248
+ */
2249
+ LContainerFlags[LContainerFlags["HasTransplantedViews"] = 2] = "HasTransplantedViews";
2250
+ /**
2251
+ * Indicates that this LContainer has a view underneath it that needs to be refreshed during
2252
+ * change detection.
2253
+ */
2254
+ LContainerFlags[LContainerFlags["HasChildViewsToRefresh"] = 4] = "HasChildViewsToRefresh";
2255
+ })(LContainerFlags || (LContainerFlags = {}));
2251
2256
 
2252
2257
  /**
2253
2258
  * True if `value` is `LView`.
@@ -2744,12 +2749,12 @@ function markAncestorsForTraversal(lView) {
2744
2749
  while (parent !== null) {
2745
2750
  // We stop adding markers to the ancestors once we reach one that already has the marker. This
2746
2751
  // is to avoid needlessly traversing all the way to the root when the marker already exists.
2747
- if ((isLContainer(parent) && parent[HAS_CHILD_VIEWS_TO_REFRESH] ||
2752
+ if ((isLContainer(parent) && (parent[FLAGS] & LContainerFlags.HasChildViewsToRefresh) ||
2748
2753
  (isLView(parent) && parent[FLAGS] & 8192 /* LViewFlags.HasChildViewsToRefresh */))) {
2749
2754
  break;
2750
2755
  }
2751
2756
  if (isLContainer(parent)) {
2752
- parent[HAS_CHILD_VIEWS_TO_REFRESH] = true;
2757
+ parent[FLAGS] |= LContainerFlags.HasChildViewsToRefresh;
2753
2758
  }
2754
2759
  else {
2755
2760
  parent[FLAGS] |= 8192 /* LViewFlags.HasChildViewsToRefresh */;
@@ -8197,7 +8202,7 @@ function trackMovedView(declarationContainer, lView) {
8197
8202
  // At this point the declaration-component is not same as insertion-component; this means that
8198
8203
  // this is a transplanted view. Mark the declared lView as having transplanted views so that
8199
8204
  // those views can participate in CD.
8200
- declarationContainer[HAS_TRANSPLANTED_VIEWS] = true;
8205
+ declarationContainer[FLAGS] |= LContainerFlags.HasTransplantedViews;
8201
8206
  }
8202
8207
  if (movedViews === null) {
8203
8208
  declarationContainer[MOVED_VIEWS] = [lView];
@@ -10423,7 +10428,7 @@ class Version {
10423
10428
  /**
10424
10429
  * @publicApi
10425
10430
  */
10426
- const VERSION = new Version('17.0.2');
10431
+ const VERSION = new Version('17.0.4');
10427
10432
 
10428
10433
  // This default value is when checking the hierarchy for a token.
10429
10434
  //
@@ -13108,15 +13113,14 @@ function createLContainer(hostNative, currentView, native, tNode) {
13108
13113
  const lContainer = [
13109
13114
  hostNative,
13110
13115
  true,
13111
- false,
13116
+ 0,
13112
13117
  currentView,
13113
13118
  null,
13114
13119
  tNode,
13115
- false,
13116
- native,
13117
13120
  null,
13121
+ native,
13118
13122
  null,
13119
- null, // dehydrated views
13123
+ null, // moved views
13120
13124
  ];
13121
13125
  ngDevMode &&
13122
13126
  assertEqual(lContainer.length, CONTAINER_HEADER_OFFSET, 'Should allocate correct number of slots for LContainer header.');
@@ -13290,7 +13294,7 @@ function textBindingInternal(lView, index, value) {
13290
13294
  * The maximum number of times the change detection traversal will rerun before throwing an error.
13291
13295
  */
13292
13296
  const MAXIMUM_REFRESH_RERUNS = 100;
13293
- function detectChangesInternal(tView, lView, context, notifyErrorHandler = true) {
13297
+ function detectChangesInternal(lView, notifyErrorHandler = true) {
13294
13298
  const environment = lView[ENVIRONMENT];
13295
13299
  const rendererFactory = environment.rendererFactory;
13296
13300
  const afterRenderEventManager = environment.afterRenderEventManager;
@@ -13303,6 +13307,8 @@ function detectChangesInternal(tView, lView, context, notifyErrorHandler = true)
13303
13307
  afterRenderEventManager?.begin();
13304
13308
  }
13305
13309
  try {
13310
+ const tView = lView[TVIEW];
13311
+ const context = lView[CONTEXT];
13306
13312
  refreshView(tView, lView, tView.template, context);
13307
13313
  detectChangesInViewWhileDirty(lView);
13308
13314
  }
@@ -13343,26 +13349,15 @@ function detectChangesInViewWhileDirty(lView) {
13343
13349
  detectChangesInView(lView, 1 /* ChangeDetectionMode.Targeted */);
13344
13350
  }
13345
13351
  }
13346
- function checkNoChangesInternal(tView, lView, context, notifyErrorHandler = true) {
13352
+ function checkNoChangesInternal(lView, notifyErrorHandler = true) {
13347
13353
  setIsInCheckNoChangesMode(true);
13348
13354
  try {
13349
- detectChangesInternal(tView, lView, context, notifyErrorHandler);
13355
+ detectChangesInternal(lView, notifyErrorHandler);
13350
13356
  }
13351
13357
  finally {
13352
13358
  setIsInCheckNoChangesMode(false);
13353
13359
  }
13354
13360
  }
13355
- /**
13356
- * Synchronously perform change detection on a component (and possibly its sub-components).
13357
- *
13358
- * This function triggers change detection in a synchronous way on a component.
13359
- *
13360
- * @param component The component which the change detection should be performed on.
13361
- */
13362
- function detectChanges(component) {
13363
- const view = getComponentViewByInstance(component);
13364
- detectChangesInternal(view[TVIEW], view, component);
13365
- }
13366
13361
  /**
13367
13362
  * Processes a view in update mode. This includes a number of steps in a specific order:
13368
13363
  * - executing a template function in update mode;
@@ -13536,7 +13531,7 @@ function viewShouldHaveReactiveConsumer(tView) {
13536
13531
  */
13537
13532
  function detectChangesInEmbeddedViews(lView, mode) {
13538
13533
  for (let lContainer = getFirstLContainer(lView); lContainer !== null; lContainer = getNextLContainer(lContainer)) {
13539
- lContainer[HAS_CHILD_VIEWS_TO_REFRESH] = false;
13534
+ lContainer[FLAGS] &= ~LContainerFlags.HasChildViewsToRefresh;
13540
13535
  for (let i = CONTAINER_HEADER_OFFSET; i < lContainer.length; i++) {
13541
13536
  const embeddedLView = lContainer[i];
13542
13537
  detectChangesInViewIfAttached(embeddedLView, mode);
@@ -13550,7 +13545,7 @@ function detectChangesInEmbeddedViews(lView, mode) {
13550
13545
  */
13551
13546
  function markTransplantedViewsForRefresh(lView) {
13552
13547
  for (let lContainer = getFirstLContainer(lView); lContainer !== null; lContainer = getNextLContainer(lContainer)) {
13553
- if (!lContainer[HAS_TRANSPLANTED_VIEWS])
13548
+ if (!(lContainer[FLAGS] & LContainerFlags.HasTransplantedViews))
13554
13549
  continue;
13555
13550
  const movedViews = lContainer[MOVED_VIEWS];
13556
13551
  ngDevMode && assertDefined(movedViews, 'Transplanted View flags set but missing MOVED_VIEWS');
@@ -13589,7 +13584,7 @@ function detectChangesInViewIfAttached(lView, mode) {
13589
13584
  *
13590
13585
  * The view is refreshed if:
13591
13586
  * - If the view is CheckAlways or Dirty and ChangeDetectionMode is `Global`
13592
- * - If the view has the `RefreshTransplantedView` flag
13587
+ * - If the view has the `RefreshView` flag
13593
13588
  *
13594
13589
  * The view is not refreshed, but descendants are traversed in `ChangeDetectionMode.Targeted` if the
13595
13590
  * view HasChildViewsToRefresh flag is set.
@@ -13907,7 +13902,7 @@ class ViewRef$1 {
13907
13902
  * See {@link ChangeDetectorRef#detach} for more information.
13908
13903
  */
13909
13904
  detectChanges() {
13910
- detectChangesInternal(this._lView[TVIEW], this._lView, this.context, this.notifyErrorHandler);
13905
+ detectChangesInternal(this._lView, this.notifyErrorHandler);
13911
13906
  }
13912
13907
  /**
13913
13908
  * Checks the change detector and its children, and throws if any changes are detected.
@@ -13917,7 +13912,7 @@ class ViewRef$1 {
13917
13912
  */
13918
13913
  checkNoChanges() {
13919
13914
  if (ngDevMode) {
13920
- checkNoChangesInternal(this._lView[TVIEW], this._lView, this.context, this.notifyErrorHandler);
13915
+ checkNoChangesInternal(this._lView, this.notifyErrorHandler);
13921
13916
  }
13922
13917
  }
13923
13918
  attachToViewContainerRef() {
@@ -20340,7 +20335,7 @@ function ɵɵconditional(containerIndex, matchingTemplateIndex, value) {
20340
20335
  // Index -1 is a special case where none of the conditions evaluates to
20341
20336
  // a truthy value and as the consequence we've got no view to show.
20342
20337
  if (matchingTemplateIndex !== -1) {
20343
- const templateTNode = getExistingTNode(hostLView[TVIEW], matchingTemplateIndex);
20338
+ const templateTNode = getExistingTNode(hostLView[TVIEW], HEADER_OFFSET + matchingTemplateIndex);
20344
20339
  const dehydratedView = findMatchingDehydratedView(lContainer, templateTNode.tView.ssrId);
20345
20340
  const embeddedLView = createAndRenderEmbeddedLView(hostLView, templateTNode, value, { dehydratedView });
20346
20341
  addLViewToLContainer(lContainer, embeddedLView, viewInContainerIdx, shouldAddViewToDom(templateTNode, dehydratedView));
@@ -20498,21 +20493,19 @@ class LiveCollectionLContainerImpl extends LiveCollection {
20498
20493
  * The repeater instruction does update-time diffing of a provided collection (against the
20499
20494
  * collection seen previously) and maps changes in the collection to views structure (by adding,
20500
20495
  * removing or moving views as needed).
20501
- * @param metadataSlotIdx - index in data where we can find an instance of RepeaterMetadata with
20502
- * additional information (ex. differ) needed to process collection diffing and view
20503
- * manipulation
20504
20496
  * @param collection - the collection instance to be checked for changes
20505
20497
  * @codeGenApi
20506
20498
  */
20507
- function ɵɵrepeater(metadataSlotIdx, collection) {
20499
+ function ɵɵrepeater(collection) {
20508
20500
  const prevConsumer = setActiveConsumer$1(null);
20501
+ const metadataSlotIdx = getSelectedIndex();
20509
20502
  try {
20510
20503
  const hostLView = getLView();
20511
20504
  const hostTView = hostLView[TVIEW];
20512
- const metadata = hostLView[HEADER_OFFSET + metadataSlotIdx];
20505
+ const metadata = hostLView[metadataSlotIdx];
20513
20506
  if (metadata.liveCollection === undefined) {
20514
20507
  const containerIndex = metadataSlotIdx + 1;
20515
- const lContainer = getLContainer(hostLView, HEADER_OFFSET + containerIndex);
20508
+ const lContainer = getLContainer(hostLView, containerIndex);
20516
20509
  const itemTemplateTNode = getExistingTNode(hostTView, containerIndex);
20517
20510
  metadata.liveCollection =
20518
20511
  new LiveCollectionLContainerImpl(lContainer, hostLView, itemTemplateTNode);
@@ -20530,7 +20523,7 @@ function ɵɵrepeater(metadataSlotIdx, collection) {
20530
20523
  const isCollectionEmpty = liveCollection.length === 0;
20531
20524
  if (bindingUpdated(hostLView, bindingIndex, isCollectionEmpty)) {
20532
20525
  const emptyTemplateIndex = metadataSlotIdx + 2;
20533
- const lContainerForEmpty = getLContainer(hostLView, HEADER_OFFSET + emptyTemplateIndex);
20526
+ const lContainerForEmpty = getLContainer(hostLView, emptyTemplateIndex);
20534
20527
  if (isCollectionEmpty) {
20535
20528
  const emptyTemplateTNode = getExistingTNode(hostTView, emptyTemplateIndex);
20536
20529
  const dehydratedView = findMatchingDehydratedView(lContainerForEmpty, emptyTemplateTNode.tView.ssrId);
@@ -20563,7 +20556,7 @@ function getExistingLViewFromLContainer(lContainer, index) {
20563
20556
  return existingLView;
20564
20557
  }
20565
20558
  function getExistingTNode(tView, index) {
20566
- const tNode = getTNode(tView, index + HEADER_OFFSET);
20559
+ const tNode = getTNode(tView, index);
20567
20560
  ngDevMode && assertTNode(tNode);
20568
20561
  return tNode;
20569
20562
  }
@@ -20787,7 +20780,7 @@ function assertDeferredDependenciesLoaded(tDetails) {
20787
20780
  * that a primary template exists. All the other template options are optional.
20788
20781
  */
20789
20782
  function isTDeferBlockDetails(value) {
20790
- return (typeof value === 'object') &&
20783
+ return value !== null && (typeof value === 'object') &&
20791
20784
  (typeof value.primaryTmplIndex === 'number');
20792
20785
  }
20793
20786
 
@@ -21841,10 +21834,11 @@ function triggerResourceLoading(tDetails, lView, tNode) {
21841
21834
  }
21842
21835
  }
21843
21836
  // The `dependenciesFn` might be `null` when all dependencies within
21844
- // a given defer block were eagerly references elsewhere in a file,
21837
+ // a given defer block were eagerly referenced elsewhere in a file,
21845
21838
  // thus no dynamic `import()`s were produced.
21846
21839
  if (!dependenciesFn) {
21847
21840
  tDetails.loadingPromise = Promise.resolve().then(() => {
21841
+ tDetails.loadingPromise = null;
21848
21842
  tDetails.loadingState = DeferDependenciesLoadingState.COMPLETE;
21849
21843
  });
21850
21844
  return;
@@ -30294,7 +30288,8 @@ class ImagePerformanceWarning {
30294
30288
  return;
30295
30289
  }
30296
30290
  this.observer = this.initPerformanceObserver();
30297
- const win = getDocument().defaultView;
30291
+ const doc = getDocument();
30292
+ const win = doc.defaultView;
30298
30293
  if (typeof win !== 'undefined') {
30299
30294
  this.window = win;
30300
30295
  // Wait to avoid race conditions where LCP image triggers
@@ -30305,7 +30300,17 @@ class ImagePerformanceWarning {
30305
30300
  // Angular doesn't have to run change detection whenever any asynchronous tasks are invoked in
30306
30301
  // the scope of this functionality.
30307
30302
  this.ngZone.runOutsideAngular(() => {
30308
- this.window?.addEventListener('load', waitToScan);
30303
+ // Consider the case when the application is created and destroyed multiple times.
30304
+ // Typically, applications are created instantly once the page is loaded, and the
30305
+ // `window.load` listener is always triggered. However, the `window.load` event will never
30306
+ // be fired if the page is loaded, and the application is created later. Checking for
30307
+ // `readyState` is the easiest way to determine whether the page has been loaded or not.
30308
+ if (doc.readyState === 'complete') {
30309
+ waitToScan();
30310
+ }
30311
+ else {
30312
+ this.window?.addEventListener('load', waitToScan, { once: true });
30313
+ }
30309
30314
  });
30310
30315
  }
30311
30316
  }
@@ -30816,6 +30821,17 @@ function applyChanges(component) {
30816
30821
  markViewDirty(getComponentViewByInstance(component));
30817
30822
  getRootComponents(component).forEach(rootComponent => detectChanges(rootComponent));
30818
30823
  }
30824
+ /**
30825
+ * Synchronously perform change detection on a component (and possibly its sub-components).
30826
+ *
30827
+ * This function triggers change detection in a synchronous way on a component.
30828
+ *
30829
+ * @param component The component which the change detection should be performed on.
30830
+ */
30831
+ function detectChanges(component) {
30832
+ const view = getComponentViewByInstance(component);
30833
+ detectChangesInternal(view);
30834
+ }
30819
30835
 
30820
30836
  /**
30821
30837
  * Discovers the dependencies of an injectable instance. Provides DI information about each
@@ -31134,15 +31150,15 @@ function getEnvironmentInjectorProviders(injector) {
31134
31150
  }
31135
31151
  const providerImportsContainer = getProviderImportsContainer(injector);
31136
31152
  if (providerImportsContainer === null) {
31137
- // There is a special case where the bootstrapped component does not
31138
- // import any NgModules. In this case the environment injector connected to
31139
- // that component is the root injector, which does not have a provider imports
31140
- // container (and thus no concept of module import paths). Therefore we simply
31141
- // return the provider records as is.
31142
- if (isRootInjector(injector)) {
31143
- return providerRecordsWithoutImportPaths;
31144
- }
31145
- throwError('Could not determine where injector providers were configured.');
31153
+ // We assume that if an environment injector exists without an associated provider imports
31154
+ // container, it was created without such a container. Some examples cases where this could
31155
+ // happen:
31156
+ // - The root injector of a standalone application
31157
+ // - A router injector created by using the providers array in a lazy loaded route
31158
+ // - A manually created injector that is attached to the injector tree
31159
+ // Since each of these cases has no provider container, there is no concept of import paths,
31160
+ // so we can simply return the provider records.
31161
+ return providerRecordsWithoutImportPaths;
31146
31162
  }
31147
31163
  const providerToPath = getProviderImportPaths(providerImportsContainer);
31148
31164
  const providerRecords = [];
@@ -31169,9 +31185,6 @@ function getEnvironmentInjectorProviders(injector) {
31169
31185
  function isPlatformInjector(injector) {
31170
31186
  return injector instanceof R3Injector && injector.scopes.has('platform');
31171
31187
  }
31172
- function isRootInjector(injector) {
31173
- return injector instanceof R3Injector && injector.scopes.has('root');
31174
- }
31175
31188
  /**
31176
31189
  * Gets the providers configured on an injector.
31177
31190
  *
@@ -34984,5 +34997,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
34984
34997
  * Generated bundle index. Do not edit.
34985
34998
  */
34986
34999
 
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 };
35000
+ 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, 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 };
34988
35001
  //# sourceMappingURL=core.mjs.map