@patternfly/patternfly 6.4.0 → 6.5.0-prerelease.10

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 (58) hide show
  1. package/assets/images/RHAiExperienceIcon.svg +27 -0
  2. package/assets/images/RHAutomationsLogo.svg +96 -0
  3. package/assets/images/RHServerStackIcon.svg +16 -0
  4. package/assets/images/compass--hero-bg.png +0 -0
  5. package/assets/images/compass--rh-wallpaper-dark.png +0 -0
  6. package/assets/images/compass--rh-wallpaper-light.png +0 -0
  7. package/assets/images/compass--wallpaper-dark.png +0 -0
  8. package/assets/images/compass--wallpaper-light.png +0 -0
  9. package/base/patternfly-common.css +46 -0
  10. package/base/patternfly-common.scss +56 -0
  11. package/components/ActionList/action-list.css +9 -0
  12. package/components/ActionList/action-list.scss +12 -0
  13. package/components/Button/button.css +18 -0
  14. package/components/Button/button.scss +22 -0
  15. package/components/Card/card.css +6 -0
  16. package/components/Card/card.scss +8 -0
  17. package/components/Compass/compass.css +211 -0
  18. package/components/Compass/compass.scss +276 -0
  19. package/components/DataList/data-list.css +5 -1
  20. package/components/DataList/data-list.scss +6 -1
  21. package/components/Menu/menu.css +1 -1
  22. package/components/Menu/menu.scss +1 -1
  23. package/components/MenuToggle/menu-toggle.css +4 -0
  24. package/components/MenuToggle/menu-toggle.scss +5 -0
  25. package/components/Panel/panel.css +1 -1
  26. package/components/Panel/panel.scss +1 -1
  27. package/components/Spinner/spinner.css +3 -0
  28. package/components/Spinner/spinner.scss +5 -0
  29. package/components/Table/table.css +3 -0
  30. package/components/Table/table.scss +5 -0
  31. package/components/Tabs/tabs.css +17 -1
  32. package/components/Tabs/tabs.scss +22 -1
  33. package/components/_index.css +278 -4
  34. package/components/_index.scss +1 -0
  35. package/docs/components/ActionList/examples/ActionList.md +85 -0
  36. package/docs/components/Button/examples/Button.md +116 -0
  37. package/docs/components/Card/examples/Card.md +6 -4
  38. package/docs/components/Compass/examples/Compass.md +4608 -0
  39. package/docs/components/DataList/examples/DataList.md +181 -185
  40. package/docs/components/Drawer/examples/Drawer.md +1 -1
  41. package/docs/components/MenuToggle/examples/MenuToggle.md +40 -0
  42. package/docs/components/Progress/examples/Progress.md +3 -3
  43. package/docs/components/Table/examples/Table.md +88 -0
  44. package/docs/components/Tabs/examples/Tabs.md +188 -0
  45. package/docs/components/Wizard/examples/Wizard.md +15 -15
  46. package/docs/demos/Dashboard/examples/Dashboard.md +1 -4
  47. package/docs/demos/DescriptionList/examples/DescriptionList.md +31 -33
  48. package/docs/demos/Drawer/examples/Drawer.md +31 -33
  49. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +127 -163
  50. package/docs/demos/Wizard/examples/Wizard.md +31 -34
  51. package/package.json +5 -5
  52. package/patternfly-base-no-globals.css +46 -0
  53. package/patternfly-base.css +46 -0
  54. package/patternfly-no-globals.css +324 -4
  55. package/patternfly.css +324 -4
  56. package/patternfly.min.css +1 -1
  57. package/patternfly.min.css.map +1 -1
  58. package/sass-utilities/namespaces-components.scss +3 -0
@@ -449,7 +449,7 @@ cssPrefix: pf-v6-c-drawer
449
449
  </div>
450
450
  <div class="pf-v6-c-drawer__body">Drawer panel body content</div>
451
451
  <div
452
- class="pf-v6-c-drawer__body pf-m-paddinng"
452
+ class="pf-v6-c-drawer__body"
453
453
  style="--pf-v6-c-drawer__panel__body--PaddingInlineStart: 48px;"
454
454
  >Drawer panel body content with modified inline start padding</div>
455
455
  </div>
@@ -262,6 +262,45 @@ cssPrefix: pf-v6-c-menu-toggle
262
262
 
