@patternfly/patternfly 5.0.0-alpha.2 → 5.0.0-alpha.21

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 (224) hide show
  1. package/README.md +1 -1
  2. package/RELEASE-NOTES.md +47 -0
  3. package/assets/icons/iconUnicodes.json +1 -0
  4. package/assets/pficon/pficon.scss +6 -0
  5. package/assets/pficon/pficon.woff +0 -0
  6. package/assets/pficon/pficon.woff2 +0 -0
  7. package/base/_chart-globals.scss +0 -4
  8. package/base/_common.scss +0 -22
  9. package/base/patternfly-common.css +0 -10
  10. package/base/patternfly-icons.css +5 -1
  11. package/base/patternfly-pf-icons.css +5 -1
  12. package/components/Accordion/accordion.css +2 -0
  13. package/components/Accordion/accordion.scss +2 -0
  14. package/components/AppLauncher/app-launcher.css +2 -0
  15. package/components/AppLauncher/app-launcher.scss +2 -0
  16. package/components/Breadcrumb/breadcrumb.css +2 -0
  17. package/components/Breadcrumb/breadcrumb.scss +2 -0
  18. package/components/CalendarMonth/calendar-month.css +1 -1
  19. package/components/CalendarMonth/calendar-month.scss +1 -1
  20. package/components/Card/card.css +9 -12
  21. package/components/Card/card.scss +11 -17
  22. package/components/ChipGroup/chip-group.css +27 -17
  23. package/components/ChipGroup/chip-group.scss +36 -22
  24. package/components/Content/content.css +6 -0
  25. package/components/Content/content.scss +8 -0
  26. package/components/ContextSelector/context-selector.css +5 -1
  27. package/components/ContextSelector/context-selector.scss +6 -2
  28. package/components/DataList/data-list.css +2 -1
  29. package/components/DataList/data-list.scss +2 -1
  30. package/components/Drawer/drawer.css +13 -14
  31. package/components/Drawer/drawer.scss +0 -1
  32. package/components/Dropdown/dropdown.css +27 -10
  33. package/components/Dropdown/dropdown.scss +22 -0
  34. package/components/EmptyState/empty-state.css +46 -52
  35. package/components/EmptyState/empty-state.scss +58 -57
  36. package/components/ExpandableSection/expandable-section.css +2 -0
  37. package/components/ExpandableSection/expandable-section.scss +2 -0
  38. package/components/FormControl/form-control.css +1 -1
  39. package/components/FormControl/themes/dark/form-control.scss +1 -1
  40. package/components/InputGroup/input-group.css +14 -0
  41. package/components/InputGroup/input-group.scss +9 -0
  42. package/components/InputGroup/themes/dark/input-group.scss +8 -0
  43. package/components/Label/label.css +2 -0
  44. package/components/Label/label.scss +2 -0
  45. package/components/LabelGroup/label-group.css +26 -22
  46. package/components/LabelGroup/label-group.scss +31 -26
  47. package/components/Login/login.css +1 -1
  48. package/components/Menu/menu.css +7 -0
  49. package/components/Menu/menu.scss +8 -0
  50. package/components/MenuToggle/menu-toggle.css +2 -0
  51. package/components/MenuToggle/menu-toggle.scss +2 -0
  52. package/components/ModalBox/modal-box.css +9 -8
  53. package/components/ModalBox/modal-box.scss +11 -11
  54. package/components/Page/page.css +60 -60
  55. package/components/Pagination/pagination.css +122 -2
  56. package/components/Pagination/pagination.scss +24 -1
  57. package/components/Popover/popover.css +2 -7
  58. package/components/Popover/themes/dark/popover.scss +2 -8
  59. package/components/Progress/progress.css +5 -2
  60. package/components/Progress/progress.scss +5 -2
  61. package/components/SearchInput/search-input.css +2 -0
  62. package/components/SearchInput/search-input.scss +2 -0
  63. package/components/Slider/slider.css +0 -7
  64. package/components/Slider/slider.scss +0 -9
  65. package/components/Table/table-grid.css +28 -28
  66. package/components/Table/table-tree-view.css +4 -4
  67. package/components/Table/table.css +4 -0
  68. package/components/Table/table.scss +4 -0
  69. package/components/Tabs/tabs.css +0 -4
  70. package/components/Tabs/tabs.scss +0 -7
  71. package/components/TextInputGroup/text-input-group.css +4 -2
  72. package/components/TextInputGroup/text-input-group.scss +4 -3
  73. package/components/Toolbar/toolbar.css +65 -37
  74. package/components/Toolbar/toolbar.scss +37 -3
  75. package/components/Tooltip/themes/dark/tooltip.scss +1 -11
  76. package/components/Tooltip/tooltip.css +7 -12
  77. package/components/Tooltip/tooltip.scss +6 -3
  78. package/components/TreeView/tree-view.css +7 -15
  79. package/components/TreeView/tree-view.scss +7 -18
  80. package/components/Wizard/wizard.css +2 -0
  81. package/components/Wizard/wizard.scss +2 -0
  82. package/docs/components/AboutModalBox/examples/AboutModalBox.md +13 -13
  83. package/docs/components/Accordion/examples/Accordion.md +12 -12
  84. package/docs/components/ActionList/examples/ActionList.md +6 -6
  85. package/docs/components/Alert/examples/Alert.md +19 -19
  86. package/docs/components/AlertGroup/examples/AlertGroup.md +12 -12
  87. package/docs/components/AppLauncher/examples/application-launcher.md +51 -46
  88. package/docs/components/Avatar/examples/Avatar.md +11 -11
  89. package/docs/components/BackToTop/examples/BackToTop.md +4 -4
  90. package/docs/components/Backdrop/examples/Backdrop.md +4 -4
  91. package/docs/components/BackgroundImage/examples/BackgroundImage.md +4 -4
  92. package/docs/components/Badge/examples/Badge.md +5 -5
  93. package/docs/components/Banner/examples/Banner.md +8 -8
  94. package/docs/components/Brand/examples/Brand.md +9 -9
  95. package/docs/components/Breadcrumb/examples/Breadcrumb.md +20 -20
  96. package/docs/components/Button/examples/Button.md +35 -35
  97. package/docs/components/CalendarMonth/examples/CalendarMonth.md +32 -32
  98. package/docs/components/Card/examples/Card.md +61 -44
  99. package/docs/components/Check/examples/Check.md +15 -19
  100. package/docs/components/Chip/examples/Chip.md +13 -13
  101. package/docs/components/ChipGroup/examples/ChipGroup.md +15 -344
  102. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +22 -22
  103. package/docs/components/CodeBlock/examples/CodeBlock.md +9 -9
  104. package/docs/components/CodeEditor/examples/CodeEditor.md +54 -35
  105. package/docs/components/Content/examples/Content.md +37 -9
  106. package/docs/components/ContextSelector/examples/context-selector.css +5 -1
  107. package/docs/components/ContextSelector/examples/context-selector.md +86 -80
  108. package/docs/components/DataList/examples/DataList.md +187 -148
  109. package/docs/components/DatePicker/examples/DatePicker.md +10 -10
  110. package/docs/components/DescriptionList/examples/DescriptionList.md +24 -24
  111. package/docs/components/Divider/examples/Divider.md +10 -10
  112. package/docs/components/DragDrop/examples/DragDrop.md +5 -5
  113. package/docs/components/Drawer/examples/Drawer.md +43 -43
  114. package/docs/components/Dropdown/examples/Dropdown.css +5 -2
  115. package/docs/components/Dropdown/examples/Dropdown.md +311 -71
  116. package/docs/components/DualListSelector/examples/DualListSelector.md +201 -197
  117. package/docs/components/EmptyState/examples/EmptyState.md +130 -82
  118. package/docs/components/ExpandableSection/examples/ExpandableSection.md +23 -23
  119. package/docs/components/FileUpload/examples/FileUpload.md +8 -8
  120. package/docs/components/Form/examples/Form.md +64 -64
  121. package/docs/components/FormControl/examples/FormControl.md +20 -20
  122. package/docs/components/HelperText/examples/HelperText.md +12 -12
  123. package/docs/components/Hint/examples/Hint.md +7 -7
  124. package/docs/components/Icon/examples/Icon.md +10 -10
  125. package/docs/components/InlineEdit/examples/InlineEdit.md +24 -24
  126. package/docs/components/InputGroup/examples/InputGroup.md +10 -9
  127. package/docs/components/JumpLinks/examples/JumpLinks.md +35 -35
  128. package/docs/components/Label/examples/Label.md +31 -31
  129. package/docs/components/LabelGroup/examples/LabelGroup.md +24 -36
  130. package/docs/components/List/examples/List.md +18 -18
  131. package/docs/components/LogViewer/examples/LogViewer.md +69 -69
  132. package/docs/components/Login/examples/Login.md +32 -32
  133. package/docs/components/Masthead/examples/masthead.md +9 -9
  134. package/docs/components/Menu/examples/Menu.md +82 -80
  135. package/docs/components/MenuToggle/examples/MenuToggle.md +28 -28
  136. package/docs/components/ModalBox/examples/ModalBox.md +106 -85
  137. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +25 -25
  138. package/docs/components/Nav/examples/Navigation.md +69 -69
  139. package/docs/components/NotificationBadge/examples/NotificationBadge.md +8 -8
  140. package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +44 -44
  141. package/docs/components/NumberInput/examples/NumberInput.md +12 -12
  142. package/docs/components/OptionsMenu/examples/options-menu.md +27 -28
  143. package/docs/components/OverflowMenu/examples/overflow-menu.md +25 -25
  144. package/docs/components/Page/examples/Page.md +54 -54
  145. package/docs/components/Pagination/examples/Pagination.md +129 -30
  146. package/docs/components/Panel/examples/Panel.md +10 -10
  147. package/docs/components/Popover/examples/Popover.md +34 -34
  148. package/docs/components/Progress/examples/Progress.md +31 -60
  149. package/docs/components/ProgressStepper/examples/ProgressStepper.md +45 -38
  150. package/docs/components/Radio/examples/Radio.md +11 -11
  151. package/docs/components/SearchInput/examples/SearchInput.md +34 -34
  152. package/docs/components/Select/examples/Select.md +143 -143
  153. package/docs/components/Sidebar/examples/Sidebar.md +14 -14
  154. package/docs/components/SimpleList/examples/SimpleList.md +15 -15
  155. package/docs/components/Skeleton/examples/Skeleton.md +8 -8
  156. package/docs/components/SkipToContent/examples/SkipToContent.md +5 -5
  157. package/docs/components/Slider/examples/Slider.md +30 -30
  158. package/docs/components/Spinner/examples/Spinner.md +24 -24
  159. package/docs/components/Switch/examples/Switch.md +19 -19
  160. package/docs/components/TabContent/examples/TabContent.md +13 -13
  161. package/docs/components/Table/examples/Table.md +1272 -855
  162. package/docs/components/Tabs/examples/Tabs.md +149 -149
  163. package/docs/components/TextInputGroup/examples/TextInputGroup.md +19 -19
  164. package/docs/components/Tile/examples/Tile.md +15 -15
  165. package/docs/components/Timestamp/examples/Timestamp.md +5 -5
  166. package/docs/components/Title/examples/Title.md +17 -17
  167. package/docs/components/ToggleGroup/examples/toggle-group.md +13 -13
  168. package/docs/components/Toolbar/examples/Toolbar.md +165 -144
  169. package/docs/components/Tooltip/examples/Tooltip.md +10 -10
  170. package/docs/components/TreeView/examples/TreeView.md +34 -34
  171. package/docs/components/Truncate/examples/Truncate.md +4 -4
  172. package/docs/components/Wizard/examples/Wizard.md +63 -70
  173. package/docs/demos/AboutModal/examples/AboutModal.md +4 -4
  174. package/docs/demos/Alert/examples/Alert.md +13 -13
  175. package/docs/demos/BackToTop/examples/BackToTop.md +4 -4
  176. package/docs/demos/Banner/examples/Banner.md +10 -11
  177. package/docs/demos/Card/examples/Card.md +151 -116
  178. package/docs/demos/CardView/examples/CardView.md +16 -15
  179. package/docs/demos/ContextSelector/examples/ContextSelector.md +18 -18
  180. package/docs/demos/Dashboard/examples/Dashboard.md +10 -9
  181. package/docs/demos/DataList/examples/DataList.md +160 -111
  182. package/docs/demos/DescriptionList/examples/DescriptionList.md +12 -13
  183. package/docs/demos/Drawer/examples/Drawer.md +20 -20
  184. package/docs/demos/HelperText/examples/HelperText.md +8 -9
  185. package/docs/demos/JumpLinks/examples/JumpLinks.md +28 -28
  186. package/docs/demos/Masthead/examples/Masthead.md +32 -35
  187. package/docs/demos/Modal/examples/Modal.md +54 -66
  188. package/docs/demos/Nav/examples/Nav.md +720 -767
  189. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +40 -28
  190. package/docs/demos/Page/examples/Page.md +37 -37
  191. package/docs/demos/PasswordStrength/examples/PasswordStrength.md +32 -33
  192. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +53 -49
  193. package/docs/demos/Skeleton/examples/Skeleton.md +4 -4
  194. package/docs/demos/Table/examples/Table.md +522 -378
  195. package/docs/demos/Tabs/examples/Tabs.md +120 -601
  196. package/docs/demos/Toolbar/examples/Toolbar.md +1781 -171
  197. package/docs/demos/Wizard/examples/Wizard.md +229 -225
  198. package/docs/layouts/Bullseye/examples/Bullseye.md +4 -4
  199. package/docs/layouts/Flex/examples/Flex.md +98 -98
  200. package/docs/layouts/Gallery/examples/Gallery.md +7 -7
  201. package/docs/layouts/Grid/examples/Grid.md +9 -9
  202. package/docs/layouts/Level/examples/Level.md +5 -5
  203. package/docs/layouts/Split/examples/Split.md +7 -7
  204. package/docs/layouts/Stack/examples/Stack.md +6 -6
  205. package/docs/utilities/Accessibility/examples/Accessibility.md +4 -4
  206. package/docs/utilities/Alignment/examples/Alignment.md +6 -6
  207. package/docs/utilities/BackgroundColor/examples/BackgroundColor.md +12 -12
  208. package/docs/utilities/BoxShadow/examples/box-shadow.md +22 -22
  209. package/docs/utilities/Display/examples/Display.md +11 -11
  210. package/docs/utilities/Flex/examples/Flex.md +34 -34
  211. package/docs/utilities/Float/examples/Float.md +4 -4
  212. package/docs/utilities/Sizing/examples/Sizing.md +50 -50
  213. package/docs/utilities/Spacing/examples/Spacing.md +34 -34
  214. package/docs/utilities/Text/examples/Text.md +27 -27
  215. package/icons/{pf-icons.json → pf-icons.mjs} +2 -1
  216. package/layouts/Grid/grid.css +5 -5
  217. package/package.json +59 -64
  218. package/patternfly-base-no-reset.css +5 -11
  219. package/patternfly-base.css +5 -11
  220. package/patternfly-no-reset.css +528 -336
  221. package/patternfly.css +528 -336
  222. package/patternfly.min.css +1 -1
  223. package/patternfly.min.css.map +1 -1
  224. package/sass-utilities/scss-variables.scss +0 -1
