@patternfly/patternfly 6.3.0-prerelease.5 → 6.3.0-prerelease.51

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 (129) hide show
  1. package/README.md +8 -6
  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/normalize.scss +4 -0
  6. package/base/patternfly-common.css +46 -11
  7. package/base/patternfly-common.scss +58 -13
  8. package/components/Accordion/accordion.css +72 -3
  9. package/components/Accordion/accordion.scss +78 -6
  10. package/components/Alert/alert-group.css +52 -31
  11. package/components/Alert/alert-group.scss +77 -46
  12. package/components/Button/button.css +155 -6
  13. package/components/Button/button.scss +161 -8
  14. package/components/Card/card.css +0 -1
  15. package/components/Card/card.scss +0 -1
  16. package/components/DataList/data-list.css +2 -2
  17. package/components/DataList/data-list.scss +2 -2
  18. package/components/DualListSelector/dual-list-selector.css +36 -0
  19. package/components/DualListSelector/dual-list-selector.scss +43 -0
  20. package/components/ExpandableSection/expandable-section.css +63 -1
  21. package/components/ExpandableSection/expandable-section.scss +76 -2
  22. package/components/FileUpload/file-upload.css +3 -3
  23. package/components/FileUpload/file-upload.scss +3 -3
  24. package/components/Form/form.css +40 -1
  25. package/components/Form/form.scss +47 -1
  26. package/components/FormControl/form-control.css +16 -0
  27. package/components/FormControl/form-control.scss +9 -0
  28. package/components/InputGroup/input-group.css +80 -0
  29. package/components/InputGroup/input-group.scss +95 -0
  30. package/components/Menu/menu.css +24 -4
  31. package/components/Menu/menu.scss +20 -5
  32. package/components/MenuToggle/menu-toggle.css +38 -4
  33. package/components/MenuToggle/menu-toggle.scss +48 -3
  34. package/components/Nav/nav.css +22 -8
  35. package/components/Nav/nav.scss +22 -9
  36. package/components/Page/page.css +66 -6
  37. package/components/Page/page.scss +48 -5
  38. package/components/Progress/progress.css +16 -0
  39. package/components/Progress/progress.scss +11 -1
  40. package/components/ProgressStepper/progress-stepper.scss +1 -0
  41. package/components/Skeleton/skeleton.css +22 -2
  42. package/components/Skeleton/skeleton.scss +25 -3
  43. package/components/Spinner/spinner.css +5 -0
  44. package/components/Spinner/spinner.scss +6 -0
  45. package/components/Table/table-grid.css +51 -5
  46. package/components/Table/table-grid.scss +22 -1
  47. package/components/Table/table.css +95 -2
  48. package/components/Table/table.scss +138 -3
  49. package/components/Tabs/tabs.css +25 -15
  50. package/components/Tabs/tabs.scss +26 -13
  51. package/components/TextInputGroup/text-input-group.css +23 -0
  52. package/components/TextInputGroup/text-input-group.scss +16 -1
  53. package/components/Timestamp/timestamp.css +4 -0
  54. package/components/Timestamp/timestamp.scss +7 -0
  55. package/components/TreeView/tree-view.css +39 -0
  56. package/components/TreeView/tree-view.scss +42 -2
  57. package/components/Truncate/truncate.css +1 -0
  58. package/components/Truncate/truncate.scss +3 -0
  59. package/components/Wizard/wizard.css +11 -5
  60. package/components/Wizard/wizard.scss +13 -5
  61. package/components/_index.css +961 -99
  62. package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
  63. package/docs/components/Button/examples/Button.md +161 -6
  64. package/docs/components/Card/examples/Card.md +8 -8
  65. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +24 -29
  66. package/docs/components/CodeBlock/examples/CodeBlock.md +11 -11
  67. package/docs/components/CodeEditor/examples/CodeEditor.md +29 -5
  68. package/docs/components/DataList/examples/DataList.md +23 -23
  69. package/docs/components/DescriptionList/examples/DescriptionList.md +78 -22
  70. package/docs/components/DualListSelector/examples/DualListSelector.md +534 -16
  71. package/docs/components/EmptyState/examples/EmptyState.md +6 -6
  72. package/docs/components/ExpandableSection/examples/ExpandableSection.md +32 -21
  73. package/docs/components/Form/examples/Form.md +1179 -114
  74. package/docs/components/Hint/examples/Hint.md +3 -3
  75. package/docs/components/InlineEdit/examples/InlineEdit.md +2 -6
  76. package/docs/components/InputGroup/examples/InputGroup.md +5 -1
  77. package/docs/components/JumpLinks/examples/JumpLinks.md +1 -1
  78. package/docs/components/Label/examples/Label.md +2 -2
  79. package/docs/components/Masthead/examples/masthead.md +90 -12
  80. package/docs/components/Menu/examples/Menu.md +122 -6
  81. package/docs/components/MenuToggle/examples/MenuToggle.md +93 -55
  82. package/docs/components/ModalBox/examples/ModalBox.md +13 -1
  83. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +2 -10
  84. package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
  85. package/docs/components/Page/examples/Page.md +148 -14
  86. package/docs/components/Pagination/examples/Pagination.md +12 -12
  87. package/docs/components/Popover/examples/Popover.md +0 -4
  88. package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
  89. package/docs/components/Skeleton/examples/Skeleton.md +21 -7
  90. package/docs/components/Slider/examples/Slider.md +2 -2
  91. package/docs/components/Spinner/examples/Spinner.md +10 -0
  92. package/docs/components/Table/examples/Table.md +9462 -6183
  93. package/docs/components/Tabs/examples/Tabs.md +1214 -6729
  94. package/docs/components/TextInputGroup/examples/TextInputGroup.md +168 -49
  95. package/docs/components/Title/examples/Title.md +8 -8
  96. package/docs/components/Toolbar/examples/Toolbar.md +7 -7
  97. package/docs/components/Wizard/examples/Wizard.md +583 -0
  98. package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
  99. package/docs/demos/Alert/examples/Alert.md +66 -9
  100. package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
  101. package/docs/demos/Banner/examples/Banner.md +47 -6
  102. package/docs/demos/Card/examples/Card.md +13 -67
  103. package/docs/demos/CardView/examples/CardView.md +24 -5
  104. package/docs/demos/Dashboard/examples/Dashboard.md +29 -7
  105. package/docs/demos/DataList/examples/DataList.md +100 -24
  106. package/docs/demos/DescriptionList/examples/DescriptionList.md +79 -50
  107. package/docs/demos/Drawer/examples/Drawer.md +110 -53
  108. package/docs/demos/Form/examples/BasicForms.md +142 -22
  109. package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
  110. package/docs/demos/Masthead/examples/Masthead.md +171 -19
  111. package/docs/demos/Modal/examples/Modal.md +171 -21
  112. package/docs/demos/Nav/examples/Nav.md +113 -18
  113. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +110 -15
  114. package/docs/demos/Page/examples/Page.md +661 -40
  115. package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
  116. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +160 -103
  117. package/docs/demos/Skeleton/examples/Skeleton.md +25 -4
  118. package/docs/demos/Table/examples/Table.md +475 -157
  119. package/docs/demos/Tabs/examples/Tabs.md +139 -594
  120. package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
  121. package/docs/demos/Wizard/examples/Wizard.md +198 -27
  122. package/package.json +9 -6
  123. package/patternfly-base-no-globals.css +45 -11
  124. package/patternfly-base.css +49 -11
  125. package/patternfly-no-globals.css +1006 -110
  126. package/patternfly.css +1010 -110
  127. package/patternfly.min.css +1 -1
  128. package/patternfly.min.css.map +1 -1
  129. 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">
