@patternfly/patternfly 6.3.0-prerelease.4 → 6.3.0-prerelease.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.
Files changed (120) hide show
  1. package/README.md +1 -1
  2. package/assets/images/icon-help.hbs +3 -0
  3. package/assets/images/icon-outlined-star.hbs +3 -0
  4. package/assets/images/icon-star.hbs +3 -0
  5. package/base/patternfly-common.css +46 -11
  6. package/base/patternfly-common.scss +58 -13
  7. package/components/Accordion/accordion.css +72 -3
  8. package/components/Accordion/accordion.scss +78 -6
  9. package/components/Alert/alert-group.css +52 -31
  10. package/components/Alert/alert-group.scss +77 -46
  11. package/components/Button/button.css +154 -6
  12. package/components/Button/button.scss +160 -8
  13. package/components/CodeEditor/code-editor.css +3 -0
  14. package/components/CodeEditor/code-editor.scss +3 -1
  15. package/components/DataList/data-list.css +2 -2
  16. package/components/DataList/data-list.scss +2 -2
  17. package/components/DualListSelector/dual-list-selector.css +36 -0
  18. package/components/DualListSelector/dual-list-selector.scss +43 -0
  19. package/components/ExpandableSection/expandable-section.css +63 -1
  20. package/components/ExpandableSection/expandable-section.scss +76 -2
  21. package/components/FileUpload/file-upload.css +3 -3
  22. package/components/FileUpload/file-upload.scss +3 -3
  23. package/components/Form/form.css +40 -1
  24. package/components/Form/form.scss +47 -1
  25. package/components/FormControl/form-control.css +16 -0
  26. package/components/FormControl/form-control.scss +9 -0
  27. package/components/InputGroup/input-group.css +80 -0
  28. package/components/InputGroup/input-group.scss +95 -0
  29. package/components/Menu/menu.css +24 -4
  30. package/components/Menu/menu.scss +20 -5
  31. package/components/MenuToggle/menu-toggle.css +38 -4
  32. package/components/MenuToggle/menu-toggle.scss +48 -3
  33. package/components/Nav/nav.css +22 -8
  34. package/components/Nav/nav.scss +22 -9
  35. package/components/Page/page.css +66 -6
  36. package/components/Page/page.scss +48 -5
  37. package/components/Progress/progress.css +16 -0
  38. package/components/Progress/progress.scss +11 -1
  39. package/components/ProgressStepper/progress-stepper.scss +1 -0
  40. package/components/Skeleton/skeleton.css +22 -2
  41. package/components/Skeleton/skeleton.scss +25 -3
  42. package/components/Spinner/spinner.css +5 -0
  43. package/components/Spinner/spinner.scss +6 -0
  44. package/components/Table/table-grid.css +51 -5
  45. package/components/Table/table-grid.scss +22 -1
  46. package/components/Table/table.css +83 -1
  47. package/components/Table/table.scss +123 -1
  48. package/components/Tabs/tabs.css +25 -15
  49. package/components/Tabs/tabs.scss +26 -13
  50. package/components/TextInputGroup/text-input-group.css +16 -0
  51. package/components/TextInputGroup/text-input-group.scss +8 -0
  52. package/components/Timestamp/timestamp.css +4 -0
  53. package/components/Timestamp/timestamp.scss +7 -0
  54. package/components/TreeView/tree-view.css +39 -0
  55. package/components/TreeView/tree-view.scss +42 -2
  56. package/components/Truncate/truncate.css +1 -0
  57. package/components/Truncate/truncate.scss +3 -0
  58. package/components/_index.css +933 -92
  59. package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
  60. package/docs/components/Button/examples/Button.md +161 -6
  61. package/docs/components/Card/examples/Card.md +8 -8
  62. package/docs/components/CodeBlock/examples/CodeBlock.md +5 -5
  63. package/docs/components/CodeEditor/examples/CodeEditor.md +26 -2
  64. package/docs/components/DataList/examples/DataList.md +23 -23
  65. package/docs/components/Divider/examples/Divider.md +1 -1
  66. package/docs/components/Drawer/examples/Drawer.md +4 -0
  67. package/docs/components/DualListSelector/examples/DualListSelector.md +534 -16
  68. package/docs/components/ExpandableSection/examples/ExpandableSection.md +17 -12
  69. package/docs/components/Form/examples/Form.md +1179 -114
  70. package/docs/components/Hint/examples/Hint.md +3 -3
  71. package/docs/components/InlineEdit/examples/InlineEdit.md +2 -2
  72. package/docs/components/InputGroup/examples/InputGroup.md +5 -1
  73. package/docs/components/JumpLinks/examples/JumpLinks.md +1 -1
  74. package/docs/components/Masthead/examples/masthead.md +90 -12
  75. package/docs/components/Menu/examples/Menu.md +122 -6
  76. package/docs/components/MenuToggle/examples/MenuToggle.md +93 -55
  77. package/docs/components/ModalBox/examples/ModalBox.md +13 -1
  78. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +2 -10
  79. package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
  80. package/docs/components/Page/examples/Page.md +148 -14
  81. package/docs/components/Pagination/examples/Pagination.md +12 -12
  82. package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
  83. package/docs/components/Slider/examples/Slider.md +2 -2
  84. package/docs/components/Spinner/examples/Spinner.md +10 -0
  85. package/docs/components/Table/examples/Table.md +9457 -6178
  86. package/docs/components/Tabs/examples/Tabs.md +1214 -6729
  87. package/docs/components/TextInputGroup/examples/TextInputGroup.md +45 -5
  88. package/docs/components/Toolbar/examples/Toolbar.md +7 -7
  89. package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
  90. package/docs/demos/Alert/examples/Alert.md +66 -9
  91. package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
  92. package/docs/demos/Banner/examples/Banner.md +47 -6
  93. package/docs/demos/Card/examples/Card.md +5 -62
  94. package/docs/demos/CardView/examples/CardView.md +24 -5
  95. package/docs/demos/Dashboard/examples/Dashboard.md +24 -5
  96. package/docs/demos/DataList/examples/DataList.md +100 -24
  97. package/docs/demos/DescriptionList/examples/DescriptionList.md +66 -47
  98. package/docs/demos/Drawer/examples/Drawer.md +110 -53
  99. package/docs/demos/Form/examples/BasicForms.md +142 -22
  100. package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
  101. package/docs/demos/Masthead/examples/Masthead.md +171 -19
  102. package/docs/demos/Modal/examples/Modal.md +171 -21
  103. package/docs/demos/Nav/examples/Nav.md +113 -18
  104. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +110 -15
  105. package/docs/demos/Page/examples/Page.md +661 -40
  106. package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
  107. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +160 -103
  108. package/docs/demos/Skeleton/examples/Skeleton.md +22 -3
  109. package/docs/demos/Table/examples/Table.md +516 -178
  110. package/docs/demos/Tabs/examples/Tabs.md +137 -593
  111. package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
  112. package/docs/demos/Wizard/examples/Wizard.md +198 -27
  113. package/package.json +6 -6
  114. package/patternfly-base-no-globals.css +45 -11
  115. package/patternfly-base.css +45 -11
  116. package/patternfly-no-globals.css +978 -103
  117. package/patternfly.css +978 -103
  118. package/patternfly.min.css +1 -1
  119. package/patternfly.min.css.map +1 -1
  120. package/sass-utilities/mixins.scss +54 -0
