@angular/core 15.2.6 → 15.2.7
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 +5 -4
- 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 +4 -3
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +4 -3
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +4 -3
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +4 -3
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/schematics/migrations/relative-link-resolution/bundle.js +7 -7
- package/schematics/migrations/router-link-with-href/bundle.js +10 -10
- package/schematics/ng-generate/standalone-migration/bundle.js +357 -334
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
package/fesm2020/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v15.2.
|
|
2
|
+
* @license Angular v15.2.7
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -8347,7 +8347,7 @@ class Version {
|
|
|
8347
8347
|
/**
|
|
8348
8348
|
* @publicApi
|
|
8349
8349
|
*/
|
|
8350
|
-
const VERSION = new Version('15.2.
|
|
8350
|
+
const VERSION = new Version('15.2.7');
|
|
8351
8351
|
|
|
8352
8352
|
// This default value is when checking the hierarchy for a token.
|
|
8353
8353
|
//
|
|
@@ -12223,7 +12223,8 @@ class ComponentRef extends ComponentRef$1 {
|
|
|
12223
12223
|
if (inputData !== null && (dataValue = inputData[name])) {
|
|
12224
12224
|
const lView = this._rootLView;
|
|
12225
12225
|
setInputsForProperty(lView[TVIEW], lView, dataValue, name, value);
|
|
12226
|
-
|
|
12226
|
+
const childComponentLView = getComponentLViewByIndex(this._tNode.index, lView);
|
|
12227
|
+
markViewDirty(childComponentLView);
|
|
12227
12228
|
}
|
|
12228
12229
|
else {
|
|
12229
12230
|
if (ngDevMode) {
|