@@ -3356,40 +3356,40 @@ cssPrefix: pf-c-tree-view
3356
3356
 
3357
3357
  ### Accessibility
3358
3358
 
3359
- | Attribute | Applied to | Outcome |
3360
- | ---------------------------------- | ------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
3361
- | `role="tree"` | `.pf-c-tree-view__list` | Identifies the `ul` as a tree widget. **Place on the outermost `ul` only** |
3362
- | `role="group"` | `.pf-c-tree-view__list` | Identifies the `ul` element as a container of treeitem elements that form a branch of the tree. **Place on all `ul`s except the first `ul`** |
3363
- | `role="treeitem"` | `.pf-c-tree-view__list-item` | Hides the implicit listitem role of the li element from assistive technologies. |
3364
- | `aria-expanded="false"` | `.pf-c-tree-view__list-item` | For an expandable item, indicates the parent node is closed, i.e., the descendant elements are not visible. |
3365
- | `aria-expanded="true"` | `.pf-c-tree-view__list-item.pf-m-expanded` | Indicates the parent node is open, i.e., the descendant elements are visible. |
3366
- | `tabindex="-1"` | `.pf-c-tree-view__list-item` | Makes the element with the treeitem role focusable without including it in the tab sequence of the page. |
3367
- | `tabindex="0"` | `.pf-c-tree-view__list-item` | Includes the element with the treeitem role in the tab sequence. Only one treeitem in the tree has tabindex="0". When the user moves focus in the tree, the element included in the tab sequence changes to the element with focus. |
3368
- | `aria-label="[button label text]"` | `.pf-c-tree-view__action` | Provides an accessible name for the button when an icon is used instead of text. **Required when icon is used with no supporting text** |
3359
+ | Attribute | Applied to | Outcome |
3360
+ | -- | -- | -- |
3361
+ | `role="tree"` | `.pf-c-tree-view__list` | Identifies the `ul` as a tree widget. **Place on the outermost `ul` only** |
3362
+ | `role="group"` | `.pf-c-tree-view__list` | Identifies the `ul` element as a container of treeitem elements that form a branch of the tree. **Place on all `ul`s except the first `ul`** |
3363
+ | `role="treeitem"` | `.pf-c-tree-view__list-item` | Hides the implicit listitem role of the li element from assistive technologies. |
3364
+ | `aria-expanded="false"` | `.pf-c-tree-view__list-item` | For an expandable item, indicates the parent node is closed, i.e., the descendant elements are not visible. |
3365
+ | `aria-expanded="true"` | `.pf-c-tree-view__list-item.pf-m-expanded` | Indicates the parent node is open, i.e., the descendant elements are visible. |
3366
+ | `tabindex="-1"` | `.pf-c-tree-view__list-item` | Makes the element with the treeitem role focusable without including it in the tab sequence of the page. |
3367
+ | `tabindex="0"` | `.pf-c-tree-view__list-item` | Includes the element with the treeitem role in the tab sequence. Only one treeitem in the tree has tabindex="0". When the user moves focus in the tree, the element included in the tab sequence changes to the element with focus. |
3368
+ | `aria-label="[button label text]"` | `.pf-c-tree-view__action` | Provides an accessible name for the button when an icon is used instead of text. **Required when icon is used with no supporting text** |
3369
3369
 
