Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/fix-back-to-top-hover.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/fix-create-element-publish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-create-element.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fix-popover-click.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-select-tokens.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fix-slot-controller.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fix-start-build-artifacts.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fix-switch-a11y.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/fix-table-accessibility.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/grumpy-lemons-like.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tabs-passive-scroll.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/yummy-eagles-itch.md

This file was deleted.

6 changes: 6 additions & 0 deletions core/pfe-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @patternfly/pfe-core

## 5.0.8
### Patch Changes

- 7e31427: `SlotController`: fixed `getSlotted()` returning empty arrays in
certain timing scenarios.

## 5.0.7
### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion core/pfe-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/pfe-core",
"version": "5.0.7",
"version": "5.0.8",
"license": "MIT",
"description": "PatternFly Elements Core Library",
"customElements": "custom-elements.json",
Expand Down
35 changes: 35 additions & 0 deletions elements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# @patternfly/elements

## 4.4.0
### Minor Changes

- 1377f14: Added `<pf-label-group>`.

A **label group** is a collection of labels that can be grouped by category
and used to represent one or more values assigned to a single attribute.
When the number of labels exceeds the configured limit, additional labels
are hidden under an overflow indicator.

```html
<pf-label-group>
<span slot="category">Filters</span>
<pf-label removable>Security</pf-label>
<pf-label removable>Performance</pf-label>
<pf-label removable>Networking</pf-label>
</pf-label-group>
```

### Patch Changes

- cc84a12: `<pf-back-to-top>`: fixed background color during hover and focus.
- a060b8b: `<pf-popover>`: clicking outside a popover no longer fires spurious
hide events on other closed popovers.
- 2d894f1: `<pf-select>`: replaced Red Hat Design System color tokens with PatternFly v4 global tokens.
- b057f87: `npm run start` no longer fails when TypeScript build artifacts
are present in the working tree.
- 2a45088: `<pf-switch>`: the switch now has a proper static accessible label
independent of its on/off state text.
- 783686a: `<pf-table>`: fix accessibility features: column header role, accessible label for row toggle button, etc.
- 6b3031b: `<pf-jump-links>`: improve screen reader accessibility by labeling the navigation landmark element
- 6614695: `<pf-tabs>`: scroll event listeners are now passive for better performance.
- Updated dependencies [7e31427]
- @patternfly/pfe-core@5.0.8

## 4.3.1
### Patch Changes

Expand Down
4 changes: 2 additions & 2 deletions elements/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternfly/elements",
"license": "MIT",
"version": "4.3.1",
"version": "4.4.0",
"description": "PatternFly Elements",
"customElements": "custom-elements.json",
"type": "module",
Expand Down Expand Up @@ -140,7 +140,7 @@
"dependencies": {
"@lit/context": "^1.1.6",
"@patternfly/icons": "^1.0.3",
"@patternfly/pfe-core": "^5.0.6",
"@patternfly/pfe-core": "^5.0.8",
"lit": "^3.3.2",
"tslib": "^2.8.1"
}
Expand Down
6 changes: 6 additions & 0 deletions tools/create-element/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @patternfly/create-element

## 1.0.6
### Patch Changes

- 3935154: Fixed missing files in published package that prevented `npm run new` from working
- 5e1764b: Fixed missing entry point in published package.

## 1.0.5
### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion tools/create-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/create-element",
"version": "1.0.5",
"version": "1.0.6",
"description": "Scaffold web components monorepos based on PatternFly Elements",
"author": "Benny Powers <bennyp@redhat.com>",
"license": "MIT",
Expand Down