@angular/core 14.0.0-next.1 → 14.0.0-next.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.
package/fesm2015/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.0.0-next.1
2
+ * @license Angular v14.0.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -21076,7 +21076,7 @@ class Version {
21076
21076
  /**
21077
21077
  * @publicApi
21078
21078
  */
21079
- const VERSION = new Version('14.0.0-next.1');
21079
+ const VERSION = new Version('14.0.0-next.2');
21080
21080
 
21081
21081
  /**
21082
21082
  * @license
@@ -24336,7 +24336,10 @@ function directiveMetadata(type, metadata) {
24336
24336
  usesInheritance: !extendsDirectlyFromObject(type),
24337
24337
  exportAs: extractExportAs(metadata.exportAs),
24338
24338
  providers: metadata.providers || null,
24339
- viewQueries: extractQueriesMetadata(type, propMetadata, isViewQuery)
24339
+ viewQueries: extractQueriesMetadata(type, propMetadata, isViewQuery),
24340
+ // TODO(alxhub): pass through the standalone flag from the directive metadata once standalone
24341
+ // functionality is fully rolled out.
24342
+ isStandalone: false,
24340
24343
  };
24341
24344
  }
24342
24345
  /**
@@ -24480,7 +24483,10 @@ function getPipeMetadata(type, meta) {
24480
24483
  type: type,
24481
24484
  name: type.name,
24482
24485
  pipeName: meta.name,
24483
- pure: meta.pure !== undefined ? meta.pure : true
24486
+ pure: meta.pure !== undefined ? meta.pure : true,
24487
+ // TODO(alxhub): pass through the standalone flag from the pipe metadata once standalone
24488
+ // functionality is fully rolled out.
24489
+ isStandalone: false,
24484
24490
  };
24485
24491
  }
24486
24492
 
@@ -25992,26 +25998,7 @@ class PlatformRef {
25992
25998
  this._destroyed = false;
25993
25999
  }
25994
26000
  /**
25995
- * Creates an instance of an `@NgModule` for the given platform for offline compilation.
25996
- *
25997
- * @usageNotes
25998
- *
25999
- * The following example creates the NgModule for a browser platform.
26000
- *
26001
- * ```typescript
26002
- * my_module.ts:
26003
- *
26004
- * @NgModule({
26005
- * imports: [BrowserModule]
26006
- * })
26007
- * class MyModule {}
26008
- *
26009
- * main.ts:
26010
- * import {MyModuleNgFactory} from './my_module.ngfactory';
26011
- * import {platformBrowser} from '@angular/platform-browser';
26012
- *
26013
- * let moduleRef = platformBrowser().bootstrapModuleFactory(MyModuleNgFactory);
26014
- * ```
26001
+ * Creates an instance of an `@NgModule` for the given platform.
26015
26002
  *
26016
26003
  * @deprecated Passing NgModule factories as the `PlatformRef.bootstrapModuleFactory` function
26017
26004
  * argument is deprecated. Use the `PlatformRef.bootstrapModule` API instead.
@@ -26065,7 +26052,7 @@ class PlatformRef {
26065
26052
  });
26066
26053
  }
26067
26054
  /**
26068
- * Creates an instance of an `@NgModule` for a given platform using the given runtime compiler.
26055
+ * Creates an instance of an `@NgModule` for a given platform.
26069
26056
  *
26070
26057
  * @usageNotes
26071
26058
  * ### Simple Example
@@ -26812,8 +26799,6 @@ var ng_module_factory_loader_impl = {};
26812
26799
  * Use of this source code is governed by an MIT-style license that can be
26813
26800
  * found in the LICENSE file at https://angular.io/license
26814
26801
  */
26815
- // TODO(alxhub): recombine the interfaces and implementations here and move the docs back onto the
26816
- // original classes.
26817
26802
  /**
26818
26803
  * @publicApi
26819
26804
  */
@@ -26829,43 +26814,88 @@ class DebugEventListener {
26829
26814
  function asNativeElements(debugEls) {
26830
26815
  return debugEls.map((el) => el.nativeElement);
26831
26816
  }
26832
- class DebugNode__POST_R3__ {
26817
+ /**
26818
+ * @publicApi
26819
+ */
26820
+ class DebugNode {
26833
26821
  constructor(nativeNode) {
26834
26822
  this.nativeNode = nativeNode;
26835
26823
  }
26824
+ /**
26825
+ * The `DebugElement` parent. Will be `null` if this is the root element.
26826
+ */
26836
26827
  get parent() {
26837
26828
  const parent = this.nativeNode.parentNode;
26838
- return parent ? new DebugElement__POST_R3__(parent) : null;
26829
+ return parent ? new DebugElement(parent) : null;
26839
26830
  }
26831
+ /**
26832
+ * The host dependency injector. For example, the root element's component instance injector.
26833
+ */
26840
26834
  get injector() {
26841
26835
  return getInjector(this.nativeNode);
26842
26836
  }
26837
+ /**
26838
+ * The element's own component instance, if it has one.
26839
+ */
26843
26840
  get componentInstance() {
26844
26841
  const nativeElement = this.nativeNode;
26845
26842
  return nativeElement &&
26846
26843
  (getComponent$1(nativeElement) || getOwningComponent(nativeElement));
26847
26844
  }
26845
+ /**
26846
+ * An object that provides parent context for this element. Often an ancestor component instance
26847
+ * that governs this element.
26848
+ *
26849
+ * When an element is repeated within *ngFor, the context is an `NgForOf` whose `$implicit`
26850
+ * property is the value of the row instance value. For example, the `hero` in `*ngFor="let hero
26851
+ * of heroes"`.
26852
+ */
26848
26853
  get context() {
26849
26854
  return getComponent$1(this.nativeNode) || getContext(this.nativeNode);
26850
26855
  }
26856
+ /**
26857
+ * The callbacks attached to the component's @Output properties and/or the element's event
26858
+ * properties.
26859
+ */
26851
26860
  get listeners() {
26852
26861
  return getListeners(this.nativeNode).filter(listener => listener.type === 'dom');
26853
26862
  }
26863
+ /**
26864
+ * Dictionary of objects associated with template local variables (e.g. #foo), keyed by the local
26865
+ * variable name.
26866
+ */
26854
26867
  get references() {
26855
26868
  return getLocalRefs(this.nativeNode);
26856
26869
  }
26870
+ /**
26871
+ * This component's injector lookup tokens. Includes the component itself plus the tokens that the
26872
+ * component lists in its providers metadata.
26873
+ */
26857
26874
  get providerTokens() {
26858
26875
  return getInjectionTokens(this.nativeNode);
26859
26876
  }
26860
26877
  }
26861
- class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
26878
+ /**
26879
+ * @publicApi
26880
+ *
26881
+ * @see [Component testing scenarios](guide/testing-components-scenarios)
26882
+ * @see [Basics of testing components](guide/testing-components-basics)
26883
+ * @see [Testing utility APIs](guide/testing-utility-apis)
26884
+ */
26885
+ class DebugElement extends DebugNode {
26862
26886
  constructor(nativeNode) {
26863
26887
  ngDevMode && assertDomNode(nativeNode);
26864
26888
  super(nativeNode);
26865
26889
  }
26890
+ /**
26891
+ * The underlying DOM element at the root of the component.
26892
+ */
26866
26893
  get nativeElement() {
26867
26894
  return this.nativeNode.nodeType == Node.ELEMENT_NODE ? this.nativeNode : null;
26868
26895
  }
26896
+ /**
26897
+ * The element tag name, if it is an element.
26898
+ */
26869
26899
  get name() {
26870
26900
  const context = getLContext(this.nativeNode);
26871
26901
  if (context !== null) {
@@ -26906,6 +26936,9 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
26906
26936
  collectPropertyBindings(properties, tNode, lView, tData);
26907
26937
  return properties;
26908
26938
  }
26939
+ /**
26940
+ * A map of attribute names to attribute values for an element.
26941
+ */
26909
26942
  get attributes() {
26910
26943
  const attributes = {};
26911
26944
  const element = this.nativeElement;
@@ -26954,12 +26987,29 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
26954
26987
  }
26955
26988
  return attributes;
26956
26989
  }
26990
+ /**
26991
+ * The inline styles of the DOM element.
26992
+ *
26993
+ * Will be `null` if there is no `style` property on the underlying DOM element.
26994
+ *
26995
+ * @see [ElementCSSInlineStyle](https://developer.mozilla.org/en-US/docs/Web/API/ElementCSSInlineStyle/style)
26996
+ */
26957
26997
  get styles() {
26958
26998
  if (this.nativeElement && this.nativeElement.style) {
26959
26999
  return this.nativeElement.style;
26960
27000
  }
26961
27001
  return {};
26962
27002
  }
27003
+ /**
27004
+ * A map containing the class names on the element as keys.
27005
+ *
27006
+ * This map is derived from the `className` property of the DOM element.
27007
+ *
27008
+ * Note: The values of this object will always be `true`. The class key will not appear in the KV
27009
+ * object if it does not exist on the element.
27010
+ *
27011
+ * @see [Element.className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className)
27012
+ */
26963
27013
  get classes() {
26964
27014
  const result = {};
26965
27015
  const element = this.nativeElement;
@@ -26969,15 +27019,23 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
26969
27019
  classes.forEach((value) => result[value] = true);
26970
27020
  return result;
26971
27021
  }
27022
+ /**
27023
+ * The `childNodes` of the DOM element as a `DebugNode` array.
27024
+ *
27025
+ * @see [Node.childNodes](https://developer.mozilla.org/en-US/docs/Web/API/Node/childNodes)
27026
+ */
26972
27027
  get childNodes() {
26973
27028
  const childNodes = this.nativeNode.childNodes;
26974
27029
  const children = [];
26975
27030
  for (let i = 0; i < childNodes.length; i++) {
26976
27031
  const element = childNodes[i];
26977
- children.push(getDebugNode__POST_R3__(element));
27032
+ children.push(getDebugNode(element));
26978
27033
  }
26979
27034
  return children;
26980
27035
  }
27036
+ /**
27037
+ * The immediate `DebugElement` children. Walk the tree by descending through `children`.
27038
+ */
26981
27039
  get children() {
26982
27040
  const nativeElement = this.nativeElement;
26983
27041
  if (!nativeElement)
@@ -26986,24 +27044,45 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
26986
27044
  const children = [];
26987
27045
  for (let i = 0; i < childNodes.length; i++) {
26988
27046
  const element = childNodes[i];
26989
- children.push(getDebugNode__POST_R3__(element));
27047
+ children.push(getDebugNode(element));
26990
27048
  }
26991
27049
  return children;
26992
27050
  }
27051
+ /**
27052
+ * @returns the first `DebugElement` that matches the predicate at any depth in the subtree.
27053
+ */
26993
27054
  query(predicate) {
26994
27055
  const results = this.queryAll(predicate);
26995
27056
  return results[0] || null;
26996
27057
  }
27058
+ /**
27059
+ * @returns All `DebugElement` matches for the predicate at any depth in the subtree.
27060
+ */
26997
27061
  queryAll(predicate) {
26998
27062
  const matches = [];
26999
- _queryAllR3(this, predicate, matches, true);
27063
+ _queryAll(this, predicate, matches, true);
27000
27064
  return matches;
27001
27065
  }
27066
+ /**
27067
+ * @returns All `DebugNode` matches for the predicate at any depth in the subtree.
27068
+ */
27002
27069
  queryAllNodes(predicate) {
27003
27070
  const matches = [];
27004
- _queryAllR3(this, predicate, matches, false);
27071
+ _queryAll(this, predicate, matches, false);
27005
27072
  return matches;
27006
27073
  }
27074
+ /**
27075
+ * Triggers the event by its name if there is a corresponding listener in the element's
27076
+ * `listeners` collection.
27077
+ *
27078
+ * If the event lacks a listener or there's some other problem, consider
27079
+ * calling `nativeElement.dispatchEvent(eventObject)`.
27080
+ *
27081
+ * @param eventName The name of the event to trigger
27082
+ * @param eventObj The _event object_ expected by the handler
27083
+ *
27084
+ * @see [Testing components scenarios](guide/testing-components-scenarios#trigger-event-handler)
27085
+ */
27007
27086
  triggerEventHandler(eventName, eventObj) {
27008
27087
  const node = this.nativeNode;
27009
27088
  const invokedListeners = [];
@@ -27062,11 +27141,11 @@ function isPrimitiveValue(value) {
27062
27141
  return typeof value === 'string' || typeof value === 'boolean' || typeof value === 'number' ||
27063
27142
  value === null;
27064
27143
  }
27065
- function _queryAllR3(parentElement, predicate, matches, elementsOnly) {
27144
+ function _queryAll(parentElement, predicate, matches, elementsOnly) {
27066
27145
  const context = getLContext(parentElement.nativeNode);
27067
27146
  if (context !== null) {
27068
27147
  const parentTNode = context.lView[TVIEW].data[context.nodeIndex];
27069
- _queryNodeChildrenR3(parentTNode, context.lView, predicate, matches, elementsOnly, parentElement.nativeNode);
27148
+ _queryNodeChildren(parentTNode, context.lView, predicate, matches, elementsOnly, parentElement.nativeNode);
27070
27149
  }
27071
27150
  else {
27072
27151
  // If the context is null, then `parentElement` was either created with Renderer2 or native DOM
@@ -27084,26 +27163,26 @@ function _queryAllR3(parentElement, predicate, matches, elementsOnly) {
27084
27163
  * @param elementsOnly whether only elements should be searched
27085
27164
  * @param rootNativeNode the root native node on which predicate should not be matched
27086
27165
  */
27087
- function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, rootNativeNode) {
27166
+ function _queryNodeChildren(tNode, lView, predicate, matches, elementsOnly, rootNativeNode) {
27088
27167
  ngDevMode && assertTNodeForLView(tNode, lView);
27089
27168
  const nativeNode = getNativeByTNodeOrNull(tNode, lView);
27090
27169
  // For each type of TNode, specific logic is executed.
27091
27170
  if (tNode.type & (3 /* AnyRNode */ | 8 /* ElementContainer */)) {
27092
27171
  // Case 1: the TNode is an element
27093
27172
  // The native node has to be checked.
27094
- _addQueryMatchR3(nativeNode, predicate, matches, elementsOnly, rootNativeNode);
27173
+ _addQueryMatch(nativeNode, predicate, matches, elementsOnly, rootNativeNode);
27095
27174
  if (isComponentHost(tNode)) {
27096
27175
  // If the element is the host of a component, then all nodes in its view have to be processed.
27097
27176
  // Note: the component's content (tNode.child) will be processed from the insertion points.
27098
27177
  const componentView = getComponentLViewByIndex(tNode.index, lView);
27099
27178
  if (componentView && componentView[TVIEW].firstChild) {
27100
- _queryNodeChildrenR3(componentView[TVIEW].firstChild, componentView, predicate, matches, elementsOnly, rootNativeNode);
27179
+ _queryNodeChildren(componentView[TVIEW].firstChild, componentView, predicate, matches, elementsOnly, rootNativeNode);
27101
27180
  }
27102
27181
  }
27103
27182
  else {
27104
27183
  if (tNode.child) {
27105
27184
  // Otherwise, its children have to be processed.
27106
- _queryNodeChildrenR3(tNode.child, lView, predicate, matches, elementsOnly, rootNativeNode);
27185
+ _queryNodeChildren(tNode.child, lView, predicate, matches, elementsOnly, rootNativeNode);
27107
27186
  }
27108
27187
  // We also have to query the DOM directly in order to catch elements inserted through
27109
27188
  // Renderer2. Note that this is __not__ optimal, because we're walking similar trees multiple
@@ -27119,16 +27198,16 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
27119
27198
  // processed.
27120
27199
  const nodeOrContainer = lView[tNode.index];
27121
27200
  if (isLContainer(nodeOrContainer)) {
27122
- _queryNodeChildrenInContainerR3(nodeOrContainer, predicate, matches, elementsOnly, rootNativeNode);
27201
+ _queryNodeChildrenInContainer(nodeOrContainer, predicate, matches, elementsOnly, rootNativeNode);
27123
27202
  }
27124
27203
  }
27125
27204
  else if (tNode.type & 4 /* Container */) {
27126
27205
  // Case 2: the TNode is a container
27127
27206
  // The native node has to be checked.
27128
27207
  const lContainer = lView[tNode.index];
27129
- _addQueryMatchR3(lContainer[NATIVE], predicate, matches, elementsOnly, rootNativeNode);
27208
+ _addQueryMatch(lContainer[NATIVE], predicate, matches, elementsOnly, rootNativeNode);
27130
27209
  // Each view inside the container has to be processed.
27131
- _queryNodeChildrenInContainerR3(lContainer, predicate, matches, elementsOnly, rootNativeNode);
27210
+ _queryNodeChildrenInContainer(lContainer, predicate, matches, elementsOnly, rootNativeNode);
27132
27211
  }
27133
27212
  else if (tNode.type & 16 /* Projection */) {
27134
27213
  // Case 3: the TNode is a projection insertion point (i.e. a <ng-content>).
@@ -27138,18 +27217,18 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
27138
27217
  const head = componentHost.projection[tNode.projection];
27139
27218
  if (Array.isArray(head)) {
27140
27219
  for (let nativeNode of head) {
27141
- _addQueryMatchR3(nativeNode, predicate, matches, elementsOnly, rootNativeNode);
27220
+ _addQueryMatch(nativeNode, predicate, matches, elementsOnly, rootNativeNode);
27142
27221
  }
27143
27222
  }
27144
27223
  else if (head) {
27145
27224
  const nextLView = componentView[PARENT];
27146
27225
  const nextTNode = nextLView[TVIEW].data[head.index];
27147
- _queryNodeChildrenR3(nextTNode, nextLView, predicate, matches, elementsOnly, rootNativeNode);
27226
+ _queryNodeChildren(nextTNode, nextLView, predicate, matches, elementsOnly, rootNativeNode);
27148
27227
  }
27149
27228
  }
27150
27229
  else if (tNode.child) {
27151
27230
  // Case 4: the TNode is a view.
27152
- _queryNodeChildrenR3(tNode.child, lView, predicate, matches, elementsOnly, rootNativeNode);
27231
+ _queryNodeChildren(tNode.child, lView, predicate, matches, elementsOnly, rootNativeNode);
27153
27232
  }
27154
27233
  // We don't want to go to the next sibling of the root node.
27155
27234
  if (rootNativeNode !== nativeNode) {
@@ -27157,7 +27236,7 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
27157
27236
  // link, depending on whether the current node has been projected.
27158
27237
  const nextTNode = (tNode.flags & 4 /* isProjected */) ? tNode.projectionNext : tNode.next;
27159
27238
  if (nextTNode) {
27160
- _queryNodeChildrenR3(nextTNode, lView, predicate, matches, elementsOnly, rootNativeNode);
27239
+ _queryNodeChildren(nextTNode, lView, predicate, matches, elementsOnly, rootNativeNode);
27161
27240
  }
27162
27241
  }
27163
27242
  }
@@ -27170,12 +27249,12 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
27170
27249
  * @param elementsOnly whether only elements should be searched
27171
27250
  * @param rootNativeNode the root native node on which predicate should not be matched
27172
27251
  */
27173
- function _queryNodeChildrenInContainerR3(lContainer, predicate, matches, elementsOnly, rootNativeNode) {
27252
+ function _queryNodeChildrenInContainer(lContainer, predicate, matches, elementsOnly, rootNativeNode) {
27174
27253
  for (let i = CONTAINER_HEADER_OFFSET; i < lContainer.length; i++) {
27175
27254
  const childView = lContainer[i];
27176
27255
  const firstChild = childView[TVIEW].firstChild;
27177
27256
  if (firstChild) {
27178
- _queryNodeChildrenR3(firstChild, childView, predicate, matches, elementsOnly, rootNativeNode);
27257
+ _queryNodeChildren(firstChild, childView, predicate, matches, elementsOnly, rootNativeNode);
27179
27258
  }
27180
27259
  }
27181
27260
  }
@@ -27188,7 +27267,7 @@ function _queryNodeChildrenInContainerR3(lContainer, predicate, matches, element
27188
27267
  * @param elementsOnly whether only elements should be searched
27189
27268
  * @param rootNativeNode the root native node on which predicate should not be matched
27190
27269
  */
27191
- function _addQueryMatchR3(nativeNode, predicate, matches, elementsOnly, rootNativeNode) {
27270
+ function _addQueryMatch(nativeNode, predicate, matches, elementsOnly, rootNativeNode) {
27192
27271
  if (rootNativeNode !== nativeNode) {
27193
27272
  const debugNode = getDebugNode(nativeNode);
27194
27273
  if (!debugNode) {
@@ -27197,7 +27276,7 @@ function _addQueryMatchR3(nativeNode, predicate, matches, elementsOnly, rootNati
27197
27276
  // Type of the "predicate and "matches" array are set based on the value of
27198
27277
  // the "elementsOnly" parameter. TypeScript is not able to properly infer these
27199
27278
  // types with generics, so we manually cast the parameters accordingly.
27200
- if (elementsOnly && debugNode instanceof DebugElement__POST_R3__ && predicate(debugNode) &&
27279
+ if (elementsOnly && (debugNode instanceof DebugElement) && predicate(debugNode) &&
27201
27280
  matches.indexOf(debugNode) === -1) {
27202
27281
  matches.push(debugNode);
27203
27282
  }
@@ -27222,7 +27301,7 @@ function _queryNativeNodeDescendants(parentNode, predicate, matches, elementsOnl
27222
27301
  const node = nodes[i];
27223
27302
  const debugNode = getDebugNode(node);
27224
27303
  if (debugNode) {
27225
- if (elementsOnly && debugNode instanceof DebugElement__POST_R3__ && predicate(debugNode) &&
27304
+ if (elementsOnly && (debugNode instanceof DebugElement) && predicate(debugNode) &&
27226
27305
  matches.indexOf(debugNode) === -1) {
27227
27306
  matches.push(debugNode);
27228
27307
  }
@@ -27263,25 +27342,24 @@ function collectPropertyBindings(properties, tNode, lView, tData) {
27263
27342
  // Need to keep the nodes in a global Map so that multiple angular apps are supported.
27264
27343
  const _nativeNodeToDebugNode = new Map();
27265
27344
  const NG_DEBUG_PROPERTY = '__ng_debug__';
27266
- function getDebugNode__POST_R3__(nativeNode) {
27345
+ /**
27346
+ * @publicApi
27347
+ */
27348
+ function getDebugNode(nativeNode) {
27267
27349
  if (nativeNode instanceof Node) {
27268
27350
  if (!(nativeNode.hasOwnProperty(NG_DEBUG_PROPERTY))) {
27269
27351
  nativeNode[NG_DEBUG_PROPERTY] = nativeNode.nodeType == Node.ELEMENT_NODE ?
27270
- new DebugElement__POST_R3__(nativeNode) :
27271
- new DebugNode__POST_R3__(nativeNode);
27352
+ new DebugElement(nativeNode) :
27353
+ new DebugNode(nativeNode);
27272
27354
  }
27273
27355
  return nativeNode[NG_DEBUG_PROPERTY];
27274
27356
  }
27275
27357
  return null;
27276
27358
  }
27277
- /**
27278
- * @publicApi
27279
- */
27280
- const getDebugNode = getDebugNode__POST_R3__;
27281
- function getDebugNodeR2__POST_R3__(_nativeNode) {
27359
+ // TODO: cleanup all references to this function and remove it.
27360
+ function getDebugNodeR2(_nativeNode) {
27282
27361
  return null;
27283
27362
  }
27284
- const getDebugNodeR2 = getDebugNodeR2__POST_R3__;
27285
27363
  function getAllDebugNodes() {
27286
27364
  return Array.from(_nativeNodeToDebugNode.values());
27287
27365
  }
@@ -27291,14 +27369,6 @@ function indexDebugNode(node) {
27291
27369
  function removeDebugNodeFromIndex(node) {
27292
27370
  _nativeNodeToDebugNode.delete(node.nativeNode);
27293
27371
  }
27294
- /**
27295
- * @publicApi
27296
- */
27297
- const DebugNode = DebugNode__POST_R3__;
27298
- /**
27299
- * @publicApi
27300
- */
27301
- const DebugElement = DebugElement__POST_R3__;
27302
27372
 
27303
27373
  /**
27304
27374
  * @license
@@ -28533,6 +28603,18 @@ ApplicationModule.ɵinj = /*@__PURE__*/ ɵɵdefineInjector({ providers: APPLICAT
28533
28603
  }], function () { return [{ type: ApplicationRef }]; }, null);
28534
28604
  })();
28535
28605
 
28606
+ /**
28607
+ * @license
28608
+ * Copyright Google LLC All Rights Reserved.
28609
+ *
28610
+ * Use of this source code is governed by an MIT-style license that can be
28611
+ * found in the LICENSE file at https://angular.io/license
28612
+ */
28613
+ /** Coerces a value (typically a string) to a boolean. */
28614
+ function coerceToBoolean(value) {
28615
+ return typeof value === 'boolean' ? value : (value != null && value !== 'false');
28616
+ }
28617
+
28536
28618
  /**
28537
28619
  * @license
28538
28620
  * Copyright Google LLC All Rights Reserved.
@@ -28691,5 +28773,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
28691
28773
  * Generated bundle index. Do not edit.
28692
28774
  */
28693
28775
 
28694
- export { ANALYZE_FOR_ENTRY_COMPONENTS, 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, ElementRef, EmbeddedViewRef, 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, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, inject, isDevMode, platformCore, 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, 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, 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, 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, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, 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, registerNgModuleType as ɵregisterNgModuleType, renderComponent as ɵrenderComponent, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, 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, ɵɵ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, ɵɵ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 };
28776
+ export { ANALYZE_FOR_ENTRY_COMPONENTS, 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, ElementRef, EmbeddedViewRef, 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, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, inject, isDevMode, platformCore, 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, 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, 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, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, 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, registerNgModuleType as ɵregisterNgModuleType, renderComponent as ɵrenderComponent, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, 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, ɵɵ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, ɵɵ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 };
28695
28777
  //# sourceMappingURL=core.mjs.map