263
263
  ```
264
264
 
265
+ ### Plain circle
266
+
267
+ ```html isBeta
268
+ <button
269
+ class="pf-v6-c-menu-toggle pf-m-circle pf-m-plain"
270
+ type="button"
271
+ aria-expanded="false"
272
+ aria-label="Circle styled actions"
273
+ >
274
+ <span class="pf-v6-c-menu-toggle__icon">
275
+ <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
276
+ </span>
277
+ </button>
278
+ &nbsp;
279
+ <button
280
+ class="pf-v6-c-menu-toggle pf-m-circle pf-m-expanded pf-m-plain"
281
+ type="button"
282
+ aria-expanded="true"
283
+ aria-label="Circle and expanded styled actions"
284
+ >
285
+ <span class="pf-v6-c-menu-toggle__icon">
286
+ <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
287
+ </span>
288
+ </button>
289
+ &nbsp;
290
+ <button
291
+ class="pf-v6-c-menu-toggle pf-m-circle pf-m-plain pf-m-disabled"
292
+ type="button"
293
+ aria-expanded="false"
294
+ disabled
295
+ aria-label="Circle and disabled styled actions"
296
+ >
297
+ <span class="pf-v6-c-menu-toggle__icon">
298
+ <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
299
+ </span>
300
+ </button>
301
+
302
+ ```
303
+
265
304
  ### Plain with text
266
305
 
267
306
  ```html
@@ -2189,6 +2228,7 @@ Shown with default, primary, and secondary styling
2189
2228
  | `.pf-m-secondary` | `.pf-v6-c-menu-toggle` | Modifies the menu toggle component for the secondary variation. |
2190
2229
  | `.pf-m-text` | `.pf-v6-c-menu-toggle` | Modifies the menu toggle component for the text variation. |
2191
2230
  | `.pf-m-plain` | `.pf-v6-c-menu-toggle` | Modifies the menu toggle component for the plain variation. |
2231
+ | `.pf-m-circle` | `.pf-v6-c-menu-toggle` | Modifies the menu toggle component to be circular in shape. This is intended to be applied only to a plain menu toggle without any text. |
2192
2232
  | `.pf-m-expanded` | `.pf-v6-c-menu-toggle` | Modifies the menu toggle component for the expanded state. |
2193
2233
  | `.pf-m-full-height` | `.pf-v6-c-menu-toggle` | Modifies the menu toggle component to full height of parent. |
2194
2234
  | `.pf-m-full-width` | `.pf-v6-c-menu-toggle` | Modifies the menu toggle component to full width of parent. |
@@ -496,7 +496,7 @@ When conveying status, you should ensure:
496
496
  <div class="pf-v6-c-progress__status" aria-hidden="true">
497
497
  <span class="pf-v6-c-progress__measure">33%</span>
498
498
  <span class="pf-v6-c-progress__status-icon">
499
- <i class="fas fa-fw fa-times-circle" aria-hidden="true"></i>
499
+ <i class="fas fa-fw fa-exclamation-circle" aria-hidden="true"></i>
500
500
  </span>
501
501
  </div>
502
502
  <div
@@ -591,7 +591,7 @@ When conveying status, you should ensure:
591
591
  <div class="pf-v6-c-progress__status" aria-hidden="true">
592
592
  <span class="pf-v6-c-progress__measure">33%</span>
593
593
  <span class="pf-v6-c-progress__status-icon">
594
- <i class="fas fa-fw fa-times-circle" aria-hidden="true"></i>
594
+ <i class="fas fa-fw fa-exclamation-circle" aria-hidden="true"></i>
595
595
  </span>
596
596
  </div>
597
597
  <div
@@ -621,7 +621,7 @@ When conveying status, you should ensure:
621
621
  >Title</div>
622
622
  <div class="pf-v6-c-progress__status" aria-hidden="true">
623
623
  <span class="pf-v6-c-progress__status-icon">
624
- <i class="fas fa-fw fa-times-circle" aria-hidden="true"></i>
624
+ <i class="fas fa-fw fa-exclamation-circle" aria-hidden="true"></i>
625
625
  </span>
626
626
  </div>
627
627
  <div
@@ -8179,6 +8179,94 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
8179
8179
  | `.pf-m-no-background` | `.pf-v6-c-table__expandable-row-content` | Modifies the expandable row content to have a transparent background. For in compound expandable when the parent expandable row has no padding with `.pf-m-no-padding`. |
