@patternfly/patternfly 6.1.0-prerelease.2 → 6.1.0-prerelease.4

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/README.md +5 -5
  2. package/components/Content/content.css +9 -0
  3. package/components/Content/content.scss +7 -0
  4. package/components/Label/label-group.css +12 -0
  5. package/components/Label/label-group.scss +14 -0
  6. package/components/Label/label.css +2 -0
  7. package/components/Label/label.scss +2 -0
  8. package/components/MenuToggle/menu-toggle.css +3 -7
  9. package/components/MenuToggle/menu-toggle.scss +3 -8
  10. package/components/Table/table.css +1 -0
  11. package/components/Table/table.scss +2 -0
  12. package/components/Title/title.css +4 -0
  13. package/components/Title/title.scss +7 -0
  14. package/components/Wizard/wizard.css +1 -1
  15. package/components/Wizard/wizard.scss +1 -1
  16. package/components/_index.css +32 -8
  17. package/docs/components/Content/examples/Content.md +8 -7
  18. package/docs/components/Label/examples/Label.css +12 -0
  19. package/docs/components/Label/examples/Label.md +127 -0
  20. package/docs/components/Table/examples/Table.md +2 -2
  21. package/docs/components/Title/examples/Title.md +10 -0
  22. package/docs/demos/AboutModal/examples/AboutModal.md +2 -4
  23. package/docs/demos/Alert/examples/Alert.md +6 -12
  24. package/docs/demos/BackToTop/examples/BackToTop.md +2 -4
  25. package/docs/demos/Banner/examples/Banner.md +4 -8
  26. package/docs/demos/CardView/examples/CardView.md +2 -4
  27. package/docs/demos/Dashboard/examples/Dashboard.md +2 -4
  28. package/docs/demos/DataList/examples/DataList.md +8 -16
  29. package/docs/demos/DescriptionList/examples/DescriptionList.md +6 -12
  30. package/docs/demos/Drawer/examples/Drawer.md +6 -12
  31. package/docs/demos/JumpLinks/examples/JumpLinks.md +8 -16
  32. package/docs/demos/Masthead/examples/Masthead.md +18 -36
  33. package/docs/demos/Modal/examples/Modal.md +12 -24
  34. package/docs/demos/Nav/examples/Nav.md +12 -24
  35. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +10 -20
  36. package/docs/demos/Page/examples/Page.md +24 -48
  37. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +14 -28
  38. package/docs/demos/Skeleton/examples/Skeleton.md +2 -4
  39. package/docs/demos/Table/examples/Table.md +30 -60
  40. package/docs/demos/Tabs/examples/Tabs.md +12 -24
  41. package/docs/demos/Toolbar/examples/Toolbar.md +4 -8
  42. package/docs/demos/Wizard/examples/Wizard.md +18 -36
  43. package/docs/layouts/Level/examples/Level.css +1 -2
  44. package/docs/layouts/Level/examples/Level.md +15 -3
  45. package/docs/layouts/Split/examples/Split.css +1 -2
  46. package/docs/layouts/Split/examples/Split.md +4 -4
  47. package/docs/layouts/Stack/examples/Stack.css +1 -2
  48. package/docs/layouts/Stack/examples/Stack.md +4 -4
  49. package/layouts/Split/split.css +1 -2
  50. package/layouts/Split/split.scss +4 -3
  51. package/layouts/Stack/stack.css +1 -2
  52. package/layouts/Stack/stack.scss +4 -3
  53. package/layouts/_index.css +2 -4
  54. package/package.json +2 -2
  55. package/patternfly-no-globals.css +34 -12
  56. package/patternfly.css +34 -12
  57. package/patternfly.min.css +1 -1
  58. package/patternfly.min.css.map +1 -1
