@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.
- package/esm2022/src/application/application_ref.mjs +2 -2
- package/esm2022/src/defer/instructions.mjs +2 -2
- package/esm2022/src/hydration/error_handling.mjs +6 -3
- package/esm2022/src/hydration/utils.mjs +5 -4
- package/esm2022/src/linker/template_ref.mjs +2 -2
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/instructions/change_detection.mjs +26 -18
- package/esm2022/src/render3/instructions/mark_view_dirty.mjs +11 -2
- package/esm2022/src/render3/state.mjs +13 -1
- package/esm2022/src/render3/view_manipulation.mjs +2 -2
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +17514 -17483
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/block-template-entities/bundle.js +7 -1
- package/schematics/migrations/block-template-entities/bundle.js.map +2 -2
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +7 -1
- package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
- package/schematics/ng-generate/control-flow-migration/bundle.js +7 -1
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
- package/schematics/ng-generate/standalone-migration/bundle.js +2549 -1169
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
|
@@ -19130,6 +19130,12 @@ function ingestControlFlowInsertionPoint(unit, xref, node) {
|
|
|
19130
19130
|
const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
|
|
19131
19131
|
unit.update.push(createBindingOp(xref, BindingKind.Attribute, attr.name, literal(attr.value), null, securityContext, true, false, null, asMessage(attr.i18n), attr.sourceSpan));
|
|
19132
19132
|
}
|
|
19133
|
+
for (const attr of root.inputs) {
|
|
19134
|
+
if (attr.type !== BindingType.Animation && attr.type !== BindingType.Attribute) {
|
|
19135
|
+
const securityContext = domSchema.securityContext(NG_TEMPLATE_TAG_NAME, attr.name, true);
|
|
19136
|
+
unit.create.push(createExtractedAttributeOp(xref, BindingKind.Property, null, attr.name, null, null, null, securityContext));
|
|
19137
|
+
}
|
|
19138
|
+
}
|
|
19133
19139
|
const tagName = root instanceof Element ? root.name : root.tagName;
|
|
19134
19140
|
return tagName === NG_TEMPLATE_TAG_NAME ? null : tagName;
|
|
19135
19141
|
}
|
|
@@ -22523,7 +22529,7 @@ function publishFacade(global) {
|
|
|
22523
22529
|
}
|
|
22524
22530
|
|
|
22525
22531
|
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
|
|
22526
|
-
var VERSION2 = new Version("18.0.0-next.
|
|
22532
|
+
var VERSION2 = new Version("18.0.0-next.1");
|
|
22527
22533
|
|
|
22528
22534
|
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
|
|
22529
22535
|
var _VisitorMode;
|