@@ -161,7 +161,7 @@ cssPrefix: pf-v6-c-breadcrumb
161
161
  </span>
162
162
  <span class="pf-v6-c-breadcrumb__dropdown">
163
163
  <button
164
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-small pf-m-text"
164
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-small pf-m-plain"
165
165
  type="button"
166
166
  aria-expanded="false"
167
167
  aria-label="Menu toggle"
@@ -1906,7 +1906,19 @@ For when a plain/icon button is placed inline with text
1906
1906
  aria-label="More info"
1907
1907
  >
1908
1908
  <span class="pf-v6-c-button__icon">
1909
- <i class="fas fa-question-circle" aria-hidden="true"></i>
1909
+ <svg
1910
+ class="pf-v6-svg"
1911
+ viewBox="0 0 1024 1024"
1912
+ fill="currentColor"
1913
+ aria-hidden="true"
1914
+ role="img"
1915
+ width="1em"
1916
+ height="1em"
1917
+ >
1918
+ <path
1919
+ d="M521.3,576 C627.5,576 713.7,502 713.7,413.7 C713.7,325.4 627.6,253.6 521.3,253.6 C366,253.6 334.5,337.7 329.2,407.2 C329.2,414.3 335.2,416 343.5,416 L445,416 C450.5,416 458,415.5 460.8,406.5 C460.8,362.6 582.9,357.1 582.9,413.6 C582.9,441.9 556.2,470.9 521.3,473 C486.4,475.1 447.3,479.8 447.3,521.7 L447.3,553.8 C447.3,570.8 456.1,576 472,576 C487.9,576 521.3,576 521.3,576 M575.3,751.3 L575.3,655.3 C575.313862,651.055109 573.620137,646.982962 570.6,644 C567.638831,640.947672 563.552355,639.247987 559.3,639.29884 L463.3,639.29884 C459.055109,639.286138 454.982962,640.979863 452,644 C448.947672,646.961169 447.247987,651.047645 447.29884,655.3 L447.29884,751.3 C447.286138,755.544891 448.979863,759.617038 452,762.6 C454.961169,765.652328 459.047645,767.352013 463.3,767.30116 L559.3,767.30116 C563.544891,767.313862 567.617038,765.620137 570.6,762.6 C573.659349,759.643612 575.360354,755.553963 575.3,751.3 M512,896 C300.2,896 128,723.9 128,512 C128,300.3 300.2,128 512,128 C723.8,128 896,300.2 896,512 C896,723.8 723.7,896 512,896 M512.1,0 C229.7,0 0,229.8 0,512 C0,794.2 229.8,1024 512.1,1024 C794.4,1024 1024,794.3 1024,512 C1024,229.7 794.4,0 512.1,0"
1920
+ />
1921
+ </svg>
1910
1922
  </span>
1911
1923
  </button>
