@patternfly/patternfly 6.5.0-prerelease.30 → 6.5.0-prerelease.32

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 (46) hide show
  1. package/components/Compass/compass.css +14 -4
  2. package/components/Compass/compass.scss +16 -4
  3. package/components/Drawer/drawer.css +30 -26
  4. package/components/Drawer/drawer.scss +7 -3
  5. package/components/Masthead/masthead.css +40 -0
  6. package/components/Masthead/masthead.scss +47 -0
  7. package/components/Nav/nav.css +55 -0
  8. package/components/Nav/nav.scss +70 -3
  9. package/components/Page/page.css +20 -0
  10. package/components/Page/page.scss +27 -0
  11. package/components/Toolbar/toolbar.css +32 -6
  12. package/components/Toolbar/toolbar.scss +28 -4
  13. package/components/_index.css +191 -36
  14. package/docs/components/Compass/examples/Compass.css +8 -2
  15. package/docs/components/Compass/examples/Compass.md +22 -1
  16. package/docs/components/Masthead/examples/masthead.md +67 -0
  17. package/docs/components/Nav/examples/Navigation.md +44 -0
  18. package/docs/components/Page/examples/Page.md +37 -0
  19. package/docs/components/Toolbar/examples/Toolbar.md +28 -0
  20. package/docs/demos/AboutModal/examples/AboutModal.md +5 -5
  21. package/docs/demos/Alert/examples/Alert.md +15 -15
  22. package/docs/demos/BackToTop/examples/BackToTop.md +5 -5
  23. package/docs/demos/Banner/examples/Banner.md +10 -10
  24. package/docs/demos/CardView/examples/CardView.md +5 -5
  25. package/docs/demos/Compass/examples/Compass.md +208 -0
  26. package/docs/demos/Dashboard/examples/Dashboard.md +5 -5
  27. package/docs/demos/DataList/examples/DataList.md +20 -23
  28. package/docs/demos/DescriptionList/examples/DescriptionList.md +15 -15
  29. package/docs/demos/Drawer/examples/Drawer.md +25 -25
  30. package/docs/demos/JumpLinks/examples/JumpLinks.md +30 -30
  31. package/docs/demos/Masthead/examples/Masthead.md +55 -58
  32. package/docs/demos/Modal/examples/Modal.md +30 -33
  33. package/docs/demos/Nav/examples/Nav.md +299 -62
  34. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +25 -25
  35. package/docs/demos/Page/examples/Page.md +70 -79
  36. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +35 -35
  37. package/docs/demos/Skeleton/examples/Skeleton.md +5 -5
  38. package/docs/demos/Table/examples/Table.md +75 -78
  39. package/docs/demos/Tabs/examples/Tabs.md +30 -30
  40. package/docs/demos/Toolbar/examples/Toolbar.md +10 -10
  41. package/docs/demos/Wizard/examples/Wizard.md +45 -48
  42. package/package.json +2 -2
  43. package/patternfly-no-globals.css +191 -36
  44. package/patternfly.css +191 -36
  45. package/patternfly.min.css +1 -1
  46. package/patternfly.min.css.map +1 -1
@@ -2474,6 +2474,49 @@ cssPrefix: pf-v6-c-nav
2474
2474
 
