@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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.2.6
2
+ * @license Angular v15.2.7
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -8697,7 +8697,7 @@ class Version {
8697
8697
  /**
8698
8698
  * @publicApi
8699
8699
  */
8700
- const VERSION = new Version('15.2.6');
8700
+ const VERSION = new Version('15.2.7');
8701
8701
 
8702
8702
  // This default value is when checking the hierarchy for a token.
8703
8703
  //
@@ -12529,7 +12529,8 @@ class ComponentRef extends ComponentRef$1 {
12529
12529
  if (inputData !== null && (dataValue = inputData[name])) {
12530
12530
  const lView = this._rootLView;
12531
12531
  setInputsForProperty(lView[TVIEW], lView, dataValue, name, value);
12532
- markDirtyIfOnPush(lView, this._tNode.index);
12532
+ const childComponentLView = getComponentLViewByIndex(this._tNode.index, lView);
12533
+ markViewDirty(childComponentLView);
12533
12534
  }
12534
12535
  else {
12535
12536
  if (ngDevMode) {