@patternfly/patternfly 4.203.4 → 4.204.2
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/components/Drawer/drawer.css +1 -1
- package/components/Drawer/drawer.scss +2 -2
- package/components/Menu/menu.css +1 -0
- package/components/Menu/menu.scss +1 -0
- package/components/NumberInput/number-input.css +11 -1
- package/components/NumberInput/number-input.scss +15 -1
- package/docs/components/DescriptionList/examples/DescriptionList.md +21 -21
- package/docs/components/LogViewer/examples/LogViewer.md +1 -0
- package/docs/components/ModalBox/examples/ModalBox.css +10 -0
- package/docs/components/ModalBox/examples/ModalBox.md +34 -17
- package/docs/components/NumberInput/examples/NumberInput.md +57 -6
- package/docs/components/Popover/examples/Popover.css +8 -8
- package/docs/components/Popover/examples/Popover.md +47 -20
- package/docs/components/Table/examples/Table.md +52 -52
- package/docs/demos/Card/examples/Card.md +1 -0
- package/docs/demos/Modal/examples/Modal.md +6 -0
- package/docs/demos/Table/examples/Table.md +73 -72
- package/docs/demos/Tabs/examples/Tabs.md +1 -0
- package/docs/demos/Wizard/examples/Wizard.md +5 -0
- package/package.json +1 -1
- package/patternfly-no-reset.css +13 -2
- package/patternfly.css +13 -2
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -927,6 +927,7 @@ wrapperTag: div
|
|
|
927
927
|
<div class="pf-l-bullseye">
|
|
928
928
|
<div
|
|
929
929
|
class="pf-c-modal-box pf-m-lg"
|
|
930
|
+
role="dialog"
|
|
930
931
|
aria-modal="true"
|
|
931
932
|
aria-label="Basic wizard"
|
|
932
933
|
>
|
|
@@ -2088,6 +2089,7 @@ wrapperTag: div
|
|
|
2088
2089
|
<div class="pf-l-bullseye">
|
|
2089
2090
|
<div
|
|
2090
2091
|
class="pf-c-modal-box pf-m-lg"
|
|
2092
|
+
role="dialog"
|
|
2091
2093
|
aria-modal="true"
|
|
2092
2094
|
aria-label="Wizard with expanded mobile nav"
|
|
2093
2095
|
>
|
|
@@ -3249,6 +3251,7 @@ wrapperTag: div
|
|
|
3249
3251
|
<div class="pf-l-bullseye">
|
|
3250
3252
|
<div
|
|
3251
3253
|
class="pf-c-modal-box pf-m-lg"
|
|
3254
|
+
role="dialog"
|
|
3252
3255
|
aria-modal="true"
|
|
3253
3256
|
aria-label="Basic wizard"
|
|
3254
3257
|
>
|
|
@@ -4467,6 +4470,7 @@ wrapperTag: div
|
|
|
4467
4470
|
<div class="pf-l-bullseye">
|
|
4468
4471
|
<div
|
|
4469
4472
|
class="pf-c-modal-box pf-m-lg"
|
|
4473
|
+
role="dialog"
|
|
4470
4474
|
aria-modal="true"
|
|
4471
4475
|
aria-label="Basic wizard"
|
|
4472
4476
|
>
|
|
@@ -5679,6 +5683,7 @@ wrapperTag: div
|
|
|
5679
5683
|
<div class="pf-l-bullseye">
|
|
5680
5684
|
<div
|
|
5681
5685
|
class="pf-c-modal-box pf-m-lg"
|
|
5686
|
+
role="dialog"
|
|
5682
5687
|
aria-modal="true"
|
|
5683
5688
|
aria-label="Basic wizard"
|
|
5684
5689
|
>
|
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -13134,7 +13134,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
13134
13134
|
}
|
|
13135
13135
|
|
|
13136
13136
|
.pf-c-drawer__body > .pf-c-page__main {
|
|
13137
|
-
|
|
13137
|
+
height: 100%;
|
|
13138
13138
|
}
|
|
13139
13139
|
|
|
13140
13140
|
.pf-c-drawer__splitter {
|
|
@@ -18389,6 +18389,7 @@ ul.pf-c-list {
|
|
|
18389
18389
|
background-color: transparent;
|
|
18390
18390
|
}
|
|
18391
18391
|
.pf-c-menu.pf-m-drilldown .pf-c-menu__list-item:not(.pf-m-current-path) .pf-c-menu {
|
|
18392
|
+
display: none;
|
|
18392
18393
|
visibility: hidden;
|
|
18393
18394
|
}
|
|
18394
18395
|
.pf-c-menu.pf-m-drilldown .pf-c-menu__item {
|
|
@@ -31099,11 +31100,21 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31099
31100
|
--pf-c-number-input__unit--c-input-group--MarginLeft: var(--pf-global--spacer--sm);
|
|
31100
31101
|
--pf-c-number-input__icon--FontSize: var(--pf-global--FontSize--xs);
|
|
31101
31102
|
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
31103
|
+
--pf-c-number-input--c-form-control--width-icon: 0px;
|
|
31104
|
+
--pf-c-number-input--m-status--c-form-control--width-icon: var(--pf-global--spacer--xl);
|
|
31102
31105
|
--pf-c-number-input--c-form-control--width-chars: 4;
|
|
31103
|
-
--pf-c-number-input--c-form-control--Width:
|
|
31106
|
+
--pf-c-number-input--c-form-control--Width:
|
|
31107
|
+
calc(
|
|
31108
|
+
calc(
|
|
31109
|
+
var(--pf-c-number-input--c-form-control--width-base) + var(--pf-c-number-input--c-form-control--width-chars) * 1ch
|
|
31110
|
+
) + var(--pf-c-number-input--c-form-control--width-icon)
|
|
31111
|
+
);
|
|
31104
31112
|
display: inline-flex;
|
|
31105
31113
|
align-items: center;
|
|
31106
31114
|
}
|
|
31115
|
+
.pf-c-number-input.pf-m-status {
|
|
31116
|
+
--pf-c-number-input--c-form-control--width-icon: var(--pf-c-number-input--m-status--c-form-control--width-icon);
|
|
31117
|
+
}
|
|
31107
31118
|
.pf-c-number-input .pf-c-form-control {
|
|
31108
31119
|
display: inline-flex;
|
|
31109
31120
|
width: var(--pf-c-number-input--c-form-control--Width);
|
package/patternfly.css
CHANGED
|
@@ -13261,7 +13261,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
13261
13261
|
}
|
|
13262
13262
|
|
|
13263
13263
|
.pf-c-drawer__body > .pf-c-page__main {
|
|
13264
|
-
|
|
13264
|
+
height: 100%;
|
|
13265
13265
|
}
|
|
13266
13266
|
|
|
13267
13267
|
.pf-c-drawer__splitter {
|
|
@@ -18516,6 +18516,7 @@ ul.pf-c-list {
|
|
|
18516
18516
|
background-color: transparent;
|
|
18517
18517
|
}
|
|
18518
18518
|
.pf-c-menu.pf-m-drilldown .pf-c-menu__list-item:not(.pf-m-current-path) .pf-c-menu {
|
|
18519
|
+
display: none;
|
|
18519
18520
|
visibility: hidden;
|
|
18520
18521
|
}
|
|
18521
18522
|
.pf-c-menu.pf-m-drilldown .pf-c-menu__item {
|
|
@@ -31226,11 +31227,21 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31226
31227
|
--pf-c-number-input__unit--c-input-group--MarginLeft: var(--pf-global--spacer--sm);
|
|
31227
31228
|
--pf-c-number-input__icon--FontSize: var(--pf-global--FontSize--xs);
|
|
31228
31229
|
--pf-c-number-input--c-form-control--width-base: calc(var(--pf-global--spacer--sm) * 2 + var(--pf-global--BorderWidth--sm) * 2);
|
|
31230
|
+
--pf-c-number-input--c-form-control--width-icon: 0px;
|
|
31231
|
+
--pf-c-number-input--m-status--c-form-control--width-icon: var(--pf-global--spacer--xl);
|
|
31229
31232
|
--pf-c-number-input--c-form-control--width-chars: 4;
|
|
31230
|
-
--pf-c-number-input--c-form-control--Width:
|
|
31233
|
+
--pf-c-number-input--c-form-control--Width:
|
|
31234
|
+
calc(
|
|
31235
|
+
calc(
|
|
31236
|
+
var(--pf-c-number-input--c-form-control--width-base) + var(--pf-c-number-input--c-form-control--width-chars) * 1ch
|
|
31237
|
+
) + var(--pf-c-number-input--c-form-control--width-icon)
|
|
31238
|
+
);
|
|
31231
31239
|
display: inline-flex;
|
|
31232
31240
|
align-items: center;
|
|
31233
31241
|
}
|
|
31242
|
+
.pf-c-number-input.pf-m-status {
|
|
31243
|
+
--pf-c-number-input--c-form-control--width-icon: var(--pf-c-number-input--m-status--c-form-control--width-icon);
|
|
31244
|
+
}
|
|
31234
31245
|
.pf-c-number-input .pf-c-form-control {
|
|
31235
31246
|
display: inline-flex;
|
|
31236
31247
|
width: var(--pf-c-number-input--c-form-control--Width);
|