@patternfly/patternfly 6.3.0-prerelease.3 → 6.3.0-prerelease.31

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 (112) hide show
  1. package/README.md +1 -1
  2. package/assets/images/icon-help.hbs +3 -0
  3. package/assets/images/icon-outlined-star.hbs +3 -0
  4. package/assets/images/icon-star.hbs +3 -0
  5. package/base/patternfly-common.css +46 -11
  6. package/base/patternfly-common.scss +58 -13
  7. package/components/Accordion/accordion.css +72 -3
  8. package/components/Accordion/accordion.scss +78 -6
  9. package/components/Alert/alert-group.css +52 -31
  10. package/components/Alert/alert-group.scss +77 -46
  11. package/components/Button/button.css +154 -6
  12. package/components/Button/button.scss +160 -8
  13. package/components/CodeEditor/code-editor.css +3 -0
  14. package/components/CodeEditor/code-editor.scss +3 -1
  15. package/components/DualListSelector/dual-list-selector.css +36 -0
  16. package/components/DualListSelector/dual-list-selector.scss +43 -0
  17. package/components/ExpandableSection/expandable-section.css +45 -1
  18. package/components/ExpandableSection/expandable-section.scss +48 -1
  19. package/components/Form/form.css +40 -1
  20. package/components/Form/form.scss +47 -1
  21. package/components/FormControl/form-control.css +16 -0
  22. package/components/FormControl/form-control.scss +9 -0
  23. package/components/Menu/menu.css +24 -4
  24. package/components/Menu/menu.scss +20 -5
  25. package/components/MenuToggle/menu-toggle.css +38 -4
  26. package/components/MenuToggle/menu-toggle.scss +48 -3
  27. package/components/Nav/nav.css +22 -8
  28. package/components/Nav/nav.scss +22 -9
  29. package/components/Page/page.css +66 -6
  30. package/components/Page/page.scss +48 -5
  31. package/components/Progress/progress.css +16 -0
  32. package/components/Progress/progress.scss +11 -1
  33. package/components/ProgressStepper/progress-stepper.scss +1 -0
  34. package/components/Skeleton/skeleton.css +22 -2
  35. package/components/Skeleton/skeleton.scss +25 -3
  36. package/components/Spinner/spinner.css +5 -0
  37. package/components/Spinner/spinner.scss +6 -0
  38. package/components/Table/table-grid.css +6 -5
  39. package/components/Table/table-grid.scss +2 -1
  40. package/components/Table/table.css +68 -8
  41. package/components/Table/table.scss +89 -5
  42. package/components/Tabs/tabs.css +25 -15
  43. package/components/Tabs/tabs.scss +26 -13
  44. package/components/TextInputGroup/text-input-group.css +16 -0
  45. package/components/TextInputGroup/text-input-group.scss +8 -0
  46. package/components/Timestamp/timestamp.css +4 -0
  47. package/components/Timestamp/timestamp.scss +7 -0
  48. package/components/TreeView/tree-view.css +39 -0
  49. package/components/TreeView/tree-view.scss +42 -2
  50. package/components/Truncate/truncate.css +6 -0
  51. package/components/Truncate/truncate.scss +9 -0
  52. package/components/_index.css +775 -94
  53. package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
  54. package/docs/components/Button/examples/Button.md +161 -6
  55. package/docs/components/Card/examples/Card.md +8 -8
  56. package/docs/components/CodeBlock/examples/CodeBlock.md +1 -1
  57. package/docs/components/CodeEditor/examples/CodeEditor.md +26 -2
  58. package/docs/components/DataList/examples/DataList.md +23 -23
  59. package/docs/components/Divider/examples/Divider.md +1 -1
  60. package/docs/components/Drawer/examples/Drawer.md +4 -0
  61. package/docs/components/DualListSelector/examples/DualListSelector.md +534 -16
  62. package/docs/components/ExpandableSection/examples/ExpandableSection.md +6 -6
  63. package/docs/components/Form/examples/Form.md +1179 -114
  64. package/docs/components/Hint/examples/Hint.md +3 -3
  65. package/docs/components/InlineEdit/examples/InlineEdit.md +2 -2
  66. package/docs/components/JumpLinks/examples/JumpLinks.md +1 -1
  67. package/docs/components/Masthead/examples/masthead.md +90 -12
  68. package/docs/components/Menu/examples/Menu.md +122 -6
  69. package/docs/components/MenuToggle/examples/MenuToggle.md +93 -55
  70. package/docs/components/ModalBox/examples/ModalBox.md +13 -1
  71. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +2 -10
  72. package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
  73. package/docs/components/Page/examples/Page.md +148 -14
  74. package/docs/components/Pagination/examples/Pagination.md +12 -12
  75. package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
  76. package/docs/components/Spinner/examples/Spinner.md +10 -0
  77. package/docs/components/Table/examples/Table.md +9363 -6223
  78. package/docs/components/Tabs/examples/Tabs.md +1214 -6729
  79. package/docs/components/Toolbar/examples/Toolbar.md +7 -7
  80. package/docs/components/Truncate/examples/Truncate.md +53 -10
  81. package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
  82. package/docs/demos/Alert/examples/Alert.md +66 -9
  83. package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
  84. package/docs/demos/Banner/examples/Banner.md +47 -6
  85. package/docs/demos/Card/examples/Card.md +5 -62
  86. package/docs/demos/CardView/examples/CardView.md +24 -5
  87. package/docs/demos/Dashboard/examples/Dashboard.md +24 -5
  88. package/docs/demos/DataList/examples/DataList.md +100 -24
  89. package/docs/demos/DescriptionList/examples/DescriptionList.md +66 -47
  90. package/docs/demos/Drawer/examples/Drawer.md +110 -53
  91. package/docs/demos/Form/examples/BasicForms.md +142 -22
  92. package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
  93. package/docs/demos/Masthead/examples/Masthead.md +171 -19
  94. package/docs/demos/Modal/examples/Modal.md +171 -21
  95. package/docs/demos/Nav/examples/Nav.md +113 -18
  96. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +110 -15
  97. package/docs/demos/Page/examples/Page.md +661 -40
  98. package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
  99. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +160 -103
  100. package/docs/demos/Skeleton/examples/Skeleton.md +22 -3
  101. package/docs/demos/Table/examples/Table.md +504 -175
  102. package/docs/demos/Tabs/examples/Tabs.md +137 -593
  103. package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
  104. package/docs/demos/Wizard/examples/Wizard.md +198 -27
  105. package/package.json +6 -6
  106. package/patternfly-base-no-globals.css +45 -11
  107. package/patternfly-base.css +45 -11
  108. package/patternfly-no-globals.css +820 -105
  109. package/patternfly.css +820 -105
  110. package/patternfly.min.css +1 -1
  111. package/patternfly.min.css.map +1 -1
  112. package/sass-utilities/mixins.scss +54 -0
