@patternfly/react-styles 4.58.10 → 4.58.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,33 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## 4.58.13 (2022-05-05)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **Wixard:** Fixed id not being applied to wizard step ([#7349](https://github.com/patternfly/patternfly-react/issues/7349)) ([de6b557](https://github.com/patternfly/patternfly-react/commit/de6b557331460dd387faa1ac4c5c033757412340))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
## 4.58.12 (2022-05-05)
|
18
|
+
|
19
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
## 4.58.11 (2022-05-05)
|
26
|
+
|
27
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
6
33
|
## 4.58.10 (2022-05-05)
|
7
34
|
|
8
35
|
|
@@ -245,12 +245,14 @@
|
|
245
245
|
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-outline__content--before--BorderColor);
|
246
246
|
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-outline__content--before--BorderColor);
|
247
247
|
}
|
248
|
-
.pf-c-label.pf-m-overflow:hover,
|
248
|
+
.pf-c-label.pf-m-overflow:hover,
|
249
|
+
.pf-c-label.pf-m-add:hover, .pf-c-label.pf-m-outline a.pf-c-label__content:hover,
|
249
250
|
.pf-c-label.pf-m-outline button.pf-c-label__content:hover {
|
250
251
|
--pf-c-label__content--before--BorderWidth: var(--pf-c-label--m-outline__content--link--hover--before--BorderWidth);
|
251
252
|
--pf-c-label__content--before--BorderColor: var(--pf-c-label--m-outline__content--link--hover--before--BorderColor);
|
252
253
|
}
|
253
|
-
.pf-c-label.pf-m-overflow:focus,
|
254
|
+
.pf-c-label.pf-m-overflow:focus,
|
255
|
+
.pf-c-label.pf-m-add:focus, .pf-c-label.pf-m-outline a.pf-c-label__content:focus,
|
254
256
|
.pf-c-label.pf-m-outline button.pf-c-label__content:focus {
|
255
257
|
--pf-c-label__content--before--BorderWidth: var(--pf-c-label--m-outline__content--link--focus--before--BorderWidth);
|
256
258
|
--pf-c-label__content--before--BorderColor: var(--pf-c-label--m-outline__content--link--focus--before--BorderColor);
|
@@ -298,7 +300,7 @@
|
|
298
300
|
margin-bottom: var(--pf-c-label__c-button--MarginBottom);
|
299
301
|
margin-left: var(--pf-c-label__c-button--MarginLeft);
|
300
302
|
}
|
301
|
-
.pf-c-label.pf-m-overflow {
|
303
|
+
.pf-c-label.pf-m-overflow, .pf-c-label.pf-m-add {
|
302
304
|
--pf-c-label__content--Color: var(--pf-c-label--m-overflow__content--Color);
|
303
305
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-overflow__content--BackgroundColor);
|
304
306
|
--pf-c-label__content--before--BorderWidth: var(--pf-c-label--m-overflow__content--before--BorderWidth);
|
@@ -50,10 +50,10 @@ span.pf-c-spinner {
|
|
50
50
|
transform: rotate(0deg);
|
51
51
|
}
|
52
52
|
50% {
|
53
|
-
transform: rotate(
|
53
|
+
transform: rotate(540deg);
|
54
54
|
}
|
55
55
|
100% {
|
56
|
-
transform: rotate(
|
56
|
+
transform: rotate(1080deg);
|
57
57
|
}
|
58
58
|
}
|
59
59
|
.pf-c-spinner__clipper {
|
@@ -66,10 +66,10 @@ span.pf-c-spinner {
|
|
66
66
|
|
67
67
|
@keyframes pf-animation-spinner__clipper {
|
68
68
|
0% {
|
69
|
-
transform: rotate(
|
69
|
+
transform: rotate(90deg);
|
70
70
|
}
|
71
71
|
100% {
|
72
|
-
transform: rotate(
|
72
|
+
transform: rotate(360deg);
|
73
73
|
}
|
74
74
|
}
|
75
75
|
.pf-c-spinner__clipper::after {
|
@@ -85,10 +85,10 @@ span.pf-c-spinner {
|
|
85
85
|
|
86
86
|
@keyframes pf-animation-spinner__clipper-after {
|
87
87
|
0% {
|
88
|
-
transform: rotate(
|
88
|
+
transform: rotate(-180deg);
|
89
89
|
}
|
90
90
|
100% {
|
91
|
-
transform: rotate(
|
91
|
+
transform: rotate(90deg);
|
92
92
|
}
|
93
93
|
}
|
94
94
|
.pf-c-spinner__lead-ball {
|
@@ -115,11 +115,11 @@ span.pf-c-spinner {
|
|
115
115
|
0% {
|
116
116
|
transform: rotate(0deg);
|
117
117
|
}
|
118
|
-
|
119
|
-
transform: rotate(
|
118
|
+
33% {
|
119
|
+
transform: rotate(180deg);
|
120
120
|
}
|
121
121
|
100% {
|
122
|
-
transform: rotate(
|
122
|
+
transform: rotate(360deg);
|
123
123
|
}
|
124
124
|
}
|
125
125
|
.pf-c-spinner__tail-ball {
|
@@ -146,11 +146,11 @@ span.pf-c-spinner {
|
|
146
146
|
0% {
|
147
147
|
transform: rotate(0deg);
|
148
148
|
}
|
149
|
-
|
150
|
-
transform: rotate(
|
149
|
+
66% {
|
150
|
+
transform: rotate(180deg);
|
151
151
|
}
|
152
152
|
100% {
|
153
|
-
transform: rotate(
|
153
|
+
transform: rotate(360deg);
|
154
154
|
}
|
155
155
|
}
|
156
156
|
svg.pf-c-spinner {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "4.58.
|
3
|
+
"version": "4.58.13",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/esm/index.d.ts",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"clean": "rimraf dist css"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@patternfly/patternfly": "4.
|
22
|
+
"@patternfly/patternfly": "4.193.0",
|
23
23
|
"camel-case": "^3.0.0",
|
24
24
|
"css": "^2.2.3",
|
25
25
|
"fs-extra": "^6.0.1",
|
@@ -29,5 +29,5 @@
|
|
29
29
|
"typescript": "^4.0.0"
|
30
30
|
},
|
31
31
|
"license": "MIT",
|
32
|
-
"gitHead": "
|
32
|
+
"gitHead": "9595ee060320621567e7d14e2b11240eb8dc37d2"
|
33
33
|
}
|