@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
@@ -133,10 +133,11 @@ cssPrefix: pf-v6-c-table
133
133
  ### Responsive layout modifier usage
134
134
 
135
135
  These classes can be used to ensure that the table changes between the tabular and grid-based layout at an appropriate screen width.
136
+ **Note:** If a wrapping element creates an `inline-size` or `size` container with the container name `pf-v6-contain-table`, the breakpoints will apply to the container's width.
136
137
 
137
138
  | Class | Applied to | Outcome |
138
139
  | -- | -- | -- |
139
- | `.pf-m-grid-md`, `.pf-m-grid-lg`, `.pf-m-grid-xl`, `.pf-m-grid-2xl` | `.pf-v6-c-table` | Changes tabular layout to responsive, grid based layout at optional [breakpoint](/tokens/all-patternfly-tokens). |
140
+ | `.pf-m-grid-md`, `.pf-m-grid-lg`, `.pf-m-grid-xl`, `.pf-m-grid-2xl` | `.pf-v6-c-table` | Changes tabular layout to responsive, grid based layout at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |
140
141
  | `.pf-m-grid` | `.pf-v6-c-table` | Changes tabular layout to responsive, grid based layout. This approach requires JavaScript to set this class at some prescribed viewport width value. |
141
142
 
142
143
  ## Sortable
@@ -1331,7 +1332,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
1331
1332
  >
1332
1333
  <span class="pf-v6-c-button__icon">
1333
1334
  <div class="pf-v6-c-table__toggle-icon">
1334
- <i class="fas fa-angle-down" aria-hidden="true"></i>
1335
+ <svg
1336
+ class="pf-v6-svg"
1337
+ viewBox="0 0 20 20"
1338
+ fill="currentColor"
1339
+ aria-hidden="true"
1340
+ role="img"
1341
+ width="1em"
1342
+ height="1em"
1343
+ >
1344
+ <path
1345
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
1346
+ />
1347
+ </svg>
1335
1348
  </div>
1336
1349
  </span>
1337
1350
  </button>
@@ -1441,7 +1454,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
1441
1454
  >
1442
1455
  <span class="pf-v6-c-button__icon">
1443
1456
  <div class="pf-v6-c-table__toggle-icon">
1444
- <i class="fas fa-angle-down" aria-hidden="true"></i>
1457
+ <svg
1458
+ class="pf-v6-svg"
1459
+ viewBox="0 0 20 20"
1460
+ fill="currentColor"
1461
+ aria-hidden="true"
1462
+ role="img"
1463
+ width="1em"
1464
+ height="1em"
1465
+ >
1466
+ <path
1467
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
1468
+ />
1469
+ </svg>
1445
1470
  </div>
1446
1471
  </span>
1447
1472
  </button>
@@ -1537,7 +1562,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
1537
1562
  >
1538
1563
  <span class="pf-v6-c-button__icon">
1539
1564
  <div class="pf-v6-c-table__toggle-icon">
1540
- <i class="fas fa-angle-down" aria-hidden="true"></i>
1565
+ <svg
1566
+ class="pf-v6-svg"
1567
+ viewBox="0 0 20 20"
1568
+ fill="currentColor"
1569
+ aria-hidden="true"
1570
+ role="img"
1571
+ width="1em"
1572
+ height="1em"
1573
+ >
1574
+ <path
1575
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
1576
+ />
1577
+ </svg>
1541
1578
  </div>
1542
1579
  </span>
1543
1580
  </button>
@@ -1619,7 +1656,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
1619
1656
  >
1620
1657
  <span class="pf-v6-c-button__icon">
1621
1658
  <div class="pf-v6-c-table__toggle-icon">
1622
- <i class="fas fa-angle-down" aria-hidden="true"></i>
1659
+ <svg
1660
+ class="pf-v6-svg"
1661
+ viewBox="0 0 20 20"
1662
+ fill="currentColor"
1663
+ aria-hidden="true"
1664
+ role="img"
1665
+ width="1em"
1666
+ height="1em"
1667
+ >
1668
+ <path
1669
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
1670
+ />
1671
+ </svg>
1623
1672
  </div>
1624
1673
  </span>
1625
1674
  </button>
@@ -1704,7 +1753,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
1704
1753
  >
1705
1754
  <span class="pf-v6-c-button__icon">
1706
1755
  <div class="pf-v6-c-table__toggle-icon">
1707
- <i class="fas fa-angle-down" aria-hidden="true"></i>
1756
+ <svg
1757
+ class="pf-v6-svg"
1758
+ viewBox="0 0 20 20"
1759
+ fill="currentColor"
1760
+ aria-hidden="true"
1761
+ role="img"
1762
+ width="1em"
1763
+ height="1em"
1764
+ >
1765
+ <path
1766
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
1767
+ />
1768
+ </svg>
1708
1769
  </div>
1709
1770
  </span>
1710
1771
  </button>
@@ -1802,7 +1863,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
1802
1863
  >
1803
1864
  <span class="pf-v6-c-button__icon">
1804
1865
  <div class="pf-v6-c-table__toggle-icon">
1805
- <i class="fas fa-angle-down" aria-hidden="true"></i>
1866
+ <svg
1867
+ class="pf-v6-svg"
1868
+ viewBox="0 0 20 20"
1869
+ fill="currentColor"
1870
+ aria-hidden="true"
1871
+ role="img"
1872
+ width="1em"
1873
+ height="1em"
1874
+ >
1875
+ <path
1876
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
1877
+ />
1878
+ </svg>
1806
1879
  </div>
1807
1880
  </span>
1808
1881
  </button>
@@ -1912,7 +1985,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
1912
1985
  >
1913
1986
  <span class="pf-v6-c-button__icon">
1914
1987
  <div class="pf-v6-c-table__toggle-icon">
1915
- <i class="fas fa-angle-down" aria-hidden="true"></i>
1988
+ <svg
1989
+ class="pf-v6-svg"
1990
+ viewBox="0 0 20 20"
1991
+ fill="currentColor"
1992
+ aria-hidden="true"
1993
+ role="img"
1994
+ width="1em"
1995
+ height="1em"
1996
+ >
1997
+ <path
1998
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
1999
+ />
2000
+ </svg>
1916
2001
  </div>
1917
2002
  </span>
1918
2003
  </button>
@@ -2007,7 +2092,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2007
2092
  >
2008
2093
  <span class="pf-v6-c-button__icon">
