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
The ChipGroup component was designed to group a set of chips to be displayed together and handle potential overflow situations. Looks like as currently implemented, the group is implemented to display a fixed number of chips before hiding additional chips by collapsing the group and exposing a "more" button. This became evident when reviewing the type ahead select (ref #1839) and seeing that the list of selections is collapsed even when there is plenty of space to display them.
This should be changed to allow the consumer of this component to either pass in a number of chips to display or choose to make that flexible and calculated based on the width of the group's container. The desired behavior is for the ChipGroup to only collapse the group when there would not be enough space to display all elements without wrapping.