@patternfly/patternfly 4.216.0 → 4.216.1
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/base/_base.scss +3 -3
- package/base/_fa-icons.scss +2 -2
- package/base/_fonts.scss +1 -1
- package/components/DataList/data-list-grid.scss +2 -0
- package/components/DataList/data-list.scss +2 -0
- package/components/Dropdown/dropdown.scss +2 -0
- package/components/FormControl/form-control.scss +2 -0
- package/components/InputGroup/input-group.scss +2 -0
- package/components/MenuToggle/menu-toggle.scss +2 -1
- package/components/Pagination/pagination.scss +2 -0
- package/components/Slider/slider.css +1 -0
- package/components/Slider/slider.scss +1 -0
- package/components/Wizard/wizard.scss +2 -0
- package/package.json +10 -10
- package/patternfly-no-reset.css +1 -0
- package/patternfly.css +1 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/base/_base.scss
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
// remove in breaking change
|
|
4
4
|
@if $pf-global--load-pf-3 {
|
|
5
|
-
@import
|
|
6
|
-
@import
|
|
7
|
-
@import
|
|
5
|
+
@import "https://fonts.googleapis.com/css?family=Open+Sans";
|
|
6
|
+
@import "https://cdnjs.cloudflare.com/ajax/libs/patternfly/3.37.10/css/patternfly.min.css";
|
|
7
|
+
@import "https://cdnjs.cloudflare.com/ajax/libs/patternfly/3.37.10/css/patternfly-additions.min.css";
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
// remove pf3 shield styles in breaking change
|
package/base/_fa-icons.scss
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
@if not($pf-global--disable-fontawesome) {
|
|
7
7
|
@if $pf-global--enable-fontawesome-cdn {
|
|
8
8
|
// stylelint-disable no-invalid-position-at-import-rule
|
|
9
|
-
@import
|
|
10
|
-
@import
|
|
9
|
+
@import "https://use.fontawesome.com/releases/v5.7.2/css/solid.css";
|
|
10
|
+
@import "https://use.fontawesome.com/releases/v5.7.2/css/fontawesome.css";
|
|
11
11
|
// stylelint-enable no-invalid-position-at-import-rule
|
|
12
12
|
} @else {
|
|
13
13
|
@font-face {
|
package/base/_fonts.scss
CHANGED
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
// remove in breaking change
|
|
157
157
|
@if $pf-global--enable-font-overpass-cdn {
|
|
158
158
|
// stylelint-disable no-invalid-position-at-import-rule
|
|
159
|
-
@import
|
|
159
|
+
@import "https://fonts.googleapis.com/css?family=Overpass|Overpass+Mono";
|
|
160
160
|
// stylelint-enable no-invalid-position-at-import-rule
|
|
161
161
|
} @else {
|
|
162
162
|
@font-face {
|
|
@@ -256,6 +256,8 @@
|
|
|
256
256
|
position: relative;
|
|
257
257
|
z-index: var(--pf-c-data-list__item--m-selectable--hover--ZIndex);
|
|
258
258
|
|
|
259
|
+
// stylelint-disable selector-not-notation
|
|
260
|
+
// update to single :not() in breaking change
|
|
259
261
|
&:not(.pf-m-selected):not(:last-child) {
|
|
260
262
|
--pf-c-data-list__item--BorderBottomWidth: 0;
|
|
261
263
|
|
|
@@ -391,6 +391,8 @@ $pf-c-dropdown--breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg", "
|
|
|
391
391
|
}
|
|
392
392
|
}
|
|
393
393
|
|
|
394
|
+
// stylelint-disable selector-not-notation
|
|
395
|
+
// update to single :not() in breaking change
|
|
394
396
|
&:not(.pf-m-action):not(.pf-m-secondary):hover,
|
|
395
397
|
&.pf-m-action .pf-c-dropdown__toggle-button:hover {
|
|
396
398
|
&::before {
|
|
@@ -234,6 +234,8 @@ $pf-c-form-control--m-clock--Coordinates: "M256 8C119 8 8 119 8 256s111 248 248
|
|
|
234
234
|
&[readonly] {
|
|
235
235
|
background-color: var(--pf-c-form-control--readonly--BackgroundColor);
|
|
236
236
|
|
|
237
|
+
// stylelint-disable selector-not-notation
|
|
238
|
+
// update to single :not() in breaking change
|
|
237
239
|
&:not(.pf-m-success):not([aria-invalid="true"]) {
|
|
238
240
|
&:hover {
|
|
239
241
|
--pf-c-form-control--BorderBottomColor: var(--pf-c-form-control--readonly--hover--BorderBottomColor);
|
|
@@ -403,7 +403,8 @@
|
|
|
403
403
|
--pf-c-menu-toggle--m-split-button--m-action--child--BorderLeftColor: var(--pf-c-menu-toggle--m-split-button--m-action--m-primary--child--BorderLeftColor);
|
|
404
404
|
--pf-c-menu-toggle--m-split-button--m-action--child--after--BorderBottomWidth: 0;
|
|
405
405
|
|
|
406
|
-
// stylelint-disable max-nesting-depth, selector-max-class
|
|
406
|
+
// stylelint-disable max-nesting-depth, selector-max-class, selector-not-notation
|
|
407
|
+
// update to single :not() in breaking change
|
|
407
408
|
> :where(:not(.pf-m-disabled):not([disabled])) {
|
|
408
409
|
background-color: var(--pf-c-menu-toggle--m-split-button--m-action--m-primary--child--BackgroundColor);
|
|
409
410
|
|
|
@@ -105,6 +105,8 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
|
|
|
105
105
|
align-items: center;
|
|
106
106
|
justify-content: flex-end;
|
|
107
107
|
|
|
108
|
+
// stylelint-disable selector-not-notation
|
|
109
|
+
// update to single :not() in breaking change
|
|
108
110
|
> *:not(:last-child):not(.pf-c-pagination__total-items) {
|
|
109
111
|
margin-right: var(--pf-c-pagination--child--MarginRight);
|
|
110
112
|
}
|
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": "4.216.
|
|
4
|
+
"version": "4.216.1",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"workflows": "node .github/generate-workflows"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@commitlint/cli": "^
|
|
33
|
-
"@commitlint/config-conventional": "^
|
|
32
|
+
"@commitlint/cli": "^17.1.2",
|
|
33
|
+
"@commitlint/config-conventional": "^17.1.0",
|
|
34
34
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
35
35
|
"@octokit/rest": "^16.40.1",
|
|
36
36
|
"@patternfly/patternfly-a11y": "4.3.1",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"postcss": "^8.3.11",
|
|
65
65
|
"postcss-css-variables": "^0.13.0",
|
|
66
66
|
"postcss-preset-env": "^6.7.0",
|
|
67
|
-
"prettier": "^
|
|
67
|
+
"prettier": "^2.7.1",
|
|
68
68
|
"react": "^17.0.0",
|
|
69
69
|
"react-dom": "^17.0.0",
|
|
70
70
|
"remark-parse": "^8.0.3",
|
|
@@ -72,14 +72,14 @@
|
|
|
72
72
|
"rimraf": "*",
|
|
73
73
|
"sass": "^1.34.0",
|
|
74
74
|
"sass-graph": "^3.0.4",
|
|
75
|
-
"stylelint": "^14.1
|
|
76
|
-
"stylelint-config-recommended-scss": "^
|
|
77
|
-
"stylelint-config-standard": "^
|
|
75
|
+
"stylelint": "^14.12.1",
|
|
76
|
+
"stylelint-config-recommended-scss": "^7.0.0",
|
|
77
|
+
"stylelint-config-standard": "^28.0.0",
|
|
78
78
|
"stylelint-order": "^5.0.0",
|
|
79
|
-
"stylelint-scss": "^4.
|
|
80
|
-
"stylelint-value-no-unknown-custom-properties": "^
|
|
79
|
+
"stylelint-scss": "^4.3.0",
|
|
80
|
+
"stylelint-value-no-unknown-custom-properties": "^4.0.0",
|
|
81
81
|
"surge": "^0.21.3",
|
|
82
|
-
"@patternfly/documentation-framework": "1.2.
|
|
82
|
+
"@patternfly/documentation-framework": "1.2.31",
|
|
83
83
|
"unified": "^9.2.0",
|
|
84
84
|
"webpack": "^4.43.0"
|
|
85
85
|
},
|
package/patternfly-no-reset.css
CHANGED
|
@@ -25714,6 +25714,7 @@ label.pf-c-radio, .pf-c-radio__label,
|
|
|
25714
25714
|
.pf-c-slider__step-label {
|
|
25715
25715
|
position: absolute;
|
|
25716
25716
|
top: var(--pf-c-slider__step-label--Top);
|
|
25717
|
+
word-break: normal;
|
|
25717
25718
|
transform: translateX(var(--pf-c-slider__step-label--TranslateX));
|
|
25718
25719
|
}
|
|
25719
25720
|
|
package/patternfly.css
CHANGED
|
@@ -25841,6 +25841,7 @@ label.pf-c-radio, .pf-c-radio__label,
|
|
|
25841
25841
|
.pf-c-slider__step-label {
|
|
25842
25842
|
position: absolute;
|
|
25843
25843
|
top: var(--pf-c-slider__step-label--Top);
|
|
25844
|
+
word-break: normal;
|
|
25844
25845
|
transform: translateX(var(--pf-c-slider__step-label--TranslateX));
|
|
25845
25846
|
}
|
|
25846
25847
|
|