8180
8180
  | `.pf-m-no-animate-expand` | `.pf-v6-c-table__control-row.pf-m-expanded` | Disables animation on a compound expandable row. **Note:** Used to disable the animation when clicking between compound expandable items. |
8181
8181
 
8182
+ ## Plain variant
8183
+
8184
+ ### Plain example
8185
+
8186
+ ```html isBeta
8187
+ <table
8188
+ class="pf-v6-c-table pf-m-grid-md pf-m-plain"
8189
+ role="grid"
8190
+ aria-label="This is a plain table example"
8191
+ id="table-plain"
8192
+ >
8193
+ <caption class="pf-v6-c-table__caption">This is the table caption</caption>
8194
+
8195
+ <thead class="pf-v6-c-table__thead">
8196
+ <tr class="pf-v6-c-table__tr" role="row">
8197
+ <th class="pf-v6-c-table__th" role="columnheader" scope="col">Repositories</th>
8198
+
8199
+ <th class="pf-v6-c-table__th" role="columnheader" scope="col">Branches</th>
8200
+
8201
+ <th
8202
+ class="pf-v6-c-table__th"
8203
+ role="columnheader"
8204
+ scope="col"
8205
+ >Pull requests</th>
8206
+
8207
+ <th class="pf-v6-c-table__th" role="columnheader" scope="col">Workspaces</th>
8208
+
8209
+ <th class="pf-v6-c-table__th" role="columnheader" scope="col">Last commit</th>
8210
+ </tr>
8211
+ </thead>
8212
+
8213
+ <tbody class="pf-v6-c-table__tbody" role="rowgroup">
8214
+ <tr class="pf-v6-c-table__tr" role="row">
8215
+ <td
8216
+ class="pf-v6-c-table__td"
8217
+ role="cell"
8218
+ data-label="Repository name"
8219
+ >Repository 1</td>
8220
+ <td class="pf-v6-c-table__td" role="cell" data-label="Branches">10</td>
8221
+ <td class="pf-v6-c-table__td" role="cell" data-label="Pull requests">25</td>
8222
+ <td class="pf-v6-c-table__td" role="cell" data-label="Workspaces">5</td>
8223
+ <td
8224
+ class="pf-v6-c-table__td"
8225
+ role="cell"
8226
+ data-label="Last commit"
8227
+ >2 days ago</td>
8228
+ </tr>
8229
+ <tr class="pf-v6-c-table__tr" role="row">
8230
+ <td
8231
+ class="pf-v6-c-table__td"
8232
+ role="cell"
8233
+ data-label="Repository name"
8234
+ >Repository 2</td>
8235
+ <td class="pf-v6-c-table__td" role="cell" data-label="Branches">10</td>
8236
+ <td class="pf-v6-c-table__td" role="cell" data-label="Pull requests">25</td>
8237
+ <td class="pf-v6-c-table__td" role="cell" data-label="Workspaces">5</td>
8238
+ <td
8239
+ class="pf-v6-c-table__td"
8240
+ role="cell"
8241
+ data-label="Last commit"
8242
+ >2 days ago</td>
8243
+ </tr>
8244
+ <tr class="pf-v6-c-table__tr" role="row">
8245
+ <td
8246
+ class="pf-v6-c-table__td"
8247
+ role="cell"
8248
+ data-label="Repository name"
8249
+ >Repository 3</td>
8250
+ <td class="pf-v6-c-table__td" role="cell" data-label="Branches">10</td>
8251
+ <td class="pf-v6-c-table__td" role="cell" data-label="Pull requests">25</td>
8252
+ <td class="pf-v6-c-table__td" role="cell" data-label="Workspaces">5</td>
8253
+ <td
8254
+ class="pf-v6-c-table__td"
8255
+ role="cell"
8256
+ data-label="Last commit"
8257
+ >2 days ago</td>
8258
+ </tr>
8259
+ </tbody>
8260
+ </table>
8261
+
8262
+ ```
8263
+
8264
+ ### Plain variant usage
8265
+
8266
+ | Class | Applied to | Outcome |
8267
+ | -- | -- | -- |
8268
+ | `.pf-m-plain` | `.pf-v6-c-table` | Modifies the table to have a transparent background. |
8269
+
8182
8270
  ## Compact variant
8183
8271
 
8184
8272
  ### Compact example
@@ -2986,6 +2986,193 @@ cssPrefix: pf-v6-c-tabs
2986
2986
 
