@angular/core 17.3.0 → 17.3.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.
@@ -20264,6 +20264,12 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
20264
20264
  const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
20265
20265
  unit.update.push(createBindingOp(xref, BindingKind.Attribute, attr.name, literal(attr.value), null, securityContext, true, false, null, asMessage(attr.i18n), attr.sourceSpan));
20266
20266
  }
20267
+ for (const attr of root.inputs) {
20268
+ if (attr.type !== 4 && attr.type !== 1) {
20269
+ const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
20270
+ unit.create.push(createExtractedAttributeOp(xref, BindingKind.Property, null, attr.name, null, null, null, securityContext));
20271
+ }
20272
+ }
20267
20273
  const tagName = root instanceof Element ? root.name : root.tagName;
20268
20274
  return tagName === NG_TEMPLATE_TAG_NAME ? null : tagName;
20269
20275
  }
@@ -25992,7 +25998,7 @@ function publishFacade(global) {
25992
25998
  }
25993
25999
 
25994
26000
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
25995
- var VERSION2 = new Version("17.3.0");
26001
+ var VERSION2 = new Version("17.3.1");
25996
26002
 
25997
26003
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
25998
26004
  var _VisitorMode;