1912
1924
  .
@@ -2010,7 +2022,36 @@ A favorite button should use a plain button with the star icon. Applying `.pf-m-
2010
2022
  aria-label="not starred"
2011
2023
  >
2012
2024
  <span class="pf-v6-c-button__icon">
2013
- <i class="fas fa-star" aria-hidden="true"></i>
2025
+ <span class="pf-v6-c-button__icon-favorite">
2026
+ <svg
2027
+ class="pf-v6-svg"
2028
+ viewBox="0 0 576 512"
2029
+ fill="currentColor"
2030
+ aria-hidden="true"
2031
+ role="img"
2032
+ width="1em"
2033
+ height="1em"
2034
+ >
2035
+ <path
2036
+ d="M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"
2037
+ />
2038
+ </svg>
2039
+ </span>
2040
+ <span class="pf-v6-c-button__icon-favorited">
2041
+ <svg
2042
+ class="pf-v6-svg"
2043
+ viewBox="0 0 576 512"
2044
+ fill="currentColor"
2045
+ aria-hidden="true"
2046
+ role="img"
2047
+ width="1em"
2048
+ height="1em"
2049
+ >
2050
+ <path
2051
+ d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"
2052
+ />
2053
+ </svg>
2054
+ </span>
2014
2055
  </span>
2015
2056
  </button>
2016
2057
  <button
@@ -2019,7 +2060,117 @@ A favorite button should use a plain button with the star icon. Applying `.pf-m-
2019
2060
  aria-label="starred"
2020
2061
  >
2021
2062
  <span class="pf-v6-c-button__icon">
2022
- <i class="fas fa-star" aria-hidden="true"></i>
2063
+ <span class="pf-v6-c-button__icon-favorite">
2064
+ <svg
2065
+ class="pf-v6-svg"
2066
+ viewBox="0 0 576 512"
2067
+ fill="currentColor"
2068
+ aria-hidden="true"
2069
+ role="img"
2070
+ width="1em"
2071
+ height="1em"
2072
+ >
2073
+ <path
2074
+ d="M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"
2075
+ />
2076
+ </svg>
2077
+ </span>
2078
+ <span class="pf-v6-c-button__icon-favorited">
2079
+ <svg
2080
+ class="pf-v6-svg"
2081
+ viewBox="0 0 576 512"
2082
+ fill="currentColor"
2083
+ aria-hidden="true"
2084
+ role="img"
2085
+ width="1em"
2086
+ height="1em"
2087
+ >
2088
+ <path
2089
+ d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"
2090
+ />
2091
+ </svg>
2092
+ </span>
2093
+ </span>
2094
+ </button>
2095
+
2096
+ ```
2097
+
2098
+ ### Settings
2099
+
2100
+ ```html
2101
+ <button
2102
+ class="pf-v6-c-button pf-m-settings pf-m-plain"
2103
+ type="button"
2104
+ aria-label="Settings"
2105
+ >
2106
+ <span class="pf-v6-c-button__icon">
2107
+ <i class="fas fa-cog" aria-hidden="true"></i>
2108
+ </span>
2109
+ </button>
2110
+
2111
+ ```
2112
+
2113
+ ### Hamburger
2114
+
2115
+ ```html
2116
+ <button
2117
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
2118
+ type="button"
2119
+ aria-expanded="false"
2120
+ aria-label="Hamburger"
2121
+ >
2122
+ <span class="pf-v6-c-button__icon">
2123
+ <svg
2124
+ viewBox="0 0 10 10"
2125
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
2126
+ width="1em"
2127
+ height="1em"
2128
+ >
2129
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
2130
+ <path class="pf-v6-c-button--hamburger-icon--middle" d="M1,5 L9,5" />
2131
+ <path class="pf-v6-c-button--hamburger-icon--arrow" d="M1,5 L1,5 L1,5" />
2132
+ <path class="pf-v6-c-button--hamburger-icon--bottom" d="M9,9 L1,9" />
2133
+ </svg>
2134
+ </span>
2135
+ </button>
2136
+ <button
2137
+ class="pf-v6-c-button pf-m-expand pf-m-hamburger pf-m-plain"
2138
+ type="button"
2139
+ aria-expanded="false"
2140
+ aria-label="Hamburger"
2141
+ >
2142
+ <span class="pf-v6-c-button__icon">
2143
+ <svg
2144
+ viewBox="0 0 10 10"
2145
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
2146
+ width="1em"
2147
+ height="1em"
2148
+ >
2149
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
2150
+ <path class="pf-v6-c-button--hamburger-icon--middle" d="M1,5 L9,5" />
2151
+ <path class="pf-v6-c-button--hamburger-icon--arrow" d="M1,5 L1,5 L1,5" />
2152
+ <path class="pf-v6-c-button--hamburger-icon--bottom" d="M9,9 L1,9" />
2153
+ </svg>
2154
+ </span>
2155
+ </button>
2156
+ <button
2157
+ class="pf-v6-c-button pf-m-collapse pf-m-hamburger pf-m-expanded pf-m-plain"
2158
+ type="button"
2159
+ aria-expanded="true"
2160
+ aria-label="Hamburger"
2161
+ >
2162
+ <span class="pf-v6-c-button__icon">
2163
+ <svg
2164
+ viewBox="0 0 10 10"
2165
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
2166
+ width="1em"
2167
+ height="1em"
2168
+ >
2169
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
2170
+ <path class="pf-v6-c-button--hamburger-icon--middle" d="M1,5 L9,5" />
2171
+ <path class="pf-v6-c-button--hamburger-icon--arrow" d="M1,5 L1,5 L1,5" />
2172
+ <path class="pf-v6-c-button--hamburger-icon--bottom" d="M9,9 L1,9" />
2173
+ </svg>
2023
2174
  </span>