@@ -21,8 +21,7 @@ cssPrefix: pf-v6-c-clipboard-copy
21
21
  class="pf-v6-c-button pf-m-control"
22
22
  id="basic-editable-copy-button"
23
23
  type="button"
24
- aria-labelledby="basic-editable-copy-button basic-editable-text-input"
25
- aria-label="Copy to clipboard"
24
+ aria-label="Copy to clipboard basic editable example"
26
25
  >
27
26
  <span class="pf-v6-c-button__icon">
28
27
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -46,8 +45,7 @@ cssPrefix: pf-v6-c-clipboard-copy
46
45
  class="pf-v6-c-button pf-m-control"
47
46
  id="basic-readonly-copy-button"
48
47
  type="button"
49
- aria-labelledby="basic-readonly-copy-button basic-readonly-text-input"
50
- aria-label="Copy to clipboard"
48
+ aria-label="Copy to clipboard basic read-only example"
51
49
  >
52
50
  <span class="pf-v6-c-button__icon">
53
51
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -67,8 +65,9 @@ cssPrefix: pf-v6-c-clipboard-copy
67
65
  <button
68
66
  class="pf-v6-c-button pf-m-control"
69
67
  type="button"
68
+ aria-expanded="false"
70
69
  id="expandable-not-expanded-editable-toggle"
