Maikel van Dort
9373d22a48
docs: remove semicolon text node
2026-07-29 08:48:34 -07:00
Matthieu Riegler
d55f5c4ce5
docs: Add mention that about signal narrowing on @switch blocks
2026-07-13 12:59:36 -07:00
Matthieu Riegler
8bc31a515f
feat(core): Allow other expression for exhaustive typechecking
...
When the switched expression is nested within a union, exhaustive typechecking needs to know which expression to check.
This change adds the possibility of specifying the expression to check:
```
@Component({
selector: 'app-root',
imports: [],
template: `
@switch (state.mode) {
@case ('show') { {{ state.menu }}; }
@case ('hide') {}
@default never(state);
}
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class App {
state!: { mode: 'hide' } | { mode: 'show'; menu: number };;
}
```
fixes #67406
2026-03-24 14:42:28 -07:00
Matthieu Riegler
9dc3ca44ec
docs: add docs for @switch Exhaustive type checking
2026-02-24 10:53:43 -08:00
Matthieu Riegler
640693da8e
feat(compiler): Add support for multiple swich cases matching
...
consecutive `@case` blocks are now supported:
```ts
@switch (case) {
@case (0)
@case (1) {
case 0 or 1
}
@case (2) {
case 2
}
@default {
default
}
}
```
fixes #14659
2026-01-07 09:23:50 -05:00
Matthieu Riegler
a7b973eac5
docs(docs-infra): Use shiki for code highlighting ( #57059 )
...
PR Close #57059
2024-07-24 10:24:51 -07:00
Jeremy Elbourn
64db486edc
build: add rules for generating block/element API data ( #52480 )
...
Adds build rules for "artificially" generating `DocEntry` collections for block and element APIs. The two rules are very similar, but _just_ different enough that it's worth having two separate implementations.
PR Close #52480
2023-11-02 11:02:08 -07:00