2024
2175
  </button>
2025
2176
 
@@ -2056,7 +2207,7 @@ Semantic buttons and links are important for usability as well as accessibility.
2056
2207
  | `.pf-v6-c-button` | `<button>, <span>` | Initiates a button. Always use it with a modifier class. **Required** |
2057
2208
  | `.pf-v6-c-button__icon` | `<span>` | Initiates a button icon. |
2058
2209
  | `.pf-v6-c-button__progress` | `<span>` | Initiates a button progress container. |
2059
- | `.pf-v6-c-button__count` | `<span>` | Initiates a button count container. **Note:** Count should only be used on link buttons.|
2210
+ | `.pf-v6-c-button__count` | `<span>` | Initiates a button count container. **Note:** Count should only be used on link buttons. |
2060
2211
  | `.pf-m-primary` | `.pf-v6-c-button` | Modifies for primary styles. |
2061
2212
  | `.pf-m-secondary` | `.pf-v6-c-button` | Modifies for secondary styles. |
2062
2213
  | `.pf-m-tertiary` | `.pf-v6-c-button` | Modifies for tertiary styles. |
@@ -2079,5 +2230,9 @@ Semantic buttons and links are important for usability as well as accessibility.
2079
2230
  | `.pf-m-in-progress` | `.pf-v6-c-button` | Indicates that the button is in the in progress state. |
2080
2231
  | `.pf-m-stateful` | `.pf-v6-c-button` | Indicates that the button is used for one of read, unread, and attention states. **Note:** Always use with a modifier of `.pf-m-read`, `.pf-m-unread`, or `.pf-m-attention`. |
2081
2232
  | `.pf-m-notify` | `.pf-v6-c-button` | Indicates that the button should show the user notification of an event. **Note:** This is intended for use with a bell icon in the notification badge. |
2082
- | `.pf-m-favorite` | `.pf-v6-c-button .pf-m-plain` | Modifies a plain button to be a favorite button. **Note:** This is intended for use with a star icon. |
2083
- | `.pf-m-favorited` | `.pf-v6-c-button .pf-m-plain .pf-m-favorite` | Modifies a favorite button to indicate that item is favorited. |
2233
+ | `.pf-m-favorite` | `.pf-v6-c-button.pf-m-plain` | Modifies a plain button to be a favorite button. **Note:** This is intended for use with a star icon. |
2234
+ | `.pf-m-favorited` | `.pf-v6-c-button.pf-m-plain.pf-m-favorite` | Modifies a favorite button to indicate that item is favorited. |
2235
+ | `.pf-m-settings` | `.pf-v6-c-button.pf-m-plain` | Modifies a plain button to be a settings button. |
2236
+ | `.pf-m-hamburger` | `.pf-v6-c-button.pf-m-plain` | Modifies a plain button to be a hamburger button. |
2237
+ | `.pf-m-expand` | `.pf-v6-c-button.pf-m-hamburger` | Modifies a hamburger button to indicate that it will expand a menu. |
2238
+ | `.pf-m-collapse` | `.pf-v6-c-button.pf-m-hamburger` | Modifies a hamburger button to indicate that it will collapse a menu. |
@@ -101,7 +101,7 @@ cssPrefix: pf-v6-c-card
101
101
  class="pf-v6-c-menu-toggle pf-m-plain"
102
102
  type="button"
103
103
  aria-expanded="false"
104
- aria-label="Menu toggle"
104
+ aria-label="Card menu toggle"
105
105
  id="card-action-example-1-menu-toggle-kebab"
106
106
  >
107
107
  <span class="pf-v6-c-menu-toggle__icon">
@@ -142,7 +142,7 @@ cssPrefix: pf-v6-c-card
142
142
  class="pf-v6-c-menu-toggle pf-m-plain"
143
143
  type="button"
144
144
  aria-expanded="false"
145
- aria-label="Menu toggle"
145
+ aria-label="Card menu toggle"
146
146
  id="card-action-example-2-menu-toggle-kebab"
147
147
  >
148
148
  <span class="pf-v6-c-menu-toggle__icon">
@@ -185,7 +185,7 @@ cssPrefix: pf-v6-c-card
185
185
  class="pf-v6-c-menu-toggle pf-m-plain"
186
186
  type="button"
187
187
  aria-expanded="false"
188
- aria-label="Menu toggle"
188
+ aria-label="Card menu toggle"
189
189
  id="card-action-example-3-menu-toggle-kebab"
190
190
  >