2987
2987
  ```
2988
2988
 
2989
+ ### Site navigation variation
2990
+
2991
+ ```html isBeta
2992
+ <div class="pf-v6-c-tabs pf-m-nav" role="region" id="nav-tabs">
2993
+ <div class="pf-v6-c-tabs__scroll-button" aria-hidden="true">
2994
+ <button
2995
+ class="pf-v6-c-button pf-m-small pf-m-plain"
2996
+ type="button"
2997
+ aria-label="Scroll left"
2998
+ disabled
2999
+ >
3000
+ <span class="pf-v6-c-button__icon">
3001
+ <i class="fas fa-angle-left" aria-hidden="true"></i>
3002
+ </span>
3003
+ </button>
3004
+ </div>
3005
+ <ul class="pf-v6-c-tabs__list" role="tablist">
3006
+ <li class="pf-v6-c-tabs__item" role="presentation">
3007
+ <button
3008
+ type="button"
3009
+ class="pf-v6-c-tabs__link"
3010
+ role="tab"
3011
+ id="nav-tabs-users-link"
3012
+ >
3013
+ <span class="pf-v6-c-tabs__item-text">Users</span>
3014
+ </button>
3015
+ </li>
3016
+ <li class="pf-v6-c-tabs__item pf-m-current" role="presentation">
3017
+ <button
3018
+ type="button"
3019
+ class="pf-v6-c-tabs__link"
3020
+ role="tab"
3021
+ id="nav-tabs-containers-link"
3022
+ >
3023
+ <span class="pf-v6-c-tabs__item-text">Containers</span>
3024
+ </button>
3025
+ </li>
3026
+ <li class="pf-v6-c-tabs__item" role="presentation">
3027
+ <button
3028
+ type="button"
3029
+ class="pf-v6-c-tabs__link"
3030
+ role="tab"
3031
+ id="nav-tabs-database-link"
3032
+ >
3033
+ <span class="pf-v6-c-tabs__item-text">Database</span>
3034
+ </button>
3035
+ </li>
3036
+
3037
+ <li class="pf-v6-c-tabs__item" role="presentation">
3038
+ <button
3039
+ type="button"
3040
+ class="pf-v6-c-tabs__link"
3041
+ role="tab"
3042
+ id="nav-tabs-server-link"
3043
+ >
3044
+ <span class="pf-v6-c-tabs__item-text">Server</span>
3045
+ </button>
3046
+ </li>
3047
+ <li class="pf-v6-c-tabs__item" role="presentation">
3048
+ <button
3049
+ type="button"
3050
+ class="pf-v6-c-tabs__link"
3051
+ role="tab"
3052
+ id="nav-tabs-system-link"
3053
+ >
3054
+ <span class="pf-v6-c-tabs__item-text">System</span>
3055
+ </button>
3056
+ </li>
3057
+ <li class="pf-v6-c-tabs__item" role="presentation">
3058
+ <button
3059
+ type="button"
3060
+ class="pf-v6-c-tabs__link"
3061
+ role="tab"
3062
+ id="nav-tabs-network-wired-link"
3063
+ >
3064
+ <span class="pf-v6-c-tabs__item-text">Network</span>
3065
+ </button>
3066
+ </li>
3067
+ </ul>
3068
+
3069
+ <div class="pf-v6-c-tabs__scroll-button" aria-hidden="true">
3070
+ <button
3071
+ class="pf-v6-c-button pf-m-small pf-m-plain"
3072
+ type="button"
3073
+ aria-label="Scroll right"
3074
+ disabled
3075
+ >
3076
+ <span class="pf-v6-c-button__icon">
3077
+ <i class="fas fa-angle-right" aria-hidden="true"></i>
3078
+ </span>
3079
+ </button>
3080
+ </div>
3081
+ </div><br/ >
3082
+ As sub navigation:
3083
+ <div class="pf-v6-c-tabs pf-m-subtab pf-m-nav" role="region" id="nav-tabs">
3084
+ <div class="pf-v6-c-tabs__scroll-button" aria-hidden="true">
3085
+ <button
3086
+ class="pf-v6-c-button pf-m-small pf-m-plain"
3087
+ type="button"
3088
+ aria-label="Scroll left"
3089
+ disabled
3090
+ >
3091
+ <span class="pf-v6-c-button__icon">
3092
+ <i class="fas fa-angle-left" aria-hidden="true"></i>
3093
+ </span>
3094
+ </button>
3095
+ </div>
3096
+ <ul class="pf-v6-c-tabs__list" role="tablist">
3097
+ <li class="pf-v6-c-tabs__item" role="presentation">
3098
+ <button
3099
+ type="button"
3100
+ class="pf-v6-c-tabs__link"
3101
+ role="tab"
3102
+ id="nav-tabs-users-link"
3103
+ >
3104
+ <span class="pf-v6-c-tabs__item-text">Users</span>
3105
+ </button>
3106
+ </li>
3107
+ <li class="pf-v6-c-tabs__item pf-m-current" role="presentation">
3108
+ <button
3109
+ type="button"
3110
+ class="pf-v6-c-tabs__link"
3111
+ role="tab"
3112
+ id="nav-tabs-containers-link"
3113
+ >
3114
+ <span class="pf-v6-c-tabs__item-text">Containers</span>
3115
+ </button>
3116
+ </li>
3117
+ <li class="pf-v6-c-tabs__item" role="presentation">
3118
+ <button
3119
+ type="button"
3120
+ class="pf-v6-c-tabs__link"
3121
+ role="tab"
3122
+ id="nav-tabs-database-link"
3123
+ >
3124
+ <span class="pf-v6-c-tabs__item-text">Database</span>
3125
+ </button>
3126
+ </li>
3127
+
3128
+ <li class="pf-v6-c-tabs__item" role="presentation">
3129
+ <button
3130
+ type="button"
3131
+ class="pf-v6-c-tabs__link"
3132
+ role="tab"
3133
+ id="nav-tabs-server-link"
3134
+ >
3135
+ <span class="pf-v6-c-tabs__item-text">Server</span>
3136
+ </button>
3137
+ </li>
3138
+ <li class="pf-v6-c-tabs__item" role="presentation">
3139
+ <button
3140
+ type="button"
3141
+ class="pf-v6-c-tabs__link"
3142
+ role="tab"
3143
+ id="nav-tabs-system-link"
3144
+ >
3145
+ <span class="pf-v6-c-tabs__item-text">System</span>
3146
+ </button>
3147
+ </li>
3148
+ <li class="pf-v6-c-tabs__item" role="presentation">
3149
+ <button
3150
+ type="button"
3151
+ class="pf-v6-c-tabs__link"
3152
+ role="tab"
3153
+ id="nav-tabs-network-wired-link"
3154
+ >
3155
+ <span class="pf-v6-c-tabs__item-text">Network</span>
3156
+ </button>
3157
+ </li>
3158
+ </ul>
3159
+
3160
+ <div class="pf-v6-c-tabs__scroll-button" aria-hidden="true">
3161
+ <button
3162
+ class="pf-v6-c-button pf-m-small pf-m-plain"
3163
+ type="button"
3164
+ aria-label="Scroll right"
3165
+ disabled
3166
+ >
3167
+ <span class="pf-v6-c-button__icon">
3168
+ <i class="fas fa-angle-right" aria-hidden="true"></i>
3169
+ </span>
3170
+ </button>
3171
+ </div>
3172
+ </div>
3173
+
3174
+ ```
3175
+
2989
3176
  ## Tab item actions
2990
3177
 
2991
3178
  ### Help button example
@@ -10475,6 +10662,7 @@ Whenever a list of tabs is unique on the current page, it can be used in a `<nav
10475
10662
  | `.pf-m-initializing-accent` | `.pf-v6-c-tabs.pf-m-animate-current` | Modifies tabs styles while initializing the "current" tab's accent styles. |
