generated from frankframework/angular-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
@Input() ... and @Output() ... should be replaced with the new signals system.
E.g.
// @Input({ ... }) active = ...;
public active = input<...>(...);
// @Output() activeChange = new EventEmitter<...>();
public activeChange = output<...>();This means parents do need to handle input and output fully.
To follow the example above, activeChange will output a change in state and the parent has to update the active input to reflect the state change or else to component simply wont update. This also means the state is fully managed by the parent instead of having any state internally
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
Todo