3370
3370
  ### Usage
3371
3371
 
3372
- | Class | Applied | Outcome |
3373
- | ----------------------------------- | ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------- |
3374
- | `.pf-c-tree-view` | `<div>` | Initiates the tree view container. **Required** |
3375
- | `.pf-c-tree-view__list` | `<ul>` | Initiates a tree view list. **Required** |
3376
- | `.pf-c-tree-view__list-item` | `<li>` | Initiates a tree view list item. **Required** |
3377
- | `.pf-c-tree-view__content` | `<div>` | Initiates a tree view node. **Required** |
3378
- | `.pf-c-tree-view__node` | `<button>`, `<label>` | Initiates a tree view node. **Required** |
3379
- | `.pf-c-tree-view__node-container` | `<span>` | Initiates a tree view node container. **Required for compact variant** |
3380
- | `.pf-c-tree-view__node-content` | `<span>` | Initiates a tree view node content container used to stack elements. |
3381
- | `.pf-c-tree-view__node-count` | `<span>` | Initiates a tree view node count. |
3382
- | `.pf-c-tree-view__node-toggle` | `<span>`, `<button>` | Initiates a tree view toggle. |
3383
- | `.pf-c-tree-view__node-toggle-icon` | `<span>` | Initiates a tree view toggle icon. |
3384
- | `.pf-c-tree-view__node-title` | `<span>` | Initiates a tree view node title. |
3385
- | `.pf-c-tree-view__node-text` | `<span>`, `<button>` | Initiates tree view text. **Note:** Use a `<button>` when the node is expandable and selectable. |
3386
- | `.pf-c-tree-view__node-icon` | `<span>` | Initiates a tree view icon. |
3387
- | `.pf-c-tree-view__node-check` | `<span>` | Initiates a tree view check. |
3388
- | `.pf-c-tree-view__action` | `<div>` | Initiates a tree view action wrapper. |
3389
- | `.pf-c-tree-view__search` | `<div>` | Initiates a tree view search wrapper. |
3390
- | `.pf-m-guides` | `.pf-c-tree-view` | Modifies the tree view to the guides presentation. |
3391
- | `.pf-m-compact` | `.pf-c-tree-view` | Modifies the tree view to the compact presentation. |
3392
- | `.pf-m-no-background` | `.pf-c-tree-view.pf-m-compact` | Modifies the tree view compact variant node containers to have a transparent background. |
3393
- | `.pf-m-current` | `.pf-c-tree-view__node` | Modifies the tree view node to be current. |
3394
- | `.pf-m-selectable` | `.pf-c-tree-view__node` | For use on nodes that are expandable and selectable, when the default click action on the node selects it instead of expanding it. |
3395
- | `.pf-m-truncate` | `.pf-c-tree-view`, `.pf-c-tree-view__node-title`, `.pf-c-tree-view__node-text` | Modifies the tree view title or text to truncate. |
3372
+ | Class | Applied | Outcome |
3373
+ | -- | -- | -- |
3374
+ | `.pf-c-tree-view` | `<div>` | Initiates the tree view container. **Required** |
3375
+ | `.pf-c-tree-view__list` | `<ul>` | Initiates a tree view list. **Required** |
3376
+ | `.pf-c-tree-view__list-item` | `<li>` | Initiates a tree view list item. **Required** |
3377
+ | `.pf-c-tree-view__content` | `<div>` | Initiates a tree view node. **Required** |
3378
+ | `.pf-c-tree-view__node` | `<button>`, `<label>` | Initiates a tree view node. **Required** |
3379
+ | `.pf-c-tree-view__node-container` | `<span>` | Initiates a tree view node container. **Required for compact variant** |
3380
+ | `.pf-c-tree-view__node-content` | `<span>` | Initiates a tree view node content container used to stack elements. |
3381
+ | `.pf-c-tree-view__node-count` | `<span>` | Initiates a tree view node count. |
3382
+ | `.pf-c-tree-view__node-toggle` | `<span>`, `<button>` | Initiates a tree view toggle. |
3383
+ | `.pf-c-tree-view__node-toggle-icon` | `<span>` | Initiates a tree view toggle icon. |
3384
+ | `.pf-c-tree-view__node-title` | `<span>` | Initiates a tree view node title. |
3385
+ | `.pf-c-tree-view__node-text` | `<span>`, `<button>` | Initiates tree view text. **Note:** Use a `<button>` when the node is expandable and selectable. |
3386
+ | `.pf-c-tree-view__node-icon` | `<span>` | Initiates a tree view icon. |
3387
+ | `.pf-c-tree-view__node-check` | `<span>` | Initiates a tree view check. |
3388
+ | `.pf-c-tree-view__action` | `<div>` | Initiates a tree view action wrapper. |
3389
+ | `.pf-c-tree-view__search` | `<div>` | Initiates a tree view search wrapper. |
3390
+ | `.pf-m-guides` | `.pf-c-tree-view` | Modifies the tree view to the guides presentation. |
3391
+ | `.pf-m-compact` | `.pf-c-tree-view` | Modifies the tree view to the compact presentation. |
3392
+ | `.pf-m-no-background` | `.pf-c-tree-view.pf-m-compact` | Modifies the tree view compact variant node containers to have a transparent background. |
3393
+ | `.pf-m-current` | `.pf-c-tree-view__node` | Modifies the tree view node to be current. |
3394
+ | `.pf-m-selectable` | `.pf-c-tree-view__node` | For use on nodes that are expandable and selectable, when the default click action on the node selects it instead of expanding it. |
3395
+ | `.pf-m-truncate` | `.pf-c-tree-view`, `.pf-c-tree-view__node-title`, `.pf-c-tree-view__node-text` | Modifies the tree view title or text to truncate. |
@@ -55,8 +55,8 @@ The truncate component contains two child elements, `.pf-c-truncate__start` and
55
55
 