@@ -589,7 +589,7 @@ Several components in the following examples do not include functional and/or ac
589
589
  <div class="pf-v6-c-toolbar__group pf-m-toggle-group">
590
590
  <div class="pf-v6-c-toolbar__toggle">
591
591
  <button
592
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-expanded"
592
+ class="pf-v6-c-menu-toggle pf-m-expanded pf-m-plain"
593
593
  type="button"
594
594
  aria-expanded="true"
595
595
  aria-label="Show filters"
@@ -1196,7 +1196,7 @@ Several components in the following examples do not include functional and/or ac
1196
1196
  <div class="pf-v6-c-toolbar__group pf-m-toggle-group">
1197
1197
  <div class="pf-v6-c-toolbar__toggle">
1198
1198
  <button
1199
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-expanded"
1199
+ class="pf-v6-c-menu-toggle pf-m-expanded pf-m-plain"
1200
1200
  type="button"
1201
1201
  aria-expanded="true"
1202
1202
  aria-label="Show filters"
@@ -1667,7 +1667,7 @@ Several components in the following examples do not include functional and/or ac
1667
1667
  class="pf-v6-c-menu-toggle pf-m-plain"
1668
1668
  type="button"
1669
1669
  aria-expanded="false"
1670
- aria-label="Menu toggle"
1670
+ aria-label="Toggle options"
1671
1671
  id="toolbar-selected-filters-example-overflow-toggle"
1672
1672
  >
1673
1673
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1919,7 +1919,7 @@ Several components in the following examples do not include functional and/or ac
1919
1919
  class="pf-v6-c-menu-toggle pf-m-plain"
1920
1920
  type="button"
1921
1921
  aria-expanded="false"
1922
- aria-label="Menu toggle"
1922
+ aria-label="Toggle options"
1923
1923
  id="toolbar-stacked-example-overflow-toggle"
1924
1924
  >
1925
1925
  <span class="pf-v6-c-menu-toggle__icon">