2009
2094
  <div class="pf-v6-c-table__toggle-icon">
2010
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2095
+ <svg
2096
+ class="pf-v6-svg"
2097
+ viewBox="0 0 20 20"
2098
+ fill="currentColor"
2099
+ aria-hidden="true"
2100
+ role="img"
2101
+ width="1em"
2102
+ height="1em"
2103
+ >
2104
+ <path
2105
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2106
+ />
2107
+ </svg>
2011
2108
  </div>
2012
2109
  </span>
2013
2110
  </button>
@@ -2088,7 +2185,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2088
2185
  >
2089
2186
  <span class="pf-v6-c-button__icon">
2090
2187
  <div class="pf-v6-c-table__toggle-icon">
2091
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2188
+ <svg
2189
+ class="pf-v6-svg"
2190
+ viewBox="0 0 20 20"
2191
+ fill="currentColor"
2192
+ aria-hidden="true"
2193
+ role="img"
2194
+ width="1em"
2195
+ height="1em"
2196
+ >
2197
+ <path
2198
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2199
+ />
2200
+ </svg>
2092
2201
  </div>
2093
2202
  </span>
2094
2203
  </button>
@@ -2172,7 +2281,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2172
2281
  >
2173
2282
  <span class="pf-v6-c-button__icon">
2174
2283
  <div class="pf-v6-c-table__toggle-icon">
2175
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2284
+ <svg
2285
+ class="pf-v6-svg"
2286
+ viewBox="0 0 20 20"
2287
+ fill="currentColor"
2288
+ aria-hidden="true"
2289
+ role="img"
2290
+ width="1em"
2291
+ height="1em"
2292
+ >
2293
+ <path
2294
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2295
+ />
2296
+ </svg>
2176
2297
  </div>
2177
2298
  </span>
2178
2299
  </button>
@@ -2270,7 +2391,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2270
2391
  >
2271
2392
  <span class="pf-v6-c-button__icon">
2272
2393
  <div class="pf-v6-c-table__toggle-icon">
2273
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2394
+ <svg
2395
+ class="pf-v6-svg"
2396
+ viewBox="0 0 20 20"
2397
+ fill="currentColor"
2398
+ aria-hidden="true"
2399
+ role="img"
2400
+ width="1em"
2401
+ height="1em"
2402
+ >
2403
+ <path
2404
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2405
+ />
2406
+ </svg>
2274
2407
  </div>
2275
2408
  </span>
2276
2409
  </button>
@@ -2378,7 +2511,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2378
2511
  >
2379
2512
  <span class="pf-v6-c-button__icon">
2380
2513
  <div class="pf-v6-c-table__toggle-icon">
2381
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2514
+ <svg
2515
+ class="pf-v6-svg"
2516
+ viewBox="0 0 20 20"
2517
+ fill="currentColor"
2518
+ aria-hidden="true"
2519
+ role="img"
2520
+ width="1em"
2521
+ height="1em"
2522
+ >
2523
+ <path
2524
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2525
+ />
2526
+ </svg>
2382
2527
  </div>
2383
2528
  </span>
2384
2529
  </button>
@@ -2471,7 +2616,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2471
2616
  >
2472
2617
  <span class="pf-v6-c-button__icon">
2473
2618
  <div class="pf-v6-c-table__toggle-icon">
2474
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2619
+ <svg
2620
+ class="pf-v6-svg"
2621
+ viewBox="0 0 20 20"
2622
+ fill="currentColor"
2623
+ aria-hidden="true"
2624
+ role="img"
2625
+ width="1em"
2626
+ height="1em"
2627
+ >
2628
+ <path
2629
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2630
+ />
2631
+ </svg>
2475
2632
  </div>
2476
2633
  </span>
2477
2634
  </button>
@@ -2565,7 +2722,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2565
2722
  >
2566
2723
  <span class="pf-v6-c-button__icon">
2567
2724
  <div class="pf-v6-c-table__toggle-icon">
2568
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2725
+ <svg
2726
+ class="pf-v6-svg"
2727
+ viewBox="0 0 20 20"
2728
+ fill="currentColor"
2729
+ aria-hidden="true"
2730
+ role="img"
2731
+ width="1em"
2732
+ height="1em"
2733
+ >
2734
+ <path
2735
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2736
+ />
2737
+ </svg>
2569
2738
  </div>
2570
2739
  </span>
2571
2740
  </button>
@@ -2646,7 +2815,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2646
2815
  >
2647
2816
  <span class="pf-v6-c-button__icon">
2648
2817
  <div class="pf-v6-c-table__toggle-icon">
2649
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2818
+ <svg
2819
+ class="pf-v6-svg"
2820
+ viewBox="0 0 20 20"
2821
+ fill="currentColor"
2822
+ aria-hidden="true"
2823
+ role="img"
2824
+ width="1em"
2825
+ height="1em"
2826
+ >
2827
+ <path
2828
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2829
+ />
2830
+ </svg>
2650
2831
  </div>
2651
2832
  </span>
2652
2833
  </button>
@@ -2746,7 +2927,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2746
2927
  >
2747
2928
  <span class="pf-v6-c-button__icon">
2748
2929
  <div class="pf-v6-c-table__toggle-icon">
2749
- <i class="fas fa-angle-down" aria-hidden="true"></i>
2930
+ <svg
2931
+ class="pf-v6-svg"
2932
+ viewBox="0 0 20 20"
2933
+ fill="currentColor"
2934
+ aria-hidden="true"
2935
+ role="img"
2936
+ width="1em"
2937
+ height="1em"
2938
+ >
2939
+ <path
2940
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
2941
+ />
2942
+ </svg>
2750
2943
  </div>
2751
2944
  </span>
2752
2945
  </button>
@@ -2856,7 +3049,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
2856
3049
  >
2857
3050
  <span class="pf-v6-c-button__icon">
2858
3051
  <div class="pf-v6-c-table__toggle-icon">
2859
- <i class="fas fa-angle-down" aria-hidden="true"></i>
3052
+ <svg
3053
+ class="pf-v6-svg"
3054
+ viewBox="0 0 20 20"
3055
+ fill="currentColor"
3056
+ aria-hidden="true"
3057
+ role="img"
3058
+ width="1em"
3059
+ height="1em"
3060
+ >
3061
+ <path
3062
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
3063
+ />
3064
+ </svg>
2860
3065
  </div>
2861
3066
  </span>
2862
3067
  </button>