2475
2475
  ```
2476
2476
 
2477
+ ### Docked nav
2478
+
2479
+ ```html isBeta
2480
+ <nav class="pf-v6-c-nav pf-m-docked" aria-label="Global">
2481
+ <ul class="pf-v6-c-nav__list" role="list">
2482
+ <li class="pf-v6-c-nav__item">
2483
+ <a href="#" class="pf-v6-c-nav__link" aria-label="Cube">
2484
+ <span class="pf-v6-c-nav__link-icon">
2485
+ <i class="fas fa-fw fa-cube" aria-hidden="true"></i>
2486
+ </span>
2487
+ </a>
2488
+ </li>
2489
+ <li class="pf-v6-c-nav__item">
2490
+ <a
2491
+ href="#"
2492
+ class="pf-v6-c-nav__link pf-m-current"
2493
+ aria-current="page"
2494
+ aria-label="Folder"
2495
+ >
2496
+ <span class="pf-v6-c-nav__link-icon">
2497
+ <i class="fas fa-fw fa-folder" aria-hidden="true"></i>
2498
+ </span>
2499
+ </a>
2500
+ </li>
2501
+ <li class="pf-v6-c-nav__item">
2502
+ <a href="#" class="pf-v6-c-nav__link" aria-label="Cloud">
2503
+ <span class="pf-v6-c-nav__link-icon">
2504
+ <i class="fas fa-fw fa-cloud" aria-hidden="true"></i>
2505
+ </span>
2506
+ </a>
2507
+ </li>
2508
+ <li class="pf-v6-c-nav__item">
2509
+ <a href="#" class="pf-v6-c-nav__link" aria-label="Code">
2510
+ <span class="pf-v6-c-nav__link-icon">
2511
+ <i class="fas fa-fw fa-code" aria-hidden="true"></i>
2512
+ </span>
2513
+ </a>
2514
+ </li>
2515
+ </ul>
2516
+ </nav>
2517
+
2518
+ ```
2519
+
2477
2520
  ## Documentation
2478
2521
 
2479
2522
  ### Overview
@@ -2514,6 +2557,7 @@ The navigation system relies on several different sub-components:
2514
2557
  | `.pf-v6-c-nav__scroll-button` | `<button>` | Initiates a nav scroll button. **Required for horizontal navs** |
2515
2558
  | `.pf-m-horizontal` | `.pf-v6-c-nav` | Modifies nav for the horizontal variation. |
2516
2559
  | `.pf-m-horizontal-subnav` | `.pf-v6-c-nav` | Modifies nav for the horizontal subnav variation. |
2560
+ | `.pf-m-docked` | `.pf-v6-c-nav` | Modifies nav for the docked variation. |
2517
2561
  | `.pf-m-flyout` | `.pf-v6-c-nav__item` | Modifies nav item for the flyout variation. |
2518
2562
  | `.pf-m-scrollable` | `.pf-v6-c-nav` | Modifies nav for the scrollable state. |
2519
2563
  | `.pf-m-expanded` | `.pf-v6-c-nav__item` | Modifies for the expanded state. |
@@ -514,6 +514,42 @@ wrapperTag: div
514
514
 
515
515
  ```
516
516
 
517
+ ### With dock
518
+
519
+ ```html isBeta
520
+ <div class="pf-v6-c-page pf-m-dock">
521
+ <div class="pf-v6-c-page__dock">
522
+ <header class="pf-v6-c-masthead pf-m-docked">
523
+ <div class="pf-v6-c-masthead__main">
524
+ <div class="pf-v6-c-masthead__brand">logo</div>
525
+ </div>
526
+ <div class="pf-v6-c-masthead__content">
527
+ <button
528
+ class="pf-v6-c-button pf-m-plain"
529
+ type="button"
530
+ aria-label="Chat"
531
+ >
532
+ <span class="pf-v6-c-button__icon">
533
+ <i class="fas fa-comment-alt" aria-hidden="true"></i>
534
+ </span>
535
+ </button>
536
+ </div>
537
+ </header>
538
+ </div>
539
+ <div class="pf-v6-c-page__main-container" tabindex="-1">
540
+ <main class="pf-v6-c-page__main" tabindex="-1">
541
+ <section class="pf-v6-c-page__main-section">
542
+ <div class="pf-v6-c-page__main-body">
543
+ This is a default
544
+ <code>.pf-v6-c-page__main-section</code>.
545
+ </div>
546
+ </section>
547
+ </main>
548
+ </div>
549
+ </div>
550
+
551
+ ```
552
+
517
553
  ## Documentation
518
554
 
519
555
  ### Overview
