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
9 changes: 0 additions & 9 deletions .changeset/big-dingos-live.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/remove-bundled-entrypoint.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/remove-deprecated-apis-core.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/remove-deprecated-apis-elements.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/rename-all-elements.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/stale-moments-drive.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/two-moose-cough.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/wacky-jobs-lead.md

This file was deleted.

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

## 6.0.0
### Major Changes

- bd4397a: **`CascadeController`** and **`@cascades`** decorator are removed. Use [`@lit/context`](https://lit.dev/docs/data/context/) instead for sharing data between parent and child elements.
**`SlotController.anonymous`** is removed. Use `SlotController.default` instead.

### Patch Changes

- 6d1520a: `FloatingDOMController`: support usage within iframes
- 3a64fd3: `InternalsController`: allows accessibility auditing tools to access element internals.

## 5.0.8
### 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.8",
"version": "6.0.0",
"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

## 5.0.0
### Major Changes

- 73b2389: Removed the bundled entrypoint (`pfe.min.js`). Import individual
elements directly instead, e.g. `import '@patternfly/elements/pf-button/pf-button.js'`.

The bundled entrypoint caused custom element double-registration issues
and is not recommended for production use.
- bd4397a: `<pf-popover>`: the `close-label` attribute and `closeButtonLabel` property are removed. Use `accessible-close-label` instead.

Before:
```html
<pf-popover close-label="close"></pf-popover>
```

After:
```html
<pf-v5-popover accessible-close-label="close"></pf-v5-popover>
```
- 73b2389: All elements are now versioned with a `pf-v5-` prefix.

This is a breaking change. Update your HTML to use the new element names,
e.g. `<pf-button>` becomes `<pf-v5-button>`, `<pf-accordion>` becomes
`<pf-v5-accordion>`, etc.

CSS custom properties are also renamed from `--pf-c-*` to `--pf-v5-c-*`.
Global tokens (`--pf-global--*`) are unchanged.

### Patch Changes

- Updated dependencies [bd4397a]
- Updated dependencies [6d1520a]
- Updated dependencies [3a64fd3]
- @patternfly/pfe-core@6.0.0

## 4.4.0
### Minor 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.4.0",
"version": "5.0.0",
"description": "PatternFly Elements",
"customElements": "custom-elements.json",
"type": "module",
Expand Down Expand Up @@ -137,7 +137,7 @@
"dependencies": {
"@lit/context": "^1.1.6",
"@patternfly/icons": "^1.0.3",
"@patternfly/pfe-core": "^5.0.8",
"@patternfly/pfe-core": "^6.0.0",
"lit": "^3.3.2",
"tslib": "^2.8.1"
}
Expand Down
12 changes: 12 additions & 0 deletions tools/pfe-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @patternfly/pfe-tools

## 7.0.0
### Major Changes

- 74318a1: **Test Runner**: migrate config from playwright-backed to puppeteer.

Transitive dependencies have changed, so if your test files relied on playwright imports,
you'll need to update them.

### Patch Changes

- 73b2389: Corrected usage of config for tagPrefix in `DocsPage` for alias

## 6.0.1
### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion tools/pfe-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/pfe-tools",
"version": "6.0.1",
"version": "7.0.0",
"type": "module",
"description": "Development and build tools for PatternFly Elements and related projects",
"keywords": [
Expand Down
Loading