@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.
@@ -20422,6 +20422,12 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
20422
20422
  const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
20423
20423
  unit.update.push(createBindingOp(xref, BindingKind.Attribute, attr.name, literal(attr.value), null, securityContext, true, false, null, asMessage(attr.i18n), attr.sourceSpan));
20424
20424
  }
20425
+ for (const attr of root.inputs) {
20426
+ if (attr.type !== 4 && attr.type !== 1) {
20427
+ const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
20428
+ unit.create.push(createExtractedAttributeOp(xref, BindingKind.Property, null, attr.name, null, null, null, securityContext));
20429
+ }
20430
+ }
20425
20431
  const tagName = root instanceof Element ? root.name : root.tagName;
20426
20432
  return tagName === NG_TEMPLATE_TAG_NAME ? null : tagName;
20427
20433
  }
@@ -26150,7 +26156,7 @@ function publishFacade(global) {
26150
26156
  }
26151
26157
 
26152
26158
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
26153
- var VERSION2 = new Version("17.3.0");
26159
+ var VERSION2 = new Version("17.3.1");
26154
26160
 
26155
26161
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26156
26162
  var _VisitorMode;