@patternfly/patternfly 6.5.0-prerelease.6 → 6.5.0-prerelease.60

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 (392) hide show
  1. package/README.md +1 -1
  2. package/assets/fontawesome/_variables.scss +2 -1
  3. package/assets/images/RHAiExperienceIcon.svg +27 -0
  4. package/assets/images/RHAutomationsLogo.svg +96 -0
  5. package/assets/images/RHServerStackIcon.svg +16 -0
  6. package/assets/images/compass--hero-bg.png +0 -0
  7. package/assets/images/compass--rh-wallpaper-dark.png +0 -0
  8. package/assets/images/compass--rh-wallpaper-light.png +0 -0
  9. package/assets/images/compass--wallpaper-dark.jpg +0 -0
  10. package/assets/images/compass--wallpaper-dark.png +0 -0
  11. package/assets/images/compass--wallpaper-light.jpg +0 -0
  12. package/assets/images/compass--wallpaper-light.png +0 -0
  13. package/assets/images/glass-brand-dark.jpg +0 -0
  14. package/assets/images/glass-brand-dark.png +0 -0
  15. package/assets/images/glass-brand-light.jpg +0 -0
  16. package/assets/images/glass-brand-light.png +0 -0
  17. package/base/normalize.scss +7 -0
  18. package/base/patternfly-common.css +50 -0
  19. package/base/patternfly-common.scss +59 -0
  20. package/base/patternfly-svg-icons.css +11 -0
  21. package/base/patternfly-svg-icons.scss +14 -0
  22. package/base/patternfly-variables.css +926 -513
  23. package/base/patternfly-variables.scss +46 -4
  24. package/base/tokens/tokens-dark.scss +56 -8
  25. package/base/tokens/tokens-default.scss +69 -14
  26. package/base/tokens/tokens-glass-dark.scss +26 -0
  27. package/base/tokens/tokens-glass.scss +22 -0
  28. package/base/tokens/tokens-local.scss +17 -0
  29. package/base/tokens/tokens-palette.scss +3 -1
  30. package/base/tokens/tokens-redhat-dark.scss +21 -0
  31. package/base/tokens/tokens-redhat-glass-dark.scss +40 -0
  32. package/base/tokens/tokens-redhat-glass.scss +30 -0
  33. package/base/tokens/tokens-redhat-highcontrast-dark.scss +50 -0
  34. package/base/tokens/tokens-redhat-highcontrast.scss +128 -0
  35. package/base/tokens/tokens-redhat.scss +15 -0
  36. package/components/AboutModalBox/about-modal-box.css +36 -26
  37. package/components/Accordion/accordion.css +27 -14
  38. package/components/Accordion/accordion.scss +12 -2
  39. package/components/ActionList/action-list.css +2 -0
  40. package/components/ActionList/action-list.scss +2 -0
  41. package/components/Alert/alert.css +7 -5
  42. package/components/Alert/alert.scss +2 -1
  43. package/components/Avatar/avatar.css +12 -4
  44. package/components/BackgroundImage/background-image.css +6 -3
  45. package/components/Banner/banner.css +8 -6
  46. package/components/Brand/brand.css +3 -1
  47. package/components/Breadcrumb/breadcrumb.css +4 -3
  48. package/components/Button/button.css +121 -30
  49. package/components/Button/button.scss +131 -26
  50. package/components/CalendarMonth/calendar-month.css +4 -3
  51. package/components/Card/card.css +51 -13
  52. package/components/Card/card.scss +61 -8
  53. package/components/ClipboardCopy/clipboard-copy.css +7 -6
  54. package/components/ClipboardCopy/clipboard-copy.scss +3 -3
  55. package/components/CodeEditor/code-editor.css +1 -1
  56. package/components/CodeEditor/code-editor.scss +1 -1
  57. package/components/Compass/compass.css +320 -0
  58. package/components/Compass/compass.scss +350 -0
  59. package/components/DataList/data-list.css +34 -23
  60. package/components/DataList/data-list.scss +8 -2
  61. package/components/DescriptionList/description-list-order.scss +5 -1
  62. package/components/DescriptionList/description-list.css +7 -5
  63. package/components/DescriptionList/description-list.scss +5 -1
  64. package/components/Divider/divider.css +7 -5
  65. package/components/Drawer/drawer.css +115 -56
  66. package/components/Drawer/drawer.scss +82 -9
  67. package/components/DualListSelector/dual-list-selector.css +18 -12
  68. package/components/DualListSelector/dual-list-selector.scss +1 -1
  69. package/components/ExpandableSection/expandable-section.css +21 -16
  70. package/components/ExpandableSection/expandable-section.scss +6 -3
  71. package/components/Form/form.css +2 -2
  72. package/components/Form/form.scss +2 -2
  73. package/components/FormControl/form-control.css +3 -3
  74. package/components/FormControl/form-control.scss +3 -3
  75. package/components/Hero/hero.css +74 -0
  76. package/components/Hero/hero.scss +86 -0
  77. package/components/JumpLinks/jump-links.css +16 -5
  78. package/components/JumpLinks/jump-links.scss +17 -3
  79. package/components/Label/label-group.css +2 -2
  80. package/components/Label/label-group.scss +2 -2
  81. package/components/Label/label.css +4 -3
  82. package/components/Login/login.css +58 -40
  83. package/components/Login/login.scss +7 -3
  84. package/components/Masthead/masthead.css +112 -16
  85. package/components/Masthead/masthead.scss +112 -1
  86. package/components/Menu/menu.css +23 -14
  87. package/components/MenuToggle/menu-toggle.css +26 -3
  88. package/components/MenuToggle/menu-toggle.scss +30 -3
  89. package/components/ModalBox/modal-box.css +9 -7
  90. package/components/ModalBox/modal-box.scss +2 -2
  91. package/components/Nav/nav.css +82 -11
  92. package/components/Nav/nav.scss +85 -5
  93. package/components/NotificationDrawer/notification-drawer.css +19 -9
  94. package/components/NotificationDrawer/notification-drawer.scss +14 -5
  95. package/components/Page/page.css +214 -29
  96. package/components/Page/page.scss +228 -13
  97. package/components/Pagination/pagination.scss +5 -1
  98. package/components/Panel/panel.css +14 -0
  99. package/components/Panel/panel.scss +18 -0
  100. package/components/Progress/progress.css +3 -1
  101. package/components/Progress/progress.scss +3 -1
  102. package/components/ProgressStepper/progress-stepper.scss +5 -1
  103. package/components/Sidebar/sidebar.css +1 -1
  104. package/components/Sidebar/sidebar.scss +7 -3
  105. package/components/Skeleton/skeleton.css +16 -15
  106. package/components/Slider/slider.css +32 -18
  107. package/components/Switch/switch.css +4 -2
  108. package/components/Switch/switch.scss +1 -1
  109. package/components/Table/table-grid.css +28 -36
  110. package/components/Table/table-grid.scss +4 -4
  111. package/components/Table/table-tree-view.css +4 -2
  112. package/components/Table/table.css +45 -36
  113. package/components/Table/table.scss +15 -11
  114. package/components/Tabs/tabs.css +51 -33
  115. package/components/Tabs/tabs.scss +54 -26
  116. package/components/TextInputGroup/text-input-group.css +2 -2
  117. package/components/TextInputGroup/text-input-group.scss +2 -2
  118. package/components/ToggleGroup/toggle-group.css +34 -17
  119. package/components/ToggleGroup/toggle-group.scss +36 -20
  120. package/components/Toolbar/toolbar.css +47 -15
  121. package/components/Toolbar/toolbar.scss +34 -6
  122. package/components/TreeView/tree-view.css +45 -14
  123. package/components/TreeView/tree-view.scss +32 -1
  124. package/components/Wizard/wizard.css +41 -19
  125. package/components/Wizard/wizard.scss +26 -6
  126. package/components/_index.css +1936 -700
  127. package/components/_index.scss +3 -1
  128. package/docs/components/AboutModalBox/examples/AboutModalBox.md +13 -1
  129. package/docs/components/Accordion/examples/Accordion.md +392 -30
  130. package/docs/components/ActionList/examples/ActionList.md +143 -11
  131. package/docs/components/Alert/examples/Alert.md +678 -54
  132. package/docs/components/Avatar/examples/Avatar.md +4 -4
  133. package/docs/components/BackToTop/examples/BackToTop.md +13 -1
  134. package/docs/components/Banner/examples/Banner.md +65 -5
  135. package/docs/components/Brand/examples/Brand.md +2 -2
  136. package/docs/components/Breadcrumb/examples/Breadcrumb.md +299 -24
  137. package/docs/components/Button/examples/Button.md +2362 -163
  138. package/docs/components/CalendarMonth/examples/CalendarMonth.md +104 -8
  139. package/docs/components/Card/examples/Card.md +207 -4
  140. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +286 -22
  141. package/docs/components/CodeBlock/examples/CodeBlock.md +104 -8
  142. package/docs/components/CodeEditor/examples/CodeEditor.md +195 -15
  143. package/docs/components/Compass/examples/Compass.css +17 -0
  144. package/docs/components/Compass/examples/Compass.md +119 -0
  145. package/docs/components/DataList/examples/DataList.md +406 -205
  146. package/docs/components/DatePicker/examples/DatePicker.md +78 -6
  147. package/docs/components/DescriptionList/examples/DescriptionList.md +327 -27
  148. package/docs/components/Divider/examples/Divider.md +2 -2
  149. package/docs/components/DragDrop/examples/DragDrop.css +1 -1
  150. package/docs/components/Drawer/examples/Drawer.md +355 -35
  151. package/docs/components/DualListSelector/examples/DualListSelector.md +1013 -143
  152. package/docs/components/ExpandableSection/examples/ExpandableSection.md +91 -7
  153. package/docs/components/Form/examples/Form.md +78 -6
  154. package/docs/components/Hero/examples/Hero.md +25 -0
  155. package/docs/components/Icon/examples/Icon.md +92 -8
  156. package/docs/components/InlineEdit/examples/InlineEdit.md +312 -24
  157. package/docs/components/InputGroup/examples/InputGroup.md +27 -3
  158. package/docs/components/JumpLinks/examples/JumpLinks.md +54 -6
  159. package/docs/components/Label/examples/Label.md +2834 -218
  160. package/docs/components/Login/examples/Login.md +26 -2
  161. package/docs/components/Masthead/examples/masthead.md +80 -1
  162. package/docs/components/Menu/examples/Menu.md +1458 -116
  163. package/docs/components/MenuToggle/examples/MenuToggle.md +14 -5
  164. package/docs/components/ModalBox/examples/ModalBox.md +289 -25
  165. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +156 -12
  166. package/docs/components/Nav/examples/Navigation.md +798 -58
  167. package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +598 -46
  168. package/docs/components/OverflowMenu/examples/overflow-menu.md +78 -6
  169. package/docs/components/Page/examples/Page.md +72 -11
  170. package/docs/components/Pagination/examples/Pagination.md +627 -64
  171. package/docs/components/Panel/examples/Panel.md +12 -0
  172. package/docs/components/Popover/examples/Popover.md +286 -22
  173. package/docs/components/Progress/examples/Progress.md +91 -7
  174. package/docs/components/ProgressStepper/examples/ProgressStepper.md +275 -23
  175. package/docs/components/Sidebar/examples/Sidebar.md +1 -1
  176. package/docs/components/Slider/examples/Slider.md +52 -4
  177. package/docs/components/Table/examples/Table.md +876 -70
  178. package/docs/components/Tabs/examples/Tabs.md +5908 -457
  179. package/docs/components/TextInputGroup/examples/TextInputGroup.md +600 -48
  180. package/docs/components/ToggleGroup/examples/toggle-group.md +195 -15
  181. package/docs/components/Toolbar/examples/Toolbar.md +490 -44
  182. package/docs/components/TreeView/examples/TreeView.md +1390 -130
  183. package/docs/components/Wizard/examples/Wizard.md +815 -72
  184. package/docs/demos/AboutModal/examples/AboutModal.md +98 -47
  185. package/docs/demos/Alert/examples/Alert.md +359 -146
  186. package/docs/demos/BackToTop/examples/BackToTop.md +98 -47
  187. package/docs/demos/Banner/examples/Banner.md +170 -92
  188. package/docs/demos/Button/examples/Button.md +13 -1
  189. package/docs/demos/Card/examples/Card.md +963 -128
  190. package/docs/demos/CardView/examples/CardView.md +435 -252
  191. package/docs/demos/Compass/examples/Compass.md +5930 -0
  192. package/docs/demos/Dashboard/examples/Dashboard.md +648 -164
  193. package/docs/demos/DataList/examples/DataList.md +730 -225
  194. package/docs/demos/DescriptionList/examples/DescriptionList.md +279 -141
  195. package/docs/demos/Drawer/examples/Drawer.md +421 -235
  196. package/docs/demos/Form/examples/BasicForms.md +273 -21
  197. package/docs/demos/JumpLinks/examples/JumpLinks.md +518 -287
  198. package/docs/demos/Masthead/examples/Masthead.md +787 -451
  199. package/docs/demos/Modal/examples/Modal.md +588 -285
  200. package/docs/demos/Nav/examples/Nav.md +2913 -493
  201. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +1273 -310
  202. package/docs/demos/Page/examples/Page.md +1236 -689
  203. package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
  204. package/docs/demos/PasswordStrength/examples/PasswordStrength.md +52 -4
  205. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +978 -385
  206. package/docs/demos/Skeleton/examples/Skeleton.md +85 -46
  207. package/docs/demos/Table/examples/Table.md +4531 -838
  208. package/docs/demos/Tabs/examples/Tabs.md +653 -293
  209. package/docs/demos/Toolbar/examples/Toolbar.md +584 -136
  210. package/docs/demos/Wizard/examples/Wizard.md +1165 -472
  211. package/docs/layouts/Bullseye/examples/Bullseye.css +2 -2
  212. package/docs/layouts/Bullseye/examples/Bullseye.md +2 -1
  213. package/docs/layouts/Flex/examples/Flex.css +3 -3
  214. package/docs/layouts/Flex/examples/Flex.md +3 -2
  215. package/docs/layouts/Gallery/examples/Gallery.css +2 -2
  216. package/docs/layouts/Gallery/examples/Gallery.md +4 -3
  217. package/docs/layouts/Grid/examples/Grid.css +1 -1
  218. package/docs/layouts/Grid/examples/Grid.md +6 -5
  219. package/docs/layouts/Level/examples/Level.css +3 -3
  220. package/docs/layouts/Level/examples/Level.md +2 -1
  221. package/docs/layouts/Split/examples/Split.css +1 -1
  222. package/docs/layouts/Split/examples/Split.md +2 -1
  223. package/docs/layouts/Stack/examples/Stack.css +3 -3
  224. package/docs/layouts/Stack/examples/Stack.md +2 -1
  225. package/docs/utilities/Accessibility/examples/Accessibility.md +3 -2
  226. package/docs/utilities/Alignment/examples/Alignment.css +4 -4
  227. package/docs/utilities/Alignment/examples/Alignment.md +3 -2
  228. package/docs/utilities/BackgroundColor/examples/BackgroundColor.md +5 -4
  229. package/docs/utilities/BoxShadow/examples/box-shadow.css +2 -2
  230. package/docs/utilities/BoxShadow/examples/box-shadow.md +2 -1
  231. package/docs/utilities/Display/examples/Display.css +1 -1
  232. package/docs/utilities/Display/examples/Display.md +3 -2
  233. package/docs/utilities/Flex/examples/Flex.css +7 -7
  234. package/docs/utilities/Flex/examples/Flex.md +3 -2
  235. package/docs/utilities/Float/examples/Float.css +2 -2
  236. package/docs/utilities/Float/examples/Float.md +3 -2
  237. package/docs/utilities/Sizing/examples/Sizing.md +8 -7
  238. package/docs/utilities/Spacing/examples/Spacing.css +2 -2
  239. package/docs/utilities/Spacing/examples/Spacing.md +3 -2
  240. package/docs/utilities/Text/examples/Text.md +5 -4
  241. package/icons/PfIcons/add-circle-o.svg +4 -0
  242. package/icons/PfIcons/ansible-tower.svg +4 -0
  243. package/icons/PfIcons/applications.svg +4 -0
  244. package/icons/PfIcons/arrow.svg +4 -0
  245. package/icons/PfIcons/asleep.svg +4 -0
  246. package/icons/PfIcons/attention-bell.svg +4 -0
  247. package/icons/PfIcons/automation.svg +4 -0
  248. package/icons/PfIcons/bell.svg +4 -0
  249. package/icons/PfIcons/blueprint.svg +4 -0
  250. package/icons/PfIcons/build.svg +4 -0
  251. package/icons/PfIcons/builder-image.svg +4 -0
  252. package/icons/PfIcons/bundle.svg +4 -0
  253. package/icons/PfIcons/catalog.svg +4 -0
  254. package/icons/PfIcons/chat.svg +4 -0
  255. package/icons/PfIcons/close.svg +4 -0
  256. package/icons/PfIcons/cloud-security.svg +4 -0
  257. package/icons/PfIcons/cloud-tenant.svg +4 -0
  258. package/icons/PfIcons/cluster.svg +4 -0
  259. package/icons/PfIcons/connected.svg +4 -0
  260. package/icons/PfIcons/container-node.svg +4 -0
  261. package/icons/PfIcons/cpu.svg +4 -0
  262. package/icons/PfIcons/critical-risk.svg +4 -0
  263. package/icons/PfIcons/data-processor.svg +4 -0
  264. package/icons/PfIcons/data-sink.svg +4 -0
  265. package/icons/PfIcons/data-source.svg +4 -0
  266. package/icons/PfIcons/degraded.svg +4 -0
  267. package/icons/PfIcons/disconnected.svg +4 -0
  268. package/icons/PfIcons/domain.svg +4 -0
  269. package/icons/PfIcons/edit.svg +4 -0
  270. package/icons/PfIcons/enhancement.svg +4 -0
  271. package/icons/PfIcons/enterprise.svg +4 -0
  272. package/icons/PfIcons/equalizer.svg +4 -0
  273. package/icons/PfIcons/error-circle-o.svg +4 -0
  274. package/icons/PfIcons/export.svg +4 -0
  275. package/icons/PfIcons/filter.svg +4 -0
  276. package/icons/PfIcons/flavor.svg +4 -0
  277. package/icons/PfIcons/folder-close.svg +4 -0
  278. package/icons/PfIcons/folder-open.svg +4 -0
  279. package/icons/PfIcons/globe-route.svg +4 -0
  280. package/icons/PfIcons/help.svg +4 -0
  281. package/icons/PfIcons/history.svg +4 -0
  282. package/icons/PfIcons/home.svg +4 -0
  283. package/icons/PfIcons/import.svg +4 -0
  284. package/icons/PfIcons/in-progress.svg +4 -0
  285. package/icons/PfIcons/info.svg +4 -0
  286. package/icons/PfIcons/infrastructure.svg +4 -0
  287. package/icons/PfIcons/integration.svg +4 -0
  288. package/icons/PfIcons/key.svg +4 -0
  289. package/icons/PfIcons/locked.svg +4 -0
  290. package/icons/PfIcons/maintenance.svg +4 -0
  291. package/icons/PfIcons/memory.svg +4 -0
  292. package/icons/PfIcons/messages.svg +4 -0
  293. package/icons/PfIcons/middleware.svg +4 -0
  294. package/icons/PfIcons/migration.svg +4 -0
  295. package/icons/PfIcons/module.svg +4 -0
  296. package/icons/PfIcons/monitoring.svg +4 -0
  297. package/icons/PfIcons/multicluster.svg +4 -0
  298. package/icons/PfIcons/namespaces.svg +4 -0
  299. package/icons/PfIcons/network.svg +4 -0
  300. package/icons/PfIcons/new-process.svg +4 -0
  301. package/icons/PfIcons/not-started.svg +4 -0
  302. package/icons/PfIcons/off.svg +4 -0
  303. package/icons/PfIcons/ok.svg +4 -0
  304. package/icons/PfIcons/on-running.svg +4 -0
  305. package/icons/PfIcons/on.svg +4 -0
  306. package/icons/PfIcons/open-drawer-right.svg +4 -0
  307. package/icons/PfIcons/openshift.svg +4 -0
  308. package/icons/PfIcons/openstack.svg +4 -0
  309. package/icons/PfIcons/optimize.svg +4 -0
  310. package/icons/PfIcons/orders.svg +4 -0
  311. package/icons/PfIcons/os-image.svg +4 -0
  312. package/icons/PfIcons/package.svg +4 -0
  313. package/icons/PfIcons/panel-close.svg +4 -0
  314. package/icons/PfIcons/panel-open.svg +4 -0
  315. package/icons/PfIcons/paused.svg +4 -0
  316. package/icons/PfIcons/pending.svg +4 -0
  317. package/icons/PfIcons/pficon-dragdrop.svg +4 -0
  318. package/icons/PfIcons/pficon-history.svg +4 -0
  319. package/icons/PfIcons/pficon-network-range.svg +4 -0
  320. package/icons/PfIcons/pficon-satellite.svg +4 -0
  321. package/icons/PfIcons/pficon-sort-common-asc.svg +4 -0
  322. package/icons/PfIcons/pficon-sort-common-desc.svg +4 -0
  323. package/icons/PfIcons/pficon-template.svg +4 -0
  324. package/icons/PfIcons/pficon-vcenter.svg +4 -0
  325. package/icons/PfIcons/plugged.svg +4 -0
  326. package/icons/PfIcons/port.svg +4 -0
  327. package/icons/PfIcons/print.svg +4 -0
  328. package/icons/PfIcons/private.svg +4 -0
  329. package/icons/PfIcons/process-automation.svg +4 -0
  330. package/icons/PfIcons/project.svg +4 -0
  331. package/icons/PfIcons/rebalance.svg +4 -0
  332. package/icons/PfIcons/rebooting.svg +4 -0
  333. package/icons/PfIcons/regions.svg +4 -0
  334. package/icons/PfIcons/registry.svg +4 -0
  335. package/icons/PfIcons/remove2.svg +4 -0
  336. package/icons/PfIcons/replicator.svg +4 -0
  337. package/icons/PfIcons/repository.svg +4 -0
  338. package/icons/PfIcons/resource-pool.svg +4 -0
  339. package/icons/PfIcons/resources-almost-empty.svg +4 -0
  340. package/icons/PfIcons/resources-almost-full.svg +4 -0
  341. package/icons/PfIcons/resources-empty.svg +4 -0
  342. package/icons/PfIcons/resources-full.svg +4 -0
  343. package/icons/PfIcons/running.svg +4 -0
  344. package/icons/PfIcons/save.svg +4 -0
  345. package/icons/PfIcons/screen.svg +4 -0
  346. package/icons/PfIcons/security.svg +4 -0
  347. package/icons/PfIcons/server-group.svg +4 -0
  348. package/icons/PfIcons/server.svg +4 -0
  349. package/icons/PfIcons/service-catalog.svg +4 -0
  350. package/icons/PfIcons/service.svg +4 -0
  351. package/icons/PfIcons/services.svg +4 -0
  352. package/icons/PfIcons/severity-critical.svg +4 -0
  353. package/icons/PfIcons/severity-important.svg +4 -0
  354. package/icons/PfIcons/severity-minor.svg +4 -0
  355. package/icons/PfIcons/severity-moderate.svg +4 -0
  356. package/icons/PfIcons/severity-none.svg +4 -0
  357. package/icons/PfIcons/severity-undefined.svg +4 -0
  358. package/icons/PfIcons/spinner.svg +4 -0
  359. package/icons/PfIcons/spinner2.svg +4 -0
  360. package/icons/PfIcons/storage-domain.svg +4 -0
  361. package/icons/PfIcons/task.svg +4 -0
  362. package/icons/PfIcons/tenant.svg +4 -0
  363. package/icons/PfIcons/thumb-tack.svg +4 -0
  364. package/icons/PfIcons/topology.svg +4 -0
  365. package/icons/PfIcons/treeview.svg +4 -0
  366. package/icons/PfIcons/trend-down.svg +4 -0
  367. package/icons/PfIcons/trend-up.svg +4 -0
  368. package/icons/PfIcons/unknown.svg +4 -0
  369. package/icons/PfIcons/unlocked.svg +4 -0
  370. package/icons/PfIcons/unplugged.svg +4 -0
  371. package/icons/PfIcons/user.svg +4 -0
  372. package/icons/PfIcons/users.svg +4 -0
  373. package/icons/PfIcons/virtual-machine.svg +4 -0
  374. package/icons/PfIcons/volume.svg +4 -0
  375. package/icons/PfIcons/warning-triangle.svg +4 -0
  376. package/icons/PfIcons/zone.svg +4 -0
  377. package/layouts/Flex/flex.scss +83 -19
  378. package/layouts/Gallery/gallery.css +6 -2
  379. package/layouts/_index.css +6 -2
  380. package/package.json +34 -16
  381. package/patternfly-base-no-globals.css +965 -491
  382. package/patternfly-base.css +972 -491
  383. package/patternfly-charts.css +3 -3
  384. package/patternfly-no-globals.css +2801 -1070
  385. package/patternfly.css +2808 -1070
  386. package/patternfly.min.css +1 -1
  387. package/patternfly.min.css.map +1 -1
  388. package/patternfly.scss +27 -0
  389. package/sass-utilities/functions.scss +32 -25
  390. package/sass-utilities/mixins.scss +36 -20
  391. package/sass-utilities/namespaces-components.scss +6 -0
  392. package/sass-utilities/scss-variables.scss +3 -0