56
56
  ### Usage
57
57
 
58
- | Class | Applied | Outcome |
59
- | ----------------------- | -------- | --------------------------------------------- |
60
- | `.pf-c-truncate` | `<span>` | Initiates the truncate component. |
58
+ | Class | Applied | Outcome |
59
+ | -- | -- | -- |
60
+ | `.pf-c-truncate` | `<span>` | Initiates the truncate component. |
61
61
  | `.pf-c-truncate__start` | `<span>` | Defines the truncate component starting text. |
62
- | `.pf-c-truncate__end` | `<span>` | Defines the truncate component ending text. |
62
+ | `.pf-c-truncate__end` | `<span>` | Defines the truncate component ending text. |
@@ -46,13 +46,13 @@ wrapperTag: div
46
46
  <div class="pf-c-wizard__outer-wrap">
47
47
  <div class="pf-c-wizard__inner-wrap">
48
48
  <nav class="pf-c-wizard__nav" aria-label="Steps">
49
- <ol class="pf-c-wizard__nav-list">
49
+ <ol class="pf-c-wizard__nav-list" role="list">
50
50
  <li class="pf-c-wizard__nav-item">
51
51
  <button class="pf-c-wizard__nav-link">Information</button>
52
52
  </li>
53
53
  <li class="pf-c-wizard__nav-item">
54
54
  <button class="pf-c-wizard__nav-link pf-m-current">Configuration</button>
55
- <ol class="pf-c-wizard__nav-list">
55
+ <ol class="pf-c-wizard__nav-list" role="list">
56
56
  <li class="pf-c-wizard__nav-item">
57
57
  <button class="pf-c-wizard__nav-link">Substep A</button>
58
58
  </li>
@@ -252,13 +252,13 @@ wrapperTag: div
252
252
  <div class="pf-c-wizard__outer-wrap">
253
253
  <div class="pf-c-wizard__inner-wrap">
254
254
  <nav class="pf-c-wizard__nav pf-m-expanded" aria-label="Steps">
255
- <ol class="pf-c-wizard__nav-list">
255
+ <ol class="pf-c-wizard__nav-list" role="list">
256
256
  <li class="pf-c-wizard__nav-item">
257
257
  <button class="pf-c-wizard__nav-link">Information</button>
258
258
  </li>
259
259
  <li class="pf-c-wizard__nav-item">
260
260
  <button class="pf-c-wizard__nav-link pf-m-current">Configuration</button>
261
- <ol class="pf-c-wizard__nav-list">
261
+ <ol class="pf-c-wizard__nav-list" role="list">
262
262
  <li class="pf-c-wizard__nav-item">
263
263
  <button class="pf-c-wizard__nav-link">Substep A</button>
264
264
  </li>
@@ -458,13 +458,13 @@ wrapperTag: div
458
458
  <div class="pf-c-wizard__outer-wrap">
459
459
  <div class="pf-c-wizard__inner-wrap">
460
460
  <nav class="pf-c-wizard__nav" aria-label="Steps">
