@patternfly/patternfly 6.3.0-prerelease.9 → 6.3.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.
Files changed (109) hide show
  1. package/assets/images/icon-outlined-star.hbs +3 -0
  2. package/assets/images/icon-star.hbs +3 -0
  3. package/base/patternfly-common.css +46 -11
  4. package/base/patternfly-common.scss +58 -13
  5. package/components/Accordion/accordion.css +72 -3
  6. package/components/Accordion/accordion.scss +78 -6
  7. package/components/Alert/alert-group.css +52 -31
  8. package/components/Alert/alert-group.scss +77 -46
  9. package/components/Button/button.css +154 -6
  10. package/components/Button/button.scss +160 -8
  11. package/components/DataList/data-list.css +2 -2
  12. package/components/DataList/data-list.scss +2 -2
  13. package/components/DualListSelector/dual-list-selector.css +36 -0
  14. package/components/DualListSelector/dual-list-selector.scss +43 -0
  15. package/components/ExpandableSection/expandable-section.css +63 -1
  16. package/components/ExpandableSection/expandable-section.scss +76 -2
  17. package/components/FileUpload/file-upload.css +3 -3
  18. package/components/FileUpload/file-upload.scss +3 -3
  19. package/components/Form/form.css +40 -1
  20. package/components/Form/form.scss +47 -1
  21. package/components/FormControl/form-control.css +16 -0
  22. package/components/FormControl/form-control.scss +9 -0
  23. package/components/InputGroup/input-group.css +80 -0
  24. package/components/InputGroup/input-group.scss +95 -0
  25. package/components/Menu/menu.css +24 -4
  26. package/components/Menu/menu.scss +20 -5
  27. package/components/MenuToggle/menu-toggle.css +30 -0
  28. package/components/MenuToggle/menu-toggle.scss +33 -0
  29. package/components/Nav/nav.css +22 -8
  30. package/components/Nav/nav.scss +22 -9
  31. package/components/Page/page.css +62 -3
  32. package/components/Page/page.scss +44 -3
  33. package/components/Progress/progress.css +16 -0
  34. package/components/Progress/progress.scss +11 -1
  35. package/components/ProgressStepper/progress-stepper.scss +1 -0
  36. package/components/Spinner/spinner.css +5 -0
  37. package/components/Spinner/spinner.scss +6 -0
  38. package/components/Table/table-grid.css +51 -5
  39. package/components/Table/table-grid.scss +22 -1
  40. package/components/Table/table.css +95 -2
  41. package/components/Table/table.scss +138 -3
  42. package/components/Tabs/tabs.css +25 -15
  43. package/components/Tabs/tabs.scss +26 -13
  44. package/components/TextInputGroup/text-input-group.css +20 -0
  45. package/components/TextInputGroup/text-input-group.scss +12 -0
  46. package/components/Timestamp/timestamp.css +4 -0
  47. package/components/Timestamp/timestamp.scss +7 -0
  48. package/components/TreeView/tree-view.css +39 -0
  49. package/components/TreeView/tree-view.scss +42 -2
  50. package/components/Truncate/truncate.css +1 -0
  51. package/components/Truncate/truncate.scss +3 -0
  52. package/components/_index.css +912 -84
  53. package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
  54. package/docs/components/Button/examples/Button.md +148 -5
  55. package/docs/components/Card/examples/Card.md +8 -8
  56. package/docs/components/CodeBlock/examples/CodeBlock.md +5 -5
  57. package/docs/components/DataList/examples/DataList.md +23 -23
  58. package/docs/components/DualListSelector/examples/DualListSelector.md +534 -16
  59. package/docs/components/ExpandableSection/examples/ExpandableSection.md +17 -12
  60. package/docs/components/Form/examples/Form.md +1047 -126
  61. package/docs/components/Hint/examples/Hint.md +3 -3
  62. package/docs/components/InlineEdit/examples/InlineEdit.md +2 -2
  63. package/docs/components/InputGroup/examples/InputGroup.md +5 -1
  64. package/docs/components/JumpLinks/examples/JumpLinks.md +1 -1
  65. package/docs/components/Masthead/examples/masthead.md +90 -12
  66. package/docs/components/Menu/examples/Menu.md +122 -6
  67. package/docs/components/MenuToggle/examples/MenuToggle.md +90 -51
  68. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +2 -10
  69. package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
  70. package/docs/components/Page/examples/Page.md +147 -14
  71. package/docs/components/Pagination/examples/Pagination.md +12 -12
  72. package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
  73. package/docs/components/Slider/examples/Slider.md +2 -2
  74. package/docs/components/Spinner/examples/Spinner.md +10 -0
  75. package/docs/components/Table/examples/Table.md +9428 -6173
  76. package/docs/components/Tabs/examples/Tabs.md +1214 -6729
  77. package/docs/components/TextInputGroup/examples/TextInputGroup.md +45 -5
  78. package/docs/components/Toolbar/examples/Toolbar.md +7 -7
  79. package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
  80. package/docs/demos/Alert/examples/Alert.md +66 -9
  81. package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
  82. package/docs/demos/Banner/examples/Banner.md +47 -6
  83. package/docs/demos/Card/examples/Card.md +5 -62
  84. package/docs/demos/CardView/examples/CardView.md +24 -5
  85. package/docs/demos/Dashboard/examples/Dashboard.md +24 -5
  86. package/docs/demos/DataList/examples/DataList.md +100 -24
  87. package/docs/demos/DescriptionList/examples/DescriptionList.md +66 -47
  88. package/docs/demos/Drawer/examples/Drawer.md +110 -53
  89. package/docs/demos/Form/examples/BasicForms.md +12 -12
  90. package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
  91. package/docs/demos/Masthead/examples/Masthead.md +170 -18
  92. package/docs/demos/Modal/examples/Modal.md +132 -18
  93. package/docs/demos/Nav/examples/Nav.md +111 -16
  94. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +110 -15
  95. package/docs/demos/Page/examples/Page.md +309 -43
  96. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +160 -103
  97. package/docs/demos/Skeleton/examples/Skeleton.md +22 -3
  98. package/docs/demos/Table/examples/Table.md +449 -155
  99. package/docs/demos/Tabs/examples/Tabs.md +137 -593
  100. package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
  101. package/docs/demos/Wizard/examples/Wizard.md +198 -27
  102. package/package.json +5 -5
  103. package/patternfly-base-no-globals.css +45 -11
  104. package/patternfly-base.css +45 -11
  105. package/patternfly-no-globals.css +957 -95
  106. package/patternfly.css +957 -95
  107. package/patternfly.min.css +1 -1
  108. package/patternfly.min.css.map +1 -1
  109. 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"