@@ -3093,7 +3298,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
3093
3298
  >
3094
3299
  <span class="pf-v6-c-button__icon">
3095
3300
  <div class="pf-v6-c-table__toggle-icon">
3096
- <i class="fas fa-angle-down" aria-hidden="true"></i>
3301
+ <svg
3302
+ class="pf-v6-svg"
3303
+ viewBox="0 0 20 20"
3304
+ fill="currentColor"
3305
+ aria-hidden="true"
3306
+ role="img"
3307
+ width="1em"
3308
+ height="1em"
3309
+ >
3310
+ <path
3311
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
3312
+ />
3313
+ </svg>
3097
3314
  </div>
3098
3315
  </span>
3099
3316
  </button>
@@ -3175,7 +3392,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
3175
3392
  >
3176
3393
  <span class="pf-v6-c-button__icon">
3177
3394
  <div class="pf-v6-c-table__toggle-icon">
3178
- <i class="fas fa-angle-down" aria-hidden="true"></i>
3395
+ <svg
3396
+ class="pf-v6-svg"
3397
+ viewBox="0 0 20 20"
3398
+ fill="currentColor"
3399
+ aria-hidden="true"
3400
+ role="img"
3401
+ width="1em"
3402
+ height="1em"
3403
+ >
3404
+ <path
3405
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
3406
+ />
3407
+ </svg>
3179
3408
  </div>
3180
3409
  </span>
3181
3410
  </button>
@@ -3260,7 +3489,19 @@ Note: Table column widths will respond automatically when toggling expanded rows
3260
3489
  >
3261
3490
  <span class="pf-v6-c-button__icon">
3262
3491
  <div class="pf-v6-c-table__toggle-icon">
3263
- <i class="fas fa-angle-down" aria-hidden="true"></i>
3492
+ <svg
3493
+ class="pf-v6-svg"
3494
+ viewBox="0 0 20 20"
3495
+ fill="currentColor"
3496
+ aria-hidden="true"
3497
+ role="img"
3498
+ width="1em"
3499
+ height="1em"
3500
+ >
3501
+ <path
3502
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
3503
+ />
3504
+ </svg>
3264
3505
  </div>
3265
3506
  </span>
3266
3507
  </button>
@@ -8266,6 +8507,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
8266
8507
  | Class | Applied to | Outcome |
8267
8508
  | -- | -- | -- |
8268
8509
  | `.pf-m-plain` | `.pf-v6-c-table` | Modifies the table to have a transparent background. |
8510
+ | `.pf-m-no-plain-on-glass` | `.pf-v6-c-table` | Prevents the table from automatically applying plain styling when glass theme is enabled. |
8269
8511
 
8270
8512
  ## Compact variant
8271
8513
 
@@ -8659,7 +8901,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
8659
8901
  >
8660
8902
  <span class="pf-v6-c-button__icon">
8661
8903
  <div class="pf-v6-c-table__toggle-icon">
8662
- <i class="fas fa-angle-down" aria-hidden="true"></i>
8904
+ <svg
8905
+ class="pf-v6-svg"
8906
+ viewBox="0 0 20 20"
8907
+ fill="currentColor"
8908
+ aria-hidden="true"
8909
+ role="img"
8910
+ width="1em"
8911
+ height="1em"
8912
+ >
8913
+ <path
8914
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
8915
+ />
8916
+ </svg>
8663
8917
  </div>
8664
8918
  </span>
8665
8919
  </button>
@@ -8735,7 +8989,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
8735
8989
  >
8736
8990
  <span class="pf-v6-c-button__icon">
8737
8991
  <div class="pf-v6-c-table__toggle-icon">
8738
- <i class="fas fa-angle-down" aria-hidden="true"></i>
8992
+ <svg
8993
+ class="pf-v6-svg"
8994
+ viewBox="0 0 20 20"
8995
+ fill="currentColor"
8996
+ aria-hidden="true"
8997
+ role="img"
8998
+ width="1em"
8999
+ height="1em"
9000
+ >
9001
+ <path
9002
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9003
+ />
9004
+ </svg>
8739
9005
  </div>
8740
9006
  </span>
8741
9007
  </button>
@@ -8842,7 +9108,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
8842
9108
  >
8843
9109
  <span class="pf-v6-c-button__icon">
8844
9110
  <div class="pf-v6-c-table__toggle-icon">
8845
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9111
+ <svg
9112
+ class="pf-v6-svg"
9113
+ viewBox="0 0 20 20"
9114
+ fill="currentColor"
9115
+ aria-hidden="true"
9116
+ role="img"
9117
+ width="1em"
9118
+ height="1em"
9119
+ >
9120
+ <path
9121
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9122
+ />
9123
+ </svg>
8846
9124
  </div>
8847
9125
  </span>
8848
9126
  </button>
@@ -8935,7 +9213,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
8935
9213
  >
8936
9214
  <span class="pf-v6-c-button__icon">
8937
9215
  <div class="pf-v6-c-table__toggle-icon">
8938
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9216
+ <svg
9217
+ class="pf-v6-svg"
9218
+ viewBox="0 0 20 20"
9219
+ fill="currentColor"
9220
+ aria-hidden="true"
9221
+ role="img"
9222
+ width="1em"
9223
+ height="1em"
9224
+ >
9225
+ <path
9226
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9227
+ />
9228
+ </svg>
8939
9229
  </div>
8940
9230
  </span>
8941
9231
  </button>
@@ -9031,7 +9321,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
9031
9321
  >
9032
9322
  <span class="pf-v6-c-button__icon">
9033
9323
  <div class="pf-v6-c-table__toggle-icon">
9034
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9324
+ <svg
9325
+ class="pf-v6-svg"
9326
+ viewBox="0 0 20 20"
9327
+ fill="currentColor"
9328
+ aria-hidden="true"
9329
+ role="img"
9330
+ width="1em"
9331
+ height="1em"
9332
+ >
9333
+ <path
9334
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9335
+ />
9336
+ </svg>
9035
9337
  </div>
9036
9338
  </span>
9037
9339
  </button>
@@ -9126,7 +9428,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
9126
9428
  >
9127
9429
  <span class="pf-v6-c-button__icon">
9128
9430
  <div class="pf-v6-c-table__toggle-icon">
