@patternfly/patternfly 5.0.0-alpha.40 → 5.0.0-alpha.41
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/README.md +4 -4
- package/components/Spinner/spinner.css +0 -129
- package/components/Spinner/spinner.scss +0 -169
- package/docs/components/Button/examples/Button.md +16 -20
- package/docs/components/FileUpload/examples/FileUpload.md +4 -5
- package/docs/components/Menu/examples/Menu.md +10 -5
- package/docs/components/Select/examples/Select.md +4 -5
- package/docs/components/Spinner/examples/Spinner.md +0 -49
- package/docs/demos/Button/examples/Button.md +10 -5
- package/docs/demos/Card/examples/Card.md +30 -15
- package/docs/demos/Dashboard/examples/Dashboard.md +10 -5
- package/docs/demos/Table/examples/Table.md +10 -5
- package/package.json +6 -6
- package/patternfly-no-globals.css +0 -129
- package/patternfly.css +0 -129
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -2128,15 +2128,20 @@ cssPrefix: pf-d-dashboard
|
|
|
2128
2128
|
<dt class="pf-c-description-list__term">
|
|
2129
2129
|
<div class="pf-l-flex pf-m-nowrap">
|
|
2130
2130
|
<div class="pf-l-flex__item pf-m-spacer-sm">
|
|
2131
|
-
<
|
|
2131
|
+
<svg
|
|
2132
2132
|
class="pf-c-spinner pf-m-md"
|
|
2133
2133
|
role="progressbar"
|
|
2134
|
+
viewBox="0 0 100 100"
|
|
2134
2135
|
aria-label="Loading"
|
|
2135
2136
|
>
|
|
2136
|
-
<
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2137
|
+
<circle
|
|
2138
|
+
class="pf-c-spinner__path"
|
|
2139
|
+
cx="50"
|
|
2140
|
+
cy="50"
|
|
2141
|
+
r="45"
|
|
2142
|
+
fill="none"
|
|
2143
|
+
/>
|
|
2144
|
+
</svg>
|
|
2140
2145
|
</div>
|
|
2141
2146
|
<div class="pf-l-flex__item">Pulling image</div>
|
|
2142
2147
|
</div>
|
|
@@ -13350,15 +13350,20 @@ wrapperTag: div
|
|
|
13350
13350
|
<div class="pf-c-empty-state pf-m-sm">
|
|
13351
13351
|
<div class="pf-c-empty-state__content">
|
|
13352
13352
|
<div class="pf-c-empty-state__icon">
|
|
13353
|
-
<
|
|
13353
|
+
<svg
|
|
13354
13354
|
class="pf-c-spinner"
|
|
13355
13355
|
role="progressbar"
|
|
13356
|
+
viewBox="0 0 100 100"
|
|
13356
13357
|
aria-label="Loading..."
|
|
13357
13358
|
>
|
|
13358
|
-
<
|
|
13359
|
-
|
|
13360
|
-
|
|
13361
|
-
|
|
13359
|
+
<circle
|
|
13360
|
+
class="pf-c-spinner__path"
|
|
13361
|
+
cx="50"
|
|
13362
|
+
cy="50"
|
|
13363
|
+
r="45"
|
|
13364
|
+
fill="none"
|
|
13365
|
+
/>
|
|
13366
|
+
</svg>
|
|
13362
13367
|
</div>
|
|
13363
13368
|
<h2 class="pf-c-title pf-m-lg">Loading</h2>
|
|
13364
13369
|
</div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/patternfly",
|
|
3
3
|
"description": "Assets, source, tooling, and content for PatternFly 4",
|
|
4
|
-
"version": "5.0.0-alpha.
|
|
4
|
+
"version": "5.0.0-alpha.41",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"@commitlint/config-conventional": "^17.4.2",
|
|
43
43
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
44
44
|
"@octokit/rest": "^19.0.7",
|
|
45
|
-
"@patternfly/documentation-framework": "
|
|
45
|
+
"@patternfly/documentation-framework": "2.0.0-alpha.24",
|
|
46
46
|
"@patternfly/patternfly-a11y": "4.3.1",
|
|
47
|
-
"@patternfly/react-code-editor": "
|
|
48
|
-
"@patternfly/react-core": "
|
|
49
|
-
"@patternfly/react-table": "
|
|
47
|
+
"@patternfly/react-code-editor": "5.0.0-alpha.54",
|
|
48
|
+
"@patternfly/react-core": "5.0.0-alpha.53",
|
|
49
|
+
"@patternfly/react-table": "5.0.0-alpha.54",
|
|
50
50
|
"@starptech/prettyhtml": "^0.10.0",
|
|
51
51
|
"cheerio": "^1.0.0-rc.12",
|
|
52
52
|
"commander": "^10.0.0",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
"resolutions": {
|
|
96
96
|
"@babel/preset-env": "7.18.2",
|
|
97
|
-
"monaco-editor": "0.
|
|
97
|
+
"monaco-editor": "0.34.1"
|
|
98
98
|
},
|
|
99
99
|
"repository": {
|
|
100
100
|
"type": "git",
|
|
@@ -24874,135 +24874,6 @@ label.pf-c-radio, .pf-c-radio__label,
|
|
|
24874
24874
|
--pf-c-spinner--diameter: var(--pf-c-spinner--m-xl--diameter);
|
|
24875
24875
|
}
|
|
24876
24876
|
|
|
24877
|
-
span.pf-c-spinner {
|
|
24878
|
-
--pf-c-spinner--AnimationDuration: 1.5s;
|
|
24879
|
-
--pf-c-spinner--AnimationTimingFunction: cubic-bezier(.77, .005, .315, 1);
|
|
24880
|
-
--pf-c-spinner--stroke-width-multiplier: .1;
|
|
24881
|
-
--pf-c-spinner--stroke-width: calc(var(--pf-c-spinner--diameter) * var(--pf-c-spinner--stroke-width-multiplier));
|
|
24882
|
-
--pf-c-spinner__clipper--Width: var(--pf-c-spinner--diameter);
|
|
24883
|
-
--pf-c-spinner__clipper--Height: var(--pf-c-spinner--diameter);
|
|
24884
|
-
--pf-c-spinner__clipper--after--BoxShadowColor: var(--pf-c-spinner--Color);
|
|
24885
|
-
--pf-c-spinner__clipper--after--Width: var(--pf-c-spinner--diameter);
|
|
24886
|
-
--pf-c-spinner__clipper--after--Height: var(--pf-c-spinner--diameter);
|
|
24887
|
-
--pf-c-spinner__clipper--after--BoxShadowSpreadRadius: var(--pf-c-spinner--stroke-width);
|
|
24888
|
-
--pf-c-spinner__lead-ball--after--BackgroundColor: var(--pf-c-spinner--Color);
|
|
24889
|
-
--pf-c-spinner__ball--after--Width: var(--pf-c-spinner--stroke-width);
|
|
24890
|
-
--pf-c-spinner__ball--after--Height: var(--pf-c-spinner--stroke-width);
|
|
24891
|
-
--pf-c-spinner__tail-ball--after--BackgroundColor: var(--pf-c-spinner--Color);
|
|
24892
|
-
position: relative;
|
|
24893
|
-
display: inline-block;
|
|
24894
|
-
text-align: left;
|
|
24895
|
-
animation: pf-animation-spinner-parent calc(var(--pf-c-spinner--AnimationDuration) * 2) var(--pf-c-spinner--AnimationTimingFunction) infinite;
|
|
24896
|
-
}
|
|
24897
|
-
|
|
24898
|
-
@keyframes pf-animation-spinner-parent {
|
|
24899
|
-
0% {
|
|
24900
|
-
transform: rotate(0deg);
|
|
24901
|
-
}
|
|
24902
|
-
50% {
|
|
24903
|
-
transform: rotate(540deg);
|
|
24904
|
-
}
|
|
24905
|
-
100% {
|
|
24906
|
-
transform: rotate(1080deg);
|
|
24907
|
-
}
|
|
24908
|
-
}
|
|
24909
|
-
.pf-c-spinner__clipper {
|
|
24910
|
-
position: absolute;
|
|
24911
|
-
width: var(--pf-c-spinner__clipper--Width);
|
|
24912
|
-
height: var(--pf-c-spinner__clipper--Height);
|
|
24913
|
-
clip-path: inset(0 0 50% 50%);
|
|
24914
|
-
animation: pf-animation-spinner__clipper var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
24915
|
-
}
|
|
24916
|
-
|
|
24917
|
-
@keyframes pf-animation-spinner__clipper {
|
|
24918
|
-
0% {
|
|
24919
|
-
transform: rotate(90deg);
|
|
24920
|
-
}
|
|
24921
|
-
100% {
|
|
24922
|
-
transform: rotate(360deg);
|
|
24923
|
-
}
|
|
24924
|
-
}
|
|
24925
|
-
.pf-c-spinner__clipper::after {
|
|
24926
|
-
position: absolute;
|
|
24927
|
-
width: var(--pf-c-spinner__clipper--after--Width);
|
|
24928
|
-
height: var(--pf-c-spinner__clipper--after--Height);
|
|
24929
|
-
clip-path: inset(0 0 0 50%);
|
|
24930
|
-
content: "";
|
|
24931
|
-
border-radius: 50%;
|
|
24932
|
-
box-shadow: inset 0 0 0 var(--pf-c-spinner__clipper--after--BoxShadowSpreadRadius) var(--pf-c-spinner__clipper--after--BoxShadowColor);
|
|
24933
|
-
animation: pf-animation-spinner__clipper-after var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
24934
|
-
}
|
|
24935
|
-
|
|
24936
|
-
@keyframes pf-animation-spinner__clipper-after {
|
|
24937
|
-
0% {
|
|
24938
|
-
transform: rotate(-180deg);
|
|
24939
|
-
}
|
|
24940
|
-
100% {
|
|
24941
|
-
transform: rotate(90deg);
|
|
24942
|
-
}
|
|
24943
|
-
}
|
|
24944
|
-
.pf-c-spinner__lead-ball {
|
|
24945
|
-
position: absolute;
|
|
24946
|
-
top: 0;
|
|
24947
|
-
left: 0;
|
|
24948
|
-
width: 100%;
|
|
24949
|
-
height: 100%;
|
|
24950
|
-
animation: pf-animation-spinner__lead-ball var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
24951
|
-
}
|
|
24952
|
-
.pf-c-spinner__lead-ball::after {
|
|
24953
|
-
position: absolute;
|
|
24954
|
-
top: calc(50% - var(--pf-c-spinner__ball--after--Height) / 2);
|
|
24955
|
-
right: 0;
|
|
24956
|
-
width: var(--pf-c-spinner__ball--after--Width);
|
|
24957
|
-
height: var(--pf-c-spinner__ball--after--Height);
|
|
24958
|
-
content: "";
|
|
24959
|
-
background-color: var(--pf-c-spinner__lead-ball--after--BackgroundColor);
|
|
24960
|
-
border-radius: 50%;
|
|
24961
|
-
transform-origin: top right;
|
|
24962
|
-
}
|
|
24963
|
-
|
|
24964
|
-
@keyframes pf-animation-spinner__lead-ball {
|
|
24965
|
-
0% {
|
|
24966
|
-
transform: rotate(0deg);
|
|
24967
|
-
}
|
|
24968
|
-
33% {
|
|
24969
|
-
transform: rotate(180deg);
|
|
24970
|
-
}
|
|
24971
|
-
100% {
|
|
24972
|
-
transform: rotate(360deg);
|
|
24973
|
-
}
|
|
24974
|
-
}
|
|
24975
|
-
.pf-c-spinner__tail-ball {
|
|
24976
|
-
position: absolute;
|
|
24977
|
-
top: 0;
|
|
24978
|
-
left: 0;
|
|
24979
|
-
width: 100%;
|
|
24980
|
-
height: 100%;
|
|
24981
|
-
animation: pf-animation-spinner__tail-ball var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
24982
|
-
}
|
|
24983
|
-
.pf-c-spinner__tail-ball::after {
|
|
24984
|
-
position: absolute;
|
|
24985
|
-
top: calc(50% - var(--pf-c-spinner__ball--after--Height) / 2);
|
|
24986
|
-
right: 0;
|
|
24987
|
-
width: var(--pf-c-spinner__ball--after--Width);
|
|
24988
|
-
height: var(--pf-c-spinner__ball--after--Height);
|
|
24989
|
-
content: "";
|
|
24990
|
-
background-color: var(--pf-c-spinner__tail-ball--after--BackgroundColor);
|
|
24991
|
-
border-radius: 50%;
|
|
24992
|
-
transform-origin: top right;
|
|
24993
|
-
}
|
|
24994
|
-
|
|
24995
|
-
@keyframes pf-animation-spinner__tail-ball {
|
|
24996
|
-
0% {
|
|
24997
|
-
transform: rotate(0deg);
|
|
24998
|
-
}
|
|
24999
|
-
66% {
|
|
25000
|
-
transform: rotate(180deg);
|
|
25001
|
-
}
|
|
25002
|
-
100% {
|
|
25003
|
-
transform: rotate(360deg);
|
|
25004
|
-
}
|
|
25005
|
-
}
|
|
25006
24877
|
svg.pf-c-spinner {
|
|
25007
24878
|
--pf-c-spinner--diameter: var(--pf-global--icon--FontSize--xl);
|
|
25008
24879
|
--pf-c-spinner--AnimationDuration: 1.4s;
|
package/patternfly.css
CHANGED
|
@@ -24991,135 +24991,6 @@ label.pf-c-radio, .pf-c-radio__label,
|
|
|
24991
24991
|
--pf-c-spinner--diameter: var(--pf-c-spinner--m-xl--diameter);
|
|
24992
24992
|
}
|
|
24993
24993
|
|
|
24994
|
-
span.pf-c-spinner {
|
|
24995
|
-
--pf-c-spinner--AnimationDuration: 1.5s;
|
|
24996
|
-
--pf-c-spinner--AnimationTimingFunction: cubic-bezier(.77, .005, .315, 1);
|
|
24997
|
-
--pf-c-spinner--stroke-width-multiplier: .1;
|
|
24998
|
-
--pf-c-spinner--stroke-width: calc(var(--pf-c-spinner--diameter) * var(--pf-c-spinner--stroke-width-multiplier));
|
|
24999
|
-
--pf-c-spinner__clipper--Width: var(--pf-c-spinner--diameter);
|
|
25000
|
-
--pf-c-spinner__clipper--Height: var(--pf-c-spinner--diameter);
|
|
25001
|
-
--pf-c-spinner__clipper--after--BoxShadowColor: var(--pf-c-spinner--Color);
|
|
25002
|
-
--pf-c-spinner__clipper--after--Width: var(--pf-c-spinner--diameter);
|
|
25003
|
-
--pf-c-spinner__clipper--after--Height: var(--pf-c-spinner--diameter);
|
|
25004
|
-
--pf-c-spinner__clipper--after--BoxShadowSpreadRadius: var(--pf-c-spinner--stroke-width);
|
|
25005
|
-
--pf-c-spinner__lead-ball--after--BackgroundColor: var(--pf-c-spinner--Color);
|
|
25006
|
-
--pf-c-spinner__ball--after--Width: var(--pf-c-spinner--stroke-width);
|
|
25007
|
-
--pf-c-spinner__ball--after--Height: var(--pf-c-spinner--stroke-width);
|
|
25008
|
-
--pf-c-spinner__tail-ball--after--BackgroundColor: var(--pf-c-spinner--Color);
|
|
25009
|
-
position: relative;
|
|
25010
|
-
display: inline-block;
|
|
25011
|
-
text-align: left;
|
|
25012
|
-
animation: pf-animation-spinner-parent calc(var(--pf-c-spinner--AnimationDuration) * 2) var(--pf-c-spinner--AnimationTimingFunction) infinite;
|
|
25013
|
-
}
|
|
25014
|
-
|
|
25015
|
-
@keyframes pf-animation-spinner-parent {
|
|
25016
|
-
0% {
|
|
25017
|
-
transform: rotate(0deg);
|
|
25018
|
-
}
|
|
25019
|
-
50% {
|
|
25020
|
-
transform: rotate(540deg);
|
|
25021
|
-
}
|
|
25022
|
-
100% {
|
|
25023
|
-
transform: rotate(1080deg);
|
|
25024
|
-
}
|
|
25025
|
-
}
|
|
25026
|
-
.pf-c-spinner__clipper {
|
|
25027
|
-
position: absolute;
|
|
25028
|
-
width: var(--pf-c-spinner__clipper--Width);
|
|
25029
|
-
height: var(--pf-c-spinner__clipper--Height);
|
|
25030
|
-
clip-path: inset(0 0 50% 50%);
|
|
25031
|
-
animation: pf-animation-spinner__clipper var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
25032
|
-
}
|
|
25033
|
-
|
|
25034
|
-
@keyframes pf-animation-spinner__clipper {
|
|
25035
|
-
0% {
|
|
25036
|
-
transform: rotate(90deg);
|
|
25037
|
-
}
|
|
25038
|
-
100% {
|
|
25039
|
-
transform: rotate(360deg);
|
|
25040
|
-
}
|
|
25041
|
-
}
|
|
25042
|
-
.pf-c-spinner__clipper::after {
|
|
25043
|
-
position: absolute;
|
|
25044
|
-
width: var(--pf-c-spinner__clipper--after--Width);
|
|
25045
|
-
height: var(--pf-c-spinner__clipper--after--Height);
|
|
25046
|
-
clip-path: inset(0 0 0 50%);
|
|
25047
|
-
content: "";
|
|
25048
|
-
border-radius: 50%;
|
|
25049
|
-
box-shadow: inset 0 0 0 var(--pf-c-spinner__clipper--after--BoxShadowSpreadRadius) var(--pf-c-spinner__clipper--after--BoxShadowColor);
|
|
25050
|
-
animation: pf-animation-spinner__clipper-after var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
25051
|
-
}
|
|
25052
|
-
|
|
25053
|
-
@keyframes pf-animation-spinner__clipper-after {
|
|
25054
|
-
0% {
|
|
25055
|
-
transform: rotate(-180deg);
|
|
25056
|
-
}
|
|
25057
|
-
100% {
|
|
25058
|
-
transform: rotate(90deg);
|
|
25059
|
-
}
|
|
25060
|
-
}
|
|
25061
|
-
.pf-c-spinner__lead-ball {
|
|
25062
|
-
position: absolute;
|
|
25063
|
-
top: 0;
|
|
25064
|
-
left: 0;
|
|
25065
|
-
width: 100%;
|
|
25066
|
-
height: 100%;
|
|
25067
|
-
animation: pf-animation-spinner__lead-ball var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
25068
|
-
}
|
|
25069
|
-
.pf-c-spinner__lead-ball::after {
|
|
25070
|
-
position: absolute;
|
|
25071
|
-
top: calc(50% - var(--pf-c-spinner__ball--after--Height) / 2);
|
|
25072
|
-
right: 0;
|
|
25073
|
-
width: var(--pf-c-spinner__ball--after--Width);
|
|
25074
|
-
height: var(--pf-c-spinner__ball--after--Height);
|
|
25075
|
-
content: "";
|
|
25076
|
-
background-color: var(--pf-c-spinner__lead-ball--after--BackgroundColor);
|
|
25077
|
-
border-radius: 50%;
|
|
25078
|
-
transform-origin: top right;
|
|
25079
|
-
}
|
|
25080
|
-
|
|
25081
|
-
@keyframes pf-animation-spinner__lead-ball {
|
|
25082
|
-
0% {
|
|
25083
|
-
transform: rotate(0deg);
|
|
25084
|
-
}
|
|
25085
|
-
33% {
|
|
25086
|
-
transform: rotate(180deg);
|
|
25087
|
-
}
|
|
25088
|
-
100% {
|
|
25089
|
-
transform: rotate(360deg);
|
|
25090
|
-
}
|
|
25091
|
-
}
|
|
25092
|
-
.pf-c-spinner__tail-ball {
|
|
25093
|
-
position: absolute;
|
|
25094
|
-
top: 0;
|
|
25095
|
-
left: 0;
|
|
25096
|
-
width: 100%;
|
|
25097
|
-
height: 100%;
|
|
25098
|
-
animation: pf-animation-spinner__tail-ball var(--pf-c-spinner--AnimationDuration) linear infinite;
|
|
25099
|
-
}
|
|
25100
|
-
.pf-c-spinner__tail-ball::after {
|
|
25101
|
-
position: absolute;
|
|
25102
|
-
top: calc(50% - var(--pf-c-spinner__ball--after--Height) / 2);
|
|
25103
|
-
right: 0;
|
|
25104
|
-
width: var(--pf-c-spinner__ball--after--Width);
|
|
25105
|
-
height: var(--pf-c-spinner__ball--after--Height);
|
|
25106
|
-
content: "";
|
|
25107
|
-
background-color: var(--pf-c-spinner__tail-ball--after--BackgroundColor);
|
|
25108
|
-
border-radius: 50%;
|
|
25109
|
-
transform-origin: top right;
|
|
25110
|
-
}
|
|
25111
|
-
|
|
25112
|
-
@keyframes pf-animation-spinner__tail-ball {
|
|
25113
|
-
0% {
|
|
25114
|
-
transform: rotate(0deg);
|
|
25115
|
-
}
|
|
25116
|
-
66% {
|
|
25117
|
-
transform: rotate(180deg);
|
|
25118
|
-
}
|
|
25119
|
-
100% {
|
|
25120
|
-
transform: rotate(360deg);
|
|
25121
|
-
}
|
|
25122
|
-
}
|
|
25123
24994
|
svg.pf-c-spinner {
|
|
25124
24995
|
--pf-c-spinner--diameter: var(--pf-global--icon--FontSize--xl);
|
|
25125
24996
|
--pf-c-spinner--AnimationDuration: 1.4s;
|