@@ -1972,7 +1972,7 @@ Several components in the following examples do not include functional and/or ac
1972
1972
  <div class="pf-v6-c-pagination__total-items">37 items</div>
1973
1973
  <div class="pf-v6-c-pagination__page-menu">
1974
1974
  <button
1975
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text"
1975
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
1976
1976
  type="button"
1977
1977
  aria-expanded="false"
1978
1978
  aria-label="Menu toggle"
@@ -2071,7 +2071,7 @@ Several components in the following examples do not include functional and/or ac
2071
2071
  <div class="pf-v6-c-toolbar__group pf-m-toggle-group">
2072
2072
  <div class="pf-v6-c-toolbar__toggle">
2073
2073
  <button
2074
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-expanded"
2074
+ class="pf-v6-c-menu-toggle pf-m-expanded pf-m-plain"
2075
2075
  type="button"
2076
2076
  aria-expanded="true"
2077
2077
  aria-label="Show filters"
@@ -2393,7 +2393,7 @@ Several components in the following examples do not include functional and/or ac
2393
2393
  <div class="pf-v6-c-pagination__total-items">37 items</div>
2394
2394
  <div class="pf-v6-c-pagination__page-menu">
2395
2395
  <button
2396
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text"
2396
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
2397
2397
  type="button"
2398
2398
  aria-expanded="false"
2399
2399
  aria-label="Menu toggle"
@@ -6,18 +6,18 @@ cssPrefix: pf-v6-c-truncate
6
6
 
7
7
  ## Examples
8
8
 
9
- ### Notes
10
-
11
- The truncate component contains two child elements, `.pf-v6-c-truncate__start` and `.pf-v6-c-truncate__end`. If both `start` and `end` are present within `.pf-v6-c-truncate`, trucation will occur in the middle of the string. If only `.pf-v6-c-truncate__start` is present, truncation will occur at the end of the string. If only `.pf-v6-c-truncate__end` is present, truncation will occur at the beginning of the string. A `.pf-v6-c-popover` will be automatically applied to the PatternFly React implementation. `&lrm;` must be included at the end of string to denote the ending punctuation mark. Otherwise it will occur and the beggining of truncation for a `pf-v6-c-truncate__end` element.
9
+ The default behavior of the truncate component is to truncate based on whether the content can fit within the width of its parent container, and to prevent text from wrapping. The following examples that use this default behavior render the truncate component inside a resizable container, allowing you to see how the parent container width affects the truncation.
12
10
 
13
11
  ### Default
14
12
 
13
+ When only the `.pf-v6-c-truncate__start` element is used, truncation will occur at the end of the string.
14
+
15
15
  ```html
16
16
  <div class="pf-v6-c-truncate--example">
17
17
  <span class="pf-v6-c-truncate">
18
18
  <span
19
19
  class="pf-v6-c-truncate__start"
20
- >Vestibulum interdum risus et enim faucibus, sit amet molestie est accumsan.</span>
20
+ >redhat_logo_black_and_white_reversed_simple_with_fedora_container.zip</span>
21
21
  </span>
22
22
  </div>
23
23
 
@@ -25,13 +25,15 @@ The truncate component contains two child elements, `.pf-v6-c-truncate__start` a
25
25
 
26
26
  ### Middle
27
27
 
28
+ When both `.pf-v6-c-truncate__start` and `.pf-v6-c-truncate__end` elements are used, truncation will occur between the strings that are in each respective element. As the parent container width changes, the point at which content within the `.pf-v6-c-truncate__start` element is truncated will also change.
29
+
28
30
  ```html
29
31
  <div class="pf-v6-c-truncate--example">
30
32
  <span class="pf-v6-c-truncate">
31
33
  <span
32
34
  class="pf-v6-c-truncate__start"
33
- >Vestibulum interdum risus et enim faucibus,&nbsp;</span>
34
- <span class="pf-v6-c-truncate__end">sit amet molestie est accumsan.</span>
35
+ >redhat_logo_black_and_white_reversed_simple_</span>
36
+ <span class="pf-v6-c-truncate__end">with_fedora_container.zip</span>
35
37
  </span>
36
38
  </div>
37
39
 
@@ -39,23 +41,64 @@ The truncate component contains two child elements, `.pf-v6-c-truncate__start` a
39
41
 
40
42
  ### Start
41
43
 