191
191
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1434,7 +1434,7 @@ cssPrefix: pf-v6-c-card
1434
1434
  class="pf-v6-c-menu-toggle pf-m-plain"
1435
1435
  type="button"
1436
1436
  aria-expanded="false"
1437
- aria-label="Menu toggle"
1437
+ aria-label="Card menu toggle"
1438
1438
  id="card-expandable-example-menu-toggle-kebab"
1439
1439
  >
1440
1440
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1497,7 +1497,7 @@ cssPrefix: pf-v6-c-card
1497
1497
  class="pf-v6-c-menu-toggle pf-m-plain"
1498
1498
  type="button"
1499
1499
  aria-expanded="false"
1500
- aria-label="Menu toggle"
1500
+ aria-label="Card menu toggle"
1501
1501
  id="card-expandable-image-example-menu-toggle-kebab"
1502
1502
  >
1503
1503
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1545,7 +1545,7 @@ cssPrefix: pf-v6-c-card
1545
1545
  class="pf-v6-c-menu-toggle pf-m-plain"
1546
1546
  type="button"
1547
1547
  aria-expanded="false"
1548
- aria-label="Menu toggle"
1548
+ aria-label="Card menu toggle"
1549
1549
  id="card-expanded-example-menu-toggle-kebab"
1550
1550
  >
1551
1551
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1588,7 +1588,7 @@ cssPrefix: pf-v6-c-card
1588
1588
  class="pf-v6-c-menu-toggle pf-m-plain"
1589
1589
  type="button"
1590
1590
  aria-expanded="false"
1591
- aria-label="Menu toggle"
1591
+ aria-label="Card menu toggle"
1592
1592
  id="card-full-height-example-menu-toggle-kebab"
1593
1593
  >
1594
1594
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1631,7 +1631,7 @@ cssPrefix: pf-v6-c-card
1631
1631
  class="pf-v6-c-menu-toggle pf-m-plain"
1632
1632
  type="button"
1633
1633
  aria-expanded="false"
1634
- aria-label="Menu toggle"
1634
+ aria-label="Card menu toggle"
1635
1635
  id="card-toggle-on-right-example-menu-toggle-kebab"
1636
1636
  >
1637
1637
  <span class="pf-v6-c-menu-toggle__icon">
@@ -83,7 +83,7 @@ url: https://raw.githubusercontent.com/Azure-Samples/helm-charts/master/docs</co
83
83
  kind: HelmChartRepository
84
84
  metadata:
85
85
  name: azure-sample-repo<div
86
- class="pf-v6-c-expandable-section"
86
+ class="pf-v6-c-expandable-section pf-m-detached"
87
87
  ><div
88
88
  class="pf-v6-c-expandable-section__content"
89
89
  hidden
@@ -95,7 +95,7 @@ name: azure-sample-repo<div
95
95
  </div>
96
96
  </code>
97
97
  </pre>
98
- <div class="pf-v6-c-expandable-section">
98
+ <div class="pf-v6-c-expandable-section pf-m-detached">
99
99
  <div class="pf-v6-c-expandable-section__toggle">
100
100
  <button
101
101
  class="pf-v6-c-button pf-m-link"
@@ -153,7 +153,7 @@ name: azure-sample-repo<div
153
153
  kind: HelmChartRepository
154
154
  metadata:
155
155
  name: azure-sample-repo<div
156
- class="pf-v6-c-expandable-section pf-m-expanded"
156
+ class="pf-v6-c-expandable-section pf-m-expanded pf-m-detached"
157
157
  ><div
158
158
  class="pf-v6-c-expandable-section__content"
159
159
  id="code-block-expandable-expanded-content"
@@ -164,12 +164,12 @@ name: azure-sample-repo<div
164
164
  </div>
165
165
  </code>
166
166
  </pre>
167
- <div class="pf-v6-c-expandable-section pf-m-expanded">
167
+ <div class="pf-v6-c-expandable-section pf-m-expanded pf-m-detached">
168
168
  <div class="pf-v6-c-expandable-section__toggle">
169
169
  <button
170
170
  class="pf-v6-c-button pf-m-link"
171
171
  type="button"
172
- aria-expanded="true"
172
+ aria-expanded
173
173
  aria-controls="code-block-expandable-expanded-content"
174
174
  >
175
175
  <span class="pf-v6-c-button__icon pf-m-start">
@@ -255,7 +255,19 @@ cssPrefix: pf-v6-c-code-editor
255
255
  <div class="pf-v6-c-code-editor__keyboard-shortcuts">
256
256
  <button class="pf-v6-c-button pf-m-link" type="button">
257
257
  <span class="pf-v6-c-button__icon pf-m-start">