9129
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9431
+ <svg
9432
+ class="pf-v6-svg"
9433
+ viewBox="0 0 20 20"
9434
+ fill="currentColor"
9435
+ aria-hidden="true"
9436
+ role="img"
9437
+ width="1em"
9438
+ height="1em"
9439
+ >
9440
+ <path
9441
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9442
+ />
9443
+ </svg>
9130
9444
  </div>
9131
9445
  </span>
9132
9446
  </button>
@@ -9219,7 +9533,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
9219
9533
  >
9220
9534
  <span class="pf-v6-c-button__icon">
9221
9535
  <div class="pf-v6-c-table__toggle-icon">
9222
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9536
+ <svg
9537
+ class="pf-v6-svg"
9538
+ viewBox="0 0 20 20"
9539
+ fill="currentColor"
9540
+ aria-hidden="true"
9541
+ role="img"
9542
+ width="1em"
9543
+ height="1em"
9544
+ >
9545
+ <path
9546
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9547
+ />
9548
+ </svg>
9223
9549
  </div>
9224
9550
  </span>
9225
9551
  </button>
@@ -9328,7 +9654,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
9328
9654
  >
9329
9655
  <span class="pf-v6-c-button__icon">
9330
9656
  <div class="pf-v6-c-table__toggle-icon">
9331
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9657
+ <svg
9658
+ class="pf-v6-svg"
9659
+ viewBox="0 0 20 20"
9660
+ fill="currentColor"
9661
+ aria-hidden="true"
9662
+ role="img"
9663
+ width="1em"
9664
+ height="1em"
9665
+ >
9666
+ <path
9667
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9668
+ />
9669
+ </svg>
9332
9670
  </div>
9333
9671
  </span>
9334
9672
  </button>
@@ -9421,7 +9759,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
9421
9759
  >
9422
9760
  <span class="pf-v6-c-button__icon">
9423
9761
  <div class="pf-v6-c-table__toggle-icon">
9424
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9762
+ <svg
9763
+ class="pf-v6-svg"
9764
+ viewBox="0 0 20 20"
9765
+ fill="currentColor"
9766
+ aria-hidden="true"
9767
+ role="img"
9768
+ width="1em"
9769
+ height="1em"
9770
+ >
9771
+ <path
9772
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9773
+ />
9774
+ </svg>
9425
9775
  </div>
9426
9776
  </span>
9427
9777
  </button>
@@ -9518,7 +9868,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
9518
9868
  >
9519
9869
  <span class="pf-v6-c-button__icon">
9520
9870
  <div class="pf-v6-c-table__toggle-icon">
9521
- <i class="fas fa-angle-down" aria-hidden="true"></i>
9871
+ <svg
9872
+ class="pf-v6-svg"
9873
+ viewBox="0 0 20 20"
9874
+ fill="currentColor"
9875
+ aria-hidden="true"
9876
+ role="img"
9877
+ width="1em"
9878
+ height="1em"
9879
+ >
9880
+ <path
9881
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
9882
+ />
9883
+ </svg>
9522
9884
  </div>
9523
9885
  </span>
9524
9886
  </button>
@@ -9918,7 +10280,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
9918
10280
  >
9919
10281
  <span class="pf-v6-c-button__icon">
9920
10282
  <div class="pf-v6-c-table__toggle-icon">
9921
- <i class="fas fa-angle-down" aria-hidden="true"></i>
10283
+ <svg
10284
+ class="pf-v6-svg"
10285
+ viewBox="0 0 20 20"
10286
+ fill="currentColor"
10287
+ aria-hidden="true"
10288
+ role="img"
10289
+ width="1em"
10290
+ height="1em"
10291
+ >
10292
+ <path
10293
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
10294
+ />
10295
+ </svg>
9922
10296
  </div>
9923
10297
  </span>
9924
10298
  </button>
@@ -10015,7 +10389,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
10015
10389
  >
10016
10390
  <span class="pf-v6-c-button__icon">
10017
10391
  <div class="pf-v6-c-table__toggle-icon">
10018
- <i class="fas fa-angle-down" aria-hidden="true"></i>
10392
+ <svg
10393
+ class="pf-v6-svg"
10394
+ viewBox="0 0 20 20"
10395
+ fill="currentColor"
10396
+ aria-hidden="true"
10397
+ role="img"
10398
+ width="1em"
10399
+ height="1em"
10400
+ >
10401
+ <path
10402
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
10403
+ />
10404
+ </svg>
10019
10405
  </div>
10020
10406
  </span>
10021
10407
  </button>
@@ -10116,7 +10502,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
10116
10502
  >
10117
10503
  <span class="pf-v6-c-button__icon">
10118
10504
  <div class="pf-v6-c-table__toggle-icon">
10119
- <i class="fas fa-angle-down" aria-hidden="true"></i>
10505
+ <svg
10506
+ class="pf-v6-svg"
10507
+ viewBox="0 0 20 20"
10508
+ fill="currentColor"
10509
+ aria-hidden="true"
10510
+ role="img"
10511
+ width="1em"
10512
+ height="1em"
10513
+ >
10514
+ <path
10515
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
10516
+ />
10517
+ </svg>
10120
10518
  </div>
10121
10519
  </span>
10122
10520
  </button>
@@ -10213,7 +10611,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
10213
10611
  >
10214
10612
  <span class="pf-v6-c-button__icon">
10215
10613
  <div class="pf-v6-c-table__toggle-icon">
10216
- <i class="fas fa-angle-down" aria-hidden="true"></i>
10614
+ <svg
10615
+ class="pf-v6-svg"
10616
+ viewBox="0 0 20 20"
10617
+ fill="currentColor"
10618
+ aria-hidden="true"
10619
+ role="img"
10620
+ width="1em"
10621
+ height="1em"
10622
+ >
10623
+ <path
10624
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
10625
+ />
10626
+ </svg>
10217
10627
  </div>
10218
10628
  </span>
10219
10629
  </button>
@@ -10364,7 +10774,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
10364
10774
  >
10365
10775
  <span class="pf-v6-c-button__icon">
10366
10776
  <div class="pf-v6-c-table__toggle-icon">
10367
- <i class="fas fa-angle-down" aria-hidden="true"></i>
10777
+ <svg
10778
+ class="pf-v6-svg"
10779
+ viewBox="0 0 20 20"
10780
+ fill="currentColor"
10781
+ aria-hidden="true"
10782
+ role="img"
10783
+ width="1em"
10784
+ height="1em"
10785
+ >
10786
+ <path
10787
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
10788
+ />
10789
+ </svg>
10368
10790
  </div>
