You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which @angular/* package(s) are relevant/related to the feature request?
core
Description
I have a situation where I am passing content to a wrapper component with multiple children of the same component type. I would like to be able to do something like this:
Be able to pass the result of a Signal or QueryList to ng-content or another new addition to place specific instances of content children iteratively.
Alternatives considered
The current alternative is to pass whether the child is the last in the list via an input. This can become repetitive and adds additional effort for each component this kind of processing might need. Being able to iteratively project instead of just everything via ng-content or ng-content with selector would be very beneficial.
The text was updated successfully, but these errors were encountered:
Which @angular/* package(s) are relevant/related to the feature request?
core
Description
I have a situation where I am passing content to a wrapper component with multiple children of the same component type. I would like to be able to do something like this:
Main component template
my-list.component.ts
my-list-item.component.ts
The desired end result would be
Proposed solution
Be able to pass the result of a Signal or QueryList to
ng-content
or another new addition to place specific instances of content children iteratively.Alternatives considered
The current alternative is to pass whether the child is the last in the list via an input. This can become repetitive and adds additional effort for each component this kind of processing might need. Being able to iteratively project instead of just everything via
ng-content
orng-content
withselector
would be very beneficial.The text was updated successfully, but these errors were encountered: