Skip to content

Commit 8190f8a

Browse files
committed
Merge branch 'main' into staging/4.0
2 parents 77dff66 + 4995067 commit 8190f8a

File tree

11 files changed

+89
-55
lines changed

11 files changed

+89
-55
lines changed

.changeset/odd-months-flow.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changeset/purple-boxes-stare.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@patternfly/elements": patch
3+
---
4+
5+
`<pf-back-to-top>`: fix hover color

.changeset/upset-birds-mix.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/_data/importMap.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ module.exports = async function() {
7777
const { Generator } = await import('@jspm/generator');
7878

7979
const generator = new Generator({
80-
defaultProvider: 'jspm.io',
80+
defaultProvider: 'jsdelivr',
8181
env: ['production', 'browser', 'module'],
8282
});
8383

elements/CHANGELOG.md

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

3+
## 3.0.2
4+
5+
### Patch Changes
6+
7+
- 9702278: `<pf-clipboard-copy>`: corrected size of copy button
8+
39
## 3.0.1
410

511
### Patch Changes

elements/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/elements",
33
"license": "MIT",
4-
"version": "3.0.1",
4+
"version": "3.0.2",
55
"description": "PatternFly Elements",
66
"customElements": "custom-elements.json",
77
"type": "module",
@@ -125,7 +125,8 @@
125125
"Nikki Massaro Kauffman <nmassaro@redhat.com> (https://github.com/nikkimk)",
126126
"Steven Spriggs <sspriggs@redhat.com",
127127
"castastrophe (https://github.com/castastrophe)",
128-
"Wes Ruvalcaba"
128+
"Wes Ruvalcaba",
129+
"Ajinyka Shinde <sajinkya359@gmail.com>"
129130
],
130131
"dependencies": {
131132
"@lit/context": "^1.1.0",

elements/pf-back-to-top/pf-back-to-top.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ a {
2929
gap: var(--pf-c-button__icon--m-end--MarginLeft, var(--pf-global--spacer--xs, 0.25rem));
3030
}
3131

32+
a:hover {
33+
--pf-c-button--m-primary--Color: var(--pf-c-button--m-primary--hover--Color, var(--pf-global--Color--light-100, #fff));
34+
--pf-c-button--m-primary--BackgroundColor: var(--pf-c-button--m-primary--hover--BackgroundColor, var(--pf-global--primary-color--200, #004080));
35+
}
36+
37+
a:focus {
38+
--pf-c-button--m-primary--Color: var(--pf-c-button--m-primary--hover--Color, var(--pf-global--Color--light-100,#fff));
39+
--pf-c-button--m-primary--BackgroundColor: var(--pf-c-button--m-primary--hover--BackgroundColor, var(--pf-global--primary-color--200, #004080));
40+
}
41+
3242
[part="trigger"][hidden] {
3343
display: none;
3444
}

package-lock.json

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/pfe-tools/CHANGELOG.md

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

3+
## 2.0.3
4+
5+
### Patch Changes
6+
7+
- aca8409: **React**: ensure that only classes which are exported get wrapped
8+
9+
## 2.0.2
10+
11+
### Patch Changes
12+
13+
- c57c5dd: Dev Server: redirect demo links to css lightdom subresources
14+
- 9995136: **React**: corrected syntax error in some generated modules
15+
316
## 2.0.1
417

518
### Patch Changes

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": "2.0.1",
3+
"version": "2.0.3",
44
"type": "module",
55
"description": "Development and build tools for PatternFly Elements and related projects",
66
"keywords": [

0 commit comments

Comments
 (0)