@patternfly/patternfly 4.183.0 → 4.183.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/RELEASE-NOTES.md CHANGED
@@ -3,10 +3,9 @@ id: Release notes
3
3
  section: developer-resources
4
4
  releaseNoteTOC: true
5
5
  ---
6
-
7
6
  ## 2022.03 release notes (2022-03-08)
8
7
  Packages released:
9
- - [@patternfly/patternfly@v4.182.2](https://www.npmjs.com/package/@patternfly/patternfly/v/4.182.2)
8
+ - [@patternfly/patternfly@v4.183.1](https://www.npmjs.com/package/@patternfly/patternfly/v/4.183.1)
10
9
 
11
10
  ### Components
12
11
  - **Description list:** Added description list demo ([#4715](https://github.com/patternfly/patternfly/pull/4715))
@@ -21,6 +20,7 @@ Packages released:
21
20
  - **Menu toggle:**
22
21
  - Fixed plain menu toggle state ([#4710](https://github.com/patternfly/patternfly/pull/4710))
23
22
  - Added split button ([#4713](https://github.com/patternfly/patternfly/pull/4713))
23
+ - Fixed self referencing var ([#4727](https://github.com/patternfly/patternfly/pull/4727))
24
24
  - **Page:** Updated wording in centered examples ([#4698](https://github.com/patternfly/patternfly/pull/4698))
25
25
  - **Select:** Fixed active focus states bottom border ([#4702](https://github.com/patternfly/patternfly/pull/4702))
26
26
  - **Spinner:** Renamed examples so SVG is default, non-SVG is legacy ([#4697](https://github.com/patternfly/patternfly/pull/4697))
@@ -31,7 +31,9 @@ Packages released:
31
31
  - **Wizard:** Updated docs/hbs for description to allow div ([#4708](https://github.com/patternfly/patternfly/pull/4708))
32
32
 
33
33
  ### Other
34
- - **Demos:** Used search inputs in demos ([#4691](https://github.com/patternfly/patternfly/pull/4691))
34
+ - **Demos:**
35
+ - Used search inputs in demos ([#4691](https://github.com/patternfly/patternfly/pull/4691))
36
+ - Added dashboard demo ([#4721](https://github.com/patternfly/patternfly/pull/4721))
35
37
 
36
38
 
37
39
  ## 2022.02 release notes (2022-02-17)
@@ -253,7 +253,7 @@
253
253
  .pf-c-menu-toggle.pf-m-split-button > .pf-c-check {
254
254
  --pf-c-menu-toggle--PaddingRight: 0;
255
255
  --pf-c-check__input--MarginTop: 0;
256
- --pf-c-check__label--Color: var(--pf-c-check__label--Color, inherit);
256
+ --pf-c-check__label--Color: currentColor;
257
257
  align-items: center;
258
258
  align-self: stretch;
259
259
  }
@@ -337,7 +337,7 @@
337
337
  > .pf-c-check {
338
338
  --pf-c-menu-toggle--PaddingRight: 0;
339
339
  --pf-c-check__input--MarginTop: 0;
340
- --pf-c-check__label--Color: var(--pf-c-check__label--Color, inherit);
340
+ --pf-c-check__label--Color: currentColor;
341
341
 
342
342
  align-items: center;
343
343
  align-self: stretch;
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.183.0",
4
+ "version": "4.183.1",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -17275,7 +17275,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
17275
17275
  .pf-c-menu-toggle.pf-m-split-button > .pf-c-check {
17276
17276
  --pf-c-menu-toggle--PaddingRight: 0;
17277
17277
  --pf-c-check__input--MarginTop: 0;
17278
- --pf-c-check__label--Color: var(--pf-c-check__label--Color, inherit);
17278
+ --pf-c-check__label--Color: currentColor;
17279
17279
  align-items: center;
17280
17280
  align-self: stretch;
17281
17281
  }
package/patternfly.css CHANGED
@@ -17397,7 +17397,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
17397
17397
  .pf-c-menu-toggle.pf-m-split-button > .pf-c-check {
17398
17398
  --pf-c-menu-toggle--PaddingRight: 0;
17399
17399
  --pf-c-check__input--MarginTop: 0;
17400
- --pf-c-check__label--Color: var(--pf-c-check__label--Color, inherit);
17400
+ --pf-c-check__label--Color: currentColor;
17401
17401
  align-items: center;
17402
17402
  align-self: stretch;
17403
17403
  }