10369
10791
  </span>
10370
10792
  </button>
@@ -10441,7 +10863,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
10441
10863
  >
10442
10864
  <span class="pf-v6-c-button__icon">
10443
10865
  <div class="pf-v6-c-table__toggle-icon">
10444
- <i class="fas fa-angle-down" aria-hidden="true"></i>
10866
+ <svg
10867
+ class="pf-v6-svg"
10868
+ viewBox="0 0 20 20"
10869
+ fill="currentColor"
10870
+ aria-hidden="true"
10871
+ role="img"
10872
+ width="1em"
10873
+ height="1em"
10874
+ >
10875
+ <path
10876
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
10877
+ />
10878
+ </svg>
10445
10879
  </div>
10446
10880
  </span>
10447
10881
  </button>
@@ -10753,7 +11187,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
10753
11187
  >
10754
11188
  <span class="pf-v6-c-button__icon">
10755
11189
  <div class="pf-v6-c-table__toggle-icon">
10756
- <i class="fas fa-angle-down" aria-hidden="true"></i>
11190
+ <svg
11191
+ class="pf-v6-svg"
11192
+ viewBox="0 0 20 20"
11193
+ fill="currentColor"
11194
+ aria-hidden="true"
11195
+ role="img"
11196
+ width="1em"
11197
+ height="1em"
11198
+ >
11199
+ <path
11200
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
11201
+ />
11202
+ </svg>
10757
11203
  </div>
10758
11204
  </span>
10759
11205
  </button>
@@ -10887,7 +11333,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
10887
11333
  >
10888
11334
  <span class="pf-v6-c-button__icon">
10889
11335
  <div class="pf-v6-c-table__toggle-icon">
10890
- <i class="fas fa-angle-down" aria-hidden="true"></i>
11336
+ <svg
11337
+ class="pf-v6-svg"
11338
+ viewBox="0 0 20 20"
11339
+ fill="currentColor"
11340
+ aria-hidden="true"
11341
+ role="img"
11342
+ width="1em"
11343
+ height="1em"
11344
+ >
11345
+ <path
11346
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
11347
+ />
11348
+ </svg>
10891
11349
  </div>
10892
11350
  </span>
10893
11351
  </button>
@@ -11080,7 +11538,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
11080
11538
  >
11081
11539
  <span class="pf-v6-c-button__icon">
11082
11540
  <div class="pf-v6-c-table__toggle-icon">
11083
- <i class="fas fa-angle-down" aria-hidden="true"></i>
11541
+ <svg
11542
+ class="pf-v6-svg"
11543
+ viewBox="0 0 20 20"
11544
+ fill="currentColor"
11545
+ aria-hidden="true"
11546
+ role="img"
11547
+ width="1em"
11548
+ height="1em"
11549
+ >
11550
+ <path
11551
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
11552
+ />
11553
+ </svg>
11084
11554
  </div>
11085
11555
  </span>
11086
11556
  </button>
@@ -11273,7 +11743,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
11273
11743
  >
11274
11744
  <span class="pf-v6-c-button__icon">
11275
11745
  <div class="pf-v6-c-table__toggle-icon">
11276
- <i class="fas fa-angle-down" aria-hidden="true"></i>
11746
+ <svg
11747
+ class="pf-v6-svg"
11748
+ viewBox="0 0 20 20"
11749
+ fill="currentColor"
11750
+ aria-hidden="true"
11751
+ role="img"
11752
+ width="1em"
11753
+ height="1em"
11754
+ >
11755
+ <path
11756
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
11757
+ />
11758
+ </svg>
11277
11759
  </div>
11278
11760
  </span>
11279
11761
  </button>
@@ -11505,7 +11987,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
11505
11987
  >
11506
11988
  <span class="pf-v6-c-button__icon">
11507
11989
  <div class="pf-v6-c-table__toggle-icon">
11508
- <i class="fas fa-angle-down" aria-hidden="true"></i>
11990
+ <svg
11991
+ class="pf-v6-svg"
11992
+ viewBox="0 0 20 20"
11993
+ fill="currentColor"
11994
+ aria-hidden="true"
11995
+ role="img"
11996
+ width="1em"
11997
+ height="1em"
11998
+ >
11999
+ <path
12000
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
12001
+ />
12002
+ </svg>
11509
12003
  </div>
11510
12004
  </span>
11511
12005
  </button>
@@ -11596,7 +12090,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
11596
12090
  >
11597
12091
  <span class="pf-v6-c-button__icon">
11598
12092
  <div class="pf-v6-c-table__toggle-icon">
11599
- <i class="fas fa-angle-down" aria-hidden="true"></i>
12093
+ <svg
12094
+ class="pf-v6-svg"
12095
+ viewBox="0 0 20 20"
12096
+ fill="currentColor"
12097
+ aria-hidden="true"
12098
+ role="img"
12099
+ width="1em"
12100
+ height="1em"
12101
+ >
12102
+ <path
12103
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
12104
+ />
12105
+ </svg>
11600
12106
  </div>
11601
12107
  </span>
11602
12108
  </button>
@@ -11982,7 +12488,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
11982
12488
  >
11983
12489
  <span class="pf-v6-c-button__icon">
11984
12490
  <div class="pf-v6-c-table__toggle-icon">
11985
- <i class="fas fa-angle-down" aria-hidden="true"></i>
12491
+ <svg
12492
+ class="pf-v6-svg"
12493
+ viewBox="0 0 20 20"
12494
+ fill="currentColor"
12495
+ aria-hidden="true"
12496
+ role="img"
12497
+ width="1em"
12498
+ height="1em"
12499
+ >
12500
+ <path
12501
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
12502
+ />
12503
+ </svg>
11986
12504
  </div>
11987
12505
  </span>
11988
12506
  </button>
@@ -12145,7 +12663,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
12145
12663
  >
12146
12664
  <span class="pf-v6-c-button__icon">
12147
12665
  <div class="pf-v6-c-table__toggle-icon">
12148
- <i class="fas fa-angle-down" aria-hidden="true"></i>
12666
+ <svg
12667
+ class="pf-v6-svg"
12668
+ viewBox="0 0 20 20"
12669
+ fill="currentColor"
12670
+ aria-hidden="true"
12671
+ role="img"
12672
+ width="1em"
12673
+ height="1em"
12674
+ >
12675
+ <path
12676
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
12677
+ />
12678
+ </svg>
12149
12679
  </div>