10476
10663
  | `--pf-v6-c-tabs--link-accent--start` | `.pf-v6-c-tabs.pf-m-animate-current` | Sets the value for the "start" inset of the current tab's accent. |
10477
10664
  | `--pf-v6-c-tabs--link-accent--length` | `.pf-v6-c-tabs.pf-m-animate-current` | Sets the value for the length of the current tab's accent. |
10665
+ | `.pf-m-nav` | `.pf-v6-c-tabs` | Applies site navigation styling to the tab component. |
10478
10666
  | `.pf-m-current` | `.pf-v6-c-tabs__item` | Indicates that a tab item is currently selected. |
10479
10667
  | `.pf-m-action` | `.pf-v6-c-tabs__item` | Indicates that a tab item contains actions other than the tab link. |
10480
10668
  | `.pf-m-overflow` | `.pf-v6-c-tabs__item` | Applies overflow menu styling to a tab item. |
@@ -846,23 +846,23 @@ wrapperTag: div
846
846
  </div>
847
847
  </div>
848
848
  <div class="pf-v6-c-drawer__panel pf-m-width-33">
849
- <div class="pf-v6-c-drawer__body">
850
- <div class="pf-v6-c-drawer__head">
851
- <div class="pf-v6-c-drawer__actions">
852
- <div class="pf-v6-c-drawer__close">
853
- <button
854
- class="pf-v6-c-button pf-m-plain"
855
- type="button"
856
- aria-label="Close drawer panel"
857
- >
858
- <span class="pf-v6-c-button__icon">
859
- <i class="fas fa-times" aria-hidden="true"></i>
860
- </span>
861
- </button>
862
- </div>
863
- </div>drawer-panel
849
+ <div class="pf-v6-c-drawer__head">
850
+ drawer-panel
851
+ <div class="pf-v6-c-drawer__actions">
852
+ <div class="pf-v6-c-drawer__close">
853
+ <button
854
+ class="pf-v6-c-button pf-m-plain"
855
+ type="button"
856
+ aria-label="Close drawer panel"
857
+ >
858
+ <span class="pf-v6-c-button__icon">
859
+ <i class="fas fa-times" aria-hidden="true"></i>
860
+ </span>
861
+ </button>
862
+ </div>
864
863
  </div>
