Skip to content

Commit

Permalink
chore: prepare release (#2546)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Aug 22, 2023
1 parent 374a5a0 commit 25a229b
Show file tree
Hide file tree
Showing 19 changed files with 106 additions and 139 deletions.
4 changes: 0 additions & 4 deletions .changeset/downlevel-es2020.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-actors-give.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-colts-jam.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/pf-banner.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/pf-card-heading-specificity.md

This file was deleted.

43 changes: 0 additions & 43 deletions .changeset/pf-table.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/pf-text-input.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pf-tooltip-deprecate-base.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/pf-tooltip-flip.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/pf-tooltip-trigger.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/rich-kangaroos-brake.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/tabs-expand-cem.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/tabs-expand-event.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/test-click-element-at-offset.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/test-tools-click-el.md

This file was deleted.

97 changes: 97 additions & 0 deletions elements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,102 @@
# @patternfly/elements

## 2.4.0

### Minor Changes

- cf5abb548: ✨ Added `<pf-banner>`

```html
<pf-banner variant="info" icon="info" sticky>
Important information.
</pf-banner>
```

- 23bf9b278: ✨ Added `<pf-table>`

```html
<pf-table>
<pf-thead>
<pf-tr>
<pf-th>Repositories</pf-th>
<pf-th>Branches</pf-th>
<pf-th>Pull requests</pf-th>
<pf-th>Workspaces</pf-th>
<pf-th>Last commit</pf-th>
</pf-tr>
</pf-thead>
<pf-tr>
<pf-th>one</pf-th>
<pf-td>two</pf-td>
<pf-td>three</pf-td>
<pf-td>four</pf-td>
<pf-td>five</pf-td>
</pf-tr>
<pf-tr>
<pf-th>one - 2</pf-th>
<pf-td></pf-td>
<pf-td></pf-td>
<pf-td>four - 2</pf-td>
<pf-td>five - 2</pf-td>
</pf-tr>
<pf-tr>
<pf-th>one - 3</pf-th>
<pf-td>two - 3</pf-td>
<pf-td>three - 3</pf-td>
<pf-td>four - 3</pf-td>
<pf-td>five - 3</pf-td>
</pf-tr>
</pf-table>
```

This is an initial release, that implements a subset of the features of upstream
PatternFly's table component. APIs can be expected to change.

- c07281813: ✨ Added `<pf-text-input>`

```html
<label>
Text Input
<pf-text-input></pf-text-input>
</label>
```

- dcdbce66d: `<pf-tooltip>`: added `no-flip` and `flip-behaviour` attributes as in `<pf-popover>`
- dcdbce66d: `<pf-tooltip>` added the `trigger` attribute to specify a tooltip-invoking
element outside of the tooltip's children.

```html
<pf-button id="button">Button</pf-button>
<pf-tooltip trigger="button" content="I'm a button!"></pf-tooltip>
```

- dcdbce66d: ✨ Added `<pf-progress>`

```html
<pf-progress description="Default" value="33"></pf-progress>
```

- b9f86f8af: `<pf-tabs>`: add `isExpandEvent` static method, to help prevent name conflicts

```js
import { PfTabs } from "@patternfly/elements/pf-tabs/pf-tabs.js";
document.addEventListener("expand", function (event) {
if (PfTabs.isExpandEvent(event)) {
// a pf-tabs' tab has expanded
}
});
```

### Patch Changes

- 69021bbb4: Restores support for Safari 16.3 (by compiling element sources to ECMAScript 2020)
- dd2d5b713: `<pf-accordion>`: fixed focus event triggering incorrect tabindex
- da84c1019: `<pf-accordion>`: fixed issue with panels collapsing when a child checkbox was toggled.
- 343d5979f: `<pf-card>`: improved slotted content layout
- dcdbce66d: `<pf-tooltip>`: marks `BaseTooltip` and it's stylesheet as deprecated.
The files will remain in place until the next major version.
- 1723146e6: `<pf-tabs>`: corrected the name of the `expand` event in the custom elements manifest

## 2.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion elements/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternfly/elements",
"license": "MIT",
"version": "2.3.2",
"version": "2.4.0",
"description": "PatternFly Elements",
"customElements": "custom-elements.json",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions tools/pfe-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @patternfly/pfe-tools

## 1.5.0

### Minor Changes

- 57b7dba20: Test: add `clickElementAtOffset` utility function for tests
- dcdbce66d: Test: add `clickElementAtCenter` utility function for tests

## 1.4.2

### 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": "1.4.2",
"version": "1.5.0",
"type": "module",
"description": "Development and build tools for PatternFly Elements and related projects",
"keywords": [
Expand Down

0 comments on commit 25a229b

Please sign in to comment.