71
- aria-labelledby="expandable-not-expanded-editable-toggle expandable-not-expanded-editable-text-input"
70
+ aria-label="Toggle unexpanded editable example"
72
71
  aria-controls="expandable-not-expanded-editable-content"
73
72
  >
74
73
  <span class="pf-v6-c-button__icon">
@@ -88,9 +87,8 @@ cssPrefix: pf-v6-c-clipboard-copy
88
87
  <button
89
88
  class="pf-v6-c-button pf-m-control"
90
89
  type="button"
91
- aria-label="Copy to clipboard"
90
+ aria-label="Copy to clipboard unexpanded editable example"
92
91
  id="expandable-not-expanded-editable-copy-button"
93
- aria-labelledby="expandable-not-expanded-editable-copy-button expandable-not-expanded-editable-text-input"
94
92
  >
95
93
  <span class="pf-v6-c-button__icon">
96
94
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -111,7 +109,7 @@ cssPrefix: pf-v6-c-clipboard-copy
111
109
  type="button"
112
110
  aria-expanded="true"
113
111
  id="expandable-expanded-editable-toggle"
114
- aria-labelledby="expandable-expanded-editable-toggle expandable-expanded-editable-text-input"
112
+ aria-label="Toggle expanded editable example"
115
113
  aria-controls="expandable-expanded-editable-content"
116
114
  >
117
115
  <span class="pf-v6-c-button__icon">
@@ -132,9 +130,8 @@ cssPrefix: pf-v6-c-clipboard-copy
132
130
  <button
133
131
  class="pf-v6-c-button pf-m-control"
134
132
  type="button"
135
- aria-label="Copy to clipboard"
133
+ aria-label="Copy to clipboard expanded editable example"
136
134
  id="expandable-expanded-editable-copy-button"
137
- aria-labelledby="expandable-expanded-editable-copy-button expandable-expanded-editable-text-input"
138
135
  >
139
136
  <span class="pf-v6-c-button__icon">
140
137
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -154,8 +151,9 @@ cssPrefix: pf-v6-c-clipboard-copy
154
151
  <button
155
152
  class="pf-v6-c-button pf-m-control"
156
153
  type="button"
154
+ aria-expanded="false"
157
155
  id="expandable-not-expanded-readonly-toggle"
158
- aria-labelledby="expandable-not-expanded-readonly-toggle expandable-not-expanded-readonly-text-input"
156
+ aria-label="Toggle read-only unexpanded example"
159
157
  aria-controls="expandable-not-expanded-readonly-content"
160
158
  >
161
159
  <span class="pf-v6-c-button__icon">
@@ -176,9 +174,8 @@ cssPrefix: pf-v6-c-clipboard-copy
176
174
  <button
177
175
  class="pf-v6-c-button pf-m-control"
178
176
  type="button"
179
- aria-label="Copy to clipboard"
177
+ aria-label="Copy to clipboard read-only collapsed example"
180
178
  id="expandable-not-expanded-readonly-copy-button"
181
- aria-labelledby="expandable-not-expanded-readonly-copy-button expandable-not-expanded-readonly-text-input"
182
179
  >
183
180
  <span class="pf-v6-c-button__icon">
184
181
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -199,7 +196,7 @@ cssPrefix: pf-v6-c-clipboard-copy
199
196
  type="button"
200
197
  aria-expanded="true"
201
198
  id="expandable-expanded-readonly-toggle"
202
- aria-labelledby="expandable-expanded-readonly-toggle expandable-expanded-readonly-text-input"
199
+ aria-label="Toggle read-only expanded example"
203
200
  aria-controls="expandable-expanded-readonly-content"
204
201
  >
205
202
  <span class="pf-v6-c-button__icon">
@@ -220,9 +217,8 @@ cssPrefix: pf-v6-c-clipboard-copy
220
217
  <button
221
218
  class="pf-v6-c-button pf-m-control"
222
219
  type="button"
223
- aria-label="Copy to clipboard"
220
+ aria-label="Copy to clipboard read-only expanded example"
224
221
  id="expandable-expanded-readonly-copy-button"
225
- aria-labelledby="expandable-expanded-readonly-copy-button expandable-expanded-readonly-text-input"
226
222
  >
227
223
  <span class="pf-v6-c-button__icon">
228
224
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -241,8 +237,9 @@ cssPrefix: pf-v6-c-clipboard-copy
241
237
  <button
242
238
  class="pf-v6-c-button pf-m-control"
243
239
  type="button"
240
+ aria-expanded="false"
244
241
  id="expandable-not-expanded-code-toggle"