865
864
  </div>
865
+ <div class="pf-v6-c-drawer__body">drawer-body</div>
866
866
  </div>
867
867
  </div>
868
868
  <footer class="pf-v6-c-wizard__footer">
@@ -597,10 +597,7 @@ cssPrefix: pf-d-dashboard
597
597
  style="--pf-v6-l-grid--item--Order-on-lg:3"
598
598
  >
599
599
  <div class="pf-v6-l-flex pf-m-column">
600
- <div
601
- class="pf-v6-c-card pf-m-expanded"
602
- id="dashboard-demo-status-card-1"
603
- >
600
+ <div class="pf-v6-c-card" id="dashboard-demo-status-card-1">
604
601
  <div class="pf-v6-c-card__header">
605
602
  <h2 class="pf-v6-c-title pf-m-xl">Status</h2>
606
603
  </div>
@@ -727,46 +727,44 @@ cssPrefix: pf-d-description-list
727
727
  </div>
728
728
  </div>
729
729
  <div class="pf-v6-c-drawer__panel pf-m-width-33-on-lg">
730
- <div class="pf-v6-c-drawer__body">
731
- <div class="pf-v6-c-drawer__head">
732
- <div class="pf-v6-c-drawer__actions">
730
+ <div class="pf-v6-c-drawer__head">
731
+ <div class="pf-v6-c-drawer__actions">
732
+ <button
733
+ class="pf-v6-c-menu-toggle pf-m-plain"
734
+ type="button"
735
+ aria-expanded="false"
736
+ aria-label="Menu toggle"
737
+ id="description-list-in-drawer-example-toggle"
738
+ >
739
+ <span class="pf-v6-c-menu-toggle__icon">
740
+ <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
741
+ </span>
742
+ </button>
743
+ <div class="pf-v6-c-drawer__close">
733
744
  <button
734
- class="pf-v6-c-menu-toggle pf-m-plain"
745
+ class="pf-v6-c-button pf-m-plain"
735
746
  type="button"
736
- aria-expanded="false"
737
- aria-label="Menu toggle"
738
- id="description-list-in-drawer-example-toggle"
747
+ aria-label="Close drawer panel"
739
748
  >
740
- <span class="pf-v6-c-menu-toggle__icon">
741
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
749
+ <span class="pf-v6-c-button__icon">
750
+ <i class="fas fa-times" aria-hidden="true"></i>
742
751
  </span>
743
752
  </button>
744
- <div class="pf-v6-c-drawer__close">
745
- <button
746
- class="pf-v6-c-button pf-m-plain"
747
- type="button"
748
- aria-label="Close drawer panel"
749
- >
750
- <span class="pf-v6-c-button__icon">
751
- <i class="fas fa-times" aria-hidden="true"></i>
752
- </span>
753
- </button>
754
- </div>
755
753
  </div>