44
+ When only the `.pf-v6-c-truncate__end` element is used, truncation will occur at the start of the string. `&lrm;` **must** be included at the end of a string to denote the ending punctuation mark, otherwise it will render at the start of the truncated content.
45
+
42
46
  ```html
43
47
  <div class="pf-v6-c-truncate--example">
44
48
  <span class="pf-v6-c-truncate">
45
49
  <span
46
50
  class="pf-v6-c-truncate__end"
47
- >Vestibulum interdum risus et enim faucibus, sit amet molestie est accumsan.&lrm;</span>
51
+ >redhat_logo_black_and_white_reversed_simple_with_fedora_container.zip</span>
48
52
  </span>
49
53
  </div>
50
54
 
51
55
  ```
52
56
 
57
+ ### Based on max characters
58
+
59
+ Apply the `.pf-m-fixed` class to the `.pf-v6-c-truncate` element to implement truncation based on a fixed amount of characters rather than a parent container width.
60
+
61
+ ```html
62
+ <div>Truncated at end position:</div>
63
+ <span class="pf-v6-c-truncate pf-m-fixed">
64
+ <span
65
+ class="pf-v6-c-truncate__text"
66
+ >redhat_logo_black_and_white_reversed_simple_with_</span>
67
+ <span class="pf-v6-c-truncate__omission" aria-hidden="true">&hellip;</span>
68
+ <span class="pf-v6-screen-reader">fedora_container.zip</span>
69
+ </span>
70
+ <br />
71
+ <br />
72
+ <div>Truncated at middle position:</div>
73
+ <span class="pf-v6-c-truncate pf-m-fixed">
74
+ <span class="pf-v6-c-truncate__text">redhat_logo_black_and_</span>
75
+ <span class="pf-v6-screen-reader">white_reversed_simple_with_</span>
76
+
77
+ <span class="pf-v6-c-truncate__omission" aria-hidden="true">&hellip;</span>
78
+ <span class="pf-v6-c-truncate__text">fedora_container.zip</span>
79
+ </span>
80
+ <br />
81
+ <br />
82
+ <div>Truncated at start position:</div>
83
+ <span class="pf-v6-c-truncate pf-m-fixed">
84
+ <span class="pf-v6-screen-reader">redhat_logo_black_</span>
85
+
86
+ <span class="pf-v6-c-truncate__omission" aria-hidden="true">&hellip;</span>
87
+ <span
88
+ class="pf-v6-c-truncate__text"
89
+ >and_white_reversed_simple_with_fedora_container.zip</span>
90
+ </span>
91
+
92
+ ```
93
+
53
94
  ## Documentation
54
95
 
55
96
  ### Usage
56
97
 
57
98
  | Class | Applied | Outcome |
58
99
  | -- | -- | -- |
59
- | `.pf-v6-c-truncate` | `<span>` | Initiates the truncate component. |
60
- | `.pf-v6-c-truncate__start` | `<span>` | Defines the truncate component starting text. |
61
- | `.pf-v6-c-truncate__end` | `<span>` | Defines the truncate component ending text. |
100
+ | `.pf-v6-c-truncate` | `<span>` | Initiates the truncate component. **Required** |
101
+ | `.pf-v6-c-truncate__start` | `<span>` | Defines the truncate component starting text. **Required** when using default/end or middle truncation, **except** for when the `.pf-m-fixed` class is applied to the `.pf-v6-c-truncate` element. |
102
+ | `.pf-v6-c-truncate__end` | `<span>` | Defines the truncate component ending text. **Required** when using start or middle truncation, **except** for when the `.pf-m-fixed` class is applied to the `.pf-v6-c-truncate` element. |
103
+ | `.pf-v6-c-truncate__text` | `<span>` | Defines the visible truncate component text. **Required** and should only be used when the `.pf-m-fixed` class is applied to the `.pf-v6-c-truncate` element. |
104
+ | `.pf-m-fixed` | `.pf-v6-c-truncate` | Modifies the truncate component to base truncation on a fixed amount of characters rather than container width. |
@@ -21,12 +21,31 @@ This demo implements the about modal, including the backdrop.
21
21
  <div class="pf-v6-c-masthead__main">
22
22
  <span class="pf-v6-c-masthead__toggle">
23
23
  <button
24
- class="pf-v6-c-button pf-m-plain"
24
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
25
25
  type="button"
26
26
  aria-label="Global navigation"
27
27
  >
28
28
  <span class="pf-v6-c-button__icon">