@@ -545,6 +581,7 @@ This component provides the basic chrome for a page, including sidebar and main
545
581
  | `.pf-v6-c-page__main-body` | `<div>` | Creates the body section for a page section. **Required** |
546
582
  | `.pf-v6-c-page__main-group` | `<div>` | Creates the group of `.pf-v6-c-page__main-*` sections. Can be used in combination with `.pf-m-sticky-[top/bottom]` to make multiple sections sticky. |
547
583
  | `.pf-v6-c-page__drawer` | `<div>` | Creates a container for the drawer component when placing the main page element in the drawer body. |
584
+ | `.pf-m-dock` | `.pf-v6-c-page` | Modifies the page grid to have a dock. |
548
585
  | `.pf-m-no-sidebar` | `.pf-v6-c-page` | Modifies the page grid for layouts without a sidebar. |
549
586
  | `.pf-m-expanded` | `.pf-v6-c-page__sidebar` | Modifies the sidebar for the expanded state. |
550
587
  | `.pf-m-collapsed` | `.pf-v6-c-page__sidebar` | Modifies the sidebar for the collapsed state. |
@@ -2612,6 +2612,33 @@ Etiam nulla lacus, porttitor vel volutpat et, malesuada id nunc. Suspendisse por
2612
2612
 
2613
2613
  ```
2614
2614
 
2615
+ ### Vertical
2616
+
2617
+ ```html isBeta
2618
+ <div class="pf-v6-c-toolbar pf-m-vertical" id="toolbar-vertical-example">
2619
+ <div class="pf-v6-c-toolbar__content">
2620
+ <div class="pf-v6-c-toolbar__content-section">
2621
+ <div class="pf-v6-c-toolbar__item">Item</div>
2622
+ <div class="pf-v6-c-toolbar__item">Item</div>
2623
+ <div class="pf-v6-c-toolbar__item">Item</div>
2624
+ <hr class="pf-v6-c-divider" />
2625
+
2626
+ <div class="pf-v6-c-toolbar__group">
2627
+ <div class="pf-v6-c-toolbar__item">Item</div>
2628
+ <div class="pf-v6-c-toolbar__item">Item</div>
2629
+ <div class="pf-v6-c-toolbar__item">Item</div>
2630
+ </div>
2631
+
2632
+ <hr class="pf-v6-c-divider" />
2633
+ <div class="pf-v6-c-toolbar__item">Item</div>
2634
+ <div class="pf-v6-c-toolbar__item">Item</div>
2635
+ <div class="pf-v6-c-toolbar__item">Item</div>
2636
+ </div>
2637
+ </div>
2638
+ </div>
2639
+
2640
+ ```
2641
+
2615
2642
  ## Documentation
2616
2643
 
2617
2644
  ### Overview
@@ -2636,6 +2663,7 @@ As the toolbar component is a hybrid layout and component, some of its elements
2636
2663
  | `.pf-m-secondary` | `.pf-v6-c-toolbar` | Modifies toolbar to have secondary background color. |
2637
2664
  | `.pf-m-no-padding` | `.pf-v6-c-toolbar` | Modifies toolbar to have no padding. |
2638
2665
  | `.pf-m-no-background` | `.pf-v6-c-toolbar` | Modifies toolbar to have no background color. |
2666
+ | `.pf-m-vertical` | `.pf-v6-c-toolbar` | Modifies toolbar for a vertical layout. |
2639
2667
  | `.pf-m-expanded` | `.pf-v6-c-toolbar__expandable-content` | Modifies expandable content section for the expanded state. |
2640
2668
  | `.pf-m-expanded` | `.pf-v6-c-toolbar__item.pf-m-expand-all` | Modifies an expand all button for the expanded state. |
2641
2669
  | `.pf-m-action-group` | `.pf-v6-c-toolbar__group` | Initiates action group spacing. |
@@ -17,7 +17,7 @@ This demo implements the about modal, including the backdrop.
17
17
  <span class="pf-v6-c-button__text">Skip to content</span>
18
18
  </a>
19
19
  </div>
20
- <header class="pf-v6-c-masthead" id="modal-basic-example-masthead">
20
+ <header class="pf-v6-c-masthead" id="modal-basic-example-docked">
21
21
  <div class="pf-v6-c-masthead__main">
22
22
  <span class="pf-v6-c-masthead__toggle">
23
23
  <button
@@ -59,7 +59,7 @@ This demo implements the about modal, including the backdrop.
59
59
  y1="2.25860997e-13%"
60
60
  x2="32%"
61
61
  y2="100%"
62
- id="linearGradient-modal-basic-example-masthead"
62
+ id="linearGradient-modal-basic-example-docked"
63
63
  >
64
64
  <stop stop-color="#2B9AF3" offset="0%" />
65
65
  <stop
@@ -113,11 +113,11 @@ This demo implements the about modal, including the backdrop.
113
113
  />
114
114
  <path
115
115
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
116
- fill="url(#linearGradient-modal-basic-example-masthead)"
116
+ fill="url(#linearGradient-modal-basic-example-docked)"
117
117
  />
118
118
  <path
119
119
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
120
- fill="url(#linearGradient-modal-basic-example-masthead)"
120
+ fill="url(#linearGradient-modal-basic-example-docked)"
121
121
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
122
122
  />
123
123
  </g>
@@ -129,7 +129,7 @@ This demo implements the about modal, including the backdrop.
129
129
  <div class="pf-v6-c-masthead__content">
130
130
  <div
131
131
  class="pf-v6-c-toolbar pf-m-static"
132
- id="modal-basic-example-masthead-toolbar"
132
+ id="modal-basic-example-docked-toolbar"
133
133
  >
134
134
  <div class="pf-v6-c-toolbar__content">
135
135
  <div class="pf-v6-c-toolbar__content-section">
@@ -15,7 +15,7 @@ section: components
15
15
  <span class="pf-v6-c-button__text">Skip to content</span>
16
16
  </a>
17
17
  </div>
18
- <header class="pf-v6-c-masthead" id="alert-basic-example-masthead">
18
+ <header class="pf-v6-c-masthead" id="alert-basic-example-docked">
19
19
  <div class="pf-v6-c-masthead__main">
20
20
  <span class="pf-v6-c-masthead__toggle">
21
21
  <button
@@ -57,7 +57,7 @@ section: components
57
57
  y1="2.25860997e-13%"
58
58
  x2="32%"
59
59
  y2="100%"
60
- id="linearGradient-alert-basic-example-masthead"
60
+ id="linearGradient-alert-basic-example-docked"
61
61
  >
62
62
  <stop stop-color="#2B9AF3" offset="0%" />
63
63
  <stop
@@ -111,11 +111,11 @@ section: components
111
111
  />
112
112
  <path
113
113
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
114
- fill="url(#linearGradient-alert-basic-example-masthead)"
114
+ fill="url(#linearGradient-alert-basic-example-docked)"
115
115
  />
116
116
  <path
117
117
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
118
- fill="url(#linearGradient-alert-basic-example-masthead)"
118
+ fill="url(#linearGradient-alert-basic-example-docked)"
119
119
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
120
120
  />
121
121
  </g>
@@ -127,7 +127,7 @@ section: components
127
127
  <div class="pf-v6-c-masthead__content">
128
128
  <div
129
129
  class="pf-v6-c-toolbar pf-m-static"
130
- id="alert-basic-example-masthead-toolbar"
130
+ id="alert-basic-example-docked-toolbar"
131
131
  >
132
132
  <div class="pf-v6-c-toolbar__content">
133
133
  <div class="pf-v6-c-toolbar__content-section">
@@ -413,7 +413,7 @@ section: components
413
413
  <span class="pf-v6-c-button__text">Skip to content</span>
414
414
  </a>
415
415
  </div>
416
- <header class="pf-v6-c-masthead" id="alert-horizontal-example-masthead">
416
+ <header class="pf-v6-c-masthead" id="alert-horizontal-example-docked">
417
417
  <div class="pf-v6-c-masthead__main">
418
418
  <span class="pf-v6-c-masthead__toggle">
419
419
  <button
@@ -455,7 +455,7 @@ section: components
455
455
  y1="2.25860997e-13%"
456
456
  x2="32%"
457
457
  y2="100%"
458
- id="linearGradient-alert-horizontal-example-masthead"
458
+ id="linearGradient-alert-horizontal-example-docked"
459
459
  >
460
460
  <stop stop-color="#2B9AF3" offset="0%" />
461
461
  <stop
@@ -509,11 +509,11 @@ section: components
509
509
  />
510
510
  <path
511
511
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
512
- fill="url(#linearGradient-alert-horizontal-example-masthead)"
512
+ fill="url(#linearGradient-alert-horizontal-example-docked)"
513
513
  />
514
514
  <path
515
515
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
516
- fill="url(#linearGradient-alert-horizontal-example-masthead)"
516
+ fill="url(#linearGradient-alert-horizontal-example-docked)"
517
517
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
518
518
  />
519
519
  </g>
@@ -525,7 +525,7 @@ section: components
525
525
  <div class="pf-v6-c-masthead__content">
526
526
  <div
527
527
  class="pf-v6-c-toolbar pf-m-static"
528
- id="alert-horizontal-example-masthead-toolbar"
528
+ id="alert-horizontal-example-docked-toolbar"
529
529
  >
530
530
  <div class="pf-v6-c-toolbar__content">
531
531
  <div class="pf-v6-c-toolbar__content-section">
@@ -914,7 +914,7 @@ section: components
914
914
  <span class="pf-v6-c-button__text">Skip to content</span>
915
915
  </a>
916
916
  </div>
917
- <header class="pf-v6-c-masthead" id="alert-stacked-example-masthead">
917
+ <header class="pf-v6-c-masthead" id="alert-stacked-example-docked">
918
918
  <div class="pf-v6-c-masthead__main">
919
919
  <span class="pf-v6-c-masthead__toggle">
920
920
  <button
@@ -956,7 +956,7 @@ section: components
956
956
  y1="2.25860997e-13%"
957
957
  x2="32%"
958
958
  y2="100%"
959
- id="linearGradient-alert-stacked-example-masthead"
959
+ id="linearGradient-alert-stacked-example-docked"
960
960
  >
961
961
  <stop stop-color="#2B9AF3" offset="0%" />
962
962
  <stop
@@ -1010,11 +1010,11 @@ section: components
1010
1010
  />
1011
1011
  <path
1012
1012
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
1013
- fill="url(#linearGradient-alert-stacked-example-masthead)"
1013
+ fill="url(#linearGradient-alert-stacked-example-docked)"
1014
1014
  />
1015
1015
  <path
1016
1016
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
1017
- fill="url(#linearGradient-alert-stacked-example-masthead)"
1017
+ fill="url(#linearGradient-alert-stacked-example-docked)"
1018
1018
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
1019
1019
  />
1020
1020
  </g>
@@ -1026,7 +1026,7 @@ section: components
1026
1026
  <div class="pf-v6-c-masthead__content">
1027
1027
  <div
1028
1028
  class="pf-v6-c-toolbar pf-m-static"
1029
- id="alert-stacked-example-masthead-toolbar"
1029
+ id="alert-stacked-example-docked-toolbar"
1030
1030
  >
1031
1031
  <div class="pf-v6-c-toolbar__content">
1032
1032
  <div class="pf-v6-c-toolbar__content-section">
@@ -16,7 +16,7 @@ cssPrefix: pf-d-back-to-top
16
16
  <span class="pf-v6-c-button__text">Skip to content</span>
17
17
  </a>
18
18
  </div>
19
- <header class="pf-v6-c-masthead" id="back-to-top-basic-example-masthead">
19
+ <header class="pf-v6-c-masthead" id="back-to-top-basic-example-docked">
20
20
  <div class="pf-v6-c-masthead__main">
21
21
  <span class="pf-v6-c-masthead__toggle">
22
22
  <button
@@ -58,7 +58,7 @@ cssPrefix: pf-d-back-to-top
58
58
  y1="2.25860997e-13%"
59
59
  x2="32%"
60
60
  y2="100%"
61
- id="linearGradient-back-to-top-basic-example-masthead"
61
+ id="linearGradient-back-to-top-basic-example-docked"
62
62
  >
63
63
  <stop stop-color="#2B9AF3" offset="0%" />
64
64
  <stop
@@ -112,11 +112,11 @@ cssPrefix: pf-d-back-to-top
112
112
  />
113
113
  <path
114
114
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
115
- fill="url(#linearGradient-back-to-top-basic-example-masthead)"
115
+ fill="url(#linearGradient-back-to-top-basic-example-docked)"
116
116
  />
117
117
  <path
118
118
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
119
- fill="url(#linearGradient-back-to-top-basic-example-masthead)"
119
+ fill="url(#linearGradient-back-to-top-basic-example-docked)"
120
120
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
121
121
  />
122
122
  </g>
@@ -128,7 +128,7 @@ cssPrefix: pf-d-back-to-top
128
128
  <div class="pf-v6-c-masthead__content">
129
129
  <div
130
130
  class="pf-v6-c-toolbar pf-m-static"
131
- id="back-to-top-basic-example-masthead-toolbar"
131
+ id="back-to-top-basic-example-docked-toolbar"
132
132
  >
133
133
  <div class="pf-v6-c-toolbar__content">
134
134
  <div class="pf-v6-c-toolbar__content-section">
@@ -17,7 +17,7 @@ wrapperTag: div
17
17
  <span class="pf-v6-c-button__text">Skip to content</span>
18
18
  </a>
19
19
  </div>
20
- <header class="pf-v6-c-masthead" id="banner-basic-example-masthead">
20
+ <header class="pf-v6-c-masthead" id="banner-basic-example-docked">
21
21
  <div class="pf-v6-c-masthead__main">
22
22
  <span class="pf-v6-c-masthead__toggle">
23
23
  <button
@@ -59,7 +59,7 @@ wrapperTag: div
59
59
  y1="2.25860997e-13%"
60
60
  x2="32%"
61
61
  y2="100%"
62
- id="linearGradient-banner-basic-example-masthead"
62
+ id="linearGradient-banner-basic-example-docked"
63
63
  >
64
64
  <stop stop-color="#2B9AF3" offset="0%" />
65
65
  <stop
@@ -113,11 +113,11 @@ wrapperTag: div
113
113
  />
114
114
  <path
115
115
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
116
- fill="url(#linearGradient-banner-basic-example-masthead)"
116
+ fill="url(#linearGradient-banner-basic-example-docked)"
117
117
  />
118
118
  <path
119
119
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
120
- fill="url(#linearGradient-banner-basic-example-masthead)"
120
+ fill="url(#linearGradient-banner-basic-example-docked)"
121
121
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
122
122
  />
123
123
  </g>
@@ -129,7 +129,7 @@ wrapperTag: div
129
129
  <div class="pf-v6-c-masthead__content">
130
130
  <div
131
131
  class="pf-v6-c-toolbar pf-m-static"
132
- id="banner-basic-example-masthead-toolbar"
132
+ id="banner-basic-example-docked-toolbar"
133
133
  >
134
134
  <div class="pf-v6-c-toolbar__content">
135
135
  <div class="pf-v6-c-toolbar__content-section">
@@ -496,7 +496,7 @@ wrapperTag: div
496
496
  <span class="pf-v6-c-button__text">Skip to content</span>
497
497
  </a>
498
498
  </div>
499
- <header class="pf-v6-c-masthead" id="banner-top-bottom-example-masthead">
499
+ <header class="pf-v6-c-masthead" id="banner-top-bottom-example-docked">
500
500
  <div class="pf-v6-c-masthead__main">
501
501
  <span class="pf-v6-c-masthead__toggle">
502
502
  <button
@@ -541,7 +541,7 @@ wrapperTag: div
541
541
  y1="2.25860997e-13%"
542
542
  x2="32%"
543
543
  y2="100%"
544
- id="linearGradient-banner-top-bottom-example-masthead"
544
+ id="linearGradient-banner-top-bottom-example-docked"
545
545
  >
546
546
  <stop stop-color="#2B9AF3" offset="0%" />
547
547
  <stop
@@ -600,11 +600,11 @@ wrapperTag: div
600
600
  />
601
601
  <path
602
602
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
603
- fill="url(#linearGradient-banner-top-bottom-example-masthead)"
603
+ fill="url(#linearGradient-banner-top-bottom-example-docked)"
604
604
  />
605
605
  <path
606
606
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
607
- fill="url(#linearGradient-banner-top-bottom-example-masthead)"
607
+ fill="url(#linearGradient-banner-top-bottom-example-docked)"
608
608
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
609
609
  />
610
610
  </g>
@@ -616,7 +616,7 @@ wrapperTag: div
616
616
  <div class="pf-v6-c-masthead__content">
617
617
  <div
618
618
  class="pf-v6-c-toolbar pf-m-static"
619
- id="banner-top-bottom-example-masthead-toolbar"
619
+ id="banner-top-bottom-example-docked-toolbar"
620
620
  >
621
621
  <div class="pf-v6-c-toolbar__content">
622
622
  <div class="pf-v6-c-toolbar__content-section">
@@ -15,7 +15,7 @@ section: patterns
15
15
  <span class="pf-v6-c-button__text">Skip to content</span>
16
16
  </a>
17
17
  </div>
18
- <header class="pf-v6-c-masthead" id="card-view-basic-example-masthead">
18
+ <header class="pf-v6-c-masthead" id="card-view-basic-example-docked">
19
19
  <div class="pf-v6-c-masthead__main">
20
20
  <span class="pf-v6-c-masthead__toggle">
21
21
  <button
@@ -57,7 +57,7 @@ section: patterns
57
57
  y1="2.25860997e-13%"
58
58
  x2="32%"
59
59
  y2="100%"
60
- id="linearGradient-card-view-basic-example-masthead"
60
+ id="linearGradient-card-view-basic-example-docked"
61
61
  >
62
62
  <stop stop-color="#2B9AF3" offset="0%" />
63
63
  <stop
@@ -111,11 +111,11 @@ section: patterns
111
111
  />
112
112
  <path
113
113
  d="M158,3.43478261 L65.2608696,158 L138,158 C149.045695,158 158,149.045695 158,138 L158,3.43478261 L158,3.43478261 Z"
114
- fill="url(#linearGradient-card-view-basic-example-masthead)"
114
+ fill="url(#linearGradient-card-view-basic-example-docked)"
115
115
  />
116
116
  <path
117
117
  d="M123.652174,-30.9130435 L30.9130435,123.652174 L103.652174,123.652174 C114.697869,123.652174 123.652174,114.697869 123.652174,103.652174 L123.652174,-30.9130435 L123.652174,-30.9130435 Z"
118
- fill="url(#linearGradient-card-view-basic-example-masthead)"
118
+ fill="url(#linearGradient-card-view-basic-example-docked)"
119
119
  transform="translate(77.282609, 46.369565) scale(1, -1) rotate(90.000000) translate(-77.282609, -46.369565) "
120
120
  />
121
121
  </g>
@@ -127,7 +127,7 @@ section: patterns
127
127
  <div class="pf-v6-c-masthead__content">
128
128
  <div
129
129
  class="pf-v6-c-toolbar pf-m-static"
130
- id="card-view-basic-example-masthead-toolbar"
130
+ id="card-view-basic-example-docked-toolbar"
131
131
  >
132
132
  <div class="pf-v6-c-toolbar__content">
133
133
  <div class="pf-v6-c-toolbar__content-section">