@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.
- package/esm2022/src/linker/component_factory.mjs +1 -1
- package/esm2022/src/render3/component.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +12 -2
- package/esm2022/src/util/raf.mjs +20 -5
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +32 -7
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +13 -3
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
- package/schematics/migrations/remove-module-id/bundle.js +14 -14
- package/schematics/ng-generate/standalone-migration/bundle.js +463 -414
- package/schematics/ng-generate/standalone-migration/bundle.js.map +3 -3
- package/testing/index.d.ts +1 -1
package/fesm2022/testing.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.1.
|
|
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.
|
|
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
|
-
|
|
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);
|