Skip to content

Commit 0eeb5f3

Browse files
github-actions[bot]bennypowers
authored andcommitted
chore: version packages (next)
1 parent 778839c commit 0eeb5f3

File tree

59 files changed

+827
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+827
-66
lines changed

.changeset/pre.json

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,35 @@
3939
"netlify-plugin-github-actions": "0.0.1",
4040
"@patternfly/pfe-tools": "0.0.1"
4141
},
42-
"changesets": []
42+
"changesets": [
43+
"accordion",
44+
"autocomplete",
45+
"avatar",
46+
"badge",
47+
"band",
48+
"button",
49+
"card",
50+
"clipboard",
51+
"codeblock",
52+
"collapse",
53+
"core",
54+
"cta",
55+
"datetime",
56+
"dropdown",
57+
"health-index",
58+
"icon-panel",
59+
"icon",
60+
"jump-links",
61+
"markdown",
62+
"modal",
63+
"number",
64+
"page-status",
65+
"primary-detail",
66+
"progress-indicator",
67+
"progress-steps",
68+
"readtime",
69+
"select",
70+
"tabs",
71+
"toast"
72+
]
4373
}

core/pfe-core/CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# @patternfly/pfe-core
2+
3+
## 2.0.0-next.0
4+
### Major Changes
5+
6+
- e8788c72: Initial Release 🎉
7+
8+
`@patternfly/pfe-core` provides utilities for building PatternFly elements,
9+
like [TypeScript decorators](https://www.typescriptlang.org/docs/handbook/decorators.html) and
10+
[Lit reactive controllers](https://lit.dev/docs/composition/controllers/).
11+
Core utilities replace the `PFElement` base class.
12+
13+
### Before
14+
15+
```js
16+
export class PfeJazzHands extends PFElement {
17+
static get tag() {
18+
return "pfe-jazz-hands";
19+
}
20+
21+
static get properties() {
22+
return {
23+
cool: {
24+
type: Boolean,
25+
observer: "_upgradeObserver",
26+
}
27+
}
28+
}
29+
}
30+
PFElement.create(PfeJazzHands);
31+
```
32+
33+
### After
34+
35+
```ts
36+
@customElement('pfe-jazz-hands') @pfelement()
37+
export class PfeJazzHands extends LitElement {
38+
static readonly version = '{{version}}';
39+
40+
@observed('_upgradeObserver')
41+
@property({ type: Boolean }) cool = true;
42+
}
43+
```
44+
45+
See README and [the docs](https://patternflyelements.org/core/core/) for more info.

core/pfe-core/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-core",
3-
"version": "1.12.3",
3+
"version": "2.0.0-next.0",
44
"license": "MIT",
55
"description": "PatternFly Elements Core Library",
66
"customElements": "custom-elements.json",
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# @patternfly/pfe-accordion
2+
3+
## 2.0.0-next.0
4+
### Major Changes
5+
6+
- eaa5361b: ## 🔥 Migrate to Lit
7+
8+
This release migrates `<pfe-accordion>` to LitElement. It also fixes several keyboard accessibility bugs.
9+
10+
### NEW: CSS Shadow Parts
11+
- Adds `text`, `accents`, and `icon` CSS parts to `<pfe-accordion-header>`
12+
- Adds `container` CSS part to `<pfe-accordion-panel>`
13+
14+
### Breaking Changes
15+
- Initial render is now [asynchronous](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle).
16+
If your code assumes that shadow DOM is ready once the element is constructed, update it to `await element.updateComplete`;
17+
- Deprecates `pfe-accordion:expand` and `pfe-accordion:collapse` events. Use `expand` and `collapse` instead
18+
19+
See [docs](https://patternflyelements.org/components/autocomplete/) for more info
20+
21+
### Patch Changes
22+
23+
- Updated dependencies [15514b33]
24+
- Updated dependencies [e8788c72]
25+
- Updated dependencies [b7201f0f]
26+
- @patternfly/pfe-collapse@2.0.0-next.0
27+
- @patternfly/pfe-core@2.0.0-next.0
28+
- @patternfly/pfe-icon@2.0.0-next.0

elements/pfe-accordion/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/pfe-accordion",
3-
"version": "1.12.3",
3+
"version": "2.0.0-next.0",
44
"license": "MIT",
55
"description": "Accordion for PatternFly Elements",
66
"customElements": "custom-elements.json",
@@ -71,9 +71,9 @@
7171
"Michael Potter"
7272
],
7373
"dependencies": {
74-
"@patternfly/pfe-collapse": "^1.12.3",
75-
"@patternfly/pfe-core": "^1.12.3",
76-
"@patternfly/pfe-icon": "^1.12.3",
74+
"@patternfly/pfe-collapse": "^2.0.0-next.0",
75+
"@patternfly/pfe-core": "^2.0.0-next.0",
76+
"@patternfly/pfe-icon": "^2.0.0-next.0",
7777
"lit": "^2.1.2"
7878
}
7979
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# @patternfly/pfe-autocomplete
2+
3+
## 2.0.0-next.0
4+
### Major Changes
5+
6+
- d81a26dc: ## 🔥 Migrate to Lit
7+
8+
This release migrates `<pfe-autocomplete>` to LitElement.
9+
10+
11+
### NEW: CSS Shadow Parts
12+
- Adds `container`, `icon`, `clear-button`, `search-button`, `droplist`, and `text-search-button` CSS parts to `<pfe-autocomplete>`
13+
- Adds `option`, `item-index-${n}`, and `listbox` CSS parts to `<pfe-search-droplist>` and [exports](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes#attr-exportparts) those parts on `<pfe-autocomplete>`
14+
15+
### Breaking Changes
16+
- Initial render is now [asynchronous](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle).
17+
If your code assumes that shadow DOM is ready once the element is constructed, update it to `await element.updateComplete`;
18+
- Deprecates `is-disabled` attribute and `isDisabled` property. Use `disabled` instead.
19+
- Deprecates `aria-announce-template` attribute. Use `announce-template` instead.
20+
- Deprecates `pfe-autocomplete:options-shown`, `pfe-autocomplete:option-cleared`, `pfe-autocomplete:search-event`, and `pfe-autocomplete:option-selected` events.
21+
22+
See [docs](https://patternflyelements.org/components/autocomplete/) for more info
23+
24+
### Patch Changes
25+
26+
- Updated dependencies [e8788c72]
27+
- @patternfly/pfe-core@2.0.0-next.0

elements/pfe-autocomplete/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/pfe-autocomplete",
33
"license": "MIT",
4-
"version": "1.12.3",
4+
"version": "2.0.0-next.0",
55
"description": "Autocomplete for PatternFly Elements",
66
"customElements": "custom-elements.json",
77
"type": "module",
@@ -72,7 +72,7 @@
7272
"Benny Powers <[email protected]>"
7373
],
7474
"dependencies": {
75-
"@patternfly/pfe-core": "^1.12.3",
75+
"@patternfly/pfe-core": "^2.0.0-next.0",
7676
"@patternfly/pfe-sass": "^1.12.3",
7777
"lit": "^2.1.2"
7878
}

elements/pfe-avatar/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# @patternfly/pfe-avatar
2+
3+
## 2.0.0-next.0
4+
### Major Changes
5+
6+
- 216beeb8: ## 🔥 Migrate to Lit
7+
8+
This release migrates `<pfe-avatar>` to LitElement.
9+
10+
### NEW: CSS Shadow Parts
11+
- Adds `canvas` and `img` CSS parts to `<pfe-avatar>`
12+
13+
### Breaking Changes
14+
- Initial render is now [asynchronous](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle).
15+
If your code assumes that shadow DOM is ready once the element is constructed, update it to `await element.updateComplete`;
16+
- Deprecates `pfe-avatar:connected` event. Use `await pfeAvatar.updateComplete` instead
17+
- Deprecates `pfe-avatar:options-shown`, `pfe-avatar:option-cleared`, `pfe-avatar:search-event`, and `pfe-avatar:option-selected` events.
18+
19+
See [docs](https://patternflyelements.org/components/avatar/) for more info
20+
21+
### Patch Changes
22+
23+
- Updated dependencies [e8788c72]
24+
- @patternfly/pfe-core@2.0.0-next.0

elements/pfe-avatar/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/pfe-avatar",
33
"license": "MIT",
4-
"version": "1.12.3",
4+
"version": "2.0.0-next.0",
55
"customElements": "custom-elements.json",
66
"type": "module",
77
"main": "./pfe-avatar.js",
@@ -67,7 +67,7 @@
6767
"Benny Powers <[email protected]>"
6868
],
6969
"dependencies": {
70-
"@patternfly/pfe-core": "^1.12.3",
70+
"@patternfly/pfe-core": "^2.0.0-next.0",
7171
"lit": "^2.1.2"
7272
}
7373
}

elements/pfe-badge/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# @patternfly/pfe-badge
2+
3+
## 2.0.0-next.0
4+
### Major Changes
5+
6+
- e4a76fb2: ## 🔥 Migrate to Lit
7+
8+
This release migrates `<pfe-badge>` to LitElement.
9+
10+
### Breaking Changes
11+
- Initial render is now [asynchronous](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle).
12+
If your code assumes that shadow DOM is ready once the element is constructed, update it to `await element.updateComplete`;
13+
14+
See [docs](https://patternflyelements.org/components/badge/) for more info
15+
16+
### Patch Changes
17+
18+
- Updated dependencies [e8788c72]
19+
- @patternfly/pfe-core@2.0.0-next.0

0 commit comments

Comments
 (0)