461
- <ol class="pf-c-wizard__nav-list">
461
+ <ol class="pf-c-wizard__nav-list" role="list">
462
462
  <li class="pf-c-wizard__nav-item">
463
463
  <button class="pf-c-wizard__nav-link">Information</button>
464
464
  </li>
465
465
  <li class="pf-c-wizard__nav-item">
466
466
  <button class="pf-c-wizard__nav-link pf-m-current">Configuration</button>
467
- <ol class="pf-c-wizard__nav-list">
467
+ <ol class="pf-c-wizard__nav-list" role="list">
468
468
  <li class="pf-c-wizard__nav-item">
469
469
  <button class="pf-c-wizard__nav-link">Substep A</button>
470
470
  </li>
@@ -712,7 +712,7 @@ wrapperTag: div
712
712
  <div class="pf-c-wizard__outer-wrap">
713
713
  <div class="pf-c-wizard__inner-wrap">
714
714
  <nav class="pf-c-wizard__nav" aria-label="Steps">
715
- <ol class="pf-c-wizard__nav-list">
715
+ <ol class="pf-c-wizard__nav-list" role="list">
716
716
  <li class="pf-c-wizard__nav-item">
717
717
  <button
718
718
  class="pf-c-wizard__nav-link pf-m-current"
@@ -728,7 +728,7 @@ wrapperTag: div
728
728
  </span>
729
729
  </span>
730
730
  </button>
731
- <ol class="pf-c-wizard__nav-list">
731
+ <ol class="pf-c-wizard__nav-list" role="list">
732
732
  <li class="pf-c-wizard__nav-item">
733
733
  <button class="pf-c-wizard__nav-link">Substep A</button>
734
734
  </li>
@@ -946,7 +946,7 @@ wrapperTag: div
946
946
  <div class="pf-c-wizard__outer-wrap">
947
947
  <div class="pf-c-wizard__inner-wrap">
948
948
  <nav class="pf-c-wizard__nav" aria-label="Steps">
949
- <ol class="pf-c-wizard__nav-list">
949
+ <ol class="pf-c-wizard__nav-list" role="list">
950
950
  <li class="pf-c-wizard__nav-item">
951
951
  <button class="pf-c-wizard__nav-link">Information</button>
952
952
  </li>
@@ -962,7 +962,7 @@ wrapperTag: div
962
962
  </span>
963
963
  </span>
964
964
  </button>
965
- <ol class="pf-c-wizard__nav-list">
965
+ <ol class="pf-c-wizard__nav-list" role="list">
966
966
  <li class="pf-c-wizard__nav-item">
967
967
  <button class="pf-c-wizard__nav-link">Substep A</button>
968
968
  </li>
@@ -1183,13 +1183,13 @@ wrapperTag: div
1183
1183
  <div class="pf-c-wizard__outer-wrap">
1184
1184
  <div class="pf-c-wizard__inner-wrap">
1185
1185
  <nav class="pf-c-wizard__nav" aria-label="Steps">
1186
- <ol class="pf-c-wizard__nav-list">
1186
+ <ol class="pf-c-wizard__nav-list" role="list">
1187
1187
  <li class="pf-c-wizard__nav-item">
1188
1188
  <button class="pf-c-wizard__nav-link">Information</button>
1189
1189
  </li>
1190
1190
  <li class="pf-c-wizard__nav-item">
1191
1191
  <button class="pf-c-wizard__nav-link">Configuration</button>
1192
- <ol class="pf-c-wizard__nav-list">
1192
+ <ol class="pf-c-wizard__nav-list" role="list">
1193
1193
  <li class="pf-c-wizard__nav-item">
1194
1194
  <button class="pf-c-wizard__nav-link">Substep A</button>
1195
1195
  </li>
@@ -1214,10 +1214,9 @@ wrapperTag: div
1214
1214
  <div class="pf-l-bullseye">
1215
1215
  <div class="pf-c-empty-state pf-m-lg">
1216
1216
  <div class="pf-c-empty-state__content">
1217
- <i
1218
- class="fas fa- fa-cogs pf-c-empty-state__icon"
1219
- aria-hidden="true"
1220
- ></i>
1217
+ <div class="pf-c-empty-state__icon">
1218
+ <i class="fas fa- fa-cogs" aria-hidden="true"></i>
1219
+ </div>
1221
1220
 
1222
1221
  <h1
1223
1222
  class="pf-c-title pf-m-lg"
@@ -1228,10 +1227,6 @@ wrapperTag: div
1228
1227
  class="pf-c-progress pf-m-singleline"
1229
1228
  id="progress-singleline-example"
1230
1229
  >
1231
- <div
1232
- class="pf-c-progress__description"
1233
- id="progress-singleline-example-description"
1234
- ></div>
1235
1230
  <div class="pf-c-progress__status" aria-hidden="true">
1236
1231
  <span class="pf-c-progress__measure">33%</span>
1237
1232
  </div>
@@ -1251,9 +1246,7 @@ wrapperTag: div
1251
1246
  <div
1252
1247
  class="pf-c-empty-state__body"
1253
1248
  >Description can be used to further elaborate on the validation step, or give the user a better idea of how long the process will take.</div>
1254
- <div class="pf-c-empty-state__secondary">
1255
- <button class="pf-c-button pf-m-link" type="button">Cancel</button>
1256
- </div>
1249
+ <button class="pf-c-button pf-m-link" type="button">Cancel</button>
1257
1250
  </div>
1258
1251
  </div>
1259
1252
  </div>
@@ -1276,53 +1269,53 @@ wrapperTag: div
1276
1269
 
1277
1270
  ### Accessibility
1278
1271
 