258
- <i class="fas fa-question-circle" aria-hidden="true"></i>
258
+ <svg
259
+ class="pf-v6-svg"
260
+ viewBox="0 0 1024 1024"
261
+ fill="currentColor"
262
+ aria-hidden="true"
263
+ role="img"
264
+ width="1em"
265
+ height="1em"
266
+ >
267
+ <path
268
+ d="M521.3,576 C627.5,576 713.7,502 713.7,413.7 C713.7,325.4 627.6,253.6 521.3,253.6 C366,253.6 334.5,337.7 329.2,407.2 C329.2,414.3 335.2,416 343.5,416 L445,416 C450.5,416 458,415.5 460.8,406.5 C460.8,362.6 582.9,357.1 582.9,413.6 C582.9,441.9 556.2,470.9 521.3,473 C486.4,475.1 447.3,479.8 447.3,521.7 L447.3,553.8 C447.3,570.8 456.1,576 472,576 C487.9,576 521.3,576 521.3,576 M575.3,751.3 L575.3,655.3 C575.313862,651.055109 573.620137,646.982962 570.6,644 C567.638831,640.947672 563.552355,639.247987 559.3,639.29884 L463.3,639.29884 C459.055109,639.286138 454.982962,640.979863 452,644 C448.947672,646.961169 447.247987,651.047645 447.29884,655.3 L447.29884,751.3 C447.286138,755.544891 448.979863,759.617038 452,762.6 C454.961169,765.652328 459.047645,767.352013 463.3,767.30116 L559.3,767.30116 C563.544891,767.313862 567.617038,765.620137 570.6,762.6 C573.659349,759.643612 575.360354,755.553963 575.3,751.3 M512,896 C300.2,896 128,723.9 128,512 C128,300.3 300.2,128 512,128 C723.8,128 896,300.2 896,512 C896,723.8 723.7,896 512,896 M512.1,0 C229.7,0 0,229.8 0,512 C0,794.2 229.8,1024 512.1,1024 C794.4,1024 1024,794.3 1024,512 C1024,229.7 794.4,0 512.1,0"
269
+ />
270
+ </svg>
259
271
  </span>
260
272
  <span class="pf-v6-c-button__text">View shortcuts</span>
261
273
  </button>
@@ -402,7 +414,19 @@ This is an extra container used in React to prevent event propagation if upload
402
414
  <div class="pf-v6-c-code-editor__keyboard-shortcuts">
403
415
  <button class="pf-v6-c-button pf-m-link" type="button">
404
416
  <span class="pf-v6-c-button__icon pf-m-start">
405
- <i class="fas fa-question-circle" aria-hidden="true"></i>
417
+ <svg
418
+ class="pf-v6-svg"
419
+ viewBox="0 0 1024 1024"
420
+ fill="currentColor"
421
+ aria-hidden="true"
422
+ role="img"
423
+ width="1em"
424
+ height="1em"
425
+ >
426
+ <path
427
+ d="M521.3,576 C627.5,576 713.7,502 713.7,413.7 C713.7,325.4 627.6,253.6 521.3,253.6 C366,253.6 334.5,337.7 329.2,407.2 C329.2,414.3 335.2,416 343.5,416 L445,416 C450.5,416 458,415.5 460.8,406.5 C460.8,362.6 582.9,357.1 582.9,413.6 C582.9,441.9 556.2,470.9 521.3,473 C486.4,475.1 447.3,479.8 447.3,521.7 L447.3,553.8 C447.3,570.8 456.1,576 472,576 C487.9,576 521.3,576 521.3,576 M575.3,751.3 L575.3,655.3 C575.313862,651.055109 573.620137,646.982962 570.6,644 C567.638831,640.947672 563.552355,639.247987 559.3,639.29884 L463.3,639.29884 C459.055109,639.286138 454.982962,640.979863 452,644 C448.947672,646.961169 447.247987,651.047645 447.29884,655.3 L447.29884,751.3 C447.286138,755.544891 448.979863,759.617038 452,762.6 C454.961169,765.652328 459.047645,767.352013 463.3,767.30116 L559.3,767.30116 C563.544891,767.313862 567.617038,765.620137 570.6,762.6 C573.659349,759.643612 575.360354,755.553963 575.3,751.3 M512,896 C300.2,896 128,723.9 128,512 C128,300.3 300.2,128 512,128 C723.8,128 896,300.2 896,512 C896,723.8 723.7,896 512,896 M512.1,0 C229.7,0 0,229.8 0,512 C0,794.2 229.8,1024 512.1,1024 C794.4,1024 1024,794.3 1024,512 C1024,229.7 794.4,0 512.1,0"
428
+ />
429
+ </svg>
406
430
  </span>
407
431
  <span class="pf-v6-c-button__text">View shortcuts</span>
408
432
  </button>
@@ -165,7 +165,7 @@ When a list item includes more than one block of content, it can be difficult fo
165
165
  class="pf-v6-c-menu-toggle pf-m-plain"
166
166
  type="button"
167
167
  aria-expanded="false"
168
- aria-label="Menu toggle"
168
+ aria-label="Data list item menu toggle"
169
169
  id="data-list-checkboxes-actions-addl-cells-item-1-menu-toggle"
170
170
  >
171
171
  <span class="pf-v6-c-menu-toggle__icon">
@@ -212,7 +212,7 @@ When a list item includes more than one block of content, it can be difficult fo
212
212
  class="pf-v6-c-menu-toggle pf-m-plain"
213
213
  type="button"
214
214
  aria-expanded="false"