245
- aria-labelledby="expandable-not-expanded-code-toggle expandable-not-expanded-code-text-input"
242
+ aria-label="Toggle code unexpanded example"
246
243
  aria-controls="expandable-not-expanded-code-content"
247
244
  >
248
245
  <span class="pf-v6-c-button__icon">
@@ -263,9 +260,8 @@ cssPrefix: pf-v6-c-clipboard-copy
263
260
  <button
264
261
  class="pf-v6-c-button pf-m-control"
265
262
  type="button"
266
- aria-label="Copy to clipboard"
263
+ aria-label="Copy to clipboard code unexpanded example"
267
264
  id="expandable-not-expanded-code-copy-button"
268
- aria-labelledby="expandable-not-expanded-code-copy-button expandable-not-expanded-code-text-input"
269
265
  >
270
266
  <span class="pf-v6-c-button__icon">
271
267
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -299,7 +295,7 @@ cssPrefix: pf-v6-c-clipboard-copy
299
295
  type="button"
300
296
  aria-expanded="true"
301
297
  id="expandable-expanded-code-toggle"
302
- aria-labelledby="expandable-expanded-code-toggle expandable-expanded-code-text-input"
298
+ aria-label="Toggle code expanded example"
303
299
  aria-controls="expandable-expanded-code-content"
304
300
  >
305
301
  <span class="pf-v6-c-button__icon">
@@ -321,9 +317,8 @@ cssPrefix: pf-v6-c-clipboard-copy
321
317
  <button
322
318
  class="pf-v6-c-button pf-m-control"
323
319
  type="button"
324
- aria-label="Copy to clipboard"
320
+ aria-label="Copy to clipboard code expanded example"
325
321
  id="expandable-expanded-code-copy-button"
326
- aria-labelledby="expandable-expanded-code-copy-button expandable-expanded-code-text-input"
327
322
  >
328
323
  <span class="pf-v6-c-button__icon">
329
324
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -362,7 +357,7 @@ cssPrefix: pf-v6-c-clipboard-copy
362
357
  <button
363
358
  class="pf-v6-c-button pf-m-no-padding pf-m-plain"
364
359
  type="button"
365
- aria-label="Copy to clipboard"
360
+ aria-label="Copy to clipboard inline compact example"
366
361
  >
367
362
  <span class="pf-v6-c-button__icon">
368
363
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -384,7 +379,7 @@ cssPrefix: pf-v6-c-clipboard-copy
384
379
  <button
385
380
  class="pf-v6-c-button pf-m-no-padding pf-m-plain"
386
381
  type="button"
387
- aria-label="Copy to clipboard"
382
+ aria-label="Copy to clipboard inline compact code example"
388
383
  >
389
384
  <span class="pf-v6-c-button__icon">
390
385
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -406,7 +401,7 @@ cssPrefix: pf-v6-c-clipboard-copy
406
401
  <button
407
402
  class="pf-v6-c-button pf-m-no-padding pf-m-plain"
408
403
  type="button"
409
- aria-label="Copy to clipboard"
404
+ aria-label="Copy to clipboard inline compact with additional action example"
410
405
  >
411
406
  <span class="pf-v6-c-button__icon">
412
407
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -442,7 +437,7 @@ cssPrefix: pf-v6-c-clipboard-copy
442
437
  <button
443
438
  class="pf-v6-c-button pf-m-no-padding pf-m-plain"
444
439
  type="button"
445
- aria-label="Copy to clipboard"
440
+ aria-label="Copy to clipboard basic inline compact example"
446
441
  >
447
442
  <span class="pf-v6-c-button__icon">
448
443
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -467,7 +462,7 @@ cssPrefix: pf-v6-c-clipboard-copy
467
462
  <button
468
463
  class="pf-v6-c-button pf-m-no-padding pf-m-plain"
469
464
  type="button"
470
- aria-label="Copy to clipboard"
465
+ aria-label="Copy to clipboard long inline compact example"
471
466
  >
472
467
  <span class="pf-v6-c-button__icon">
473
468
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -491,7 +486,7 @@ cssPrefix: pf-v6-c-clipboard-copy
491
486
  <button
492
487
  class="pf-v6-c-button pf-m-no-padding pf-m-plain"
493
488
  type="button"
494
- aria-label="Copy to clipboard"
489
+ aria-label="Copy to clipboard long block compact example"
495
490
  >
496
491
  <span class="pf-v6-c-button__icon">
497
492
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -519,7 +514,7 @@ cssPrefix: pf-v6-c-clipboard-copy
519
514
  <button