1279
- | Attribute | Applied to | Outcome |
1280
- | ----------------------- | ----------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1281
- | `aria-expanded="true"` | `.pf-c-wizard__toggle` | Indicates that the steps menu is visible. **Required** |
1282
- | `aria-expanded="false"` | `.pf-c-wizard__toggle` | Indicates that the steps menu is hidden. **Required** |
1283
- | `aria-label="close"` | `.pf-c-wizard__toggle-icon` | Gives the close button an accessible name. **Required** |
1284
- | `aria-hidden="true"` | `.pf-c-wizard__toggle-icon`, `.pf-c-wizard__toggle-divider` | Hides the icon from assistive technologies. **Required** |
1285
- | `aria-label="Steps"` | `.pf-c-wizard__nav` | Gives the steps nav element an accessible name. **Required** |
1286
- | `disabled` | `button.pf-c-wizard__nav-link` | Indicates that the element is disabled. **Required when a nav item is disabled** |
1287
- | `aria-disabled="true"` | `a.pf-c-wizard__nav-link` | Indicates that the element is disabled. **Required for disabled links with `.pf-m-disabled`** |
1288
- | `aria-current="page"` | `.pf-c-wizard__nav-link` | Indicates the current page link. Can only occur once on page. **Required for the current link** |
1289
- | `aria-expanded="true"` | `.pf-c-wizard__nav-link` | Indicates that the link subnav is visible. **Required** |
1290
- | `aria-expanded="false"` | `.pf-c-wizard__nav-link` | Indicates that the link subnav is hidden. **Required** |
1291
- | `tabindex="-1"` | `a.pf-c-wizard__nav-link` | Removes a link from keyboard focus. **Required for disabled links with `.pf-m-disabled`** |
1292
- | `tabindex="0"` | `.pf-c-wizard__main` | If the wizard main section has overflow content that triggers a scrollbar, to ensure that the content is keyboard accessible, the section must include either a focusable element within the scrollable region or the section itself must be focusable by adding `tabindex="0"`. |
1272
+ | Attribute | Applied to | Outcome |
1273
+ | -- | -- | -- |
1274
+ | `aria-expanded="true"` | `.pf-c-wizard__toggle` | Indicates that the steps menu is visible. **Required** |
1275
+ | `aria-expanded="false"` | `.pf-c-wizard__toggle` | Indicates that the steps menu is hidden. **Required** |
1276
+ | `aria-label="close"` | `.pf-c-wizard__toggle-icon` | Gives the close button an accessible name. **Required** |
1277
+ | `aria-hidden="true"` | `.pf-c-wizard__toggle-icon`, `.pf-c-wizard__toggle-divider` | Hides the icon from assistive technologies. **Required** |
1278
+ | `aria-label="Steps"` | `.pf-c-wizard__nav` | Gives the steps nav element an accessible name. **Required** |
1279
+ | `disabled` | `button.pf-c-wizard__nav-link` | Indicates that the element is disabled. **Required when a nav item is disabled** |
1280
+ | `aria-disabled="true"` | `a.pf-c-wizard__nav-link` | Indicates that the element is disabled. **Required for disabled links with `.pf-m-disabled`** |
1281
+ | `aria-current="page"` | `.pf-c-wizard__nav-link` | Indicates the current page link. Can only occur once on page. **Required for the current link** |
1282
+ | `aria-expanded="true"` | `.pf-c-wizard__nav-link` | Indicates that the link subnav is visible. **Required** |
1283
+ | `aria-expanded="false"` | `.pf-c-wizard__nav-link` | Indicates that the link subnav is hidden. **Required** |
1284
+ | `tabindex="-1"` | `a.pf-c-wizard__nav-link` | Removes a link from keyboard focus. **Required for disabled links with `.pf-m-disabled`** |
1285
+ | `tabindex="0"` | `.pf-c-wizard__main` | If the wizard main section has overflow content that triggers a scrollbar, to ensure that the content is keyboard accessible, the section must include either a focusable element within the scrollable region or the section itself must be focusable by adding `tabindex="0"`. |
1293
1286
 
1294
1287
  ### Usage
1295
1288
 
1296
- | Class | Applied to | Outcome |
1297
- | ------------------------------------ | ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
1298
- | `.pf-c-wizard` | `<div>` | Initiates the wizard component. **Required** |
1299
- | `.pf-c-wizard__header` | `<header>` | Initiates the header. **Required** when the wizard is in a modal. Not recommended to use when the wizard is placed on a page. |
1300
- | `.pf-c-wizard__close` | `.pf-c-button.pf-m-plain` | Initiates the close button. **Required** |
1301
- | `.pf-c-wizard__title` | `.pf-c-title.pf-m-3xl` | Initiates the title. **Required** |
1302
- | `.pf-c-wizard__description` | `<div>`, `<p>` | Initiates the description. |
1303
- | `.pf-c-wizard__toggle` | `<button>` | Initiates the mobile steps menu toggle button. **Required** |
1304
- | `.pf-c-wizard__toggle-list` | `<span>` | Initiates the toggle list. **Required** |
1305
- | `.pf-c-wizard__toggle-list-item` | `<span>` | Initiates a toggle list item. **Required** |
1306
- | `.pf-c-wizard__toggle-num` | `<span>` | Initiates the step number. **Required** |
1307
- | `.pf-c-wizard__toggle-separator` | `<i>` | Initiates the separator between steps. |
1308
- | `.pf-c-wizard__toggle-icon` | `<span>` | Initiates the toggle icon wrapper. **Required** |
1309
- | `.pf-c-wizard__outer-wrap` | `<div>` | Initiates the outer wrapper. **Required** |
1310
- | `.pf-c-wizard__inner-wrap` | `<div>` | Initiates the inner wrapper. **Required** |
1311
- | `.pf-c-wizard__nav` | `<nav>` | Initiates the steps nav. **Required** |
1312
- | `.pf-c-wizard__nav-list` | `<ol>` | Initiates a list of steps. **Required** |
1313
- | `.pf-c-wizard__nav-item` | `<li>` | Initiates a step list item. **Required** |
1314
- | `.pf-c-wizard__nav-link` | `<a>` | Initiates a step link. **Required** |
1315
- | `.pf-c-wizard__nav-link-text` | `<span>` | Initiates the link text container. **Required when nav item is expandable** |
1316
- | `.pf-c-wizard__nav-link-toggle` | `<span>` | Initiates the toggle container. **Required when nav item is expandable** |
1317
- | `.pf-c-wizard__nav-link-toggle-icon` | `<span>` | Initiates the toggle icon container. **Required when nav item is expandable** |
1318
- | `.pf-c-wizard__main` | `<main>`, `<div>` | Initiates the main container. **Required** Note: use the `<main>` element when when there are no other `<main>` elements on the page. |
1319
- | `.pf-c-wizard__main-body` | `<div>` | Initiates the main container body section. **Required** |
1320
- | `.pf-c-wizard__footer` | `<footer>` | Initiates the footer. **Required** |
1321
- | `.pf-c-wizard__footer-cancel` | `<div>` | Initiates the cancel button. **Required** |
1322
- | `.pf-m-expanded` | `.pf-c-wizard__toggle`, `.pf-c-wizard__nav` | Modifies the mobile steps toggle and steps menu for the expanded state. |
1323
- | `.pf-m-finished` | `.pf-c-wizard` | Modifies the wizard for the finished state. |
1324
- | `.pf-m-expandable` | `.pf-c-wizard__nav-item` | Modifies a nav item for the expandable state. |
1325
- | `.pf-m-expanded` | `.pf-c-wizard__nav-item` | Modifies a nav item for the expanded state. |
1326
- | `.pf-m-current` | `.pf-c-wizard__nav-link` | Modifies a step link for the current state. **Required** |
1327
- | `.pf-m-disabled` | `.pf-c-wizard__nav-link` | Modifies a step link for the disabled state. |
1328
- | `.pf-m-no-padding` | `.pf-c-wizard__main-body` | Modifies the main container body to remove the padding. |
1289
+ | Class | Applied to | Outcome |
1290
+ | -- | -- | -- |
1291
+ | `.pf-c-wizard` | `<div>` | Initiates the wizard component. **Required** |
1292
+ | `.pf-c-wizard__header` | `<header>` | Initiates the header. **Required** when the wizard is in a modal. Not recommended to use when the wizard is placed on a page. |
1293
+ | `.pf-c-wizard__close` | `.pf-c-button.pf-m-plain` | Initiates the close button. **Required** |
1294
+ | `.pf-c-wizard__title` | `.pf-c-title.pf-m-3xl` | Initiates the title. **Required** |
1295
+ | `.pf-c-wizard__description` | `<div>`, `<p>` | Initiates the description. |
1296
+ | `.pf-c-wizard__toggle` | `<button>` | Initiates the mobile steps menu toggle button. **Required** |
1297
+ | `.pf-c-wizard__toggle-list` | `<span>` | Initiates the toggle list. **Required** |
1298
+ | `.pf-c-wizard__toggle-list-item` | `<span>` | Initiates a toggle list item. **Required** |
1299
+ | `.pf-c-wizard__toggle-num` | `<span>` | Initiates the step number. **Required** |
1300
+ | `.pf-c-wizard__toggle-separator` | `<i>` | Initiates the separator between steps. |
1301
+ | `.pf-c-wizard__toggle-icon` | `<span>` | Initiates the toggle icon wrapper. **Required** |
1302
+ | `.pf-c-wizard__outer-wrap` | `<div>` | Initiates the outer wrapper. **Required** |
1303
+ | `.pf-c-wizard__inner-wrap` | `<div>` | Initiates the inner wrapper. **Required** |
1304
+ | `.pf-c-wizard__nav` | `<nav>` | Initiates the steps nav. **Required** |
1305
+ | `.pf-c-wizard__nav-list` | `<ol>` | Initiates a list of steps. **Required** |
1306
+ | `.pf-c-wizard__nav-item` | `<li>` | Initiates a step list item. **Required** |
1307
+ | `.pf-c-wizard__nav-link` | `<a>` | Initiates a step link. **Required** |
1308
+ | `.pf-c-wizard__nav-link-text` | `<span>` | Initiates the link text container. **Required when nav item is expandable** |
1309
+ | `.pf-c-wizard__nav-link-toggle` | `<span>` | Initiates the toggle container. **Required when nav item is expandable** |
1310
+ | `.pf-c-wizard__nav-link-toggle-icon` | `<span>` | Initiates the toggle icon container. **Required when nav item is expandable** |
1311
+ | `.pf-c-wizard__main` | `<main>`, `<div>` | Initiates the main container. **Required** Note: use the `<main>` element when when there are no other `<main>` elements on the page.|
1312
+ | `.pf-c-wizard__main-body` | `<div>` | Initiates the main container body section. **Required** |
1313
+ | `.pf-c-wizard__footer` | `<footer>` | Initiates the footer. **Required** |
1314
+ | `.pf-c-wizard__footer-cancel` | `<div>` | Initiates the cancel button. **Required** |
1315
+ | `.pf-m-expanded` | `.pf-c-wizard__toggle`, `.pf-c-wizard__nav` | Modifies the mobile steps toggle and steps menu for the expanded state. |
1316
+ | `.pf-m-finished` | `.pf-c-wizard` | Modifies the wizard for the finished state. |
1317
+ | `.pf-m-expandable` | `.pf-c-wizard__nav-item` | Modifies a nav item for the expandable state. |
1318
+ | `.pf-m-expanded` | `.pf-c-wizard__nav-item` | Modifies a nav item for the expanded state. |
1319
+ | `.pf-m-current` | `.pf-c-wizard__nav-link` | Modifies a step link for the current state. **Required** |
1320
+ | `.pf-m-disabled` | `.pf-c-wizard__nav-link` | Modifies a step link for the disabled state. |
1321
+ | `.pf-m-no-padding` | `.pf-c-wizard__main-body` | Modifies the main container body to remove the padding. |
@@ -97,7 +97,7 @@ This demo implements the about modal, including the backdrop.
97
97
  </div>