215
- aria-label="Menu toggle"
215
+ aria-label="Data list item menu toggle"
216
216
  id="data-list-checkboxes-actions-addl-cells-item-2-menu-toggle"
217
217
  >
218
218
  <span class="pf-v6-c-menu-toggle__icon">
@@ -269,7 +269,7 @@ When a list item includes more than one block of content, it can be difficult fo
269
269
  class="pf-v6-c-menu-toggle pf-m-plain"
270
270
  type="button"
271
271
  aria-expanded="false"
272
- aria-label="Menu toggle"
272
+ aria-label="Data list item menu toggle"
273
273
  id="data-list-checkboxes-actions-addl-cells-item-3-menu-toggle"
274
274
  >
275
275
  <span class="pf-v6-c-menu-toggle__icon">
@@ -373,7 +373,7 @@ When a list item includes more than one block of content, it can be difficult fo
373
373
  class="pf-v6-c-menu-toggle pf-m-plain"
374
374
  type="button"
375
375
  aria-expanded="false"
376
- aria-label="Menu toggle"
376
+ aria-label="Data list item menu toggle"
377
377
  id="data-list-expandable-item-1-menu-toggle"
378
378
  >
379
379
  <span class="pf-v6-c-menu-toggle__icon">
@@ -434,7 +434,7 @@ When a list item includes more than one block of content, it can be difficult fo
434
434
  class="pf-v6-c-menu-toggle pf-m-plain"
435
435
  type="button"
436
436
  aria-expanded="false"
437
- aria-label="Menu toggle"
437
+ aria-label="Data list item menu toggle"
438
438
  id="data-list-expandable-item-2-menu-toggle"
439
439
  >
440
440
  <span class="pf-v6-c-menu-toggle__icon">
@@ -499,7 +499,7 @@ When a list item includes more than one block of content, it can be difficult fo
499
499
  class="pf-v6-c-menu-toggle pf-m-plain"
500
500
  type="button"
501
501
  aria-expanded="false"
502
- aria-label="Menu toggle"
502
+ aria-label="Data list item menu toggle"
503
503
  id="data-list-expandable-item-3-menu-toggle"
504
504
  >
505
505
  <span class="pf-v6-c-menu-toggle__icon">
@@ -573,10 +573,10 @@ When a list item includes more than one block of content, it can be difficult fo
573
573
  </div>
574
574
  <div class="pf-v6-c-data-list__item-action">
575
575
  <button
576
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
576
+ class="pf-v6-c-menu-toggle pf-m-small pf-m-plain"
577
577
  type="button"
578
578
  aria-expanded="false"
579
- aria-label="Menu toggle"
579
+ aria-label="Data list item menu toggle"
580
580
  id="data-list-expandable-compact-item-1-menu-toggle"
581
581
  >
582
582
  <span class="pf-v6-c-menu-toggle__icon">
@@ -637,10 +637,10 @@ When a list item includes more than one block of content, it can be difficult fo
637
637
  </div>
638
638
  <div class="pf-v6-c-data-list__item-action">
639
639
  <button
640
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
640
+ class="pf-v6-c-menu-toggle pf-m-small pf-m-plain"
641
641
  type="button"
642
642
  aria-expanded="false"
643
- aria-label="Menu toggle"
643
+ aria-label="Data list item menu toggle"
644
644
  id="data-list-expandable-compact-item-2-menu-toggle"
645
645
  >
646
646
  <span class="pf-v6-c-menu-toggle__icon">
@@ -702,10 +702,10 @@ When a list item includes more than one block of content, it can be difficult fo
702
702
  </div>
703
703
  <div class="pf-v6-c-data-list__item-action">
704
704
  <button
705
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
705
+ class="pf-v6-c-menu-toggle pf-m-small pf-m-plain"
706
706
  type="button"
707
707
  aria-expanded="false"
708
- aria-label="Menu toggle"
708
+ aria-label="Data list item menu toggle"
709
709
  id="data-list-expandable-compact-item-3-menu-toggle"
710
710
  >
711
711
  <span class="pf-v6-c-menu-toggle__icon">
@@ -782,7 +782,7 @@ When a list item includes more than one block of content, it can be difficult fo
782
782
  class="pf-v6-c-menu-toggle pf-m-plain"
783
783
  type="button"
784
784
  aria-expanded="false"
785
- aria-label="Menu toggle"
785
+ aria-label="Data list item menu toggle"
786
786
  id="data-list-expandable-nested-item-1-menu-toggle"
787
787
  >
788
788
  <span class="pf-v6-c-menu-toggle__icon">
@@ -978,7 +978,7 @@ When a list item includes more than one block of content, it can be difficult fo
978
978
  class="pf-v6-c-menu-toggle pf-m-plain"
979
979
  type="button"
980
980
  aria-expanded="false"
981
- aria-label="Menu toggle"
981
+ aria-label="Data list item menu toggle"
982
982
  id="data-list-expandable-nested-item-2-menu-toggle"
983
983
  >
984
984
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1043,7 +1043,7 @@ When a list item includes more than one block of content, it can be difficult fo
1043
1043
  class="pf-v6-c-menu-toggle pf-m-plain"
