@patternfly/patternfly 5.1.0-prerelease.9 → 5.1.0

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 (110) hide show
  1. package/README.md +6 -6
  2. package/base/_common.scss +9 -8
  3. package/base/_variables.scss +5 -1
  4. package/base/patternfly-common.css +4 -11
  5. package/base/patternfly-variables.css +5 -1
  6. package/components/AboutModalBox/about-modal-box.css +5 -0
  7. package/components/AboutModalBox/about-modal-box.scss +7 -0
  8. package/components/Accordion/accordion.css +3 -0
  9. package/components/Accordion/accordion.scss +2 -0
  10. package/components/Alert/alert.css +3 -0
  11. package/components/Alert/alert.scss +2 -0
  12. package/components/BackgroundImage/background-image.css +4 -1
  13. package/components/BackgroundImage/background-image.scss +6 -1
  14. package/components/Banner/banner.css +0 -3
  15. package/components/Breadcrumb/breadcrumb.css +3 -0
  16. package/components/Breadcrumb/breadcrumb.scss +2 -0
  17. package/components/Button/button.css +3 -0
  18. package/components/Button/button.scss +4 -0
  19. package/components/CalendarMonth/calendar-month.css +4 -0
  20. package/components/CalendarMonth/calendar-month.scss +2 -0
  21. package/components/Card/card.css +4 -1
  22. package/components/Card/card.scss +3 -1
  23. package/components/ClipboardCopy/clipboard-copy.css +3 -0
  24. package/components/ClipboardCopy/clipboard-copy.scss +2 -0
  25. package/components/DataList/data-list.css +3 -0
  26. package/components/DataList/data-list.scss +2 -0
  27. package/components/Drawer/drawer.css +45 -1
  28. package/components/Drawer/drawer.scss +43 -9
  29. package/components/DualListSelector/dual-list-selector.css +6 -2
  30. package/components/DualListSelector/dual-list-selector.scss +7 -2
  31. package/components/ExpandableSection/expandable-section.css +4 -0
  32. package/components/ExpandableSection/expandable-section.scss +2 -0
  33. package/components/Form/form.css +3 -0
  34. package/components/Form/form.scss +2 -0
  35. package/components/Icon/icon.scss +1 -1
  36. package/components/JumpLinks/jump-links.css +3 -0
  37. package/components/JumpLinks/jump-links.scss +2 -0
  38. package/components/Menu/menu.css +11 -0
  39. package/components/Menu/menu.scss +12 -2
  40. package/components/Nav/nav.css +20 -0
  41. package/components/Nav/nav.scss +22 -2
  42. package/components/NotificationDrawer/notification-drawer.css +4 -0
  43. package/components/NotificationDrawer/notification-drawer.scss +2 -0
  44. package/components/Page/page.css +4 -0
  45. package/components/Page/page.scss +6 -1
  46. package/components/Pagination/pagination.css +1 -1
  47. package/components/Pagination/pagination.scss +1 -1
  48. package/components/Popover/popover.css +62 -33
  49. package/components/Popover/popover.scss +88 -71
  50. package/components/Progress/progress.css +6 -4
  51. package/components/Progress/progress.scss +9 -4
  52. package/components/Skeleton/skeleton.css +4 -0
  53. package/components/Skeleton/skeleton.scss +2 -0
  54. package/components/Slider/slider.css +30 -6
  55. package/components/Slider/slider.scss +50 -19
  56. package/components/Switch/switch.css +5 -1
  57. package/components/Switch/switch.scss +5 -1
  58. package/components/Table/table-scrollable.css +2 -2
  59. package/components/Table/table-scrollable.scss +4 -2
  60. package/components/Table/table-tree-view.css +5 -1
  61. package/components/Table/table-tree-view.scss +7 -2
  62. package/components/Table/table.css +4 -0
  63. package/components/Table/table.scss +2 -0
  64. package/components/Tabs/tabs.css +10 -0
  65. package/components/Tabs/tabs.scss +8 -0
  66. package/components/Toolbar/toolbar.scss +2 -0
  67. package/components/Tooltip/tooltip.css +55 -26
  68. package/components/Tooltip/tooltip.scss +71 -54
  69. package/components/TreeView/tree-view.css +6 -0
  70. package/components/TreeView/tree-view.scss +10 -3
  71. package/components/Truncate/truncate.css +9 -0
  72. package/components/Truncate/truncate.scss +16 -3
  73. package/components/Wizard/wizard.css +6 -3
  74. package/components/Wizard/wizard.scss +8 -3
  75. package/docs/components/Button/examples/Button.md +15 -3
  76. package/docs/components/Card/examples/Card.md +2 -2
  77. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +106 -0
  78. package/docs/components/CodeEditor/examples/CodeEditor.md +3 -3
  79. package/docs/components/DualListSelector/examples/DualListSelector.md +64 -16
  80. package/docs/components/Menu/examples/Menu.css +8 -0
  81. package/docs/components/Menu/examples/Menu.md +90 -73
  82. package/docs/components/ModalBox/examples/ModalBox.css +3 -8
  83. package/docs/components/Nav/examples/Navigation.css +3 -26
  84. package/docs/components/Nav/examples/Navigation.md +99 -0
  85. package/docs/components/OptionsMenu/deprecated/options-menu.md +12 -3
  86. package/docs/components/Popover/examples/Popover.css +4 -9
  87. package/docs/components/Table/examples/Table.md +2 -2
  88. package/docs/components/Toolbar/examples/Toolbar.md +76 -60
  89. package/docs/components/Tooltip/examples/Tooltip.css +4 -0
  90. package/docs/components/Tooltip/examples/Tooltip.md +3 -1
  91. package/docs/components/Truncate/examples/Truncate.md +2 -2
  92. package/docs/demos/Card/examples/Card.md +23 -7
  93. package/docs/demos/DataList/examples/DataList.md +8 -2
  94. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +16 -4
  95. package/docs/demos/Skeleton/examples/Skeleton.md +7 -35
  96. package/docs/demos/Table/examples/Table.md +48 -12
  97. package/docs/demos/Tabs/examples/Tabs.md +4 -1
  98. package/package.json +6 -5
  99. package/patternfly-base-no-globals-theme-dark-unversioned.css +9 -12
  100. package/patternfly-base-no-globals.css +9 -12
  101. package/patternfly-base-theme-dark-unversioned.css +9 -12
  102. package/patternfly-base.css +9 -12
  103. package/patternfly-no-globals.css +356 -104
  104. package/patternfly-theme-dark-unversioned.css +356 -104
  105. package/patternfly.css +356 -104
  106. package/patternfly.min.css +1 -1
  107. package/patternfly.min.css.map +1 -1
  108. package/sass-utilities/functions.scss +6 -0
  109. package/sass-utilities/mixins.scss +55 -20
  110. package/sass-utilities/themes/dark/mixins.scss +3 -1