12150
12680
  </span>
12151
12681
  </button>
@@ -12382,7 +12912,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
12382
12912
  >
12383
12913
  <span class="pf-v6-c-button__icon">
12384
12914
  <div class="pf-v6-c-table__toggle-icon">
12385
- <i class="fas fa-angle-down" aria-hidden="true"></i>
12915
+ <svg
12916
+ class="pf-v6-svg"
12917
+ viewBox="0 0 20 20"
12918
+ fill="currentColor"
12919
+ aria-hidden="true"
12920
+ role="img"
12921
+ width="1em"
12922
+ height="1em"
12923
+ >
12924
+ <path
12925
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
12926
+ />
12927
+ </svg>
12386
12928
  </div>
12387
12929
  </span>
12388
12930
  </button>
@@ -12619,7 +13161,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
12619
13161
  >
12620
13162
  <span class="pf-v6-c-button__icon">
12621
13163
  <div class="pf-v6-c-table__toggle-icon">
12622
- <i class="fas fa-angle-down" aria-hidden="true"></i>
13164
+ <svg
13165
+ class="pf-v6-svg"
13166
+ viewBox="0 0 20 20"
13167
+ fill="currentColor"
13168
+ aria-hidden="true"
13169
+ role="img"
13170
+ width="1em"
13171
+ height="1em"
13172
+ >
13173
+ <path
13174
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
13175
+ />
13176
+ </svg>
12623
13177
  </div>
12624
13178
  </span>
12625
13179
  </button>
@@ -12894,7 +13448,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
12894
13448
  >
12895
13449
  <span class="pf-v6-c-button__icon">
12896
13450
  <div class="pf-v6-c-table__toggle-icon">
12897
- <i class="fas fa-angle-down" aria-hidden="true"></i>
13451
+ <svg
13452
+ class="pf-v6-svg"
13453
+ viewBox="0 0 20 20"
13454
+ fill="currentColor"
13455
+ aria-hidden="true"
13456
+ role="img"
13457
+ width="1em"
13458
+ height="1em"
13459
+ >
13460
+ <path
13461
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
13462
+ />
13463
+ </svg>
12898
13464
  </div>
12899
13465
  </span>
12900
13466
  </button>
@@ -12988,7 +13554,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
12988
13554
  >
12989
13555
  <span class="pf-v6-c-button__icon">
12990
13556
  <div class="pf-v6-c-table__toggle-icon">
12991
- <i class="fas fa-angle-down" aria-hidden="true"></i>
13557
+ <svg
13558
+ class="pf-v6-svg"
13559
+ viewBox="0 0 20 20"
13560
+ fill="currentColor"
13561
+ aria-hidden="true"
13562
+ role="img"
13563
+ width="1em"
13564
+ height="1em"
13565
+ >
13566
+ <path
13567
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
13568
+ />
13569
+ </svg>
12992
13570
  </div>
12993
13571
  </span>
12994
13572
  </button>
@@ -13389,7 +13967,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
13389
13967
  >
13390
13968
  <span class="pf-v6-c-button__icon">
13391
13969
  <div class="pf-v6-c-table__toggle-icon">
13392
- <i class="fas fa-angle-down" aria-hidden="true"></i>
13970
+ <svg
13971
+ class="pf-v6-svg"
13972
+ viewBox="0 0 20 20"
13973
+ fill="currentColor"
13974
+ aria-hidden="true"
13975
+ role="img"
13976
+ width="1em"
13977
+ height="1em"
13978
+ >
13979
+ <path
13980
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
13981
+ />
13982
+ </svg>
13393
13983
  </div>
13394
13984
  </span>
13395
13985
  </button>
@@ -13558,7 +14148,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
13558
14148
  >
13559
14149
  <span class="pf-v6-c-button__icon">
13560
14150
  <div class="pf-v6-c-table__toggle-icon">
13561
- <i class="fas fa-angle-down" aria-hidden="true"></i>
14151
+ <svg
14152
+ class="pf-v6-svg"
14153
+ viewBox="0 0 20 20"
14154
+ fill="currentColor"
14155
+ aria-hidden="true"
14156
+ role="img"
14157
+ width="1em"
14158
+ height="1em"
14159
+ >
14160
+ <path
14161
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
14162
+ />
14163
+ </svg>
13562
14164
  </div>
13563
14165
  </span>
13564
14166
  </button>
@@ -13804,7 +14406,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
13804
14406
  >
13805
14407
  <span class="pf-v6-c-button__icon">
13806
14408
  <div class="pf-v6-c-table__toggle-icon">
13807
- <i class="fas fa-angle-down" aria-hidden="true"></i>
14409
+ <svg
14410
+ class="pf-v6-svg"
14411
+ viewBox="0 0 20 20"
14412
+ fill="currentColor"
14413
+ aria-hidden="true"
14414
+ role="img"
14415
+ width="1em"
14416
+ height="1em"
14417
+ >
14418
+ <path
14419
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
14420
+ />
14421
+ </svg>
13808
14422
  </div>
13809
14423
  </span>
13810
14424
  </button>
@@ -14050,7 +14664,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
14050
14664
  >
14051
14665
  <span class="pf-v6-c-button__icon">
14052
14666
  <div class="pf-v6-c-table__toggle-icon">
14053
- <i class="fas fa-angle-down" aria-hidden="true"></i>
14667
+ <svg
14668
+ class="pf-v6-svg"
14669
+ viewBox="0 0 20 20"
14670
+ fill="currentColor"
14671
+ aria-hidden="true"
14672
+ role="img"
14673
+ width="1em"
14674
+ height="1em"
14675
+ >
14676
+ <path
14677
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
14678
+ />
14679
+ </svg>
14054
14680
  </div>
14055
14681
  </span>
14056
14682
  </button>
@@ -15367,7 +15993,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
15367
15993
  >
15368
15994
  <span class="pf-v6-c-button__icon">
15369
15995
  <div class="pf-v6-c-table__toggle-icon">
15370
- <i class="fas fa-angle-down" aria-hidden="true"></i>
15996
+ <svg
15997
+ class="pf-v6-svg"
15998
+ viewBox="0 0 20 20"
15999
+ fill="currentColor"
16000
+ aria-hidden="true"
16001
+ role="img"
16002
+ width="1em"
16003
+ height="1em"
16004
+ >
16005
+ <path
16006
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
16007
+ />
16008
+ </svg>
15371
16009
  </div>
