Skip to content

Commit 7fd6531

Browse files
github-actions[bot]bennypowers
authored andcommitted
chore: version packages (next)
1 parent 6c03120 commit 7fd6531

File tree

7 files changed

+69
-7
lines changed

7 files changed

+69
-7
lines changed

.changeset/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"avatar",
4646
"badge",
4747
"band",
48+
"breezy-bikes-smell",
4849
"button",
4950
"card",
5051
"clipboard",
@@ -54,12 +55,15 @@
5455
"cta",
5556
"datetime",
5657
"dropdown",
58+
"good-actors-allow",
5759
"health-index",
5860
"icon-panel",
5961
"icon",
6062
"jump-links",
63+
"loud-cycles-vanish",
6164
"markdown",
6265
"modal",
66+
"nervous-sheep-walk",
6367
"number",
6468
"page-status",
6569
"primary-detail",

elements/pfe-clipboard/CHANGELOG.md

Lines changed: 48 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,64 @@
11
# @patternfly/pfe-clipboard
22

3+
## 2.0.0-next.1
4+
5+
### Major Changes
6+
7+
- ce7ed4e7: Update pfe-clipboard to function with mouse, keyboard, and screen reader and meet WCAG 2.1 A - AA Guidelines ✨♿
8+
9+
BREAKING CHANGE:
10+
`role="button"` and `tabindex=0` attributes must _no longer_ be applied to `<pfe-clipboard>`, make sure all instances
11+
on your page are updated
12+
13+
```diff
14+
- <pfe-clipboard role="button" tabindex="0"></pfe-clipboard>
15+
+ <pfe-clipboard></pfe-clipboard>
16+
```
17+
18+
`pfe-clipboard.spec.ts`
19+
20+
- Updated tests based on a11y changes
21+
22+
`README.md`
23+
24+
- Updated readme based on a11y updates
25+
26+
`pfe-clipboard.ts`
27+
28+
- Added new state property for aria-disabled to added aria features
29+
- Added comments for changes
30+
- Updated the HTML in render() to add aria features
31+
- Cleaned up some comment typos
32+
33+
`pfe-clipboard.scss`
34+
35+
- Added sr-only class to utilize with pfe-clipboard to improve the success message output for screen readers
36+
- Adjusted the padding and changes some ids to be classes to go with new HTML structure
37+
38+
`pfe-clipboard.html`
39+
40+
- Removed role button and tabindex from pfe-clipboard tags because that is being set within the shadowDom now
41+
pfe-clipboard.js
42+
- Removed role button and tabindex from pfe-clipboard tags because that is being set within the shadowDom now
43+
44+
See [docs](https://patternflyelements.org/components/clipboard/) for more info
45+
346
## 2.0.0-next.0
47+
448
### Major Changes
549

650
- cd3917e0: ## 🔥 Migrate to Lit
7-
51+
852
This release migrates `<pfe-clipboard>` to LitElement.
9-
53+
1054
### Breaking Changes
55+
1156
- Initial render is now [asynchronous](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle).
1257
If your code assumes that shadow DOM is ready once the element is constructed, update it to `await element.updateComplete`
1358
- Deprecates `text` slot (use `label`) and `text--success` (use `success`) slots
1459
- Deprecates `pfe-clipboard:connected` event (use `await el.updateComplete`)
1560
- Deprecates `pfe-clipboard:copied` event (use `copied`)
16-
17-
61+
1862
See [docs](https://patternflyelements.org/components/clipboard/) for more info
1963

2064
### Patch Changes

elements/pfe-clipboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/pfe-clipboard",
33
"license": "MIT",
4-
"version": "2.0.0-next.0",
4+
"version": "2.0.0-next.1",
55
"description": "Clipboard element for PatternFly Elements",
66
"customElements": "custom-elements.json",
77
"type": "module",

tools/create-element/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @patternfly/create-element
22

3+
## 0.0.2-next.1
4+
5+
### Patch Changes
6+
7+
- 9765268c: Fix 'cannot find module' errors
8+
- ba895249: Fixes compiler errors
9+
310
## 0.0.2-next.0
411

512
### Patch Changes

tools/create-element/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/create-element",
3-
"version": "0.0.2-next.0",
3+
"version": "0.0.2-next.1",
44
"description": "Scaffold web components monorepos based on PatternFly Elements",
55
"author": "Benny Powers <[email protected]>",
66
"license": "MIT",

tools/pfe-tools/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @patternfly/pfe-tools
2+
3+
## 0.0.2-next.0
4+
5+
### Patch Changes
6+
7+
- 9765268c: Ship built files instead of sources

tools/pfe-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/pfe-tools",
3-
"version": "0.0.1",
3+
"version": "0.0.2-next.0",
44
"type": "module",
55
"description": "Development and build tools for PatternFly Elements and related projects",
66
"keywords": [

0 commit comments

Comments
 (0)