Skip to content

Commit 1e887f8

Browse files
github-actions[bot]bennypowers
authored andcommitted
chore: version packages (next)
1 parent 652e5ec commit 1e887f8

File tree

13 files changed

+112
-27
lines changed

13 files changed

+112
-27
lines changed

.changeset/pre.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@
4747
"band",
4848
"breezy-bikes-smell",
4949
"button",
50+
"calm-cheetahs-burn",
5051
"card",
52+
"chatty-pears-press",
5153
"clipboard",
5254
"codeblock",
5355
"collapse",
@@ -56,9 +58,11 @@
5658
"datetime",
5759
"dropdown",
5860
"empty-cougars-remain",
61+
"few-windows-exercise",
5962
"five-planets-prove",
6063
"forty-berries-cry",
6164
"good-actors-allow",
65+
"good-terms-smile",
6266
"health-index",
6367
"icon-panel",
6468
"icon",
@@ -81,6 +85,8 @@
8185
"tabs",
8286
"tasty-dragons-drum",
8387
"toast",
84-
"violet-sheep-ring"
88+
"violet-cows-film",
89+
"violet-sheep-ring",
90+
"yellow-dingos-heal"
8591
]
8692
}

core/pfe-core/CHANGELOG.md

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,54 @@
11
# @patternfly/pfe-core
22

3+
## 2.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- 999cdfdd: Register context providers even if they upgrade after the consumers
8+
39
## 2.0.0-next.0
10+
411
### Major Changes
512