@@ -14,8 +14,8 @@ Toolbar relies on groups (`.pf-v6-c-toolbar__group`) and items (`.pf-v6-c-toolba
14
14
  | -- | -- | -- |
15
15
  | `.pf-v6-c-toolbar__group` | `--pf-v6-c-toolbar__group--ColumnGap` | `16px` |
16
16
  | `.pf-v6-c-toolbar__item` | `--pf-v6-c-toolbar__item--ColumnGap` | `16px` |
17
- | `.pf-m-[column/row]-gap-[none/sm/md/lg/xl/2xl]{-on-[breakpoint]}` | `.pf-v6-c-toolbar__content-section`, `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies toolbar group or item spacing at optional [breakpoint](/tokens/all-patternfly-tokens). |
18
- | `.pf-m-gap-[none/sm/md/lg/xl/2xl]{-on-[breakpoint]}` | `.pf-v6-c-toolbar__content-section`, `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies both column gap and row gap for toolbar group or item spacing at optional [breakpoint](/tokens/all-patternfly-tokens). |
17
+ | `.pf-m-[column/row]-gap-[none/sm/md/lg/xl/2xl]{-on-[breakpoint]}` | `.pf-v6-c-toolbar__content-section`, `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies toolbar group or item spacing at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |
18
+ | `.pf-m-gap-[none/sm/md/lg/xl/2xl]{-on-[breakpoint]}` | `.pf-v6-c-toolbar__content-section`, `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies both column gap and row gap for toolbar group or item spacing at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |
19
19
 
20
20
  ### Toolbar item types
21
21
 
@@ -37,7 +37,7 @@ Toolbar relies on groups (`.pf-v6-c-toolbar__group`) and items (`.pf-v6-c-toolba
37
37
 
38
38
  Several components in the following examples do not include functional and/or accessibility specifications (for example `.pf-v6-c-select`, `.pf-v6-c-options-menu`). Rather, `.pf-v6-c-toolbar` focuses on functionality and accessibility specifications that apply to it only.
39
39
 
40
- **Available [breakpoints](/tokens/all-patternfly-tokens) are: `-on-sm`, `-on-md`, `-on-lg`, `-on-xl`, and `-on-2xl`.**
40
+ **Available [breakpoints](/foundations-and-styles/design-tokens/all-design-tokens) are: `-on-sm`, `-on-md`, `-on-lg`, `-on-xl`, and `-on-2xl`.**
41
41
 
42
42
  ## Examples
43
43
 
@@ -181,8 +181,8 @@ Several components in the following examples do not include functional and/or ac
181
181
 
182
182
  | Class | Applied to | Outcome |
183
183
  | -- | -- | -- |
184
- | `--pf-v6-c-toolbar__item--Width: {width}` | `.pf-v6-c-toolbar__item` | Modifies the width value of a toolbar item at optional [breakpoint](/tokens/all-patternfly-tokens). |
185
- | `--pf-v6-c-toolbar__item--MinWidth: {width}` | `.pf-v6-c-toolbar__item` | Modifies the min width value of a toolbar item at optional [breakpoint](/tokens/all-patternfly-tokens). |
184
+ | `--pf-v6-c-toolbar__item--Width: {width}` | `.pf-v6-c-toolbar__item` | Modifies the width value of a toolbar item at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |
185
+ | `--pf-v6-c-toolbar__item--MinWidth: {width}` | `.pf-v6-c-toolbar__item` | Modifies the min width value of a toolbar item at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |
186
186
 
187
187
  ## Group types
188
188
 
@@ -328,7 +328,19 @@ Several components in the following examples do not include functional and/or ac
328
328
  aria-label="Column view"
329
329
  >
330
330
  <span class="pf-v6-c-button__icon">
331
- <i class="fas fa-columns" aria-hidden="true"></i>
331
+ <svg
332
+ class="pf-v6-svg"
333
+ viewBox="0 0 512 512"
334
+ fill="currentColor"
335
+ aria-hidden="true"
336
+ role="img"
337
+ width="1em"
338
+ height="1em"
339
+ >
340
+ <path
341
+ d="M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"
342
+ />
343
+ </svg>
332
344
  </span>
333
345
  </button>
334
346
  </div>
@@ -339,7 +351,19 @@ Several components in the following examples do not include functional and/or ac
339
351
  aria-label="Expand"
340
352
  >
341
353
  <span class="pf-v6-c-button__icon">
342
- <i class="fas fa-expand" aria-hidden="true"></i>
354
+ <svg
355
+ class="pf-v6-svg"
356
+ viewBox="0 0 448 512"
357
+ fill="currentColor"
358
+ aria-hidden="true"
359
+ role="img"
360
+ width="1em"
361
+ height="1em"
362
+ >
363
+ <path
364
+ d="M0 180V56c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H64v84c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM288 44v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12V56c0-13.3-10.7-24-24-24H300c-6.6 0-12 5.4-12 12zm148 276h-40c-6.6 0-12 5.4-12 12v84h-84c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V332c0-6.6-5.4-12-12-12zM160 468v-40c0-6.6-5.4-12-12-12H64v-84c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z"
365
+ />
366
+ </svg>
343
367
  </span>
344
368
  </button>
345
369
  </div>
@@ -350,7 +374,19 @@ Several components in the following examples do not include functional and/or ac
350
374
  aria-label="Settings"
351
375
  >
352
376
  <span class="pf-v6-c-button__icon">
353
- <i class="fas fa-cog" aria-hidden="true"></i>
377
+ <svg
378
+ class="pf-v6-svg"
379
+ viewBox="0 0 512 512"
380
+ fill="currentColor"
381
+ aria-hidden="true"
382
+ role="img"
383
+ width="1em"
384
+ height="1em"
385
+ >
386
+ <path
387
+ d="M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"
388
+ />
389
+ </svg>
354
390
  </span>
355
391
  </button>
356
392
  </div>
@@ -419,7 +455,19 @@ Several components in the following examples do not include functional and/or ac
419
455
  id="toolbar-group-label-group-label-group-statusremove-label-one"
420
456
  >
421
457
  <span class="pf-v6-c-button__icon">
422
- <i class="fas fa-times" aria-hidden="true"></i>
458
+ <svg
459
+ class="pf-v6-svg"
460
+ viewBox="0 0 20 20"
461
+ fill="currentColor"
462
+ aria-hidden="true"
463
+ role="img"
464
+ width="1em"
465
+ height="1em"
466
+ >
467
+ <path
468
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
469
+ />
470
+ </svg>
423
471
  </span>
424
472
  </button>
425
473
  </span>
@@ -444,7 +492,19 @@ Several components in the following examples do not include functional and/or ac
444
492
  id="toolbar-group-label-group-label-group-statusremove-label-two"
445
493
  >
446
494
  <span class="pf-v6-c-button__icon">
447
- <i class="fas fa-times" aria-hidden="true"></i>
495
+ <svg
496
+ class="pf-v6-svg"
497
+ viewBox="0 0 20 20"
498
+ fill="currentColor"
499
+ aria-hidden="true"
500
+ role="img"
501
+ width="1em"
502
+ height="1em"
503
+ >
504
+ <path
505
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
506
+ />
507
+ </svg>
448
508
  </span>
449
509
  </button>
450
510
  </span>
@@ -469,7 +529,19 @@ Several components in the following examples do not include functional and/or ac
469
529
  id="toolbar-group-label-group-label-group-statusremove-label-three"
470
530
  >
471
531
  <span class="pf-v6-c-button__icon">
472
- <i class="fas fa-times" aria-hidden="true"></i>
532
+ <svg
533
+ class="pf-v6-svg"
534
+ viewBox="0 0 20 20"
535
+ fill="currentColor"
536
+ aria-hidden="true"
537
+ role="img"
538
+ width="1em"
539
+ height="1em"
540
+ >
541
+ <path
542
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
543
+ />
544
+ </svg>
473
545
  </span>
474
546
  </button>
475
547
  </span>
@@ -511,7 +583,19 @@ Several components in the following examples do not include functional and/or ac
511
583
  id="toolbar-group-label-group-label-group-riskremove-label-one"
512
584
  >
513
585
  <span class="pf-v6-c-button__icon">
514
- <i class="fas fa-times" aria-hidden="true"></i>
586
+ <svg
587
+ class="pf-v6-svg"
588
+ viewBox="0 0 20 20"
589
+ fill="currentColor"
590
+ aria-hidden="true"
591
+ role="img"
592
+ width="1em"
593
+ height="1em"
594
+ >
595
+ <path
596
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
597
+ />
598
+ </svg>
515
599
  </span>
516
600
  </button>
517
601
  </span>
@@ -536,7 +620,19 @@ Several components in the following examples do not include functional and/or ac
536
620
  id="toolbar-group-label-group-label-group-riskremove-label-two"
537
621
  >
538
622
  <span class="pf-v6-c-button__icon">
539
- <i class="fas fa-times" aria-hidden="true"></i>
623
+ <svg
624
+ class="pf-v6-svg"
625
+ viewBox="0 0 20 20"
626
+ fill="currentColor"
627
+ aria-hidden="true"
628
+ role="img"
629
+ width="1em"
630
+ height="1em"
631
+ >
632
+ <path
633
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
634
+ />
635
+ </svg>
540
636
  </span>
541
637
  </button>
542
638
  </span>
@@ -561,7 +657,19 @@ Several components in the following examples do not include functional and/or ac
561
657
  id="toolbar-group-label-group-label-group-riskremove-label-three"
562
658
  >
563
659
  <span class="pf-v6-c-button__icon">
564
- <i class="fas fa-times" aria-hidden="true"></i>
660
+ <svg
661
+ class="pf-v6-svg"
662
+ viewBox="0 0 20 20"
663
+ fill="currentColor"
664
+ aria-hidden="true"
665
+ role="img"
666
+ width="1em"
667
+ height="1em"
668
+ >
669
+ <path
670
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
671
+ />
672
+ </svg>
565
673
  </span>
566
674
  </button>
567
675
  </span>
@@ -1396,7 +1504,19 @@ Several components in the following examples do not include functional and/or ac
1396
1504
  id="toolbar-selected-filters-toggle-group-expanded-example-label-group-statusremove-label-one"
1397
1505
  >
1398
1506
  <span class="pf-v6-c-button__icon">
1399
- <i class="fas fa-times" aria-hidden="true"></i>
1507
+ <svg
1508
+ class="pf-v6-svg"
1509
+ viewBox="0 0 20 20"
1510
+ fill="currentColor"
1511
+ aria-hidden="true"
1512
+ role="img"
1513
+ width="1em"
1514
+ height="1em"
1515
+ >
1516
+ <path
1517
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1518
+ />
1519
+ </svg>
1400
1520
  </span>
1401
1521
  </button>
1402
1522
  </span>
@@ -1421,7 +1541,19 @@ Several components in the following examples do not include functional and/or ac
1421
1541
  id="toolbar-selected-filters-toggle-group-expanded-example-label-group-statusremove-label-two"
1422
1542
  >
1423
1543
  <span class="pf-v6-c-button__icon">
1424
- <i class="fas fa-times" aria-hidden="true"></i>
1544
+ <svg
1545
+ class="pf-v6-svg"
1546
+ viewBox="0 0 20 20"
1547
+ fill="currentColor"
1548
+ aria-hidden="true"
1549
+ role="img"
1550
+ width="1em"
1551
+ height="1em"
1552
+ >
1553
+ <path
1554
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1555
+ />
1556
+ </svg>
1425
1557
  </span>
1426
1558
  </button>
1427
1559
  </span>
@@ -1446,7 +1578,19 @@ Several components in the following examples do not include functional and/or ac
1446
1578
  id="toolbar-selected-filters-toggle-group-expanded-example-label-group-statusremove-label-three"
1447
1579
  >
1448
1580
  <span class="pf-v6-c-button__icon">
1449
- <i class="fas fa-times" aria-hidden="true"></i>
1581
+ <svg
1582
+ class="pf-v6-svg"
1583
+ viewBox="0 0 20 20"
1584
+ fill="currentColor"
1585
+ aria-hidden="true"
1586
+ role="img"
1587
+ width="1em"
1588
+ height="1em"
1589
+ >
1590
+ <path
1591
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1592
+ />
1593
+ </svg>
1450
1594
  </span>
1451
1595
  </button>
1452
1596
  </span>
@@ -1488,7 +1632,19 @@ Several components in the following examples do not include functional and/or ac
1488
1632
  id="toolbar-selected-filters-toggle-group-expanded-example-label-group-riskremove-label-one"
1489
1633
  >
1490
1634
  <span class="pf-v6-c-button__icon">
1491
- <i class="fas fa-times" aria-hidden="true"></i>
1635
+ <svg
1636
+ class="pf-v6-svg"
1637
+ viewBox="0 0 20 20"
1638
+ fill="currentColor"
1639
+ aria-hidden="true"
1640
+ role="img"
1641
+ width="1em"
1642
+ height="1em"
1643
+ >
1644
+ <path
1645
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1646
+ />
1647
+ </svg>
1492
1648
  </span>
1493
1649
  </button>
1494
1650
  </span>
@@ -1513,7 +1669,19 @@ Several components in the following examples do not include functional and/or ac
1513
1669
  id="toolbar-selected-filters-toggle-group-expanded-example-label-group-riskremove-label-two"
1514
1670
  >
1515
1671
  <span class="pf-v6-c-button__icon">
1516
- <i class="fas fa-times" aria-hidden="true"></i>
1672
+ <svg
1673
+ class="pf-v6-svg"
1674
+ viewBox="0 0 20 20"
1675
+ fill="currentColor"
1676
+ aria-hidden="true"
1677
+ role="img"
1678
+ width="1em"
1679
+ height="1em"
1680
+ >
1681
+ <path
1682
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1683
+ />
1684
+ </svg>
1517
1685
  </span>
1518
1686
  </button>
1519
1687
  </span>
@@ -1538,7 +1706,19 @@ Several components in the following examples do not include functional and/or ac
1538
1706
  id="toolbar-selected-filters-toggle-group-expanded-example-label-group-riskremove-label-three"
1539
1707
  >
1540
1708
  <span class="pf-v6-c-button__icon">
1541
- <i class="fas fa-times" aria-hidden="true"></i>
1709
+ <svg
1710
+ class="pf-v6-svg"
1711
+ viewBox="0 0 20 20"
1712
+ fill="currentColor"
1713
+ aria-hidden="true"
1714
+ role="img"
1715
+ width="1em"
1716
+ height="1em"
1717
+ >
1718
+ <path
1719
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1720
+ />
1721
+ </svg>
1542
1722
  </span>
1543
1723
  </button>
1544
1724
  </span>
@@ -1713,7 +1893,19 @@ Several components in the following examples do not include functional and/or ac
1713
1893
  id="toolbar-selected-filters-example-label-group-statusremove-label-one"
1714
1894
  >
1715
1895
  <span class="pf-v6-c-button__icon">
1716
- <i class="fas fa-times" aria-hidden="true"></i>
1896
+ <svg
1897
+ class="pf-v6-svg"
1898
+ viewBox="0 0 20 20"
1899
+ fill="currentColor"
1900
+ aria-hidden="true"
1901
+ role="img"
1902
+ width="1em"
1903
+ height="1em"
1904
+ >
1905
+ <path
1906
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1907
+ />
1908
+ </svg>
1717
1909
  </span>
1718
1910
  </button>
1719
1911
  </span>
@@ -1738,7 +1930,19 @@ Several components in the following examples do not include functional and/or ac
1738
1930
  id="toolbar-selected-filters-example-label-group-statusremove-label-two"
1739
1931
  >
1740
1932
  <span class="pf-v6-c-button__icon">
1741
- <i class="fas fa-times" aria-hidden="true"></i>
1933
+ <svg
1934
+ class="pf-v6-svg"
1935
+ viewBox="0 0 20 20"
1936
+ fill="currentColor"
1937
+ aria-hidden="true"
1938
+ role="img"
1939
+ width="1em"
1940
+ height="1em"
1941
+ >
1942
+ <path
1943
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1944
+ />
1945
+ </svg>
1742
1946
  </span>
1743
1947
  </button>
1744
1948
  </span>
@@ -1763,7 +1967,19 @@ Several components in the following examples do not include functional and/or ac
1763
1967
  id="toolbar-selected-filters-example-label-group-statusremove-label-three"
1764
1968
  >
1765
1969
  <span class="pf-v6-c-button__icon">
1766
- <i class="fas fa-times" aria-hidden="true"></i>
1970
+ <svg
1971
+ class="pf-v6-svg"
1972
+ viewBox="0 0 20 20"
1973
+ fill="currentColor"
1974
+ aria-hidden="true"
1975
+ role="img"
1976
+ width="1em"
1977
+ height="1em"
1978
+ >
1979
+ <path
1980
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1981
+ />
1982
+ </svg>
1767
1983
  </span>
1768
1984
  </button>
1769
1985
  </span>
@@ -1805,7 +2021,19 @@ Several components in the following examples do not include functional and/or ac
1805
2021
  id="toolbar-selected-filters-example-label-group-riskremove-label-one"
1806
2022
  >
1807
2023
  <span class="pf-v6-c-button__icon">
1808
- <i class="fas fa-times" aria-hidden="true"></i>
2024
+ <svg
2025
+ class="pf-v6-svg"
2026
+ viewBox="0 0 20 20"
2027
+ fill="currentColor"
2028
+ aria-hidden="true"
2029
+ role="img"
2030
+ width="1em"
2031
+ height="1em"
2032
+ >
2033
+ <path
2034
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2035
+ />
2036
+ </svg>
1809
2037
  </span>
1810
2038
  </button>
1811
2039
  </span>
@@ -1830,7 +2058,19 @@ Several components in the following examples do not include functional and/or ac
1830
2058
  id="toolbar-selected-filters-example-label-group-riskremove-label-two"
1831
2059
  >
1832
2060
  <span class="pf-v6-c-button__icon">
1833
- <i class="fas fa-times" aria-hidden="true"></i>
2061
+ <svg
2062
+ class="pf-v6-svg"
2063
+ viewBox="0 0 20 20"
2064
+ fill="currentColor"
2065
+ aria-hidden="true"
2066
+ role="img"
2067
+ width="1em"
2068
+ height="1em"
2069
+ >
2070
+ <path
2071
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2072
+ />
2073
+ </svg>
1834
2074
  </span>
1835
2075
  </button>
1836
2076
  </span>
@@ -1855,7 +2095,19 @@ Several components in the following examples do not include functional and/or ac
1855
2095
  id="toolbar-selected-filters-example-label-group-riskremove-label-three"
1856
2096
  >
1857
2097
  <span class="pf-v6-c-button__icon">
1858
- <i class="fas fa-times" aria-hidden="true"></i>
2098
+ <svg
2099
+ class="pf-v6-svg"
2100
+ viewBox="0 0 20 20"
2101
+ fill="currentColor"
2102
+ aria-hidden="true"
2103
+ role="img"
2104
+ width="1em"
2105
+ height="1em"
2106
+ >
2107
+ <path
2108
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2109
+ />
2110
+ </svg>
1859
2111
  </span>
1860
2112
  </button>
1861
2113
  </span>
@@ -1975,7 +2227,6 @@ Several components in the following examples do not include functional and/or ac
1975
2227
  class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
1976
2228
  type="button"
1977
2229
  aria-expanded="false"
1978
- aria-label="Menu toggle"
1979
2230
  id="toolbar-stacked-example-pagination-menu-toggle"
1980
2231
  >
1981
2232
  <span class="pf-v6-c-menu-toggle__text">
@@ -1999,7 +2250,19 @@ Several components in the following examples do not include functional and/or ac
1999
2250
  disabled
2000
2251
  >
2001
2252
  <span class="pf-v6-c-button__icon">
2002
- <i class="fas fa-angle-double-left" aria-hidden="true"></i>
2253
+ <svg
2254
+ class="pf-v6-svg"
2255
+ viewBox="0 0 448 512"
2256
+ fill="currentColor"
2257
+ aria-hidden="true"
2258
+ role="img"
2259
+ width="1em"
2260
+ height="1em"
2261
+ >
2262
+ <path
2263
+ d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"
2264
+ />
2265
+ </svg>
2003
2266
  </span>
2004
2267
  </button>
2005
2268
  </div>
@@ -2011,7 +2274,19 @@ Several components in the following examples do not include functional and/or ac
2011
2274
  disabled
2012
2275
  >
2013
2276
  <span class="pf-v6-c-button__icon">
2014
- <i class="fas fa-angle-left" aria-hidden="true"></i>
2277
+ <svg
2278
+ class="pf-v6-svg"
2279
+ viewBox="0 0 256 512"
2280
+ fill="currentColor"
2281
+ aria-hidden="true"
2282
+ role="img"
2283
+ width="1em"
2284
+ height="1em"
2285
+ >
2286
+ <path
2287
+ d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"
2288
+ />
2289
+ </svg>
2015
2290
  </span>
2016
2291
  </button>
2017
2292
  </div>
@@ -2038,7 +2313,19 @@ Several components in the following examples do not include functional and/or ac
2038
2313
  aria-label="Go to next page"
2039
2314
  >
2040
2315
  <span class="pf-v6-c-button__icon">
2041
- <i class="fas fa-angle-right" aria-hidden="true"></i>
2316
+ <svg
2317
+ class="pf-v6-svg"
2318
+ viewBox="0 0 256 512"
2319
+ fill="currentColor"
2320
+ aria-hidden="true"
2321
+ role="img"
2322
+ width="1em"
2323
+ height="1em"
2324
+ >
2325
+ <path
2326
+ d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"
2327
+ />
2328
+ </svg>
2042
2329
  </span>
2043
2330
  </button>
2044
2331
  </div>
@@ -2049,7 +2336,19 @@ Several components in the following examples do not include functional and/or ac
2049
2336
  aria-label="Go to last page"
2050
2337
  >
2051
2338
  <span class="pf-v6-c-button__icon">
2052
- <i class="fas fa-angle-double-right" aria-hidden="true"></i>
2339
+ <svg
2340
+ class="pf-v6-svg"
2341
+ viewBox="0 0 448 512"
2342
+ fill="currentColor"
2343
+ aria-hidden="true"
2344
+ role="img"
2345
+ width="1em"
2346
+ height="1em"
2347
+ >
2348
+ <path
2349
+ d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"
2350
+ />
2351
+ </svg>
2053
2352
  </span>
2054
2353
  </button>
2055
2354
  </div>
@@ -2196,7 +2495,19 @@ Several components in the following examples do not include functional and/or ac
2196
2495
  id="toolbar-stacked-collapsed-example-label-group-statusremove-label-one"
2197
2496
  >
2198
2497
  <span class="pf-v6-c-button__icon">
2199
- <i class="fas fa-times" aria-hidden="true"></i>
2498
+ <svg
2499
+ class="pf-v6-svg"
2500
+ viewBox="0 0 20 20"
2501
+ fill="currentColor"
2502
+ aria-hidden="true"
2503
+ role="img"
2504
+ width="1em"
2505
+ height="1em"
2506
+ >
2507
+ <path
2508
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2509
+ />
2510
+ </svg>
2200
2511
  </span>
2201
2512
  </button>
2202
2513
  </span>
@@ -2221,7 +2532,19 @@ Several components in the following examples do not include functional and/or ac
2221
2532
  id="toolbar-stacked-collapsed-example-label-group-statusremove-label-two"
2222
2533
  >
2223
2534
  <span class="pf-v6-c-button__icon">
2224
- <i class="fas fa-times" aria-hidden="true"></i>
2535
+ <svg
2536
+ class="pf-v6-svg"
2537
+ viewBox="0 0 20 20"
2538
+ fill="currentColor"
2539
+ aria-hidden="true"
2540
+ role="img"
2541
+ width="1em"
2542
+ height="1em"
2543
+ >
2544
+ <path
2545
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2546
+ />
2547
+ </svg>
2225
2548
  </span>
2226
2549
  </button>
2227
2550
  </span>
@@ -2246,7 +2569,19 @@ Several components in the following examples do not include functional and/or ac
2246
2569
  id="toolbar-stacked-collapsed-example-label-group-statusremove-label-three"
2247
2570
  >
2248
2571
  <span class="pf-v6-c-button__icon">
2249
- <i class="fas fa-times" aria-hidden="true"></i>
2572
+ <svg
2573
+ class="pf-v6-svg"
2574
+ viewBox="0 0 20 20"
2575
+ fill="currentColor"
2576
+ aria-hidden="true"
2577
+ role="img"
2578
+ width="1em"
2579
+ height="1em"
2580
+ >
2581
+ <path
2582
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2583
+ />
2584
+ </svg>
2250
2585
  </span>
2251
2586
  </button>
2252
2587
  </span>
@@ -2288,7 +2623,19 @@ Several components in the following examples do not include functional and/or ac
2288
2623
  id="toolbar-stacked-collapsed-example-label-group-riskremove-label-one"
2289
2624
  >
2290
2625
  <span class="pf-v6-c-button__icon">
2291
- <i class="fas fa-times" aria-hidden="true"></i>
2626
+ <svg
2627
+ class="pf-v6-svg"
2628
+ viewBox="0 0 20 20"
2629
+ fill="currentColor"
2630
+ aria-hidden="true"
2631
+ role="img"
2632
+ width="1em"
2633
+ height="1em"
2634
+ >
2635
+ <path
2636
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2637
+ />
2638
+ </svg>
2292
2639
  </span>
2293
2640
  </button>
2294
2641
  </span>
@@ -2313,7 +2660,19 @@ Several components in the following examples do not include functional and/or ac
2313
2660
  id="toolbar-stacked-collapsed-example-label-group-riskremove-label-two"
2314
2661
  >
2315
2662
  <span class="pf-v6-c-button__icon">
2316
- <i class="fas fa-times" aria-hidden="true"></i>
2663
+ <svg
2664
+ class="pf-v6-svg"
2665
+ viewBox="0 0 20 20"
2666
+ fill="currentColor"
2667
+ aria-hidden="true"
2668
+ role="img"
2669
+ width="1em"
2670
+ height="1em"
2671
+ >
2672
+ <path
2673
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2674
+ />
2675
+ </svg>
2317
2676
  </span>
2318
2677
  </button>
2319
2678
  </span>
@@ -2338,7 +2697,19 @@ Several components in the following examples do not include functional and/or ac
2338
2697
  id="toolbar-stacked-collapsed-example-label-group-riskremove-label-three"
2339
2698
  >
2340
2699
  <span class="pf-v6-c-button__icon">
2341
- <i class="fas fa-times" aria-hidden="true"></i>
2700
+ <svg
2701
+ class="pf-v6-svg"
2702
+ viewBox="0 0 20 20"
2703
+ fill="currentColor"
2704
+ aria-hidden="true"
2705
+ role="img"
2706
+ width="1em"
2707
+ height="1em"
2708
+ >
2709
+ <path
2710
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
2711
+ />
2712
+ </svg>
2342
2713
  </span>
2343
2714
  </button>
2344
2715
  </span>
@@ -2396,7 +2767,6 @@ Several components in the following examples do not include functional and/or ac
2396
2767
  class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
2397
2768
  type="button"
2398
2769
  aria-expanded="false"
2399
- aria-label="Menu toggle"
2400
2770
  id="toolbar-stacked-collapsed-example-pagination-menu-toggle"
2401
2771
  >
2402
2772
  <span class="pf-v6-c-menu-toggle__text">
@@ -2420,7 +2790,19 @@ Several components in the following examples do not include functional and/or ac
2420
2790
  disabled
2421
2791
  >
2422
2792
  <span class="pf-v6-c-button__icon">
2423
- <i class="fas fa-angle-double-left" aria-hidden="true"></i>
2793
+ <svg
2794
+ class="pf-v6-svg"
2795
+ viewBox="0 0 448 512"
2796
+ fill="currentColor"
2797
+ aria-hidden="true"
2798
+ role="img"
2799
+ width="1em"
2800
+ height="1em"
2801
+ >
2802
+ <path
2803
+ d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"
2804
+ />
2805
+ </svg>
2424
2806
  </span>
2425
2807
  </button>
2426
2808
  </div>
@@ -2432,7 +2814,19 @@ Several components in the following examples do not include functional and/or ac
2432
2814
  disabled
2433
2815
  >
2434
2816
  <span class="pf-v6-c-button__icon">
2435
- <i class="fas fa-angle-left" aria-hidden="true"></i>
2817
+ <svg
2818
+ class="pf-v6-svg"
2819
+ viewBox="0 0 256 512"
2820
+ fill="currentColor"
2821
+ aria-hidden="true"
2822
+ role="img"
2823
+ width="1em"
2824
+ height="1em"
2825
+ >
2826
+ <path
2827
+ d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"
2828
+ />
2829
+ </svg>
2436
2830
  </span>
2437
2831
  </button>
2438
2832
  </div>
@@ -2459,7 +2853,19 @@ Several components in the following examples do not include functional and/or ac
2459
2853
  aria-label="Go to next page"
2460
2854
  >
2461
2855
  <span class="pf-v6-c-button__icon">
2462
- <i class="fas fa-angle-right" aria-hidden="true"></i>
2856
+ <svg
2857
+ class="pf-v6-svg"
2858
+ viewBox="0 0 256 512"
2859
+ fill="currentColor"
2860
+ aria-hidden="true"
2861
+ role="img"
2862
+ width="1em"
2863
+ height="1em"
2864
+ >
2865
+ <path
2866
+ d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"
2867
+ />
2868
+ </svg>
2463
2869
  </span>
2464
2870
  </button>
2465
2871
  </div>
@@ -2470,7 +2876,19 @@ Several components in the following examples do not include functional and/or ac
2470
2876
  aria-label="Go to last page"
2471
2877
  >
2472
2878
  <span class="pf-v6-c-button__icon">
2473
- <i class="fas fa-angle-double-right" aria-hidden="true"></i>
2879
+ <svg
2880
+ class="pf-v6-svg"
2881
+ viewBox="0 0 448 512"
2882
+ fill="currentColor"
2883
+ aria-hidden="true"
2884
+ role="img"
2885
+ width="1em"
2886
+ height="1em"
2887
+ >
2888
+ <path
2889
+ d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"
2890
+ />
2891
+ </svg>
2474
2892
  </span>
2475
2893
  </button>
2476
2894
  </div>
@@ -2612,6 +3030,33 @@ Etiam nulla lacus, porttitor vel volutpat et, malesuada id nunc. Suspendisse por
2612
3030
 
2613
3031
  ```
2614
3032
 
3033
+ ### Vertical
3034
+
3035
+ ```html isBeta
3036
+ <div class="pf-v6-c-toolbar pf-m-vertical" id="toolbar-vertical-example">
3037
+ <div class="pf-v6-c-toolbar__content">
3038
+ <div class="pf-v6-c-toolbar__content-section">
3039
+ <div class="pf-v6-c-toolbar__item">Item</div>
3040
+ <div class="pf-v6-c-toolbar__item">Item</div>
3041
+ <div class="pf-v6-c-toolbar__item">Item</div>
3042
+ <hr class="pf-v6-c-divider" />
3043
+
3044
+ <div class="pf-v6-c-toolbar__group">
3045
+ <div class="pf-v6-c-toolbar__item">Item</div>
3046
+ <div class="pf-v6-c-toolbar__item">Item</div>
3047
+ <div class="pf-v6-c-toolbar__item">Item</div>
3048
+ </div>
3049
+
3050
+ <hr class="pf-v6-c-divider" />
3051
+ <div class="pf-v6-c-toolbar__item">Item</div>
3052
+ <div class="pf-v6-c-toolbar__item">Item</div>
3053
+ <div class="pf-v6-c-toolbar__item">Item</div>
3054
+ </div>
3055
+ </div>
3056
+ </div>
3057
+
3058
+ ```
3059
+
2615
3060
  ## Documentation
2616
3061
 
2617
3062
  ### Overview
@@ -2636,6 +3081,7 @@ As the toolbar component is a hybrid layout and component, some of its elements
2636
3081
  | `.pf-m-secondary` | `.pf-v6-c-toolbar` | Modifies toolbar to have secondary background color. |
2637
3082
  | `.pf-m-no-padding` | `.pf-v6-c-toolbar` | Modifies toolbar to have no padding. |
2638
3083
  | `.pf-m-no-background` | `.pf-v6-c-toolbar` | Modifies toolbar to have no background color. |
3084
+ | `.pf-m-vertical` | `.pf-v6-c-toolbar` | Modifies toolbar for a vertical layout. |
2639
3085
  | `.pf-m-expanded` | `.pf-v6-c-toolbar__expandable-content` | Modifies expandable content section for the expanded state. |
2640
3086
  | `.pf-m-expanded` | `.pf-v6-c-toolbar__item.pf-m-expand-all` | Modifies an expand all button for the expanded state. |
2641
3087
  | `.pf-m-action-group` | `.pf-v6-c-toolbar__group` | Initiates action group spacing. |
@@ -2674,5 +3120,5 @@ As the toolbar component is a hybrid layout and component, some of its elements
2674
3120
 
2675
3121
  | Class | Applied to | Outcome |
2676
3122
  | -- | -- | -- |
2677
- | `.pf-m-[column/row]-gap-[none/sm/md/lg/xl/2xl]` | `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies toolbar group or item spacing at optional [breakpoint](/tokens/all-patternfly-tokens). |
2678
- | `.pf-m-gap-[none/sm/md/lg/xl/2xl]` | `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies both column and row gap for toolbar group or item spacing at optional [breakpoint](/tokens/all-patternfly-tokens). |
3123
+ | `.pf-m-[column/row]-gap-[none/sm/md/lg/xl/2xl]` | `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies toolbar group or item spacing at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |
3124
+ | `.pf-m-gap-[none/sm/md/lg/xl/2xl]` | `.pf-v6-c-toolbar__group`, `.pf-v6-c-toolbar__item` | Modifies both column and row gap for toolbar group or item spacing at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |