@patternfly/patternfly 4.222.2 → 4.222.4

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,6 +3,25 @@ id: Release notes
3
3
  section: developer-resources
4
4
  releaseNoteTOC: true
5
5
  ---
6
+ ## 2022.16 release notes (2022-12-09)
7
+ Packages released:
8
+ - [@patternfly/patternfly@v4.222.4](https://www.npmjs.com/package/@patternfly/patternfly/v/4.222.4)
9
+
10
+ ### Components
11
+ - **Dropdown:** Added loading state for split button checkbox ([#5269](https://github.com/patternfly/patternfly/pull/5269))
12
+ - **Form control:** Fixed select dark theme icon ([#5242](https://github.com/patternfly/patternfly/pull/5242))
13
+ - **Menu:** Prevented hidden drilldown items from being focusable ([#5271](https://github.com/patternfly/patternfly/pull/5271))
14
+ - **Slider:** Updated value input styling ([#5249](https://github.com/patternfly/patternfly/pull/5249))
15
+ - **Tabs:**
16
+ - Updated nested demo heading levels ([#5246](https://github.com/patternfly/patternfly/pull/5246))
17
+ - Removed pagination from demo, exposed tags ([#5259](https://github.com/patternfly/patternfly/pull/5259))
18
+
19
+ ### Other
20
+ - **Workspace:**
21
+ - Cleaned up demos, added path as way to include partials ([#5135](https://github.com/patternfly/patternfly/pull/5135))
22
+ - Removed test code from #5135 ([#5255](https://github.com/patternfly/patternfly/pull/5255))
23
+
24
+
6
25
  ## 2022.15 release notes (2022-11-18)
7
26
  Packages released:
8
27
  - [@patternfly/patternfly@v4.221.2](https://www.npmjs.com/package/@patternfly/patternfly/v/4.221.2)
@@ -312,11 +312,15 @@
312
312
  }
313
313
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list {
314
314
  overflow: visible;
315
+ visibility: hidden;
315
316
  }
316
317
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-divider,
317
318
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item:not(.pf-m-current-path) {
318
319
  display: none;
319
320
  }
321
+ .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item.pf-m-current-path {
322
+ visibility: hidden;
323
+ }
320
324
  .pf-c-menu.pf-m-plain {
321
325
  --pf-c-menu--BoxShadow: var(--pf-c-menu--m-plain--BoxShadow);
322
326
  }
@@ -317,11 +317,16 @@
317
317
  // stylelint-disable selector-max-class
318
318
  &.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list {
319
319
  overflow: visible;
320
+ visibility: hidden;
320
321
 
321
322
  > .pf-c-divider,
322
323
  > .pf-c-menu__list-item:not(.pf-m-current-path) {
323
324
  display: none; // hide all siblings of current path to maintain proper menu height
324
325
  }
326
+
327
+ > .pf-c-menu__list-item.pf-m-current-path {
328
+ visibility: hidden;
329
+ }
325
330
  }
326
331
  // stylelint-enable
327
332
 
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.222.2",
4
+ "version": "4.222.4",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -18685,11 +18685,15 @@ ul.pf-c-list {
18685
18685
  }
18686
18686
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list {
18687
18687
  overflow: visible;
18688
+ visibility: hidden;
18688
18689
  }
18689
18690
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-divider,
18690
18691
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item:not(.pf-m-current-path) {
18691
18692
  display: none;
18692
18693
  }
18694
+ .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item.pf-m-current-path {
18695
+ visibility: hidden;
18696
+ }
18693
18697
  .pf-c-menu.pf-m-plain {
18694
18698
  --pf-c-menu--BoxShadow: var(--pf-c-menu--m-plain--BoxShadow);
18695
18699
  }
package/patternfly.css CHANGED
@@ -18812,11 +18812,15 @@ ul.pf-c-list {
18812
18812
  }
18813
18813
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list {
18814
18814
  overflow: visible;
18815
+ visibility: hidden;
18815
18816
  }
18816
18817
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-divider,
18817
18818
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item:not(.pf-m-current-path) {
18818
18819
  display: none;
18819
18820
  }
18821
+ .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item.pf-m-current-path {
18822
+ visibility: hidden;
18823
+ }
18820
18824
  .pf-c-menu.pf-m-plain {
18821
18825
  --pf-c-menu--BoxShadow: var(--pf-c-menu--m-plain--BoxShadow);
18822
18826
  }