@angular/core 18.0.0-next.0 → 18.0.0-next.1

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.
Files changed (30) hide show
  1. package/esm2022/src/application/application_ref.mjs +2 -2
  2. package/esm2022/src/defer/instructions.mjs +2 -2
  3. package/esm2022/src/hydration/error_handling.mjs +6 -3
  4. package/esm2022/src/hydration/utils.mjs +5 -4
  5. package/esm2022/src/linker/template_ref.mjs +2 -2
  6. package/esm2022/src/render3/component_ref.mjs +1 -1
  7. package/esm2022/src/render3/instructions/change_detection.mjs +26 -18
  8. package/esm2022/src/render3/instructions/mark_view_dirty.mjs +11 -2
  9. package/esm2022/src/render3/state.mjs +13 -1
  10. package/esm2022/src/render3/view_manipulation.mjs +2 -2
  11. package/esm2022/src/version.mjs +1 -1
  12. package/esm2022/testing/src/logger.mjs +3 -3
  13. package/fesm2022/core.mjs +17514 -17483
  14. package/fesm2022/core.mjs.map +1 -1
  15. package/fesm2022/primitives/signals.mjs +1 -1
  16. package/fesm2022/rxjs-interop.mjs +1 -1
  17. package/fesm2022/testing.mjs +1 -1
  18. package/index.d.ts +1 -1
  19. package/package.json +1 -1
  20. package/primitives/signals/index.d.ts +1 -1
  21. package/rxjs-interop/index.d.ts +1 -1
  22. package/schematics/migrations/block-template-entities/bundle.js +7 -1
  23. package/schematics/migrations/block-template-entities/bundle.js.map +2 -2
  24. package/schematics/migrations/invalid-two-way-bindings/bundle.js +7 -1
  25. package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
  26. package/schematics/ng-generate/control-flow-migration/bundle.js +7 -1
  27. package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
  28. package/schematics/ng-generate/standalone-migration/bundle.js +2549 -1169
  29. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  30. package/testing/index.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v18.0.0-next.0
2
+ * @license Angular v18.0.0-next.1
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 v18.0.0-next.0
2
+ * @license Angular v18.0.0-next.1
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 v18.0.0-next.0
2
+ * @license Angular v18.0.0-next.1
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v18.0.0-next.0
2
+ * @license Angular v18.0.0-next.1
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "18.0.0-next.0",
3
+ "version": "18.0.0-next.1",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v18.0.0-next.0
2
+ * @license Angular v18.0.0-next.1
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 v18.0.0-next.0
2
+ * @license Angular v18.0.0-next.1
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -19199,6 +19199,12 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
19199
19199
  const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
19200
19200
  unit.update.push(createBindingOp(xref, BindingKind.Attribute, attr.name, literal(attr.value), null, securityContext, true, false, null, asMessage(attr.i18n), attr.sourceSpan));
19201
19201
  }
19202
+ for (const attr of root.inputs) {
19203
+ if (attr.type !== BindingType.Animation && attr.type !== BindingType.Attribute) {
19204
+ const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
19205
+ unit.create.push(createExtractedAttributeOp(xref, BindingKind.Property, null, attr.name, null, null, null, securityContext));
19206
+ }
19207
+ }
19202
19208
  const tagName = root instanceof Element ? root.name : root.tagName;
19203
19209
  return tagName === NG_TEMPLATE_TAG_NAME ? null : tagName;
19204
19210
  }
@@ -22592,7 +22598,7 @@ function publishFacade(global) {
22592
22598
  }
22593
22599
 
22594
22600
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
22595
- var VERSION2 = new Version("18.0.0-next.0");
22601
+ var VERSION2 = new Version("18.0.0-next.1");
22596
22602
 
22597
22603
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
22598
22604
  var _VisitorMode;