29
- <i class="fas fa-bars" aria-hidden="true"></i>
29
+ <svg
30
+ viewBox="0 0 10 10"
31
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
32
+ width="1em"
33
+ height="1em"
34
+ >
35
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
36
+ <path
37
+ class="pf-v6-c-button--hamburger-icon--middle"
38
+ d="M1,5 L9,5"
39
+ />
40
+ <path
41
+ class="pf-v6-c-button--hamburger-icon--arrow"
42
+ d="M1,5 L1,5 L1,5"
43
+ />
44
+ <path
45
+ class="pf-v6-c-button--hamburger-icon--bottom"
46
+ d="M9,9 L1,9"
47
+ />
48
+ </svg>
30
49
  </span>
31
50
  </button>
32
51
  </span>
@@ -134,7 +153,7 @@ This demo implements the about modal, including the backdrop.
134
153
  </div>
135
154
  <div class="pf-v6-c-toolbar__item">
136
155
  <button
137
- class="pf-v6-c-menu-toggle pf-m-plain"
156
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
138
157
  type="button"
139
158
  aria-expanded="false"
140
159
  aria-label="Settings"
@@ -19,12 +19,31 @@ section: components
19
19
  <div class="pf-v6-c-masthead__main">
20
20
  <span class="pf-v6-c-masthead__toggle">
21
21
  <button
22
- class="pf-v6-c-button pf-m-plain"
22
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
23
23
  type="button"
24
24
  aria-label="Global navigation"
25
25
  >
26
26
  <span class="pf-v6-c-button__icon">
27
- <i class="fas fa-bars" aria-hidden="true"></i>
27
+ <svg
28
+ viewBox="0 0 10 10"
29
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
30
+ width="1em"
31
+ height="1em"
32
+ >
33
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
34
+ <path
35
+ class="pf-v6-c-button--hamburger-icon--middle"
36
+ d="M1,5 L9,5"
37
+ />
38
+ <path
39
+ class="pf-v6-c-button--hamburger-icon--arrow"
40
+ d="M1,5 L1,5 L1,5"
41
+ />
42
+ <path
43
+ class="pf-v6-c-button--hamburger-icon--bottom"
44
+ d="M9,9 L1,9"
45
+ />
46
+ </svg>
28
47
  </span>
29
48
  </button>
30
49
  </span>
@@ -132,7 +151,7 @@ section: components
132
151
  </div>
133
152
  <div class="pf-v6-c-toolbar__item">
134
153
  <button
135
- class="pf-v6-c-menu-toggle pf-m-plain"
154
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
136
155
  type="button"
137
156
  aria-expanded="false"
138
157
  aria-label="Settings"
@@ -398,12 +417,31 @@ section: components
398
417
  <div class="pf-v6-c-masthead__main">
399
418
  <span class="pf-v6-c-masthead__toggle">
400
419
  <button
401
- class="pf-v6-c-button pf-m-plain"
420
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
402
421
  type="button"
403
422
  aria-label="Global navigation"
404
423
  >
405
424
  <span class="pf-v6-c-button__icon">
406
- <i class="fas fa-bars" aria-hidden="true"></i>
425
+ <svg
426
+ viewBox="0 0 10 10"
427
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
428
+ width="1em"
429
+ height="1em"
430
+ >
431
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
432
+ <path
433
+ class="pf-v6-c-button--hamburger-icon--middle"
434
+ d="M1,5 L9,5"
435
+ />
436
+ <path
437
+ class="pf-v6-c-button--hamburger-icon--arrow"
438
+ d="M1,5 L1,5 L1,5"
439
+ />
440
+ <path
441
+ class="pf-v6-c-button--hamburger-icon--bottom"
442
+ d="M9,9 L1,9"
443
+ />
444
+ </svg>
407
445
  </span>
408
446
  </button>
409
447
  </span>
@@ -511,7 +549,7 @@ section: components
511
549
  </div>
512
550
  <div class="pf-v6-c-toolbar__item">
513
551
  <button
514
- class="pf-v6-c-menu-toggle pf-m-plain"
552
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
515
553
  type="button"
516
554
  aria-expanded="false"
517
555
  aria-label="Settings"
@@ -877,12 +915,31 @@ section: components
877
915
  <div class="pf-v6-c-masthead__main">
878
916
  <span class="pf-v6-c-masthead__toggle">
879
917
  <button
880
- class="pf-v6-c-button pf-m-plain"
918
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
881
919
  type="button"
882
920
  aria-label="Global navigation"
883
921
  >
884
922
  <span class="pf-v6-c-button__icon">
885
- <i class="fas fa-bars" aria-hidden="true"></i>
923
+ <svg
924
+ viewBox="0 0 10 10"
925
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
926
+ width="1em"
927
+ height="1em"
928
+ >
929
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
930
+ <path
931
+ class="pf-v6-c-button--hamburger-icon--middle"
932
+ d="M1,5 L9,5"
933
+ />
934
+ <path
935
+ class="pf-v6-c-button--hamburger-icon--arrow"
936
+ d="M1,5 L1,5 L1,5"
937
+ />
938
+ <path
939
+ class="pf-v6-c-button--hamburger-icon--bottom"
940
+ d="M9,9 L1,9"
941
+ />
942
+ </svg>
886
943
  </span>
887
944
  </button>
888
945
  </span>
@@ -990,7 +1047,7 @@ section: components
990
1047
  </div>
991
1048
  <div class="pf-v6-c-toolbar__item">
992
1049
  <button
993
- class="pf-v6-c-menu-toggle pf-m-plain"
1050
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
994
1051
  type="button"
995
1052
  aria-expanded="false"
996
1053
  aria-label="Settings"
@@ -20,12 +20,31 @@ cssPrefix: pf-d-back-to-top
20
20
  <div class="pf-v6-c-masthead__main">
21
21
  <span class="pf-v6-c-masthead__toggle">
22
22
  <button
23
- class="pf-v6-c-button pf-m-plain"
23
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
24
24
  type="button"
25
25
  aria-label="Global navigation"
26
26
  >
27
27
  <span class="pf-v6-c-button__icon">
28
- <i class="fas fa-bars" aria-hidden="true"></i>
28
+ <svg
29
+ viewBox="0 0 10 10"
30
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
31
+ width="1em"
32
+ height="1em"
33
+ >
34
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
35
+ <path
36
+ class="pf-v6-c-button--hamburger-icon--middle"
37
+ d="M1,5 L9,5"
38
+ />
39
+ <path
40
+ class="pf-v6-c-button--hamburger-icon--arrow"
41
+ d="M1,5 L1,5 L1,5"
42
+ />
43
+ <path
44
+ class="pf-v6-c-button--hamburger-icon--bottom"
45
+ d="M9,9 L1,9"
46
+ />
47
+ </svg>
29
48
  </span>
30
49
  </button>
31
50
  </span>
@@ -133,7 +152,7 @@ cssPrefix: pf-d-back-to-top
133
152
  </div>
134
153
  <div class="pf-v6-c-toolbar__item">
135
154
  <button
136
- class="pf-v6-c-menu-toggle pf-m-plain"
155
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
137
156
  type="button"
138
157
  aria-expanded="false"
139
158
  aria-label="Settings"
@@ -21,12 +21,31 @@ wrapperTag: div
21
21
  <div class="pf-v6-c-masthead__main">
22
22
  <span class="pf-v6-c-masthead__toggle">
23
23
  <button
24
- class="pf-v6-c-button pf-m-plain"
24
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
25
25
  type="button"
26
26
  aria-label="Global navigation"
27
27
  >
28
28
  <span class="pf-v6-c-button__icon">
29
- <i class="fas fa-bars" aria-hidden="true"></i>
29
+ <svg
30
+ viewBox="0 0 10 10"
31
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
32
+ width="1em"
33
+ height="1em"
34
+ >
35
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
36
+ <path
37
+ class="pf-v6-c-button--hamburger-icon--middle"
38
+ d="M1,5 L9,5"
39
+ />
40
+ <path
41
+ class="pf-v6-c-button--hamburger-icon--arrow"
42
+ d="M1,5 L1,5 L1,5"
43
+ />
44
+ <path
45
+ class="pf-v6-c-button--hamburger-icon--bottom"
46
+ d="M9,9 L1,9"
47
+ />
48
+ </svg>
30
49
  </span>
31
50
  </button>
32
51
  </span>
@@ -134,7 +153,7 @@ wrapperTag: div
134
153
  </div>
135
154
  <div class="pf-v6-c-toolbar__item">
136
155
  <button
137
- class="pf-v6-c-menu-toggle pf-m-plain"
156
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
138
157
  type="button"
139
158
  aria-expanded="false"
140
159
  aria-label="Settings"
@@ -481,12 +500,34 @@ wrapperTag: div
481
500
  <div class="pf-v6-c-masthead__main">
482
501
  <span class="pf-v6-c-masthead__toggle">
483
502
  <button
484
- class="pf-v6-c-button pf-m-plain"
503
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
485
504
  type="button"
486
505
  aria-label="Global navigation"
487
506
  >
488
507
  <span class="pf-v6-c-button__icon">
489
- <i class="fas fa-bars" aria-hidden="true"></i>
508
+ <svg
509
+ viewBox="0 0 10 10"
510
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
511
+ width="1em"
512
+ height="1em"
513
+ >
514
+ <path
515
+ class="pf-v6-c-button--hamburger-icon--top"
516
+ d="M1,1 L9,1"
517
+ />
518
+ <path
519
+ class="pf-v6-c-button--hamburger-icon--middle"
520
+ d="M1,5 L9,5"
521
+ />
522
+ <path
523
+ class="pf-v6-c-button--hamburger-icon--arrow"
524
+ d="M1,5 L1,5 L1,5"
525
+ />
526
+ <path
527
+ class="pf-v6-c-button--hamburger-icon--bottom"
528
+ d="M9,9 L1,9"
529
+ />
530
+ </svg>
490
531
  </span>
491
532
  </button>
492
533
  </span>
@@ -599,7 +640,7 @@ wrapperTag: div
599
640
  </div>
600
641
  <div class="pf-v6-c-toolbar__item">
601
642
  <button
602
- class="pf-v6-c-menu-toggle pf-m-plain"
643
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
603
644
  type="button"
604
645
  aria-expanded="false"
605
646
  aria-label="Settings"
@@ -723,25 +723,6 @@ wrapperTag: div
723
723
  <button
724
724
  type="button"
725
725
  class="pf-v6-c-tabs__link"
726
- onclick="
727
- event.preventDefault();
728
- ((e) => {
729
- const el = this,
730
- li = this.closest('li'),
731
- ul = this.closest('ul'),
732
- tabs = this.closest('.pf-v6-c-tabs'),
733
- left = Math.round(li.offsetLeft),
734
- top = Math.round(li.offsetTop),
735
- width = Math.round(li.offsetWidth),
736
- height = Math.round(li.offsetHeight);
737
-
738
- ul.querySelectorAll('li').forEach(function(el) {
739
- el.classList.remove('pf-m-current')});
740
- li.classList.add('pf-m-current');
741
- tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
742
- tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
743
- }
744
- )()"
745
726
  role="tab"
746
727
  id="status-tabs-object-1-link"
747
728
  >
@@ -752,25 +733,6 @@ wrapperTag: div
752
733
  <button
753
734
  type="button"
754
735
  class="pf-v6-c-tabs__link"
755
- onclick="
756
- event.preventDefault();
757
- ((e) => {
758
- const el = this,
759
- li = this.closest('li'),
760
- ul = this.closest('ul'),
761
- tabs = this.closest('.pf-v6-c-tabs'),
762
- left = Math.round(li.offsetLeft),
763
- top = Math.round(li.offsetTop),
764
- width = Math.round(li.offsetWidth),
765
- height = Math.round(li.offsetHeight);
766
-
767
- ul.querySelectorAll('li').forEach(function(el) {
768
- el.classList.remove('pf-m-current')});
769
- li.classList.add('pf-m-current');
770
- tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
771
- tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
772
- }
773
- )()"
774
736
  role="tab"
775
737
  id="status-tabs-object-2-link"
776
738
  >
@@ -781,25 +743,6 @@ wrapperTag: div
781
743
  <button
782
744
  type="button"
783
745
  class="pf-v6-c-tabs__link"
784
- onclick="
785
- event.preventDefault();
786
- ((e) => {
787
- const el = this,
788
- li = this.closest('li'),
789
- ul = this.closest('ul'),
790
- tabs = this.closest('.pf-v6-c-tabs'),
791
- left = Math.round(li.offsetLeft),
792
- top = Math.round(li.offsetTop),
793
- width = Math.round(li.offsetWidth),
794
- height = Math.round(li.offsetHeight);
795
-
796
- ul.querySelectorAll('li').forEach(function(el) {
797
- el.classList.remove('pf-m-current')});
798
- li.classList.add('pf-m-current');
799
- tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
800
- tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
801
- }
802
- )()"
803
746
  role="tab"
804
747
  id="status-tabs-object-3-link"
805
748
  >
@@ -1416,7 +1359,7 @@ wrapperTag: div
1416
1359
  >Components of the Control Panel are responsible for maintaining and reconciling the state of the cluster.</div>
1417
1360
  <div class="pf-v6-c-popover__body">
1418
1361
  <table
1419
- class="pf-v6-c-table pf-m-expandable pf-m-compact"
1362
+ class="pf-v6-c-table pf-m-compact pf-m-expandable"
1420
1363
  aria-label="Control panel table"
