@angular/core 16.1.2 → 16.1.4

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 v16.1.2
2
+ * @license Angular v16.1.4
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.1.2
2
+ * @license Angular v16.1.4
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -10482,7 +10482,7 @@ class Version {
10482
10482
  /**
10483
10483
  * @publicApi
10484
10484
  */
10485
- const VERSION = new Version('16.1.2');
10485
+ const VERSION = new Version('16.1.4');
10486
10486
 
10487
10487
  // This default value is when checking the hierarchy for a token.
10488
10488
  //
@@ -13345,7 +13345,17 @@ class ChainedInjector {
13345
13345
  */
13346
13346
  class ComponentFactory extends ComponentFactory$1 {
13347
13347
  get inputs() {
13348
- return toRefArray(this.componentDef.inputs);
13348
+ const componentDef = this.componentDef;
13349
+ const inputTransforms = componentDef.inputTransforms;
13350
+ const refArray = toRefArray(componentDef.inputs);
13351
+ if (inputTransforms !== null) {
13352
+ for (const input of refArray) {
13353
+ if (inputTransforms.hasOwnProperty(input.propName)) {
13354
+ input.transform = inputTransforms[input.propName];
13355
+ }
13356
+ }
13357
+ }
13358
+ return refArray;
13349
13359
  }
13350
13360
  get outputs() {
13351
13361
  return toRefArray(this.componentDef.outputs);