@@ -2022,7 +2022,36 @@ A favorite button should use a plain button with the star icon. Applying `.pf-m-
2022
2022
  aria-label="not starred"
2023
2023
  >
2024
2024
  <span class="pf-v6-c-button__icon">
2025
- <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>
2026
2055
  </span>
2027
2056
  </button>
2028
2057
  <button
@@ -2031,7 +2060,117 @@ A favorite button should use a plain button with the star icon. Applying `.pf-m-
2031
2060
  aria-label="starred"
2032
2061
  >
2033
2062
  <span class="pf-v6-c-button__icon">
2034
- <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>
2035
2174
  </span>
2036
2175
  </button>
2037
2176
 
@@ -2068,7 +2207,7 @@ Semantic buttons and links are important for usability as well as accessibility.
2068
2207
  | `.pf-v6-c-button` | `<button>, <span>` | Initiates a button. Always use it with a modifier class. **Required** |
2069
2208
  | `.pf-v6-c-button__icon` | `<span>` | Initiates a button icon. |
2070
2209
  | `.pf-v6-c-button__progress` | `<span>` | Initiates a button progress container. |
2071
- | `.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. |
2072
2211
  | `.pf-m-primary` | `.pf-v6-c-button` | Modifies for primary styles. |
2073
2212
  | `.pf-m-secondary` | `.pf-v6-c-button` | Modifies for secondary styles. |
2074
2213
  | `.pf-m-tertiary` | `.pf-v6-c-button` | Modifies for tertiary styles. |
@@ -2091,5 +2230,9 @@ Semantic buttons and links are important for usability as well as accessibility.
2091
2230
  | `.pf-m-in-progress` | `.pf-v6-c-button` | Indicates that the button is in the in progress state. |
2092
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`. |
2093
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. |
2094
- | `.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. |
2095
- | `.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">
@@ -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">