1421
1364
  id="status-card-expanded-with-popover-example-popover-table"
1422
1365
  >
@@ -1982,7 +1925,7 @@ wrapperTag: div
1982
1925
  </div>
1983
1926
  <div class="pf-v6-c-card__actions pf-m-no-offset">
1984
1927
  <button
1985
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text"
1928
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
1986
1929
  type="button"
1987
1930
  aria-expanded="false"
1988
1931
  id="utilization-card-3-example-select-dropdown"
@@ -2743,7 +2686,7 @@ wrapperTag: div
2743
2686
  style="padding-block-start: 1px;"
2744
2687
  >
2745
2688
  <button
2746
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text"
2689
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
2747
2690
  type="button"
2748
2691
  aria-expanded="false"
2749
2692
  id="trend-card-1-example-select-dropdown"
@@ -2820,7 +2763,7 @@ wrapperTag: div
2820
2763
  <div class="pf-v6-c-card__header pf-v6-u-align-items-flex-start">
2821
2764
  <div class="pf-v6-c-card__actions pf-m-no-offset">
2822
2765
  <button
2823
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text"
2766
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
2824
2767
  type="button"
2825
2768
  aria-expanded="false"
2826
2769
  id="card-log-view-example-select-dropdown"
@@ -2943,7 +2886,7 @@ wrapperTag: div
2943
2886
  <div class="pf-v6-c-card__header pf-v6-u-align-items-flex-start">
2944
2887
  <div class="pf-v6-c-card__actions pf-m-no-offset">
2945
2888
  <button
2946
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text"
2889
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
2947
2890
  type="button"
2948
2891
  aria-expanded="false"
2949
2892
  id="card-events-view-example-select-dropdown"
@@ -19,12 +19,31 @@ section: patterns
19
19
  <div class="pf-v6-c-masthead__main">
20
20
  <span class="pf-v6-c-masthead__toggle">
21
21
  <button
22
- class="pf-v6-c-button pf-m-plain"
22
+ class="pf-v6-c-button pf-m-hamburger pf-m-plain"
23
23
  type="button"
24
24
  aria-label="Global navigation"
25
25
  >
26
26
  <span class="pf-v6-c-button__icon">
27
- <i class="fas fa-bars" aria-hidden="true"></i>
27
+ <svg
28
+ viewBox="0 0 10 10"
29
+ class="pf-v6-c-button--hamburger-icon pf-v6-svg"
30
+ width="1em"
31
+ height="1em"
32
+ >
33
+ <path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
34
+ <path
35
+ class="pf-v6-c-button--hamburger-icon--middle"
36
+ d="M1,5 L9,5"
37
+ />
38
+ <path
39
+ class="pf-v6-c-button--hamburger-icon--arrow"
40
+ d="M1,5 L1,5 L1,5"
41
+ />
42
+ <path
43
+ class="pf-v6-c-button--hamburger-icon--bottom"
44
+ d="M9,9 L1,9"
45
+ />
46
+ </svg>
28
47
  </span>
29
48
  </button>
30
49
  </span>
@@ -132,7 +151,7 @@ section: patterns
132
151
  </div>
133
152
  <div class="pf-v6-c-toolbar__item">
134
153
  <button
135
- class="pf-v6-c-menu-toggle pf-m-plain"
154
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
136
155
  type="button"
137
156
  aria-expanded="false"
138
157
  aria-label="Settings"
@@ -466,7 +485,7 @@ section: patterns
466
485
  <div class="pf-v6-c-pagination pf-m-compact">
467
486
  <div class="pf-v6-c-pagination__page-menu">
468
487
  <button
469
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text"
488
+ class="pf-v6-c-menu-toggle pf-m-text pf-m-plain"
470
489
  type="button"
471
490
  aria-expanded="false"
472
491
  aria-label="Menu toggle"
@@ -1016,7 +1035,7 @@ section: patterns
1016
1035
  <div class="pf-v6-c-pagination pf-m-bottom">
1017
1036
  <div class="pf-v6-c-pagination__page-menu">
1018
1037
  <button
1019
- class="pf-v6-c-menu-toggle pf-m-plain pf-m-text pf-m-top"
1038
+ class="pf-v6-c-menu-toggle pf-m-top pf-m-text pf-m-plain"
1020
1039
  type="button"
1021
1040
  aria-expanded="false"
1022
1041
  aria-label="Menu toggle"