98
98
  <section class="pf-c-app-launcher__group">
99
99
  <h1 class="pf-c-app-launcher__group-title">Favorites</h1>
100
- <ul>
100
+ <ul role="list">
101
101
  <li
102
102
  class="pf-c-app-launcher__menu-wrapper pf-m-external pf-m-favorite"
103
103
  >
@@ -149,7 +149,7 @@ This demo implements the about modal, including the backdrop.
149
149
  <hr class="pf-c-divider" />
150
150
  <section class="pf-c-app-launcher__group">
151
151
  <h1 class="pf-c-app-launcher__group-title">Group 1</h1>
152
- <ul>
152
+ <ul role="list">
153
153
  <li
154
154
  class="pf-c-app-launcher__menu-wrapper pf-m-external"
155
155
  >
@@ -804,7 +804,7 @@ This demo implements the about modal, including the backdrop.
804
804
  id="modal-basic-example-primary-nav"
805
805
  aria-label="Global"
806
806
  >
807
- <ul class="pf-c-nav__list">
807
+ <ul class="pf-c-nav__list" role="list">
808
808
  <li class="pf-c-nav__item">
809
809
  <a href="#" class="pf-c-nav__link">System panel</a>
810
810
  </li>
@@ -836,7 +836,7 @@ This demo implements the about modal, including the backdrop.
836
836
  <section class="pf-c-page__main-breadcrumb pf-m-limit-width">
837
837
  <div class="pf-c-page__main-body">
838
838
  <nav class="pf-c-breadcrumb" aria-label="breadcrumb">
839
- <ol class="pf-c-breadcrumb__list">
839
+ <ol class="pf-c-breadcrumb__list" role="list">
840
840
  <li class="pf-c-breadcrumb__item">
841
841
  <a href="#" class="pf-c-breadcrumb__link">Section home</a>
842
842
  </li>
@@ -95,7 +95,7 @@ section: components
95
95
  </div>
96
96
  <section class="pf-c-app-launcher__group">
97
97
  <h1 class="pf-c-app-launcher__group-title">Favorites</h1>
98
- <ul>
98
+ <ul role="list">
99
99
  <li
100
100
  class="pf-c-app-launcher__menu-wrapper pf-m-external pf-m-favorite"
101
101
  >
@@ -147,7 +147,7 @@ section: components
147
147
  <hr class="pf-c-divider" />
148
148
  <section class="pf-c-app-launcher__group">
149
149
  <h1 class="pf-c-app-launcher__group-title">Group 1</h1>
150
- <ul>
150
+ <ul role="list">
151
151
  <li
152
152
  class="pf-c-app-launcher__menu-wrapper pf-m-external"
153
153
  >
@@ -802,7 +802,7 @@ section: components
802
802
  id="alert-basic-example-primary-nav"
803
803
  aria-label="Global"
804
804
  >
805
- <ul class="pf-c-nav__list">
805
+ <ul class="pf-c-nav__list" role="list">
806
806
  <li class="pf-c-nav__item">
807
807
  <a href="#" class="pf-c-nav__link">System panel</a>