15372
16010
  </span>
15373
16011
  </button>
@@ -15463,7 +16101,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
15463
16101
  >
15464
16102
  <span class="pf-v6-c-button__icon">
15465
16103
  <div class="pf-v6-c-table__toggle-icon">
15466
- <i class="fas fa-angle-down" aria-hidden="true"></i>
16104
+ <svg
16105
+ class="pf-v6-svg"
16106
+ viewBox="0 0 20 20"
16107
+ fill="currentColor"
16108
+ aria-hidden="true"
16109
+ role="img"
16110
+ width="1em"
16111
+ height="1em"
16112
+ >
16113
+ <path
16114
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
16115
+ />
16116
+ </svg>
15467
16117
  </div>
15468
16118
  </span>
15469
16119
  </button>
@@ -15545,7 +16195,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
15545
16195
  >
15546
16196
  <span class="pf-v6-c-button__icon">
15547
16197
  <div class="pf-v6-c-table__toggle-icon">
15548
- <i class="fas fa-angle-down" aria-hidden="true"></i>
16198
+ <svg
16199
+ class="pf-v6-svg"
16200
+ viewBox="0 0 20 20"
16201
+ fill="currentColor"
16202
+ aria-hidden="true"
16203
+ role="img"
16204
+ width="1em"
16205
+ height="1em"
16206
+ >
16207
+ <path
16208
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
16209
+ />
16210
+ </svg>
15549
16211
  </div>
15550
16212
  </span>
15551
16213
  </button>
@@ -15630,7 +16292,19 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
15630
16292
  >
15631
16293
  <span class="pf-v6-c-button__icon">
15632
16294
  <div class="pf-v6-c-table__toggle-icon">
15633
- <i class="fas fa-angle-down" aria-hidden="true"></i>
16295
+ <svg
16296
+ class="pf-v6-svg"
16297
+ viewBox="0 0 20 20"
16298
+ fill="currentColor"
16299
+ aria-hidden="true"
16300
+ role="img"
16301
+ width="1em"
16302
+ height="1em"
16303
+ >
16304
+ <path
16305
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
16306
+ />
16307
+ </svg>
15634
16308
  </div>
15635
16309
  </span>
15636
16310
  </button>
@@ -18188,8 +18862,8 @@ Width modifiers control the width of the columns. To control the responsive beha
18188
18862
 
18189
18863
  | Class | Applied to | Outcome |
18190
18864
  | -- | -- | -- |
18191
- | `.pf-m-hidden{-on-[breakpoint]}` | `.pf-v6-c-table tr > th`, `.pf-v6-c-table tr > td` | Hides a table cell at optional [breakpoint](/tokens/all-patternfly-tokens), or hides it at all breakpoints with `.pf-m-hidden`. **Note: Needs to apply to all cells in the column you want to hide.** |
18192
- | `.pf-m-visible{-on-[breakpoint]}` | `.pf-v6-c-table tr > th`, `.pf-v6-c-table tr > td` | Shows a table cell at optional [breakpoint](/tokens/all-patternfly-tokens). |
18865
+ | `.pf-m-hidden{-on-[breakpoint]}` | `.pf-v6-c-table tr > th`, `.pf-v6-c-table tr > td` | Hides a table cell at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens), or hides it at all breakpoints with `.pf-m-hidden`. **Note: Needs to apply to all cells in the column you want to hide.** |
18866
+ | `.pf-m-visible{-on-[breakpoint]}` | `.pf-v6-c-table tr > th`, `.pf-v6-c-table tr > td` | Shows a table cell at optional [breakpoint](/foundations-and-styles/design-tokens/all-design-tokens). |
18193
18867
 
18194
18868
  ## Text control modifiers
18195
18869
 
@@ -21203,7 +21877,19 @@ For sticky columns to function correctly, the parent table's width must be contr
21203
21877
  >
21204
21878
  <span class="pf-v6-c-button__icon">
21205
21879
  <div class="pf-v6-c-table__toggle-icon">
21206
- <i class="fas fa-angle-down" aria-hidden="true"></i>
21880
+ <svg
21881
+ class="pf-v6-svg"
21882
+ viewBox="0 0 20 20"
21883
+ fill="currentColor"
21884
+ aria-hidden="true"
21885
+ role="img"
21886
+ width="1em"
21887
+ height="1em"
21888
+ >
21889
+ <path
21890
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
21891
+ />
21892
+ </svg>
21207
21893
  </div>
21208
21894
  </span>
21209
21895
  </button>
@@ -21301,7 +21987,19 @@ For sticky columns to function correctly, the parent table's width must be contr
21301
21987
  >
21302
21988
  <span class="pf-v6-c-button__icon">
21303
21989
  <div class="pf-v6-c-table__toggle-icon">
21304
- <i class="fas fa-angle-down" aria-hidden="true"></i>
21990
+ <svg
21991
+ class="pf-v6-svg"
21992
+ viewBox="0 0 20 20"
21993
+ fill="currentColor"
21994
+ aria-hidden="true"
21995
+ role="img"
21996
+ width="1em"
21997
+ height="1em"
21998
+ >
21999
+ <path
22000
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
22001
+ />
22002
+ </svg>
21305
22003
  </div>
21306
22004
  </span>
21307
22005
  </button>
@@ -21396,7 +22094,19 @@ For sticky columns to function correctly, the parent table's width must be contr
21396
22094
  >
21397
22095
  <span class="pf-v6-c-button__icon">
21398
22096
  <div class="pf-v6-c-table__toggle-icon">
21399
- <i class="fas fa-angle-down" aria-hidden="true"></i>
22097
+ <svg
22098
+ class="pf-v6-svg"
22099
+ viewBox="0 0 20 20"
22100
+ fill="currentColor"
22101
+ aria-hidden="true"
22102
+ role="img"
22103
+ width="1em"
22104
+ height="1em"
22105
+ >
22106
+ <path
22107
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
22108
+ />
22109
+ </svg>
21400
22110
  </div>
21401
22111
  </span>
21402
22112
  </button>
@@ -23672,7 +24382,19 @@ For sticky columns to function correctly, the parent table's width must be contr
23672
24382
  aria-labelledby="table-draggable-rows-row-1-draggable-button table-draggable-rows-row-1-node"
23673
24383
  >
23674
24384
  <span class="pf-v6-c-button__icon">
