-
-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Angular: Detect model() signal outputs (type inference + compodoc autodocs + runtime binding) #34833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
valentinpalkovic
merged 20 commits into
next
from
valentin/angular-model-signal-outputs
May 21, 2026
Merged
Angular: Detect model() signal outputs (type inference + compodoc autodocs + runtime binding) #34833
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
fd4a51d
feat(angular): detect model() signal output in type inference (Layer A)
valentinpalkovic 21c245e
feat(angular): detect model() signal binding at runtime (Layer C)
valentinpalkovic 0588d2f
feat(angular): detect model() signal output in compodoc autodocs (Lay…
valentinpalkovic 792098b
test(angular): model() signal stories + changelog (cross-cutting)
valentinpalkovic 332fe51
refactor(angular): address review feedback for model() detection (doc…
valentinpalkovic a74018a
refactor(angular): remove component instantiation from analyzer; stat…
valentinpalkovic 2f86d33
docs(angular): trim redundant comments in model() detection
valentinpalkovic 19175ef
docs(angular): trim transcript prose, drop changelog entry
valentinpalkovic ee48639
fix(angular): don't call useArgs() inside model-signal play
valentinpalkovic 436e31c
Apply suggestion from @valentinpalkovic
valentinpalkovic 5b66f0f
Apply suggestion from @valentinpalkovic
valentinpalkovic 27538e4
Merge branch 'next' into valentin/angular-model-signal-outputs
valentinpalkovic 1fc92e8
Apply suggestion from @valentinpalkovic
valentinpalkovic a6d29d0
Apply suggestion from @valentinpalkovic
valentinpalkovic 23634ba
Apply suggestions from code review
valentinpalkovic 2d047d3
Apply suggestions from code review
valentinpalkovic 8eab551
Merge branch 'next' into valentin/angular-model-signal-outputs
valentinpalkovic a6d1715
chore(angular): apply review feedback for model-signal stories/tests
Copilot 9d4eccc
Merge branch 'next' into valentin/angular-model-signal-outputs
valentinpalkovic 9bf6059
chore(angular): fix formatting in NgComponentAnalyzer.test.ts
valentinpalkovic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
.../frameworks/angular/src/client/docs/__testfixtures__/doc-model/argtypes-filtered.snapshot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| { | ||
| "color": { | ||
| "description": "", | ||
| "name": "color", | ||
| "table": { | ||
| "category": "inputs", | ||
| "defaultValue": { | ||
| "summary": "#345F92", | ||
| }, | ||
| "type": { | ||
| "required": true, | ||
| "summary": "string", | ||
| }, | ||
| }, | ||
| "type": { | ||
| "name": "string", | ||
| }, | ||
| }, | ||
| "colorChange": { | ||
| "action": "colorChange", | ||
| "description": "", | ||
| "name": "colorChange", | ||
| "table": { | ||
| "category": "outputs", | ||
| "type": { | ||
| "required": true, | ||
| "summary": "(e: string) => void", | ||
| }, | ||
| }, | ||
| "type": { | ||
| "name": "other", | ||
| "value": "void", | ||
| }, | ||
| }, | ||
| "showText": { | ||
| "description": "", | ||
| "name": "showText", | ||
| "table": { | ||
| "category": "inputs", | ||
| "defaultValue": { | ||
| "summary": false, | ||
| }, | ||
| "type": { | ||
| "required": true, | ||
| "summary": "boolean", | ||
| }, | ||
| }, | ||
| "type": { | ||
| "name": "boolean", | ||
| }, | ||
| }, | ||
| "showTextChange": { | ||
| "action": "showTextChange", | ||
| "description": "", | ||
| "name": "showTextChange", | ||
| "table": { | ||
| "category": "outputs", | ||
| "type": { | ||
| "required": true, | ||
| "summary": "(e: boolean) => void", | ||
| }, | ||
| }, | ||
| "type": { | ||
| "name": "other", | ||
| "value": "void", | ||
| }, | ||
| }, | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.