-
Notifications
You must be signed in to change notification settings - Fork 27.1k
Open
Labels
area: migrationsIssues related to `ng update`/`ng generate` migrationsIssues related to `ng update`/`ng generate` migrationsopen for contributionsAn issue that is suitable for a community contributor (based on its complexity/scope).An issue that is suitable for a community contributor (based on its complexity/scope).
Milestone
Description
Which @angular/* package(s) are relevant/related to the feature request?
core
Description
With #65952 merged as a breaking change, it would be a nice to have to write a migration for some of the cases that surfaced on G3.
- model + output
foo = model<string>;
fooChange = output<string>(); // or `@Output()`becomes
fooInput = input<string>({alias: 'foo')
foo = linkedSignal(this.fooInput);
fooChange = output<string>(); If ever other cases arise we can improve the migration later.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area: migrationsIssues related to `ng update`/`ng generate` migrationsIssues related to `ng update`/`ng generate` migrationsopen for contributionsAn issue that is suitable for a community contributor (based on its complexity/scope).An issue that is suitable for a community contributor (based on its complexity/scope).