756
- <div class="pf-v6-l-flex pf-m-space-items-sm">
757
- <div class="pf-v6-l-flex__item">
758
- <span class="pf-v6-c-label pf-m-compact pf-m-blue">
759
- <span class="pf-v6-c-label__content">
760
- <span class="pf-v6-c-label__text">DC</span>
761
- </span>
754
+ </div>
755
+ <div class="pf-v6-l-flex pf-m-space-items-sm">
756
+ <div class="pf-v6-l-flex__item">
757
+ <span class="pf-v6-c-label pf-m-compact pf-m-blue">
758
+ <span class="pf-v6-c-label__content">
759
+ <span class="pf-v6-c-label__text">DC</span>
762
760
  </span>
763
- </div>
764
- <div class="pf-v6-l-flex__item">
765
- <h2
766
- class="pf-v6-c-title pf-m-xl"
767
- id="description-list-in-drawer-example-drawer-label"
768
- >mary-test</h2>
769
- </div>
761
+ </span>
762
+ </div>
763
+ <div class="pf-v6-l-flex__item">
764
+ <h2
765
+ class="pf-v6-c-title pf-m-xl"
766
+ id="description-list-in-drawer-example-drawer-label"
767
+ >mary-test</h2>
770
768
  </div>
771
769
  </div>
772
770
  </div>
@@ -338,46 +338,44 @@ wrapperTag: div
338
338
  </div>
339
339
  </div>
340
340
  <div class="pf-v6-c-drawer__panel pf-m-width-33-on-lg" hidden>
341
- <div class="pf-v6-c-drawer__body">
342
- <div class="pf-v6-c-drawer__head">
343
- <div class="pf-v6-c-drawer__actions">
341
+ <div class="pf-v6-c-drawer__head">
342
+ <div class="pf-v6-c-drawer__actions">
343
+ <button
344
+ class="pf-v6-c-menu-toggle pf-m-plain"
345
+ type="button"
346
+ aria-expanded="false"
347
+ aria-label="Menu toggle"
348
+ id="drawer-collapsed-example-toggle"
349
+ >
350
+ <span class="pf-v6-c-menu-toggle__icon">
351
+ <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
352
+ </span>
353
+ </button>
354
+ <div class="pf-v6-c-drawer__close">
344
355
  <button
345
- class="pf-v6-c-menu-toggle pf-m-plain"
356
+ class="pf-v6-c-button pf-m-plain"
346
357
  type="button"
347
- aria-expanded="false"
348
- aria-label="Menu toggle"
349
- id="drawer-collapsed-example-toggle"
358
+ aria-label="Close drawer panel"
350
359
  >
351
- <span class="pf-v6-c-menu-toggle__icon">
352
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
360
+ <span class="pf-v6-c-button__icon">
361
+ <i class="fas fa-times" aria-hidden="true"></i>
353
362
  </span>
354
363
  </button>
355
- <div class="pf-v6-c-drawer__close">
356
- <button
357
- class="pf-v6-c-button pf-m-plain"
358
- type="button"
359
- aria-label="Close drawer panel"
360
- >
361
- <span class="pf-v6-c-button__icon">
362
- <i class="fas fa-times" aria-hidden="true"></i>
363
- </span>
364
- </button>
365
- </div>
366
364
  </div>
367
- <div class="pf-v6-l-flex pf-m-space-items-sm">
368
- <div class="pf-v6-l-flex__item">
369
- <span class="pf-v6-c-label pf-m-compact pf-m-blue">
370
- <span class="pf-v6-c-label__content">
371
- <span class="pf-v6-c-label__text">DC</span>
372
- </span>
365
+ </div>
366
+ <div class="pf-v6-l-flex pf-m-space-items-sm">
367
+ <div class="pf-v6-l-flex__item">
368
+ <span class="pf-v6-c-label pf-m-compact pf-m-blue">
369
+ <span class="pf-v6-c-label__content">
370
+ <span class="pf-v6-c-label__text">DC</span>
373
371
  </span>
374
- </div>
375
- <div class="pf-v6-l-flex__item">
376
- <h2
377
- class="pf-v6-c-title pf-m-xl"
378
- id="drawer-collapsed-example-drawer-label"
379
- >mary-test</h2>
380
- </div>
372
+ </span>
373
+ </div>
374
+ <div class="pf-v6-l-flex__item">
375
+ <h2
376
+ class="pf-v6-c-title pf-m-xl"
377
+ id="drawer-collapsed-example-drawer-label"
378
+ >mary-test</h2>
381
379
  </div>
382
380
  </div>
383
381
  </div>