808
808
  </li>
@@ -834,7 +834,7 @@ section: components
834
834
  <section class="pf-c-page__main-breadcrumb pf-m-limit-width">
835
835
  <div class="pf-c-page__main-body">
836
836
  <nav class="pf-c-breadcrumb" aria-label="breadcrumb">
837
- <ol class="pf-c-breadcrumb__list">
837
+ <ol class="pf-c-breadcrumb__list" role="list">
838
838
  <li class="pf-c-breadcrumb__item">
839
839
  <a href="#" class="pf-c-breadcrumb__link">Section home</a>
840
840
  </li>
@@ -913,7 +913,7 @@ section: components
913
913
  </section>
914
914
  </main>
915
915
  </div>
916
- <ul class="pf-c-alert-group pf-m-toast">
916
+ <ul class="pf-c-alert-group pf-m-toast" role="list">
917
917
  <li class="pf-c-alert-group__item">
918
918
  <div class="pf-c-alert pf-m-success" aria-label="Success alert">
919
919
  <div class="pf-c-alert__icon">
@@ -1079,7 +1079,7 @@ section: components
1079
1079
  </div>
1080
1080
  <section class="pf-c-app-launcher__group">
1081
1081
  <h1 class="pf-c-app-launcher__group-title">Favorites</h1>
1082
- <ul>
1082
+ <ul role="list">
1083
1083
  <li
1084
1084
  class="pf-c-app-launcher__menu-wrapper pf-m-external pf-m-favorite"
1085
1085
  >
@@ -1131,7 +1131,7 @@ section: components
1131
1131
  <hr class="pf-c-divider" />
1132
1132
  <section class="pf-c-app-launcher__group">
1133
1133
  <h1 class="pf-c-app-launcher__group-title">Group 1</h1>
1134
- <ul>
1134
+ <ul role="list">
1135
1135
  <li
1136
1136
  class="pf-c-app-launcher__menu-wrapper pf-m-external"
1137
1137
  >
@@ -1786,7 +1786,7 @@ section: components
1786
1786
  id="alert-horizontal-example-primary-nav"
1787
1787
  aria-label="Global"
1788
1788
  >
1789
- <ul class="pf-c-nav__list">
1789
+ <ul class="pf-c-nav__list" role="list">
1790
1790
  <li class="pf-c-nav__item">
1791
1791
  <a href="#" class="pf-c-nav__link">System panel</a>
1792
1792
  </li>
@@ -1818,7 +1818,7 @@ section: components
1818
1818
  <section class="pf-c-page__main-breadcrumb pf-m-limit-width">
1819
1819
  <div class="pf-c-page__main-body">
1820
1820
  <nav class="pf-c-breadcrumb" aria-label="breadcrumb">
1821
- <ol class="pf-c-breadcrumb__list">
1821
+ <ol class="pf-c-breadcrumb__list" role="list">
1822
1822
  <li class="pf-c-breadcrumb__item">
1823
1823
  <a href="#" class="pf-c-breadcrumb__link">Section home</a>
1824
1824
  </li>
@@ -2101,7 +2101,7 @@ section: components
2101
2101
  </div>
2102
2102
  <section class="pf-c-app-launcher__group">
2103
2103
  <h1 class="pf-c-app-launcher__group-title">Favorites</h1>
2104
- <ul>
2104
+ <ul role="list">
2105
2105
  <li
2106
2106
  class="pf-c-app-launcher__menu-wrapper pf-m-external pf-m-favorite"
2107
2107
  >
@@ -2153,7 +2153,7 @@ section: components
2153
2153
  <hr class="pf-c-divider" />
2154
2154
  <section class="pf-c-app-launcher__group">
2155
2155
  <h1 class="pf-c-app-launcher__group-title">Group 1</h1>
2156
- <ul>
2156
+ <ul role="list">
2157
2157
  <li
2158
2158
  class="pf-c-app-launcher__menu-wrapper pf-m-external"
2159
2159
  >
@@ -2808,7 +2808,7 @@ section: components
2808
2808
  id="alert-stacked-example-primary-nav"
2809
2809
  aria-label="Global"
2810
2810
  >
2811
- <ul class="pf-c-nav__list">
2811
+ <ul class="pf-c-nav__list" role="list">
2812
2812
  <li class="pf-c-nav__item">
2813
2813
  <a href="#" class="pf-c-nav__link">System panel</a>
2814
2814
  </li>
@@ -2840,7 +2840,7 @@ section: components
2840
2840
  <section class="pf-c-page__main-breadcrumb pf-m-limit-width">
2841
2841
  <div class="pf-c-page__main-body">
2842
2842
  <nav class="pf-c-breadcrumb" aria-label="breadcrumb">
2843
- <ol class="pf-c-breadcrumb__list">
2843
+ <ol class="pf-c-breadcrumb__list" role="list">
2844
2844
  <li class="pf-c-breadcrumb__item">
2845
2845
  <a href="#" class="pf-c-breadcrumb__link">Section home</a>
2846
2846
  </li>
@@ -96,7 +96,7 @@ cssPrefix: pf-d-back-to-top
96
96
  </div>
97
97
  <section class="pf-c-app-launcher__group">
98
98
  <h1 class="pf-c-app-launcher__group-title">Favorites</h1>
99
- <ul>
99
+ <ul role="list">
100
100
  <li
101
101
  class="pf-c-app-launcher__menu-wrapper pf-m-external pf-m-favorite"
102
102
  >
@@ -148,7 +148,7 @@ cssPrefix: pf-d-back-to-top
148
148
  <hr class="pf-c-divider" />
149
149
  <section class="pf-c-app-launcher__group">
150
150
  <h1 class="pf-c-app-launcher__group-title">Group 1</h1>
151
- <ul>
151
+ <ul role="list">
152
152
  <li
153
153
  class="pf-c-app-launcher__menu-wrapper pf-m-external"
154
154
  >
@@ -803,7 +803,7 @@ cssPrefix: pf-d-back-to-top
803
803
  id="back-to-top-basic-example-primary-nav"
804
804
  aria-label="Global"
805
805
  >
806
- <ul class="pf-c-nav__list">
806
+ <ul class="pf-c-nav__list" role="list">
807
807
  <li class="pf-c-nav__item">
808
808
  <a href="#" class="pf-c-nav__link">System panel</a>
809
809
  </li>
@@ -835,7 +835,7 @@ cssPrefix: pf-d-back-to-top
835
835
  <section class="pf-c-page__main-breadcrumb pf-m-limit-width">
836
836
  <div class="pf-c-page__main-body">
837
837
  <nav class="pf-c-breadcrumb" aria-label="breadcrumb">
838
- <ol class="pf-c-breadcrumb__list">
838
+ <ol class="pf-c-breadcrumb__list" role="list">
839
839
  <li class="pf-c-breadcrumb__item">
840
840
  <a href="#" class="pf-c-breadcrumb__link">Section home</a>
841
841
  </li>