520
515
  class="pf-v6-c-button pf-m-no-padding pf-m-plain"
521
516
  type="button"
522
- aria-label="Copy to clipboard"
517
+ aria-label="Copy to clipboard inline compact with truncation example"
523
518
  >
524
519
  <span class="pf-v6-c-button__icon">
525
520
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -14,7 +14,7 @@ cssPrefix: pf-v6-c-code-block
14
14
  <button
15
15
  class="pf-v6-c-button pf-m-plain"
16
16
  type="button"
17
- aria-label="Copy to clipboard"
17
+ aria-label="Copy to clipboard basic example code content"
18
18
  >
19
19
  <span class="pf-v6-c-button__icon">
20
20
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -25,7 +25,7 @@ cssPrefix: pf-v6-c-code-block
25
25
  <button
26
26
  class="pf-v6-c-button pf-m-plain"
27
27
  type="button"
28
- aria-label="Run in Web Terminal"
28
+ aria-label="Run basic example code in Web Terminal"
29
29
  >
30
30
  <span class="pf-v6-c-button__icon">
31
31
  <i class="fas fa-play" aria-hidden="true"></i>
@@ -58,7 +58,7 @@ url: https://raw.githubusercontent.com/Azure-Samples/helm-charts/master/docs</co
58
58
  <button
59
59
  class="pf-v6-c-button pf-m-plain"
60
60
  type="button"
61
- aria-label="Copy to clipboard"
61
+ aria-label="Copy to clipboard expandable example code content"
62
62
  >
63
63
  <span class="pf-v6-c-button__icon">
64
64
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -69,7 +69,7 @@ url: https://raw.githubusercontent.com/Azure-Samples/helm-charts/master/docs</co
69
69
  <button
70
70
  class="pf-v6-c-button pf-m-plain"
71
71
  type="button"
72
- aria-label="Run in Web Terminal"
72
+ aria-label="Run expandable example code in Web Terminal"
73
73
  >
74
74
  <span class="pf-v6-c-button__icon">
75
75
  <i class="fas fa-play" aria-hidden="true"></i>
@@ -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"
@@ -128,7 +128,7 @@ name: azure-sample-repo<div
128
128
  <button
129
129
  class="pf-v6-c-button pf-m-plain"
130
130
  type="button"
131
- aria-label="Copy to clipboard"
131
+ aria-label="Copy to clipboard expandable expanded example code content"
132
132
  >
133
133
  <span class="pf-v6-c-button__icon">
134
134
  <i class="fas fa-copy" aria-hidden="true"></i>
@@ -139,7 +139,7 @@ name: azure-sample-repo<div
139
139
  <button
140
140
  class="pf-v6-c-button pf-m-plain"
141
141
  type="button"
142
- aria-label="Run in Web Terminal"
142
+ aria-label="Run expandable expanded example code in Web Terminal"
143
143
  >
144
144
  <span class="pf-v6-c-button__icon">
145
145
  <i class="fas fa-play" aria-hidden="true"></i>
@@ -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">
@@ -138,7 +138,7 @@ cssPrefix: pf-v6-c-code-editor
138
138
  <i class="fas fa- fa-code" aria-hidden="true"></i>
139
139
  </div>
140
140
  <div class="pf-v6-c-empty-state__title">
141
- <h1 class="pf-v6-c-empty-state__title-text">Start editing</h1>
141
+ <h4 class="pf-v6-c-empty-state__title-text">Start editing</h4>
142
142
  </div>
143
143
  </div>
144
144
 
@@ -188,7 +188,7 @@ cssPrefix: pf-v6-c-code-editor
188
188
  <i class="fas fa- fa-code" aria-hidden="true"></i>
189
189
  </div>
190
190
  <div class="pf-v6-c-empty-state__title">
191
- <h1 class="pf-v6-c-empty-state__title-text">Start editing</h1>
191
+ <h4 class="pf-v6-c-empty-state__title-text">Start editing</h4>
192
192
  </div>
193
193
  </div>
194
194
 
@@ -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>
@@ -334,7 +346,7 @@ This is an extra container used in React to prevent event propagation if upload
334
346
  <i class="fas fa- fa-code" aria-hidden="true"></i>
335
347
  </div>
336
348
  <div class="pf-v6-c-empty-state__title">
337
- <h1 class="pf-v6-c-empty-state__title-text">Start editing</h1>
349
+ <h4 class="pf-v6-c-empty-state__title-text">Start editing</h4>
338
350
  </div>
339
351
  </div>
340
352
 
@@ -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>