613
- e8788c72: Initial Release 🎉
7-
14+
815
`@patternfly/pfe-core` provides utilities for building PatternFly elements,
916
like [TypeScript decorators](https://www.typescriptlang.org/docs/handbook/decorators.html) and
1017
[Lit reactive controllers](https://lit.dev/docs/composition/controllers/).
1118
Core utilities replace the `PFElement` base class.
12-
19+
1320
### Before
14-
21+
1522
```js
1623
export class PfeJazzHands extends PFElement {
1724
static get tag() {
1825
return "pfe-jazz-hands";
1926
}
20-
27+
2128
static get properties() {
2229
return {
2330
cool: {
2431
type: Boolean,
25-
observer: "_upgradeObserver",
32+
observer: "_upgradeObserver"
2633
}
27-
}
34+
};
2835
}
2936
}
3037
PFElement.create(PfeJazzHands);
3138
```
32-
39+
3340
### After
34-
41+
3542
```ts
36-
@customElement('pfe-jazz-hands') @pfelement()
43+
@customElement("pfe-jazz-hands")
44+
@pfelement()
3745
export class PfeJazzHands extends LitElement {
38-
static readonly version = '{{version}}';
39-
40-
@observed('_upgradeObserver')
41-
@property({ type: Boolean }) cool = true;
46+
static readonly version = "{{version}}";
47+
48+
@observed("_upgradeObserver")
49+
@property({ type: Boolean })
50+
cool = true;
4251
}
4352
```
44-
53+
4554
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": "2.0.0-next.0",
3+
"version": "2.0.0-next.1",
44
"license": "MIT",
55
"description": "PatternFly Elements Core Library",
66
"customElements": "custom-elements.json",

core/pfe-sass/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# @patternfly/pfe-sass
22

3+
## 2.0.0-next.1
4+
5+
### Major Changes
6+
7+
- 62a5d643: Remove `focus-ring`, `pfe-typography`, and `pfe-c-typogrpahy` mixins
8+
9+
To implement focus-ring, see `pfe-accordion-header` or `pfe-jump-links`.
10+
11+
```scss
12+
outline: none;
13+
position: relative;
14+
15+
&::before {
16+
position: absolute;
17+
content: "";
18+
top: -2px;
19+
left: -2px;
20+
width: calc(100% + #{pfe-var(ui--border-width--active)});
21+
height: calc(100% + #{pfe-var(ui--border-width--active)});
22+
border-radius: pfe-var(ui--border-radius);
23+
border: pfe-var(ui--border-width--md) pfe-var(ui--border-style) transparent;
24+
}
25+
26+
&:focus::before {
27+
border-color: #6b9ff0;
28+
}
29+
30+
&:focus:not(:focus-visible)::before {
31+
border: unset;
32+
}
33+
```
34+
35+
To implement typography, see `core/pfe-sass/extends/_typography_extends.scss`
36+
337
## 2.0.0-next.0
438

539
### Major Changes

core/pfe-sass/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-sass",
3-
"version": "2.0.0-next.0",
3+
"version": "2.0.0-next.1",
44
"license": "MIT",
55
"description": "Sass variables and mixins for PatternFly Elements",
66
"main": "./index.scss",

elements/pfe-accordion/CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,32 @@
11
# @patternfly/pfe-accordion
22

3+
## 2.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- b6f89a8f: allow HTML literals to be optimized by aliasing static html tag
8+
- Updated dependencies [999cdfdd]
9+
- @patternfly/pfe-core@2.0.0-next.1
10+
311
## 2.0.0-next.0
12+
413
### Major Changes
514

615
- eaa5361b: ## 🔥 Migrate to Lit
7-
16+
817
This release migrates `<pfe-accordion>` to LitElement. It also fixes several keyboard accessibility bugs.
9-
18+
1019
### NEW: CSS Shadow Parts
20+
1121
- Adds `text`, `accents`, and `icon` CSS parts to `<pfe-accordion-header>`
1222
- Adds `container` CSS part to `<pfe-accordion-panel>`
13-
23+
1424
### Breaking Changes
25+
1526
- Initial render is now [asynchronous](https://lit.dev/docs/components/lifecycle/#reactive-update-cycle).
1627
If your code assumes that shadow DOM is ready once the element is constructed, update it to `await element.updateComplete`;
1728
- Deprecates `pfe-accordion:expand` and `pfe-accordion:collapse` events. Use `expand` and `collapse` instead
18-
29+
1930
See [docs](https://patternflyelements.org/components/autocomplete/) for more info
2031

2132
### Patch Changes

elements/pfe-accordion/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/pfe-accordion",
3-
"version": "2.0.0-next.0",
3+
"version": "2.0.0-next.1",
44
"license": "MIT",
55
"description": "Accordion for PatternFly Elements",
66
"customElements": "custom-elements.json",
@@ -76,7 +76,7 @@
7676
],
7777
"dependencies": {
7878
"@patternfly/pfe-collapse": "^2.0.0-next.0",
79-
"@patternfly/pfe-core": "^2.0.0-next.0",
79+
"@patternfly/pfe-core": "^2.0.0-next.1",
8080
"@patternfly/pfe-icon": "^2.0.0-next.0",
8181
"lit": "^2.1.2"
8282
}

elements/pfe-primary-detail/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## 1.0.0 ( TBD )
22

3+
## 2.0.0-next.1
4+
5+
### Patch Changes
6+
7+
- b6f89a8f: allow HTML literals to be optimized by aliasing static html tag
8+
- Updated dependencies [999cdfdd]
9+
- @patternfly/pfe-core@2.0.0-next.1
10+
311
## 2.0.0-next.0
412

513
### Major Changes

elements/pfe-primary-detail/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-primary-detail",
33
"license": "MIT",
4-
"version": "2.0.0-next.0",
4+
"version": "2.0.0-next.1",
55
"description": "Primary detail element 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": "^2.0.0-next.0",
75+
"@patternfly/pfe-core": "^2.0.0-next.1",
7676
"lit": "^2.1.2"
7777
}
7878
}

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.5
4+
5+
### Patch Changes
6+
7+
- 56baa0ec: update components entrypoint filename
8+
- a6253d3c: Generate the single-file bundle entrypoint at runtime
9+
310
## 0.0.2-next.4
411

512
### Patch Changes

0 commit comments

Comments
 (0)