Skip to content

Commit 266be9c

Browse files
author
Sara Dahan
committed
Merge remote-tracking branch 'upstream/main' into create-pf-lable-group
2 parents cffdff2 + f43c1bc commit 266be9c

63 files changed

Lines changed: 3915 additions & 2234 deletions

Some content is hidden

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

.github/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- submitted
1515

1616
permissions:
17-
pull-requests: read
17+
pull-requests: write
1818

1919
# Separate jobs can run concurrently
2020
jobs:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
name: SSR Tests (Playwright)
9999
runs-on: ubuntu-latest
100100
container:
101-
image: mcr.microsoft.com/playwright:v1.54.1-noble
101+
image: mcr.microsoft.com/playwright:v1.48.2-noble
102102
steps:
103103
- uses: actions/checkout@v4
104104
- uses: actions/setup-node@v4

core/pfe-core/CHANGELOG.md

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

3+
## 5.0.5
4+
### Patch Changes
5+
6+
- a13e259: Update dependencies
7+
38
## 5.0.4
49
### Patch Changes
510

core/pfe-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/pfe-core",
3-
"version": "5.0.4",
3+
"version": "5.0.5",
44
"license": "MIT",
55
"description": "PatternFly Elements Core Library",
66
"customElements": "custom-elements.json",
@@ -65,8 +65,8 @@
6565
"test": "wtr --files './test/*.spec.ts' --config ../../web-test-runner.config.js"
6666
},
6767
"dependencies": {
68-
"@lit/context": "^1.1.5",
69-
"lit": "^3.3.0"
68+
"@lit/context": "^1.1.6",
69+
"lit": "^3.3.2"
7070
},
7171
"repository": {
7272
"type": "git",

docs/_data/importMap.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module.exports = async function() {
7373
await generator.install([
7474
'tslib',
7575
'@rhds/elements',
76-
'@rhds/elements/rh-footer/rh-global-footer.js',
76+
'@rhds/elements/rh-footer/rh-footer-universal.js',
7777
`prismjs@${PRISM_VERSION}`,
7878
'element-internals-polyfill',
7979
`fuse.js@${FUSE_VERSION}`,

docs/_includes/_foot.njk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{% endif %}
55
{% endfor %}
66

7-
<rh-global-footer>
7+
<rh-footer-universal>
88
<h3 slot="links-primary" hidden>Community</h3>
99
<ul slot="links-primary">
1010
<li><a href="https://github.com/patternfly/patternfly-elements">GitHub</a></li>
@@ -23,4 +23,4 @@
2323
<a slot="tertiary" href="https://www.netlify.com">
2424
<img src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg" alt="Deploys by Netlify">
2525
</a>
26-
</rh-global-footer>
26+
</rh-footer-universal>

docs/home.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
--pf-cta--Color: #06c;
4545
}
4646

47-
#home-header a.cta.primary:hover,
47+
#home-header a.cta.primary:hover,
4848
#home-header a.cta.primary:focus {
4949
--pf-cta--BackgroundColor: transparent;
5050
}
@@ -114,7 +114,7 @@
114114
margin: 0 auto;
115115
}
116116

117-
rh-global-footer {
117+
rh-footer-universal {
118118
width: 100vw !important;
119119
translate: none !important;
120120
transform: none;

docs/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ dl.member dd {
11061106
}
11071107

11081108
@media (min-width: 820px) {
1109-
rh-global-footer {
1109+
rh-footer-universal {
11101110
width: calc(100vw - 17.5rem);
11111111
transform: translate(17.5rem);
11121112
}

docs/main.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import '@rhds/elements/rh-footer/rh-global-footer.js';
1+
import '@rhds/elements/rh-footer/rh-footer-universal.js';
22
import 'element-internals-polyfill';
33
import { PfIcon } from '@patternfly/elements/pf-icon/pf-icon.js';
44

elements/CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# @patternfly/elements
22

3+
## 4.3.0
4+
### Minor Changes
5+
6+
- 280ef9b: ✨ Added `<pf-alert>` component
7+
8+
An **alert** is a notification that provides brief information to the user without blocking their workflow.
9+
10+
```html
11+
<pf-alert variant="warning"
12+
title-text="Custom alert title"
13+
dismissable>
14+
This is the alert description.
15+
<pf-button slot="actions">Ok</pf-button>
16+
<pf-button slot="actions">Cancel</pf-button>
17+
</pf-alert>
18+
- 1eea604: ✨ Added `<pf-helper-text>` component
19+
20+
**Helper text** is an on-screen field guideline that helps provide context regarding field inputs.
21+
22+
```html
23+
<pf-helper-text variant="error">You must include an email address</pf-helper-text>
24+
```
25+
- 26b1faa: ✨ Added `<pf-hint>` component
26+
27+
A **hint** is in-app messaging that provides a one-step reminder, explanation,
28+
or call to action for a page or modal. Hints provide information about an
29+
interaction or prerequisite step that might not be immediately obvious to the
30+
user.
31+
32+
```html
33+
<pf-hint>
34+
Welcome to the new documentation experience.
35+
<a href="#">Learn more about the improved features</a>.
36+
</pf-hint>
37+
```
38+
39+
### Patch Changes
40+
41+
- a13e259: Update dependencies
42+
- Updated dependencies [a13e259]
43+
- @patternfly/pfe-core@5.0.5
44+
345
## 4.2.0
446
### Minor Changes
547

0 commit comments

Comments
 (0)