@@ -2483,6 +2483,104 @@ cssPrefix: pf-v5-c-nav
2483
2483
 
2484
2484
  ```
2485
2485
 
2486
+ ### Nav link text
2487
+
2488
+ When using anything other than a text node for the link text, wrap the link text in an element with `.pf-v5-c-nav__link-text`.
2489
+
2490
+ ```html isBeta
2491
+ <nav class="pf-v5-c-nav" aria-label="Global">
2492
+ <ul class="pf-v5-c-nav__list" role="list">
2493
+ <li class="pf-v5-c-nav__item">
2494
+ <a href="#" class="pf-v5-c-nav__link">
2495
+ <span class="pf-v5-c-nav__link-text">
2496
+ Link 1
2497
+ <i class="fas fa-arrow-right" aria-hidden="true"></i>
2498
+ </span>
2499
+ </a>
2500
+ </li>
2501
+ <li class="pf-v5-c-nav__item pf-m-expandable pf-m-expanded">
2502
+ <button
2503
+ class="pf-v5-c-nav__link"
2504
+ id="nav-link-text-link2"
2505
+ aria-expanded="true"
2506
+ >
2507
+ <span class="pf-v5-c-nav__link-text">
2508
+ Link 2
2509
+ <small>(small text)</small>
2510
+ </span>
2511
+ <span class="pf-v5-c-nav__toggle">
2512
+ <span class="pf-v5-c-nav__toggle-icon">
2513
+ <i class="fas fa-angle-right" aria-hidden="true"></i>
2514
+ </span>
2515
+ </span>
2516
+ </button>
2517
+ <section
2518
+ class="pf-v5-c-nav__subnav"
2519
+ aria-labelledby="nav-link-text-link2"
2520
+ >
2521
+ <ul class="pf-v5-c-nav__list" role="list">
2522
+ <li class="pf-v5-c-nav__item">
2523
+ <a href="#" class="pf-v5-c-nav__link">
2524
+ <span class="pf-v5-c-nav__link-text">
2525
+ <i class="fas fa-user" aria-hidden="true"></i>
2526
+ Subnav link 1
2527
+ </span>
2528
+ </a>
2529
+ </li>
2530
+ <li class="pf-v5-c-nav__item">
2531
+ <a href="#" class="pf-v5-c-nav__link">
2532
+ <span class="pf-v5-c-nav__link-text">
2533
+ <i class="fas fa-user" aria-hidden="true"></i>
2534
+ Subnav link 2
2535
+ </span>
2536
+ </a>
2537
+ </li>
2538
+ </ul>
2539
+ </section>
2540
+ </li>
2541
+ <li class="pf-v5-c-nav__item pf-m-expandable pf-m-current">
2542
+ <button
2543
+ class="pf-v5-c-nav__link"
2544
+ id="nav-link-text-link4"
2545
+ aria-expanded="false"
2546
+ >
2547
+ <span class="pf-v5-c-nav__link-text">
2548
+ Link 3
2549
+ <strong>(strong text)</strong>
2550
+ </span>
2551
+ <span class="pf-v5-c-nav__toggle">
2552
+ <span class="pf-v5-c-nav__toggle-icon">
2553
+ <i class="fas fa-angle-right" aria-hidden="true"></i>
2554
+ </span>
2555
+ </span>
2556
+ </button>
2557
+ <section
2558
+ class="pf-v5-c-nav__subnav"
2559
+ aria-labelledby="nav-link-text-link4"
2560
+ hidden
2561
+ >
2562
+ <ul class="pf-v5-c-nav__list" role="list">
2563
+ <li class="pf-v5-c-nav__item">
2564
+ <a href="#" class="pf-v5-c-nav__link">Subnav link 1</a>
2565
+ </li>
2566
+ <li class="pf-v5-c-nav__item">
2567
+ <a
2568
+ href="#"
2569
+ class="pf-v5-c-nav__link pf-m-current"
2570
+ aria-current="page"
2571
+ >Subnav link 2</a>
2572
+ </li>
2573
+ <li class="pf-v5-c-nav__item">
2574
+ <a href="#" class="pf-v5-c-nav__link">Subnav link 3</a>
2575
+ </li>
2576
+ </ul>
2577
+ </section>
2578
+ </li>
2579
+ </ul>
2580
+ </nav>
2581
+
2582
+ ```
2583
+
2486
2584
  ## Documentation
2487
2585
 
2488
2586
  ### Overview
@@ -2514,6 +2612,7 @@ The navigation system relies on several different sub-components:
2514
2612
  | `.pf-v5-c-nav__list` | `<ul>` | Initiates nav list. |
2515
2613
  | `.pf-v5-c-nav__item` | `<li>` | Initiates nav list item. |
2516
2614
  | `.pf-v5-c-nav__link` | `<a>` | Initiates nav list link. |
2615
+ | `.pf-v5-c-nav__link-text` | `<span>` | Initiates nav list link text. |
2517
2616
  | `.pf-v5-c-nav__section` | `<section>` | Initiates a nav section element. |
2518
2617
  | `.pf-v5-c-nav__section-title` | `<h1>`, `<h2>`, `<h3>`, `<h4>`, `<h5>`, `<h6>` | Initiates a nav section title. |
2519
2618
  | `.pf-v5-c-nav__toggle` | `<span>` | Initiates the nav toggle wrapper. |
@@ -314,7 +314,10 @@ deprecated: true
314
314
  disabled
315
315
  aria-label="Sort by"
316
316
  >
317
- <i class="fas fa-sort-amount-down" aria-hidden="true"></i>
317
+ <i
318
+ class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
319
+ aria-hidden="true"
320
+ ></i>
318
321
  </button>
319
322
  <ul
320
323
  class="pf-v5-c-options-menu__menu"
@@ -360,7 +363,10 @@ deprecated: true
360
363
  aria-expanded="false"
361
364
  aria-label="Sort by"
362
365
  >
363
- <i class="fas fa-sort-amount-down" aria-hidden="true"></i>
366
+ <i
367
+ class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
368
+ aria-hidden="true"
369
+ ></i>
364
370
  </button>
365
371
  <ul
366
372
  class="pf-v5-c-options-menu__menu"
@@ -406,7 +412,10 @@ deprecated: true
406
412
  aria-expanded="true"
407
413
  aria-label="Sort by"
408
414
  >
409
- <i class="fas fa-sort-amount-down" aria-hidden="true"></i>
415
+ <i
416
+ class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
417
+ aria-hidden="true"
418
+ ></i>
410
419
  </button>
411
420
  <ul
412
421
  class="pf-v5-c-options-menu__menu"
@@ -1,10 +1,5 @@
1
1
  .ws-core-c-popover .ws-preview-html {
2
- position: relative;
3
- }
4
-
5
- .ws-core-c-popover .pf-v5-c-popover {
6
- position: absolute;
7
- inset-block-start: 50%;
8
- inset-inline-start: 50%;
9
- transform: translate(-50%, -50%);
10
- }
2
+ display: flex;
3
+ align-items: center;
4
+ justify-content: center;
5
+ }
@@ -27051,8 +27051,8 @@ For sticky columns to function correctly, the parent table's width must be contr
27051
27051
  | `.pf-v5-c-scroll-outer-wrapper` | `<div>` | Initiates a table container sticky columns outer wrapper. |
27052
27052
  | `.pf-v5-c-scroll-inner-wrapper` | `<div>` | Initiates a table container sticky columns inner wrapper. |
27053
27053
  | `.pf-v5-c-table__sticky-cell` | `<th>`, `<td>` | Initiates a sticky table cell. |
27054
- | `.pf-m-right` | `.pf-v5-c-table__sticky-cell` | Initiates a sticky, right-hand table cell. |
27055
- | `.pf-m-left` | `.pf-v5-c-table__sticky-cell` | Initiates a sticky, left-hand table cell. |
27054
+ | `.pf-m-right`, `.pf-m-inline-end` | `.pf-v5-c-table__sticky-cell` | Initiates a sticky, right-hand (in LTR) or left-hand (in RTL) table cell. |
27055
+ | `.pf-m-left`, `.pf-m-inline-start` | `.pf-v5-c-table__sticky-cell` | Initiates a sticky, left-hand (in LTR) or right-hand (in RTL) table cell. |
27056
27056
 
27057
27057
  ## Nested column headers
27058
27058
 
@@ -3416,22 +3416,26 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
3416
3416
  </div>
3417
3417
 
3418
3418
  <nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
3419
- <button
3420
- class="pf-v5-c-button pf-m-plain pf-m-disabled"
3421
- type="button"
3422
- aria-label="Go to first page"
3423
- aria-disabled="true"
3424
- >
3425
- <i class="fas fa-angle-double-left" aria-hidden="true"></i>
3426
- </button>
3427
- <button
3428
- class="pf-v5-c-button pf-m-plain pf-m-disabled"
3429
- type="button"
3430
- aria-label="Go to previous page"
3431
- aria-disabled="true"
3432
- >
3433
- <i class="fas fa-angle-left" aria-hidden="true"></i>
3434
- </button>
3419
+ <div class="pf-v5-c-pagination__nav-control pf-m-first">
3420
+ <button
3421
+ class="pf-v5-c-button pf-m-plain pf-m-disabled"
3422
+ type="button"
3423
+ aria-label="Go to first page"
3424
+ aria-disabled="true"
3425
+ >
3426
+ <i class="fas fa-angle-double-left" aria-hidden="true"></i>
3427
+ </button>
3428
+ </div>
3429
+ <div class="pf-v5-c-pagination__nav-control pf-m-prev">
3430
+ <button
3431
+ class="pf-v5-c-button pf-m-plain pf-m-disabled"
3432
+ type="button"
3433
+ aria-label="Go to previous page"
3434
+ aria-disabled="true"
3435
+ >
3436
+ <i class="fas fa-angle-left" aria-hidden="true"></i>
3437
+ </button>
3438
+ </div>
3435
3439
 
3436
3440
  <div
3437
3441
  class="pf-v5-c-pagination__nav-page-select"
@@ -3448,20 +3452,24 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
3448
3452
  </span>
3449
3453
  <span aria-hidden="true">of 4</span>
3450
3454
  </div>
3451
- <button
3452
- class="pf-v5-c-button pf-m-plain"
3453
- type="button"
3454
- aria-label="Go to next page"
3455
- >
3456
- <i class="fas fa-angle-right" aria-hidden="true"></i>
3457
- </button>
3458
- <button
3459
- class="pf-v5-c-button pf-m-plain"
3460
- type="button"
3461
- aria-label="Go to last page"
3462
- >
3463
- <i class="fas fa-angle-double-right" aria-hidden="true"></i>
3464
- </button>
3455
+ <div class="pf-v5-c-pagination__nav-control pf-m-next">
3456
+ <button
3457
+ class="pf-v5-c-button pf-m-plain"
3458
+ type="button"
3459
+ aria-label="Go to next page"
3460
+ >
3461
+ <i class="fas fa-angle-right" aria-hidden="true"></i>
3462
+ </button>
3463
+ </div>
3464
+ <div class="pf-v5-c-pagination__nav-control pf-m-last">
3465
+ <button
3466
+ class="pf-v5-c-button pf-m-plain"
3467
+ type="button"
3468
+ aria-label="Go to last page"
3469
+ >
3470
+ <i class="fas fa-angle-double-right" aria-hidden="true"></i>
3471
+ </button>
3472
+ </div>
3465
3473
  </nav>
3466
3474
  </div>
3467
3475
  </div>
@@ -3959,22 +3967,26 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
3959
3967
  </div>
3960
3968
 
3961
3969
  <nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
3962
- <button
3963
- class="pf-v5-c-button pf-m-plain pf-m-disabled"
3964
- type="button"
3965
- aria-label="Go to first page"
3966
- aria-disabled="true"
3967
- >
3968
- <i class="fas fa-angle-double-left" aria-hidden="true"></i>
3969
- </button>
3970
- <button
3971
- class="pf-v5-c-button pf-m-plain pf-m-disabled"
3972
- type="button"
3973
- aria-label="Go to previous page"
3974
- aria-disabled="true"
3975
- >
3976
- <i class="fas fa-angle-left" aria-hidden="true"></i>
3977
- </button>
3970
+ <div class="pf-v5-c-pagination__nav-control pf-m-first">
3971
+ <button
3972
+ class="pf-v5-c-button pf-m-plain pf-m-disabled"
3973
+ type="button"
3974
+ aria-label="Go to first page"
3975
+ aria-disabled="true"
3976
+ >
3977
+ <i class="fas fa-angle-double-left" aria-hidden="true"></i>
3978
+ </button>
3979
+ </div>
3980
+ <div class="pf-v5-c-pagination__nav-control pf-m-prev">
3981
+ <button
3982
+ class="pf-v5-c-button pf-m-plain pf-m-disabled"
3983
+ type="button"
3984
+ aria-label="Go to previous page"
3985
+ aria-disabled="true"
3986
+ >
3987
+ <i class="fas fa-angle-left" aria-hidden="true"></i>
3988
+ </button>
3989
+ </div>
3978
3990
 
3979
3991
  <div
3980
3992
  class="pf-v5-c-pagination__nav-page-select"
@@ -3991,20 +4003,24 @@ The `.pf-m-toggle-group` controls when, and at which breakpoint, filters will be
3991
4003
  </span>
3992
4004
  <span aria-hidden="true">of 4</span>
3993
4005
  </div>
3994
- <button
3995
- class="pf-v5-c-button pf-m-plain"
3996
- type="button"
3997
- aria-label="Go to next page"
3998
- >
3999
- <i class="fas fa-angle-right" aria-hidden="true"></i>
4000
- </button>
4001
- <button
4002
- class="pf-v5-c-button pf-m-plain"
4003
- type="button"
4004
- aria-label="Go to last page"
4005
- >
4006
- <i class="fas fa-angle-double-right" aria-hidden="true"></i>
4007
- </button>
4006
+ <div class="pf-v5-c-pagination__nav-control pf-m-next">
4007
+ <button
4008
+ class="pf-v5-c-button pf-m-plain"
4009
+ type="button"
4010
+ aria-label="Go to next page"
4011
+ >
4012
+ <i class="fas fa-angle-right" aria-hidden="true"></i>
4013
+ </button>
4014
+ </div>
4015
+ <div class="pf-v5-c-pagination__nav-control pf-m-last">
4016
+ <button
4017
+ class="pf-v5-c-button pf-m-plain"
4018
+ type="button"
4019
+ aria-label="Go to last page"
4020
+ >
4021
+ <i class="fas fa-angle-double-right" aria-hidden="true"></i>
4022
+ </button>
4023
+ </div>
4008
4024
  </nav>
4009
4025
  </div>
4010
4026
  </div>
@@ -0,0 +1,4 @@
1
+ /* adds padding to full page examples so arrows are visible */
2
+ .ws-core-c-tooltip:not(.ws-preview) {
3
+ padding: var(--pf-v5-global--spacer--md);
4
+ }
@@ -2,7 +2,9 @@
2
2
  id: Tooltip
3
3
  section: components
4
4
  cssPrefix: pf-v5-c-tooltip
5
- ---## Examples
5
+ ---import "./Tooltip.css"
6
+
7
+ ## Examples
6
8
 
7
9
  ### Top
8
10
 
@@ -30,8 +30,8 @@ The truncate component contains two child elements, `.pf-v5-c-truncate__start` a
30
30
  <span class="pf-v5-c-truncate">
31
31
  <span
32
32
  class="pf-v5-c-truncate__start"
33
- >redhat_logo_black_and_white_reversed_simple_with_fedora_con</span>
34
- <span class="pf-v5-c-truncate__end">tainer.zip</span>
33
+ >Vestibulum interdum risus et enim faucibus,&nbsp;</span>
34
+ <span class="pf-v5-c-truncate__end">sit amet molestie est accumsan.</span>
35
35
  </span>
36
36
  </div>
37
37
 
@@ -248,7 +248,7 @@ wrapperTag: div
248
248
  <span class="pf-v5-c-label__text">Set up your cluster</span>
249
249
  </span>
250
250
  </span>
251
- <p>Continue setting up your cluster to access all you cain in the Console</p>
251
+ <p>Continue setting up your cluster to access all you can in the Console</p>
252
252
  <ul class="pf-v5-c-list pf-m-plain" role="list">
253
253
  <li>
254
254
  <a href="#">Add identity provider</a>
@@ -266,7 +266,11 @@ wrapperTag: div
266
266
  <span
267
267
  class="pf-v5-c-button__icon pf-m-end"
268
268
  >
269
- <i class="fas fa-arrow-right" aria-hidden="true"></i>
269
+ <span class="pf-v5-c-icon pf-v5-m-mirror-inline-rtl">
270
+ <span class="pf-v5-c-icon__content">
271
+ <i class="fas fa-arrow-right" aria-hidden="true"></i>
272
+ </span>
273
+ </span>
270
274
  </span>
271
275
  </a>
272
276
  </div>
@@ -297,7 +301,11 @@ wrapperTag: div
297
301
  <a class="pf-v5-c-button pf-m-link pf-m-inline" href="#">
298
302
  View all guided tours
299
303
  <span class="pf-v5-c-button__icon pf-m-end">
300
- <i class="fas fa-arrow-right" aria-hidden="true"></i>
304
+ <span class="pf-v5-c-icon pf-v5-m-mirror-inline-rtl">
305
+ <span class="pf-v5-c-icon__content">
306
+ <i class="fas fa-arrow-right" aria-hidden="true"></i>
307
+ </span>
308
+ </span>
301
309
  </span>
302
310
  </a>
303
311
  </div>
@@ -331,7 +339,11 @@ wrapperTag: div
331
339
  <a class="pf-v5-c-button pf-m-link pf-m-inline" href="#">
332
340
  View all quick starts
333
341
  <span class="pf-v5-c-button__icon pf-m-end">
334
- <i class="fas fa-arrow-right" aria-hidden="true"></i>
342
+ <span class="pf-v5-c-icon pf-v5-m-mirror-inline-rtl">
343
+ <span class="pf-v5-c-icon__content">
344
+ <i class="fas fa-arrow-right" aria-hidden="true"></i>
345
+ </span>
346
+ </span>
335
347
  </span>
336
348
  </a>
337
349
  </div>
@@ -370,7 +382,11 @@ wrapperTag: div
370
382
  <span
371
383
  class="pf-v5-c-button__icon pf-m-end"
372
384
  >
373
- <i class="fas fa-arrow-right" aria-hidden="true"></i>
385
+ <span class="pf-v5-c-icon pf-v5-m-mirror-inline-rtl">
386
+ <span class="pf-v5-c-icon__content">
387
+ <i class="fas fa-arrow-right" aria-hidden="true"></i>
388
+ </span>
389
+ </span>
374
390
  </span>
375
391
  </a>
376
392
  </div>
@@ -387,8 +403,8 @@ wrapperTag: div
387
403
  <div class="pf-v5-c-card pf-m-flat" id="card-demo-horizontal-split-example">
388
404
  <div class="pf-v5-l-grid pf-m-all-6-col-on-md">
389
405
  <div
390
- class="pf-v5-l-grid__item pf-d-card__media-item"
391
- style="min-height: 200px; background: center / cover url('/assets/images/pfbg_992@2x.jpg'); "
406
+ class="pf-v5-l-grid__item"
407
+ style="min-height: 200px; background: no-repeat bottom right / auto 75% url(/assets/images/pfbg-icon.svg) black;"
392
408
  ></div>
393
409
  <div class="pf-v5-l-grid__item">
394
410
  <div class="pf-v5-c-card__title">
@@ -1940,8 +1940,14 @@ wrapperTag: div
1940
1940
  type="button"
1941
1941
  aria-label="Expand all rows"
1942
1942
  >
1943
- <span class="pf-v5-c-toolbar__expand-all-icon">
1944
- <i class="fas fa-angle-right" aria-hidden="true"></i>
1943
+ <span class="pf-v5-c-icon">
1944
+ <span
1945
+ class="pf-v5-c-icon__content pf-v5-m-mirror-inline-rtl"
1946
+ >
1947
+ <span class="pf-v5-c-toolbar__expand-all-icon">
1948
+ <i class="fas fa-angle-right" aria-hidden="true"></i>
1949
+ </span>
1950
+ </span>
1945
1951
  </span>
1946
1952
  </button>
1947
1953
  </div>
@@ -551,7 +551,10 @@ wrapperTag: div
551
551
  type="button"
552
552
  aria-label="Sort"
553
553
  >
554
- <i class="fas fa-sort-amount-down" aria-hidden="true"></i>
554
+ <i
555
+ class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
556
+ aria-hidden="true"
557
+ ></i>
555
558
  </button>
556
559
  </div>
557
560
 
@@ -1809,7 +1812,10 @@ wrapperTag: div
1809
1812
  type="button"
1810
1813
  aria-label="Sort"
1811
1814
  >
1812
- <i class="fas fa-sort-amount-down" aria-hidden="true"></i>
1815
+ <i
1816
+ class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
1817
+ aria-hidden="true"
1818
+ ></i>
1813
1819
  </button>
1814
1820
  </div>
1815
1821
 
@@ -2880,7 +2886,10 @@ wrapperTag: div
2880
2886
  type="button"
2881
2887
  aria-label="Sort"
2882
2888
  >
2883
- <i class="fas fa-sort-amount-down" aria-hidden="true"></i>
2889
+ <i
2890
+ class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
2891
+ aria-hidden="true"
2892
+ ></i>
2884
2893
  </button>
2885
2894
  </div>
2886
2895
 
@@ -3888,7 +3897,10 @@ wrapperTag: div
3888
3897
  type="button"
3889
3898
  aria-label="Sort"
3890
3899
  >
3891
- <i class="fas fa-sort-amount-down" aria-hidden="true"></i>
3900
+ <i
3901
+ class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
3902
+ aria-hidden="true"
3903
+ ></i>
3892
3904
  </button>
3893
3905
  </div>
3894
3906
 
@@ -206,11 +206,7 @@ section: components
206
206
  </div>
207
207
  </div>
208
208
  <div class="pf-v5-c-card__body">
209
- <div class="pf-v5-c-skeleton">
210
- <div class="pf-v5-l-bullseye">
211
- <div class="pf-v5-c-skeleton pf-m-circle pf-m-width-md"></div>
212
- </div>
213
- </div>
209
+ <div class="pf-v5-c-skeleton pf-m-square pf-m-width-md"></div>
214
210
  </div>
215
211
  <div class="pf-v5-c-card__body">
216
212
  <div class="pf-v5-l-flex pf-m-column pf-m-spacer-md">
@@ -231,11 +227,7 @@ section: components
231
227
  </div>
232
228
  </div>
233
229
  <div class="pf-v5-c-card__body">
234
- <div class="pf-v5-c-skeleton">
235
- <div class="pf-v5-l-bullseye">
236
- <div class="pf-v5-c-skeleton pf-m-circle pf-m-width-md"></div>
237
- </div>
238
- </div>
230
+ <div class="pf-v5-c-skeleton pf-m-square pf-m-width-md"></div>
239
231
  </div>
240
232
  <div class="pf-v5-c-card__body">
241
233
  <div class="pf-v5-l-flex pf-m-column pf-m-spacer-md">
@@ -256,11 +248,7 @@ section: components
256
248
  </div>
257
249
  </div>
258
250
  <div class="pf-v5-c-card__body">
259
- <div class="pf-v5-c-skeleton">
260
- <div class="pf-v5-l-bullseye">
261
- <div class="pf-v5-c-skeleton pf-m-circle pf-m-width-md"></div>
262
- </div>
263
- </div>
251
+ <div class="pf-v5-c-skeleton pf-m-square pf-m-width-md"></div>
264
252
  </div>
265
253
  <div class="pf-v5-c-card__body">
266
254
  <div class="pf-v5-l-flex pf-m-column pf-m-spacer-md">
@@ -281,11 +269,7 @@ section: components
281
269
  </div>
282
270
  </div>
283
271
  <div class="pf-v5-c-card__body">
284
- <div class="pf-v5-c-skeleton">
285
- <div class="pf-v5-l-bullseye">
286
- <div class="pf-v5-c-skeleton pf-m-circle pf-m-width-md"></div>
287
- </div>
288
- </div>
272
+ <div class="pf-v5-c-skeleton pf-m-square pf-m-width-md"></div>
289
273
  </div>
290
274
  <div class="pf-v5-c-card__body">
291
275
  <div class="pf-v5-l-flex pf-m-column pf-m-spacer-md">
@@ -306,11 +290,7 @@ section: components
306
290
  </div>
307
291
  </div>
308
292
  <div class="pf-v5-c-card__body">
309
- <div class="pf-v5-c-skeleton">
310
- <div class="pf-v5-l-bullseye">
311
- <div class="pf-v5-c-skeleton pf-m-circle pf-m-width-md"></div>
312
- </div>
313
- </div>
293
+ <div class="pf-v5-c-skeleton pf-m-square pf-m-width-md"></div>
314
294
  </div>
315
295
  <div class="pf-v5-c-card__body">
316
296
  <div class="pf-v5-l-flex pf-m-column pf-m-spacer-md">
@@ -331,11 +311,7 @@ section: components
331
311
  </div>
332
312
  </div>
333
313
  <div class="pf-v5-c-card__body">
334
- <div class="pf-v5-c-skeleton">
335
- <div class="pf-v5-l-bullseye">
336
- <div class="pf-v5-c-skeleton pf-m-circle pf-m-width-md"></div>
337
- </div>
338
- </div>
314
+ <div class="pf-v5-c-skeleton pf-m-square pf-m-width-md"></div>
339
315
  </div>
340
316
  <div class="pf-v5-c-card__body">
341
317
  <div class="pf-v5-l-flex pf-m-column pf-m-spacer-md">
@@ -356,11 +332,7 @@ section: components
356
332
  </div>
357
333
  </div>
358
334
  <div class="pf-v5-c-card__body">
359
- <div class="pf-v5-c-skeleton">
360
- <div class="pf-v5-l-bullseye">
361
- <div class="pf-v5-c-skeleton pf-m-circle pf-m-width-md"></div>
362
- </div>
363
- </div>
335
+ <div class="pf-v5-c-skeleton pf-m-square pf-m-width-md"></div>
364
336
  </div>
365
337
  <div class="pf-v5-c-card__body">
366
338
  <div class="pf-v5-l-flex pf-m-column pf-m-spacer-md">