Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 833 Bytes

File metadata and controls

21 lines (16 loc) · 833 Bytes
@patternfly/elements
minor

✨ Added <pf-label-group>.

A label group displays multiple labels together, helping users visualize related categories, filters, or items.
Each label can be removed individually, and the entire group can also be cleared at once.
The element automatically handles overflow for long lists of labels and supports both horizontal and vertical layouts.

Use this when you need to show multiple tags, filters, or categorized items that users can remove, add, or adjust dynamically.
Avoid using it for single, standalone labels — consider using <pf-label> instead.

<pf-label-group label="Filters" add-label-mode="fromList">
  <pf-label removable>Security</pf-label>
  <pf-label removable>Performance</pf-label>
  <pf-label removable>Networking</pf-label>
</pf-label-group>