1044
1044
  type="button"
1045
1045
  aria-expanded="false"
1046
- aria-label="Menu toggle"
1046
+ aria-label="Data list item menu toggle"
1047
1047
  id="data-list-expandable-nested-item-3-menu-toggle"
1048
1048
  >
1049
1049
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1115,10 +1115,10 @@ When a list item includes more than one block of content, it can be difficult fo
1115
1115
  </div>
1116
1116
  <div class="pf-v6-c-data-list__item-action">
1117
1117
  <button
1118
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
1118
+ class="pf-v6-c-menu-toggle pf-m-small pf-m-plain"
1119
1119
  type="button"
1120
1120
  aria-expanded="false"
1121
- aria-label="Menu toggle"
1121
+ aria-label="Data list item menu toggle"
1122
1122
  id="data-list-compact-item-1-menu-toggle"
1123
1123
  >
1124
1124
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1160,10 +1160,10 @@ When a list item includes more than one block of content, it can be difficult fo
1160
1160
  </div>
1161
1161
  <div class="pf-v6-c-data-list__item-action pf-m-hidden-on-lg">
1162
1162
  <button
1163
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
1163
+ class="pf-v6-c-menu-toggle pf-m-small pf-m-plain"
1164
1164
  type="button"
1165
1165
  aria-expanded="false"
1166
- aria-label="Menu toggle"
1166
+ aria-label="Data list item menu toggle"
1167
1167
  id="data-list-compact-item-2-menu-toggle"
1168
1168
  >
1169
1169
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1215,10 +1215,10 @@ When a list item includes more than one block of content, it can be difficult fo
1215
1215
  </div>
1216
1216
  <div class="pf-v6-c-data-list__item-action pf-m-hidden-on-xl">
1217
1217
  <button
1218
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
1218
+ class="pf-v6-c-menu-toggle pf-m-small pf-m-plain"
1219
1219
  type="button"
1220
1220
  aria-expanded="false"
1221
- aria-label="Menu toggle"
1221
+ aria-label="Data list item menu toggle"
1222
1222
  id="data-list-compact-item-3-menu-toggle"
1223
1223
  >
1224
1224
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1369,7 +1369,7 @@ When a list item includes more than one block of content, it can be difficult fo
1369
1369
  class="pf-v6-c-menu-toggle pf-m-plain"
1370
1370
  type="button"
1371
1371
  aria-expanded="false"
1372
- aria-label="Menu toggle"
1372
+ aria-label="Data list item menu toggle"
1373
1373
  id="data-list-flex-modifiers-item-1-menu-toggle"
1374
1374
  >
1375
1375
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1458,7 +1458,7 @@ When a list item includes more than one block of content, it can be difficult fo
1458
1458
  class="pf-v6-c-menu-toggle pf-m-plain"
1459
1459
  type="button"
1460
1460
  aria-expanded="false"
1461
- aria-label="Menu toggle"
1461
+ aria-label="Data list item menu toggle"
1462
1462
  id="data-list-flex-modifiers-2-item-1-menu-toggle"
1463
1463
  >
1464
1464
  <span class="pf-v6-c-menu-toggle__icon">
@@ -18,7 +18,7 @@ cssPrefix: pf-v6-c-divider
18
18
  ```html
19
19
  <ul role="list">
20
20
  <li>List item one</li>
21
- <li class="pf-v6-c-divider" role="separator"></li>
21
+ <li class="pf-v6-c-divider" role="presentation"></li>
22
22
  <li>List item two</li>
23
23
  </ul>
24
24
 
@@ -550,6 +550,7 @@ cssPrefix: pf-v6-c-drawer
550
550
  class="pf-v6-c-drawer__splitter pf-m-vertical"
551
551
  role="separator"
552
552
  tabindex="0"
553
+ aria-valuenow="50"
553
554
  aria-orientation="vertical"
554
555
  >
555
556
  <div class="pf-v6-c-drawer__splitter-handle"></div>
@@ -597,6 +598,7 @@ cssPrefix: pf-v6-c-drawer
597
598
  class="pf-v6-c-drawer__splitter pf-m-vertical"
598
599
  role="separator"
599
600
  tabindex="0"
601
+ aria-valuenow="50"
600
602
  aria-orientation="vertical"
601
603
  >
602
604
  <div class="pf-v6-c-drawer__splitter-handle"></div>
@@ -647,6 +649,7 @@ cssPrefix: pf-v6-c-drawer
647
649
  class="pf-v6-c-drawer__splitter"
648
650
  role="separator"
649
651
  tabindex="0"
652
+ aria-valuenow="50"
650
653
  aria-orientation="horizontal"
651
654
  >
652
655
  <div class="pf-v6-c-drawer__splitter-handle"></div>
@@ -694,6 +697,7 @@ cssPrefix: pf-v6-c-drawer
694
697
  class="pf-v6-c-drawer__splitter pf-m-vertical"
695
698
  role="separator"
696
699
  tabindex="0"
700
+ aria-valuenow="50"
697
701
  aria-orientation="vertical"
698
702
  >
699
703
  <div class="pf-v6-c-drawer__splitter-handle"></div>