mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Reworks the way we approach type checking of signal forms to be closer to the behavior at runtime. There are a couple of scenarios that we handle: 1. For native controls, we now produce simplified type checking code that looks as follows: ``` var t1 = null! as number | string; // Type depends on the input `type`. t1 = someField().value(); ``` 2. For custom controls we generate bindings to the individual inputs, rather than checking conformance against `FormValueControl`/`FormCheckboxControl`. This is closer to the behavior at runtime and it allows us to handle generic directives properly. |
||
|---|---|---|
| .. | ||
| linker | ||
| private | ||
| src | ||
| test | ||
| BUILD.bazel | ||
| esbuild.config.js | ||
| index.ts | ||
| package.json | ||
| tsconfig-test.json | ||
| tsconfig.json | ||