@angular/core 14.2.9 → 14.2.10
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/esm2020/src/render3/component_ref.mjs +2 -2
- 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 +3 -3
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +3 -3
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +3 -3
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +3 -3
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
package/fesm2020/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.2.
|
|
2
|
+
* @license Angular v14.2.10
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -7249,7 +7249,7 @@ class Version {
|
|
|
7249
7249
|
/**
|
|
7250
7250
|
* @publicApi
|
|
7251
7251
|
*/
|
|
7252
|
-
const VERSION = new Version('14.2.
|
|
7252
|
+
const VERSION = new Version('14.2.10');
|
|
7253
7253
|
|
|
7254
7254
|
/**
|
|
7255
7255
|
* @license
|
|
@@ -13817,7 +13817,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
13817
13817
|
const elementName = this.componentDef.selectors[0][0] || 'div';
|
|
13818
13818
|
const hostRNode = rootSelectorOrNode ?
|
|
13819
13819
|
locateHostElement(hostRenderer, rootSelectorOrNode, this.componentDef.encapsulation) :
|
|
13820
|
-
createElementNode(
|
|
13820
|
+
createElementNode(hostRenderer, elementName, getNamespace(elementName));
|
|
13821
13821
|
const rootFlags = this.componentDef.onPush ? 32 /* LViewFlags.Dirty */ | 256 /* LViewFlags.IsRoot */ :
|
|
13822
13822
|
16 /* LViewFlags.CheckAlways */ | 256 /* LViewFlags.IsRoot */;
|
|
13823
13823
|
// Create the root view. Uses empty TView and ContentTemplate.
|