23675
- <i class="fas fa-grip-vertical" aria-hidden="true"></i>
24385
+ <svg
24386
+ class="pf-v6-svg"
24387
+ viewBox="0 0 320 512"
24388
+ fill="currentColor"
24389
+ aria-hidden="true"
24390
+ role="img"
24391
+ width="1em"
24392
+ height="1em"
24393
+ >
24394
+ <path
24395
+ d="M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"
24396
+ />
24397
+ </svg>
23676
24398
  </span>
23677
24399
  </button>
23678
24400
  </td>
@@ -23701,7 +24423,19 @@ For sticky columns to function correctly, the parent table's width must be contr
23701
24423
  aria-labelledby="table-draggable-rows-row-2-draggable-button table-draggable-rows-row-2-node"
23702
24424
  >
23703
24425
  <span class="pf-v6-c-button__icon">
23704
- <i class="fas fa-grip-vertical" aria-hidden="true"></i>
24426
+ <svg
24427
+ class="pf-v6-svg"
24428
+ viewBox="0 0 320 512"
24429
+ fill="currentColor"
24430
+ aria-hidden="true"
24431
+ role="img"
24432
+ width="1em"
24433
+ height="1em"
24434
+ >
24435
+ <path
24436
+ d="M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"
24437
+ />
24438
+ </svg>
23705
24439
  </span>
23706
24440
  </button>
23707
24441
  </td>
@@ -23731,7 +24465,19 @@ For sticky columns to function correctly, the parent table's width must be contr
23731
24465
  aria-labelledby="table-draggable-rows-row-3-draggable-button table-draggable-rows-row-3-node"
23732
24466
  >
23733
24467
  <span class="pf-v6-c-button__icon">
23734
- <i class="fas fa-grip-vertical" aria-hidden="true"></i>
24468
+ <svg
24469
+ class="pf-v6-svg"
24470
+ viewBox="0 0 320 512"
24471
+ fill="currentColor"
24472
+ aria-hidden="true"
24473
+ role="img"
24474
+ width="1em"
24475
+ height="1em"
24476
+ >
24477
+ <path
24478
+ d="M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"
24479
+ />
24480
+ </svg>
23735
24481
  </span>
23736
24482
  </button>
23737
24483
  </td>
@@ -23760,7 +24506,19 @@ For sticky columns to function correctly, the parent table's width must be contr
23760
24506
  aria-labelledby="table-draggable-rows-row-4-draggable-button table-draggable-rows-row-4-node"
23761
24507
  >
23762
24508
  <span class="pf-v6-c-button__icon">
23763
- <i class="fas fa-grip-vertical" aria-hidden="true"></i>
24509
+ <svg
24510
+ class="pf-v6-svg"
24511
+ viewBox="0 0 320 512"
24512
+ fill="currentColor"
24513
+ aria-hidden="true"
24514
+ role="img"
24515
+ width="1em"
24516
+ height="1em"
24517
+ >
24518
+ <path
24519
+ d="M96 32H32C14.33 32 0 46.33 0 64v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160H32c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zM288 32h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32zm0 160h-64c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-64c0-17.67-14.33-32-32-32z"
24520
+ />
24521
+ </svg>
23764
24522
  </span>
23765
24523
  </button>
23766
24524
  </td>
@@ -24027,7 +24785,19 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
24027
24785
  >
24028
24786
  <span class="pf-v6-c-button__icon">
24029
24787
  <div class="pf-v6-c-table__toggle-icon">
24030
- <i class="fas fa-angle-down" aria-hidden="true"></i>
24788
+ <svg
24789
+ class="pf-v6-svg"
24790
+ viewBox="0 0 20 20"
24791
+ fill="currentColor"
24792
+ aria-hidden="true"
24793
+ role="img"
24794
+ width="1em"
24795
+ height="1em"
24796
+ >
24797
+ <path
24798
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
24799
+ />
24800
+ </svg>
24031
24801
  </div>
24032
24802
  </span>
24033
24803
  </button>
@@ -24123,7 +24893,19 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
24123
24893
  >
24124
24894
  <span class="pf-v6-c-button__icon">
24125
24895
  <div class="pf-v6-c-table__toggle-icon">
24126
- <i class="fas fa-angle-down" aria-hidden="true"></i>
24896
+ <svg
24897
+ class="pf-v6-svg"
24898
+ viewBox="0 0 20 20"
24899
+ fill="currentColor"
24900
+ aria-hidden="true"
24901
+ role="img"
24902
+ width="1em"
24903
+ height="1em"
24904
+ >
24905
+ <path
24906
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
24907
+ />
24908
+ </svg>
24127
24909
  </div>
24128
24910
  </span>
24129
24911
  </button>
@@ -24205,7 +24987,19 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
24205
24987
  >
24206
24988
  <span class="pf-v6-c-button__icon">
24207
24989
  <div class="pf-v6-c-table__toggle-icon">
24208
- <i class="fas fa-angle-down" aria-hidden="true"></i>
24990
+ <svg
24991
+ class="pf-v6-svg"
24992
+ viewBox="0 0 20 20"
24993
+ fill="currentColor"
24994
+ aria-hidden="true"
24995
+ role="img"
24996
+ width="1em"
24997
+ height="1em"
24998
+ >
24999
+ <path
25000
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
25001
+ />
25002
+ </svg>
24209
25003
  </div>
24210
25004
  </span>
24211
25005
  </button>
@@ -24290,7 +25084,19 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
24290
25084
  >
24291
25085
  <span class="pf-v6-c-button__icon">
24292
25086
  <div class="pf-v6-c-table__toggle-icon">
24293
- <i class="fas fa-angle-down" aria-hidden="true"></i>
25087
+ <svg
25088
+ class="pf-v6-svg"
25089
+ viewBox="0 0 20 20"
25090
+ fill="currentColor"
25091
+ aria-hidden="true"
25092
+ role="img"
25093
+ width="1em"
25094
+ height="1em"
25095
+ >
25096
+ <path
25097
+ d="M18.71 5.29a.996.996 0 0 0-1.41 0l-7.29 7.29-7.3-7.29a.987.987 0 0 0-1.41-.02.987.987 0 0 0-.02 1.41l.02.02 7.65 7.65c.29.29.68.44 1.06.44s.77-.15 1.06-.44l7.65-7.65a.996.996 0 0 0 0-1.41Z"
25098
+ />
25099
+ </svg>
24294
25100
  </div>
24295
25101
  </span>
24296
25102
  </button>