@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/core.d.ts +48 -74
- package/esm2020/src/application_init.mjs +1 -1
- package/esm2020/src/application_ref.mjs +3 -22
- package/esm2020/src/change_detection/change_detection.mjs +2 -3
- package/esm2020/src/compiler/compiler_facade_interface.mjs +1 -1
- package/esm2020/src/core_private_export.mjs +2 -1
- package/esm2020/src/debug/debug_node.mjs +128 -45
- package/esm2020/src/reflection/reflector.mjs +1 -1
- package/esm2020/src/render3/context_discovery.mjs +1 -1
- package/esm2020/src/render3/jit/directive.mjs +5 -2
- package/esm2020/src/render3/jit/pipe.mjs +5 -2
- package/esm2020/src/util/coercion.mjs +12 -0
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/fesm2015/core.mjs +152 -70
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/core.mjs +152 -70
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/package.json +1 -1
- package/testing/testing.d.ts +1 -1
package/fesm2015/testing.mjs
CHANGED
package/fesm2020/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.0-next.
|
|
2
|
+
* @license Angular v14.0.0-next.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -21090,7 +21090,7 @@ class Version {
|
|
|
21090
21090
|
/**
|
|
21091
21091
|
* @publicApi
|
|
21092
21092
|
*/
|
|
21093
|
-
const VERSION = new Version('14.0.0-next.
|
|
21093
|
+
const VERSION = new Version('14.0.0-next.2');
|
|
21094
21094
|
|
|
21095
21095
|
/**
|
|
21096
21096
|
* @license
|
|
@@ -24362,7 +24362,10 @@ function directiveMetadata(type, metadata) {
|
|
|
24362
24362
|
usesInheritance: !extendsDirectlyFromObject(type),
|
|
24363
24363
|
exportAs: extractExportAs(metadata.exportAs),
|
|
24364
24364
|
providers: metadata.providers || null,
|
|
24365
|
-
viewQueries: extractQueriesMetadata(type, propMetadata, isViewQuery)
|
|
24365
|
+
viewQueries: extractQueriesMetadata(type, propMetadata, isViewQuery),
|
|
24366
|
+
// TODO(alxhub): pass through the standalone flag from the directive metadata once standalone
|
|
24367
|
+
// functionality is fully rolled out.
|
|
24368
|
+
isStandalone: false,
|
|
24366
24369
|
};
|
|
24367
24370
|
}
|
|
24368
24371
|
/**
|
|
@@ -24506,7 +24509,10 @@ function getPipeMetadata(type, meta) {
|
|
|
24506
24509
|
type: type,
|
|
24507
24510
|
name: type.name,
|
|
24508
24511
|
pipeName: meta.name,
|
|
24509
|
-
pure: meta.pure !== undefined ? meta.pure : true
|
|
24512
|
+
pure: meta.pure !== undefined ? meta.pure : true,
|
|
24513
|
+
// TODO(alxhub): pass through the standalone flag from the pipe metadata once standalone
|
|
24514
|
+
// functionality is fully rolled out.
|
|
24515
|
+
isStandalone: false,
|
|
24510
24516
|
};
|
|
24511
24517
|
}
|
|
24512
24518
|
|
|
@@ -26014,26 +26020,7 @@ class PlatformRef {
|
|
|
26014
26020
|
this._destroyed = false;
|
|
26015
26021
|
}
|
|
26016
26022
|
/**
|
|
26017
|
-
* Creates an instance of an `@NgModule` for the given platform
|
|
26018
|
-
*
|
|
26019
|
-
* @usageNotes
|
|
26020
|
-
*
|
|
26021
|
-
* The following example creates the NgModule for a browser platform.
|
|
26022
|
-
*
|
|
26023
|
-
* ```typescript
|
|
26024
|
-
* my_module.ts:
|
|
26025
|
-
*
|
|
26026
|
-
* @NgModule({
|
|
26027
|
-
* imports: [BrowserModule]
|
|
26028
|
-
* })
|
|
26029
|
-
* class MyModule {}
|
|
26030
|
-
*
|
|
26031
|
-
* main.ts:
|
|
26032
|
-
* import {MyModuleNgFactory} from './my_module.ngfactory';
|
|
26033
|
-
* import {platformBrowser} from '@angular/platform-browser';
|
|
26034
|
-
*
|
|
26035
|
-
* let moduleRef = platformBrowser().bootstrapModuleFactory(MyModuleNgFactory);
|
|
26036
|
-
* ```
|
|
26023
|
+
* Creates an instance of an `@NgModule` for the given platform.
|
|
26037
26024
|
*
|
|
26038
26025
|
* @deprecated Passing NgModule factories as the `PlatformRef.bootstrapModuleFactory` function
|
|
26039
26026
|
* argument is deprecated. Use the `PlatformRef.bootstrapModule` API instead.
|
|
@@ -26087,7 +26074,7 @@ class PlatformRef {
|
|
|
26087
26074
|
});
|
|
26088
26075
|
}
|
|
26089
26076
|
/**
|
|
26090
|
-
* Creates an instance of an `@NgModule` for a given platform
|
|
26077
|
+
* Creates an instance of an `@NgModule` for a given platform.
|
|
26091
26078
|
*
|
|
26092
26079
|
* @usageNotes
|
|
26093
26080
|
* ### Simple Example
|
|
@@ -26830,8 +26817,6 @@ var ng_module_factory_loader_impl = {};
|
|
|
26830
26817
|
* Use of this source code is governed by an MIT-style license that can be
|
|
26831
26818
|
* found in the LICENSE file at https://angular.io/license
|
|
26832
26819
|
*/
|
|
26833
|
-
// TODO(alxhub): recombine the interfaces and implementations here and move the docs back onto the
|
|
26834
|
-
// original classes.
|
|
26835
26820
|
/**
|
|
26836
26821
|
* @publicApi
|
|
26837
26822
|
*/
|
|
@@ -26847,43 +26832,88 @@ class DebugEventListener {
|
|
|
26847
26832
|
function asNativeElements(debugEls) {
|
|
26848
26833
|
return debugEls.map((el) => el.nativeElement);
|
|
26849
26834
|
}
|
|
26850
|
-
|
|
26835
|
+
/**
|
|
26836
|
+
* @publicApi
|
|
26837
|
+
*/
|
|
26838
|
+
class DebugNode {
|
|
26851
26839
|
constructor(nativeNode) {
|
|
26852
26840
|
this.nativeNode = nativeNode;
|
|
26853
26841
|
}
|
|
26842
|
+
/**
|
|
26843
|
+
* The `DebugElement` parent. Will be `null` if this is the root element.
|
|
26844
|
+
*/
|
|
26854
26845
|
get parent() {
|
|
26855
26846
|
const parent = this.nativeNode.parentNode;
|
|
26856
|
-
return parent ? new
|
|
26847
|
+
return parent ? new DebugElement(parent) : null;
|
|
26857
26848
|
}
|
|
26849
|
+
/**
|
|
26850
|
+
* The host dependency injector. For example, the root element's component instance injector.
|
|
26851
|
+
*/
|
|
26858
26852
|
get injector() {
|
|
26859
26853
|
return getInjector(this.nativeNode);
|
|
26860
26854
|
}
|
|
26855
|
+
/**
|
|
26856
|
+
* The element's own component instance, if it has one.
|
|
26857
|
+
*/
|
|
26861
26858
|
get componentInstance() {
|
|
26862
26859
|
const nativeElement = this.nativeNode;
|
|
26863
26860
|
return nativeElement &&
|
|
26864
26861
|
(getComponent$1(nativeElement) || getOwningComponent(nativeElement));
|
|
26865
26862
|
}
|
|
26863
|
+
/**
|
|
26864
|
+
* An object that provides parent context for this element. Often an ancestor component instance
|
|
26865
|
+
* that governs this element.
|
|
26866
|
+
*
|
|
26867
|
+
* When an element is repeated within *ngFor, the context is an `NgForOf` whose `$implicit`
|
|
26868
|
+
* property is the value of the row instance value. For example, the `hero` in `*ngFor="let hero
|
|
26869
|
+
* of heroes"`.
|
|
26870
|
+
*/
|
|
26866
26871
|
get context() {
|
|
26867
26872
|
return getComponent$1(this.nativeNode) || getContext(this.nativeNode);
|
|
26868
26873
|
}
|
|
26874
|
+
/**
|
|
26875
|
+
* The callbacks attached to the component's @Output properties and/or the element's event
|
|
26876
|
+
* properties.
|
|
26877
|
+
*/
|
|
26869
26878
|
get listeners() {
|
|
26870
26879
|
return getListeners(this.nativeNode).filter(listener => listener.type === 'dom');
|
|
26871
26880
|
}
|
|
26881
|
+
/**
|
|
26882
|
+
* Dictionary of objects associated with template local variables (e.g. #foo), keyed by the local
|
|
26883
|
+
* variable name.
|
|
26884
|
+
*/
|
|
26872
26885
|
get references() {
|
|
26873
26886
|
return getLocalRefs(this.nativeNode);
|
|
26874
26887
|
}
|
|
26888
|
+
/**
|
|
26889
|
+
* This component's injector lookup tokens. Includes the component itself plus the tokens that the
|
|
26890
|
+
* component lists in its providers metadata.
|
|
26891
|
+
*/
|
|
26875
26892
|
get providerTokens() {
|
|
26876
26893
|
return getInjectionTokens(this.nativeNode);
|
|
26877
26894
|
}
|
|
26878
26895
|
}
|
|
26879
|
-
|
|
26896
|
+
/**
|
|
26897
|
+
* @publicApi
|
|
26898
|
+
*
|
|
26899
|
+
* @see [Component testing scenarios](guide/testing-components-scenarios)
|
|
26900
|
+
* @see [Basics of testing components](guide/testing-components-basics)
|
|
26901
|
+
* @see [Testing utility APIs](guide/testing-utility-apis)
|
|
26902
|
+
*/
|
|
26903
|
+
class DebugElement extends DebugNode {
|
|
26880
26904
|
constructor(nativeNode) {
|
|
26881
26905
|
ngDevMode && assertDomNode(nativeNode);
|
|
26882
26906
|
super(nativeNode);
|
|
26883
26907
|
}
|
|
26908
|
+
/**
|
|
26909
|
+
* The underlying DOM element at the root of the component.
|
|
26910
|
+
*/
|
|
26884
26911
|
get nativeElement() {
|
|
26885
26912
|
return this.nativeNode.nodeType == Node.ELEMENT_NODE ? this.nativeNode : null;
|
|
26886
26913
|
}
|
|
26914
|
+
/**
|
|
26915
|
+
* The element tag name, if it is an element.
|
|
26916
|
+
*/
|
|
26887
26917
|
get name() {
|
|
26888
26918
|
const context = getLContext(this.nativeNode);
|
|
26889
26919
|
if (context !== null) {
|
|
@@ -26924,6 +26954,9 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
|
|
|
26924
26954
|
collectPropertyBindings(properties, tNode, lView, tData);
|
|
26925
26955
|
return properties;
|
|
26926
26956
|
}
|
|
26957
|
+
/**
|
|
26958
|
+
* A map of attribute names to attribute values for an element.
|
|
26959
|
+
*/
|
|
26927
26960
|
get attributes() {
|
|
26928
26961
|
const attributes = {};
|
|
26929
26962
|
const element = this.nativeElement;
|
|
@@ -26972,12 +27005,29 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
|
|
|
26972
27005
|
}
|
|
26973
27006
|
return attributes;
|
|
26974
27007
|
}
|
|
27008
|
+
/**
|
|
27009
|
+
* The inline styles of the DOM element.
|
|
27010
|
+
*
|
|
27011
|
+
* Will be `null` if there is no `style` property on the underlying DOM element.
|
|
27012
|
+
*
|
|
27013
|
+
* @see [ElementCSSInlineStyle](https://developer.mozilla.org/en-US/docs/Web/API/ElementCSSInlineStyle/style)
|
|
27014
|
+
*/
|
|
26975
27015
|
get styles() {
|
|
26976
27016
|
if (this.nativeElement && this.nativeElement.style) {
|
|
26977
27017
|
return this.nativeElement.style;
|
|
26978
27018
|
}
|
|
26979
27019
|
return {};
|
|
26980
27020
|
}
|
|
27021
|
+
/**
|
|
27022
|
+
* A map containing the class names on the element as keys.
|
|
27023
|
+
*
|
|
27024
|
+
* This map is derived from the `className` property of the DOM element.
|
|
27025
|
+
*
|
|
27026
|
+
* Note: The values of this object will always be `true`. The class key will not appear in the KV
|
|
27027
|
+
* object if it does not exist on the element.
|
|
27028
|
+
*
|
|
27029
|
+
* @see [Element.className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className)
|
|
27030
|
+
*/
|
|
26981
27031
|
get classes() {
|
|
26982
27032
|
const result = {};
|
|
26983
27033
|
const element = this.nativeElement;
|
|
@@ -26987,15 +27037,23 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
|
|
|
26987
27037
|
classes.forEach((value) => result[value] = true);
|
|
26988
27038
|
return result;
|
|
26989
27039
|
}
|
|
27040
|
+
/**
|
|
27041
|
+
* The `childNodes` of the DOM element as a `DebugNode` array.
|
|
27042
|
+
*
|
|
27043
|
+
* @see [Node.childNodes](https://developer.mozilla.org/en-US/docs/Web/API/Node/childNodes)
|
|
27044
|
+
*/
|
|
26990
27045
|
get childNodes() {
|
|
26991
27046
|
const childNodes = this.nativeNode.childNodes;
|
|
26992
27047
|
const children = [];
|
|
26993
27048
|
for (let i = 0; i < childNodes.length; i++) {
|
|
26994
27049
|
const element = childNodes[i];
|
|
26995
|
-
children.push(
|
|
27050
|
+
children.push(getDebugNode(element));
|
|
26996
27051
|
}
|
|
26997
27052
|
return children;
|
|
26998
27053
|
}
|
|
27054
|
+
/**
|
|
27055
|
+
* The immediate `DebugElement` children. Walk the tree by descending through `children`.
|
|
27056
|
+
*/
|
|
26999
27057
|
get children() {
|
|
27000
27058
|
const nativeElement = this.nativeElement;
|
|
27001
27059
|
if (!nativeElement)
|
|
@@ -27004,24 +27062,45 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
|
|
|
27004
27062
|
const children = [];
|
|
27005
27063
|
for (let i = 0; i < childNodes.length; i++) {
|
|
27006
27064
|
const element = childNodes[i];
|
|
27007
|
-
children.push(
|
|
27065
|
+
children.push(getDebugNode(element));
|
|
27008
27066
|
}
|
|
27009
27067
|
return children;
|
|
27010
27068
|
}
|
|
27069
|
+
/**
|
|
27070
|
+
* @returns the first `DebugElement` that matches the predicate at any depth in the subtree.
|
|
27071
|
+
*/
|
|
27011
27072
|
query(predicate) {
|
|
27012
27073
|
const results = this.queryAll(predicate);
|
|
27013
27074
|
return results[0] || null;
|
|
27014
27075
|
}
|
|
27076
|
+
/**
|
|
27077
|
+
* @returns All `DebugElement` matches for the predicate at any depth in the subtree.
|
|
27078
|
+
*/
|
|
27015
27079
|
queryAll(predicate) {
|
|
27016
27080
|
const matches = [];
|
|
27017
|
-
|
|
27081
|
+
_queryAll(this, predicate, matches, true);
|
|
27018
27082
|
return matches;
|
|
27019
27083
|
}
|
|
27084
|
+
/**
|
|
27085
|
+
* @returns All `DebugNode` matches for the predicate at any depth in the subtree.
|
|
27086
|
+
*/
|
|
27020
27087
|
queryAllNodes(predicate) {
|
|
27021
27088
|
const matches = [];
|
|
27022
|
-
|
|
27089
|
+
_queryAll(this, predicate, matches, false);
|
|
27023
27090
|
return matches;
|
|
27024
27091
|
}
|
|
27092
|
+
/**
|
|
27093
|
+
* Triggers the event by its name if there is a corresponding listener in the element's
|
|
27094
|
+
* `listeners` collection.
|
|
27095
|
+
*
|
|
27096
|
+
* If the event lacks a listener or there's some other problem, consider
|
|
27097
|
+
* calling `nativeElement.dispatchEvent(eventObject)`.
|
|
27098
|
+
*
|
|
27099
|
+
* @param eventName The name of the event to trigger
|
|
27100
|
+
* @param eventObj The _event object_ expected by the handler
|
|
27101
|
+
*
|
|
27102
|
+
* @see [Testing components scenarios](guide/testing-components-scenarios#trigger-event-handler)
|
|
27103
|
+
*/
|
|
27025
27104
|
triggerEventHandler(eventName, eventObj) {
|
|
27026
27105
|
const node = this.nativeNode;
|
|
27027
27106
|
const invokedListeners = [];
|
|
@@ -27080,11 +27159,11 @@ function isPrimitiveValue(value) {
|
|
|
27080
27159
|
return typeof value === 'string' || typeof value === 'boolean' || typeof value === 'number' ||
|
|
27081
27160
|
value === null;
|
|
27082
27161
|
}
|
|
27083
|
-
function
|
|
27162
|
+
function _queryAll(parentElement, predicate, matches, elementsOnly) {
|
|
27084
27163
|
const context = getLContext(parentElement.nativeNode);
|
|
27085
27164
|
if (context !== null) {
|
|
27086
27165
|
const parentTNode = context.lView[TVIEW].data[context.nodeIndex];
|
|
27087
|
-
|
|
27166
|
+
_queryNodeChildren(parentTNode, context.lView, predicate, matches, elementsOnly, parentElement.nativeNode);
|
|
27088
27167
|
}
|
|
27089
27168
|
else {
|
|
27090
27169
|
// If the context is null, then `parentElement` was either created with Renderer2 or native DOM
|
|
@@ -27102,26 +27181,26 @@ function _queryAllR3(parentElement, predicate, matches, elementsOnly) {
|
|
|
27102
27181
|
* @param elementsOnly whether only elements should be searched
|
|
27103
27182
|
* @param rootNativeNode the root native node on which predicate should not be matched
|
|
27104
27183
|
*/
|
|
27105
|
-
function
|
|
27184
|
+
function _queryNodeChildren(tNode, lView, predicate, matches, elementsOnly, rootNativeNode) {
|
|
27106
27185
|
ngDevMode && assertTNodeForLView(tNode, lView);
|
|
27107
27186
|
const nativeNode = getNativeByTNodeOrNull(tNode, lView);
|
|
27108
27187
|
// For each type of TNode, specific logic is executed.
|
|
27109
27188
|
if (tNode.type & (3 /* AnyRNode */ | 8 /* ElementContainer */)) {
|
|
27110
27189
|
// Case 1: the TNode is an element
|
|
27111
27190
|
// The native node has to be checked.
|
|
27112
|
-
|
|
27191
|
+
_addQueryMatch(nativeNode, predicate, matches, elementsOnly, rootNativeNode);
|
|
27113
27192
|
if (isComponentHost(tNode)) {
|
|
27114
27193
|
// If the element is the host of a component, then all nodes in its view have to be processed.
|
|
27115
27194
|
// Note: the component's content (tNode.child) will be processed from the insertion points.
|
|
27116
27195
|
const componentView = getComponentLViewByIndex(tNode.index, lView);
|
|
27117
27196
|
if (componentView && componentView[TVIEW].firstChild) {
|
|
27118
|
-
|
|
27197
|
+
_queryNodeChildren(componentView[TVIEW].firstChild, componentView, predicate, matches, elementsOnly, rootNativeNode);
|
|
27119
27198
|
}
|
|
27120
27199
|
}
|
|
27121
27200
|
else {
|
|
27122
27201
|
if (tNode.child) {
|
|
27123
27202
|
// Otherwise, its children have to be processed.
|
|
27124
|
-
|
|
27203
|
+
_queryNodeChildren(tNode.child, lView, predicate, matches, elementsOnly, rootNativeNode);
|
|
27125
27204
|
}
|
|
27126
27205
|
// We also have to query the DOM directly in order to catch elements inserted through
|
|
27127
27206
|
// Renderer2. Note that this is __not__ optimal, because we're walking similar trees multiple
|
|
@@ -27137,16 +27216,16 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
|
|
|
27137
27216
|
// processed.
|
|
27138
27217
|
const nodeOrContainer = lView[tNode.index];
|
|
27139
27218
|
if (isLContainer(nodeOrContainer)) {
|
|
27140
|
-
|
|
27219
|
+
_queryNodeChildrenInContainer(nodeOrContainer, predicate, matches, elementsOnly, rootNativeNode);
|
|
27141
27220
|
}
|
|
27142
27221
|
}
|
|
27143
27222
|
else if (tNode.type & 4 /* Container */) {
|
|
27144
27223
|
// Case 2: the TNode is a container
|
|
27145
27224
|
// The native node has to be checked.
|
|
27146
27225
|
const lContainer = lView[tNode.index];
|
|
27147
|
-
|
|
27226
|
+
_addQueryMatch(lContainer[NATIVE], predicate, matches, elementsOnly, rootNativeNode);
|
|
27148
27227
|
// Each view inside the container has to be processed.
|
|
27149
|
-
|
|
27228
|
+
_queryNodeChildrenInContainer(lContainer, predicate, matches, elementsOnly, rootNativeNode);
|
|
27150
27229
|
}
|
|
27151
27230
|
else if (tNode.type & 16 /* Projection */) {
|
|
27152
27231
|
// Case 3: the TNode is a projection insertion point (i.e. a <ng-content>).
|
|
@@ -27156,18 +27235,18 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
|
|
|
27156
27235
|
const head = componentHost.projection[tNode.projection];
|
|
27157
27236
|
if (Array.isArray(head)) {
|
|
27158
27237
|
for (let nativeNode of head) {
|
|
27159
|
-
|
|
27238
|
+
_addQueryMatch(nativeNode, predicate, matches, elementsOnly, rootNativeNode);
|
|
27160
27239
|
}
|
|
27161
27240
|
}
|
|
27162
27241
|
else if (head) {
|
|
27163
27242
|
const nextLView = componentView[PARENT];
|
|
27164
27243
|
const nextTNode = nextLView[TVIEW].data[head.index];
|
|
27165
|
-
|
|
27244
|
+
_queryNodeChildren(nextTNode, nextLView, predicate, matches, elementsOnly, rootNativeNode);
|
|
27166
27245
|
}
|
|
27167
27246
|
}
|
|
27168
27247
|
else if (tNode.child) {
|
|
27169
27248
|
// Case 4: the TNode is a view.
|
|
27170
|
-
|
|
27249
|
+
_queryNodeChildren(tNode.child, lView, predicate, matches, elementsOnly, rootNativeNode);
|
|
27171
27250
|
}
|
|
27172
27251
|
// We don't want to go to the next sibling of the root node.
|
|
27173
27252
|
if (rootNativeNode !== nativeNode) {
|
|
@@ -27175,7 +27254,7 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
|
|
|
27175
27254
|
// link, depending on whether the current node has been projected.
|
|
27176
27255
|
const nextTNode = (tNode.flags & 4 /* isProjected */) ? tNode.projectionNext : tNode.next;
|
|
27177
27256
|
if (nextTNode) {
|
|
27178
|
-
|
|
27257
|
+
_queryNodeChildren(nextTNode, lView, predicate, matches, elementsOnly, rootNativeNode);
|
|
27179
27258
|
}
|
|
27180
27259
|
}
|
|
27181
27260
|
}
|
|
@@ -27188,12 +27267,12 @@ function _queryNodeChildrenR3(tNode, lView, predicate, matches, elementsOnly, ro
|
|
|
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
|
|
27270
|
+
function _queryNodeChildrenInContainer(lContainer, predicate, matches, elementsOnly, rootNativeNode) {
|
|
27192
27271
|
for (let i = CONTAINER_HEADER_OFFSET; i < lContainer.length; i++) {
|
|
27193
27272
|
const childView = lContainer[i];
|
|
27194
27273
|
const firstChild = childView[TVIEW].firstChild;
|
|
27195
27274
|
if (firstChild) {
|
|
27196
|
-
|
|
27275
|
+
_queryNodeChildren(firstChild, childView, predicate, matches, elementsOnly, rootNativeNode);
|
|
27197
27276
|
}
|
|
27198
27277
|
}
|
|
27199
27278
|
}
|
|
@@ -27206,7 +27285,7 @@ function _queryNodeChildrenInContainerR3(lContainer, predicate, matches, element
|
|
|
27206
27285
|
* @param elementsOnly whether only elements should be searched
|
|
27207
27286
|
* @param rootNativeNode the root native node on which predicate should not be matched
|
|
27208
27287
|
*/
|
|
27209
|
-
function
|
|
27288
|
+
function _addQueryMatch(nativeNode, predicate, matches, elementsOnly, rootNativeNode) {
|
|
27210
27289
|
if (rootNativeNode !== nativeNode) {
|
|
27211
27290
|
const debugNode = getDebugNode(nativeNode);
|
|
27212
27291
|
if (!debugNode) {
|
|
@@ -27215,7 +27294,7 @@ function _addQueryMatchR3(nativeNode, predicate, matches, elementsOnly, rootNati
|
|
|
27215
27294
|
// Type of the "predicate and "matches" array are set based on the value of
|
|
27216
27295
|
// the "elementsOnly" parameter. TypeScript is not able to properly infer these
|
|
27217
27296
|
// types with generics, so we manually cast the parameters accordingly.
|
|
27218
|
-
if (elementsOnly && debugNode instanceof
|
|
27297
|
+
if (elementsOnly && (debugNode instanceof DebugElement) && predicate(debugNode) &&
|
|
27219
27298
|
matches.indexOf(debugNode) === -1) {
|
|
27220
27299
|
matches.push(debugNode);
|
|
27221
27300
|
}
|
|
@@ -27240,7 +27319,7 @@ function _queryNativeNodeDescendants(parentNode, predicate, matches, elementsOnl
|
|
|
27240
27319
|
const node = nodes[i];
|
|
27241
27320
|
const debugNode = getDebugNode(node);
|
|
27242
27321
|
if (debugNode) {
|
|
27243
|
-
if (elementsOnly && debugNode instanceof
|
|
27322
|
+
if (elementsOnly && (debugNode instanceof DebugElement) && predicate(debugNode) &&
|
|
27244
27323
|
matches.indexOf(debugNode) === -1) {
|
|
27245
27324
|
matches.push(debugNode);
|
|
27246
27325
|
}
|
|
@@ -27281,25 +27360,24 @@ function collectPropertyBindings(properties, tNode, lView, tData) {
|
|
|
27281
27360
|
// Need to keep the nodes in a global Map so that multiple angular apps are supported.
|
|
27282
27361
|
const _nativeNodeToDebugNode = new Map();
|
|
27283
27362
|
const NG_DEBUG_PROPERTY = '__ng_debug__';
|
|
27284
|
-
|
|
27363
|
+
/**
|
|
27364
|
+
* @publicApi
|
|
27365
|
+
*/
|
|
27366
|
+
function getDebugNode(nativeNode) {
|
|
27285
27367
|
if (nativeNode instanceof Node) {
|
|
27286
27368
|
if (!(nativeNode.hasOwnProperty(NG_DEBUG_PROPERTY))) {
|
|
27287
27369
|
nativeNode[NG_DEBUG_PROPERTY] = nativeNode.nodeType == Node.ELEMENT_NODE ?
|
|
27288
|
-
new
|
|
27289
|
-
new
|
|
27370
|
+
new DebugElement(nativeNode) :
|
|
27371
|
+
new DebugNode(nativeNode);
|
|
27290
27372
|
}
|
|
27291
27373
|
return nativeNode[NG_DEBUG_PROPERTY];
|
|
27292
27374
|
}
|
|
27293
27375
|
return null;
|
|
27294
27376
|
}
|
|
27295
|
-
|
|
27296
|
-
|
|
27297
|
-
*/
|
|
27298
|
-
const getDebugNode = getDebugNode__POST_R3__;
|
|
27299
|
-
function getDebugNodeR2__POST_R3__(_nativeNode) {
|
|
27377
|
+
// TODO: cleanup all references to this function and remove it.
|
|
27378
|
+
function getDebugNodeR2(_nativeNode) {
|
|
27300
27379
|
return null;
|
|
27301
27380
|
}
|
|
27302
|
-
const getDebugNodeR2 = getDebugNodeR2__POST_R3__;
|
|
27303
27381
|
function getAllDebugNodes() {
|
|
27304
27382
|
return Array.from(_nativeNodeToDebugNode.values());
|
|
27305
27383
|
}
|
|
@@ -27309,14 +27387,6 @@ function indexDebugNode(node) {
|
|
|
27309
27387
|
function removeDebugNodeFromIndex(node) {
|
|
27310
27388
|
_nativeNodeToDebugNode.delete(node.nativeNode);
|
|
27311
27389
|
}
|
|
27312
|
-
/**
|
|
27313
|
-
* @publicApi
|
|
27314
|
-
*/
|
|
27315
|
-
const DebugNode = DebugNode__POST_R3__;
|
|
27316
|
-
/**
|
|
27317
|
-
* @publicApi
|
|
27318
|
-
*/
|
|
27319
|
-
const DebugElement = DebugElement__POST_R3__;
|
|
27320
27390
|
|
|
27321
27391
|
/**
|
|
27322
27392
|
* @license
|
|
@@ -28549,6 +28619,18 @@ ApplicationModule.ɵinj = /*@__PURE__*/ ɵɵdefineInjector({ providers: APPLICAT
|
|
|
28549
28619
|
args: [{ providers: APPLICATION_MODULE_PROVIDERS }]
|
|
28550
28620
|
}], function () { return [{ type: ApplicationRef }]; }, null); })();
|
|
28551
28621
|
|
|
28622
|
+
/**
|
|
28623
|
+
* @license
|
|
28624
|
+
* Copyright Google LLC All Rights Reserved.
|
|
28625
|
+
*
|
|
28626
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
28627
|
+
* found in the LICENSE file at https://angular.io/license
|
|
28628
|
+
*/
|
|
28629
|
+
/** Coerces a value (typically a string) to a boolean. */
|
|
28630
|
+
function coerceToBoolean(value) {
|
|
28631
|
+
return typeof value === 'boolean' ? value : (value != null && value !== 'false');
|
|
28632
|
+
}
|
|
28633
|
+
|
|
28552
28634
|
/**
|
|
28553
28635
|
* @license
|
|
28554
28636
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -28706,5 +28788,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
28706
28788
|
* Generated bundle index. Do not edit.
|
|
28707
28789
|
*/
|
|
28708
28790
|
|
|
28709
|
-
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 };
|
|
28791
|
+
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 };
|
|
28710
28792
|
//# sourceMappingURL=core.mjs.map
|