@@ -7785,6 +7785,133 @@ In addition to the JavaScript management of [editable labels](/components/label#
7785
7785
 
7786
7786
  ```
7787
7787
 
7788
+ ### Labels with truncation
7789
+
7790
+ ```html
7791
+ <div class="pf-v6-c-label-truncate--example">
7792
+ <strong>Label</strong>
7793
+ <br />
7794
+ <br />
7795
+ <span class="pf-v6-c-label">
7796
+ <span class="pf-v6-c-label__content">
7797
+ <span
7798
+ class="pf-v6-c-label__text"
7799
+ id="-truncated-with-icon-text"
7800
+ style="--pf-v6-c-label__text--MaxWidth: 38ch"
7801
+ >Label with set max-width truncation</span>
7802
+ </span>
7803
+ <span class="pf-v6-c-label__actions">
7804
+ <button
7805
+ class="pf-v6-c-button pf-m-no-padding pf-m-plain"
7806
+ type="button"
7807
+ id="-truncated-with-icon-button"
7808
+ aria-label="Remove"
7809
+ aria-labelledby="-truncated-with-icon-button -truncated-with-icon-text"
7810
+ >
7811
+ <span class="pf-v6-c-button__icon">
7812
+ <i class="fas fa-times fa-fw" aria-hidden="true"></i>
7813
+ </span>
7814
+ </button>
7815
+ </span>
7816
+ </span>
7817
+ <br />
7818
+ <br />
7819
+ <strong>Label group</strong>
7820
+ <br />
7821
+ <br />
7822
+ <div class="pf-v6-c-label-group">
7823
+ <div class="pf-v6-c-label-group__main">
7824
+ <ul
7825
+ class="pf-v6-c-label-group__list"
7826
+ role="list"
7827
+ aria-label="Group of labels"
7828
+ >
7829
+ <li class="pf-v6-c-label-group__list-item">
7830
+ <span class="pf-v6-c-label pf-m-blue">
7831
+ <span class="pf-v6-c-label__content">
7832
+ <span class="pf-v6-c-label__icon">
7833
+ <i class="fas fa-fw fa-info-circle" aria-hidden="true"></i>
7834
+ </span>
7835
+ <span class="pf-v6-c-label__text">Label 1</span>
7836
+ </span>
7837
+ </span>
7838
+ </li>
7839
+ <li class="pf-v6-c-label-group__list-item">
7840
+ <span class="pf-v6-c-label pf-m-green">
7841
+ <span class="pf-v6-c-label__content">
7842
+ <span class="pf-v6-c-label__icon">
7843
+ <i class="fas fa-fw fa-info-circle" aria-hidden="true"></i>
7844
+ </span>
7845
+ <span class="pf-v6-c-label__text">Label 2</span>
7846
+ </span>
7847
+ </span>
7848
+ </li>
7849
+ <li class="pf-v6-c-label-group__list-item">
7850
+ <span class="pf-v6-c-label">
7851
+ <span class="pf-v6-c-label__content">
7852
+ <span class="pf-v6-c-label__icon">
7853
+ <i class="fas fa-fw fa-info-circle" aria-hidden="true"></i>
7854
+ </span>
7855
+ <span
7856
+ class="pf-v6-c-label__text"
7857
+ >Label 3 has a lot of text lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus pretium est a porttitor vehicula</span>
7858
+ </span>
7859
+ </span>
7860
+ </li>
7861
+ </ul>
7862
+ </div>
7863
+ </div>
7864
+ <br />
7865
+ <br />
7866
+ <strong>Label group vertical</strong>
7867
+ <br />
7868
+ <br />
7869
+ <div class="pf-v6-c-label-group pf-m-vertical">
7870
+ <div class="pf-v6-c-label-group__main">
7871
+ <ul
7872
+ class="pf-v6-c-label-group__list"
7873
+ role="list"
7874
+ aria-label="Group of labels"
7875
+ >
7876
+ <li class="pf-v6-c-label-group__list-item">
7877
+ <span class="pf-v6-c-label">
7878
+ <span class="pf-v6-c-label__content">
7879
+ <span class="pf-v6-c-label__icon">
7880
+ <i class="fas fa-fw fa-info-circle" aria-hidden="true"></i>
7881
+ </span>
7882
+ <span class="pf-v6-c-label__text">Label 1</span>
7883
+ </span>
7884
+ </span>
7885
+ </li>
7886
+ <li class="pf-v6-c-label-group__list-item">
7887
+ <span class="pf-v6-c-label pf-m-blue">
7888
+ <span class="pf-v6-c-label__content">
7889
+ <span class="pf-v6-c-label__icon">
7890
+ <i class="fas fa-fw fa-info-circle" aria-hidden="true"></i>
7891
+ </span>
7892
+ <span class="pf-v6-c-label__text">Label 2</span>
7893
+ </span>
7894
+ </span>
7895
+ </li>
7896
+ <li class="pf-v6-c-label-group__list-item">
7897
+ <span class="pf-v6-c-label pf-m-green">
7898
+ <span class="pf-v6-c-label__content">
7899
+ <span class="pf-v6-c-label__icon">
7900
+ <i class="fas fa-fw fa-info-circle" aria-hidden="true"></i>
7901
+ </span>
7902
+ <span
7903
+ class="pf-v6-c-label__text"
7904
+ >Label 3 has a lot of text lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus pretium est a porttitor vehicula</span>
7905
+ </span>
7906
+ </span>
7907
+ </li>
7908
+ </ul>
7909
+ </div>
7910
+ </div>
7911
+ </div>
7912
+
7913
+ ```
7914
+
7788
7915
  ## Documentation
7789
7916
 
7790
7917
  ### Label usage
@@ -20908,9 +20908,9 @@ For sticky columns to function correctly, the parent table's width must be contr
20908
20908
 
20909
20909
  ## Draggable rows
20910
20910
 
20911
- ### Draggable rows example isBeta
20911
+ ### Draggable rows example
20912
20912
 
20913
- ```html
20913
+ ```html isBeta
20914
20914
  <div
20915
20915
  id="table-draggable-rows-help"
20916
20916
  >Activate the reorder button and use the arrow keys to reorder the list or use your mouse to drag/reorder. Press escape to cancel the reordering.</div>
@@ -28,6 +28,15 @@ cssPrefix: pf-v6-c-title
28
28
 
29
29
  ```
30
30
 
31
+ ### Page title
32
+
33
+ ```html
34
+ <h1 class="pf-v6-c-title pf-m-2xl pf-m-page-title">2xl page title</h1>
35
+
36
+ <div class="pf-v6-c-title pf-m-h1 pf-m-page-title">H1 page title</div>
37
+
38
+ ```
39
+
31
40
  ## Documentation
32
41
 
33
42
  ### Overview
@@ -62,3 +71,4 @@ The content component defines margin on headers. To regain the same spacing use,
62
71
  | `.pf-m-h4` | `.pf-v6-c-title` | Modifies for default h4 size |
63
72
  | `.pf-m-h5` | `.pf-v6-c-title` | Modifies for default h5 size |
64
73
  | `.pf-m-h6` | `.pf-v6-c-title` | Modifies for default h6 size |
74
+ | `.pf-m-page-title` | `.pf-v6-c-title` | Applies page title styles. **Note:** `.pf-m-page-title` should only apply to the heading that serves as the title for the current page. |
@@ -261,10 +261,8 @@ This demo implements the about modal, including the backdrop.
261
261
  </section>
262
262
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
263
263
  <div class="pf-v6-c-page__main-body">
264
- <div class="pf-v6-c-content">
265
- <h1>Main title</h1>
266
- <p>This is a full page demo.</p>
267
- </div>
264
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
265
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
268
266
  </div>
269
267
  </section>
270
268
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -259,10 +259,8 @@ section: components
259
259
  </section>
260
260
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
261
261
  <div class="pf-v6-c-page__main-body">
262
- <div class="pf-v6-c-content">
263
- <h1>Main title</h1>
264
- <p>This is a full page demo.</p>
265
- </div>
262
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
263
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
266
264
  </div>
267
265
  </section>
268
266
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -640,10 +638,8 @@ section: components
640
638
  </section>
641
639
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
642
640
  <div class="pf-v6-c-page__main-body">
643
- <div class="pf-v6-c-content">
644
- <h1>Main title</h1>
645
- <p>This is a full page demo.</p>
646
- </div>
641
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
642
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
647
643
  </div>
648
644
  </section>
649
645
  <section class="pf-v6-c-page__main-section">
@@ -1121,10 +1117,8 @@ section: components
1121
1117
  </section>
1122
1118
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1123
1119
  <div class="pf-v6-c-page__main-body">
1124
- <div class="pf-v6-c-content">
1125
- <h1>Main title</h1>
1126
- <p>This is a full page demo.</p>
1127
- </div>
1120
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1121
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1128
1122
  </div>
1129
1123
  </section>
1130
1124
  <section class="pf-v6-c-page__main-section">
@@ -260,10 +260,8 @@ cssPrefix: pf-d-back-to-top
260
260
  </section>
261
261
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
262
262
  <div class="pf-v6-c-page__main-body">
263
- <div class="pf-v6-c-content">
264
- <h1>Main title</h1>
265
- <p>This is a full page demo.</p>
266
- </div>
263
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
264
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
267
265
  </div>
268
266
  </section>
269
267
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -279,10 +279,8 @@ wrapperTag: div
279
279
  </section>
280
280
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
281
281
  <div class="pf-v6-c-page__main-body">
282
- <div class="pf-v6-c-content">
283
- <h1>Main title</h1>
284
- <p>This is a full page demo.</p>
285
- </div>
282
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
283
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
286
284
  </div>
287
285
  </section>
288
286
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -728,10 +726,8 @@ wrapperTag: div
728
726
  </section>
729
727
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
730
728
  <div class="pf-v6-c-page__main-body">
731
- <div class="pf-v6-c-content">
732
- <h1>Main title</h1>
733
- <p>This is a full page demo.</p>
734
- </div>
729
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
730
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
735
731
  </div>
736
732
  </section>
737
733
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -349,10 +349,8 @@ section: patterns
349
349
  </section>
350
350
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
351
351
  <div class="pf-v6-c-page__main-body">
352
- <div class="pf-v6-c-content">
353
- <h1>Main title</h1>
354
- <p>This is a full page demo.</p>
355
- </div>
352
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
353
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
356
354
  </div>
357
355
  </section>
358
356
  <section class="pf-v6-c-page__main-section">
@@ -257,10 +257,8 @@ cssPrefix: pf-d-dashboard
257
257
  </section>
258
258
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
259
259
  <div class="pf-v6-c-page__main-body">
260
- <div class="pf-v6-c-content">
261
- <h1>Main title</h1>
262
- <p>This is a full page demo.</p>
263
- </div>
260
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
261
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
264
262
  </div>
265
263
  </section>
266
264
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -260,10 +260,8 @@ wrapperTag: div
260
260
  </section>
261
261
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
262
262
  <div class="pf-v6-c-page__main-body">
263
- <div class="pf-v6-c-content">
264
- <h1>Main title</h1>
265
- <p>This is a full page demo.</p>
266
- </div>
263
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
264
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
267
265
  </div>
268
266
  </section>
269
267
  <section class="pf-v6-c-page__main-section">
@@ -1089,10 +1087,8 @@ wrapperTag: div
1089
1087
  </section>
1090
1088
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1091
1089
  <div class="pf-v6-c-page__main-body">
1092
- <div class="pf-v6-c-content">
1093
- <h1>Main title</h1>
1094
- <p>This is a full page demo.</p>
1095
- </div>
1090
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1091
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1096
1092
  </div>
1097
1093
  </section>
1098
1094
  <section class="pf-v6-c-page__main-section">
@@ -1928,10 +1924,8 @@ wrapperTag: div
1928
1924
  </section>
1929
1925
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1930
1926
  <div class="pf-v6-c-page__main-body">
1931
- <div class="pf-v6-c-content">
1932
- <h1>Main title</h1>
1933
- <p>This is a full page demo.</p>
1934
- </div>
1927
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1928
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1935
1929
  </div>
1936
1930
  </section>
1937
1931
  <section class="pf-v6-c-page__main-section">
@@ -3452,10 +3446,8 @@ wrapperTag: div
3452
3446
  </section>
3453
3447
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
3454
3448
  <div class="pf-v6-c-page__main-body">
3455
- <div class="pf-v6-c-content">
3456
- <h1>Main title</h1>
3457
- <p>This is a full page demo.</p>
3458
- </div>
3449
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
3450
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
3459
3451
  </div>
3460
3452
  </section>
3461
3453
  <section class="pf-v6-c-page__main-section">
@@ -260,10 +260,8 @@ cssPrefix: pf-d-description-list
260
260
  </section>
261
261
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
262
262
  <div class="pf-v6-c-page__main-body">
263
- <div class="pf-v6-c-content">
264
- <h1>Main title</h1>
265
- <p>This is a full page demo.</p>
266
- </div>
263
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
264
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
267
265
  </div>
268
266
  </section>
269
267
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -643,10 +641,8 @@ cssPrefix: pf-d-description-list
643
641
  </section>
644
642
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
645
643
  <div class="pf-v6-c-page__main-body">
646
- <div class="pf-v6-c-content">
647
- <h1>Main title</h1>
648
- <p>This is a full page demo.</p>
649
- </div>
644
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
645
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
650
646
  </div>
651
647
  </section>
652
648
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -1267,10 +1263,8 @@ cssPrefix: pf-d-description-list
1267
1263
  </section>
1268
1264
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1269
1265
  <div class="pf-v6-c-page__main-body">
1270
- <div class="pf-v6-c-content">
1271
- <h1>Main title</h1>
1272
- <p>This is a full page demo.</p>
1273
- </div>
1266
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1267
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1274
1268
  </div>
1275
1269
  </section>
1276
1270
  <hr class="pf-v6-c-divider" />
@@ -274,10 +274,8 @@ wrapperTag: div
274
274
  </section>
275
275
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
276
276
  <div class="pf-v6-c-page__main-body">
277
- <div class="pf-v6-c-content">
278
- <h1>Main title</h1>
279
- <p>This is a full page demo.</p>
280
- </div>
277
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
278
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
281
279
  </div>
282
280
  </section>
283
281
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -745,10 +743,8 @@ wrapperTag: div
745
743
  </section>
746
744
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
747
745
  <div class="pf-v6-c-page__main-body">
748
- <div class="pf-v6-c-content">
749
- <h1>Main title</h1>
750
- <p>This is a full page demo.</p>
751
- </div>
746
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
747
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
752
748
  </div>
753
749
  </section>
754
750
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -1071,10 +1067,8 @@ wrapperTag: div
1071
1067
  </section>
1072
1068
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1073
1069
  <div class="pf-v6-c-page__main-body">
1074
- <div class="pf-v6-c-content">
1075
- <h1>Main title</h1>
1076
- <p>This is a full page demo.</p>
1077
- </div>
1070
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1071
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1078
1072
  </div>
1079
1073
  </section>
1080
1074
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -262,10 +262,8 @@ section: components
262
262
  </section>
263
263
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
264
264
  <div class="pf-v6-c-page__main-body">
265
- <div class="pf-v6-c-content">
266
- <h1>Main title</h1>
267
- <p>This is a full page demo.</p>
268
- </div>
265
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
266
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
269
267
  </div>
270
268
  </section>
271
269
  <section class="pf-v6-c-page__main-section pf-m-no-padding">
@@ -679,10 +677,8 @@ section: components
679
677
  </section>
680
678
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
681
679
  <div class="pf-v6-c-page__main-body">
682
- <div class="pf-v6-c-content">
683
- <h1>Main title</h1>
684
- <p>This is a full page demo.</p>
685
- </div>
680
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
681
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
686
682
  </div>
687
683
  </section>
688
684
  <section class="pf-v6-c-page__main-section pf-m-no-padding">
@@ -1096,10 +1092,8 @@ section: components
1096
1092
  </section>
1097
1093
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1098
1094
  <div class="pf-v6-c-page__main-body">
1099
- <div class="pf-v6-c-content">
1100
- <h1>Main title</h1>
1101
- <p>This is a full page demo.</p>
1102
- </div>
1095
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1096
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1103
1097
  </div>
1104
1098
  </section>
1105
1099
  <section class="pf-v6-c-page__main-section pf-m-no-padding">
@@ -1510,10 +1504,8 @@ section: components
1510
1504
  </section>
1511
1505
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1512
1506
  <div class="pf-v6-c-page__main-body">
1513
- <div class="pf-v6-c-content">
1514
- <h1>Main title</h1>
1515
- <p>This is a full page demo.</p>
1516
- </div>
1507
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1508
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1517
1509
  </div>
1518
1510
  </section>
1519
1511
  <section class="pf-v6-c-page__main-section pf-m-sticky-top">
@@ -217,10 +217,8 @@ wrapperTag: div
217
217
  </section>
218
218
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
219
219
  <div class="pf-v6-c-page__main-body">
220
- <div class="pf-v6-c-content">
221
- <h1>Main title</h1>
222
- <p>This is a full page demo.</p>
223
- </div>
220
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
221
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
224
222
  </div>
225
223
  </section>
226
224
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -510,10 +508,8 @@ wrapperTag: div
510
508
  </section>
511
509
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
512
510
  <div class="pf-v6-c-page__main-body">
513
- <div class="pf-v6-c-content">
514
- <h1>Main title</h1>
515
- <p>This is a full page demo.</p>
516
- </div>
511
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
512
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
517
513
  </div>
518
514
  </section>
519
515
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -840,10 +836,8 @@ wrapperTag: div
840
836
  </section>
841
837
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
842
838
  <div class="pf-v6-c-page__main-body">
843
- <div class="pf-v6-c-content">
844
- <h1>Main title</h1>
845
- <p>This is a full page demo.</p>
846
- </div>
839
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
840
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
847
841
  </div>
848
842
  </section>
849
843
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -1170,10 +1164,8 @@ wrapperTag: div
1170
1164
  </section>
1171
1165
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1172
1166
  <div class="pf-v6-c-page__main-body">
1173
- <div class="pf-v6-c-content">
1174
- <h1>Main title</h1>
1175
- <p>This is a full page demo.</p>
1176
- </div>
1167
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1168
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1177
1169
  </div>
1178
1170
  </section>
1179
1171
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -1437,10 +1429,8 @@ wrapperTag: div
1437
1429
  </section>
1438
1430
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1439
1431
  <div class="pf-v6-c-page__main-body">
1440
- <div class="pf-v6-c-content">
1441
- <h1>Main title</h1>
1442
- <p>This is a full page demo.</p>
1443
- </div>
1432
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1433
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1444
1434
  </div>
1445
1435
  </section>
1446
1436
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -1722,10 +1712,8 @@ wrapperTag: div
1722
1712
  </section>
1723
1713
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
1724
1714
  <div class="pf-v6-c-page__main-body">
1725
- <div class="pf-v6-c-content">
1726
- <h1>Main title</h1>
1727
- <p>This is a full page demo.</p>
1728
- </div>
1715
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1716
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
1729
1717
  </div>
1730
1718
  </section>
1731
1719
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -2029,10 +2017,8 @@ wrapperTag: div
2029
2017
  </section>
2030
2018
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
2031
2019
  <div class="pf-v6-c-page__main-body">
2032
- <div class="pf-v6-c-content">
2033
- <h1>Main title</h1>
2034
- <p>This is a full page demo.</p>
2035
- </div>
2020
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
2021
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
2036
2022
  </div>
2037
2023
  </section>
2038
2024
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -2346,10 +2332,8 @@ wrapperTag: div
2346
2332
  </section>
2347
2333
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
2348
2334
  <div class="pf-v6-c-page__main-body">
2349
- <div class="pf-v6-c-content">
2350
- <h1>Main title</h1>
2351
- <p>This is a full page demo.</p>
2352
- </div>
2335
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
2336
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
2353
2337
  </div>
2354
2338
  </section>
2355
2339
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
@@ -2681,10 +2665,8 @@ wrapperTag: div
2681
2665
  </section>
2682
2666
  <section class="pf-v6-c-page__main-section pf-m-limit-width">
2683
2667
  <div class="pf-v6-c-page__main-body">
2684
- <div class="pf-v6-c-content">
2685
- <h1>Main title</h1>
2686
- <p>This is a full page demo.</p>
2687
- </div>
2668
+ <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
2669
+ <p class="pf-v6-c-content--p">This is a full page demo.</p>
2688
2670
  </div>
2689
2671
  </section>
2690
2672
  <section class="pf-v6-c-page__main-section pf-m-limit-width">