@patternfly/patternfly 6.5.0-prerelease.63 → 6.5.0-prerelease.65
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.
- package/base/patternfly-svg-icons.css +6 -0
- package/base/patternfly-svg-icons.scss +6 -0
- package/components/ClipboardCopy/clipboard-copy.css +7 -1
- package/components/ClipboardCopy/clipboard-copy.scss +10 -1
- package/components/Page/page.css +83 -34
- package/components/Page/page.scss +94 -39
- package/components/Table/table.css +2 -2
- package/components/Table/table.scss +2 -2
- package/components/_index.css +92 -37
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +39 -38
- package/docs/components/Page/examples/Page.md +62 -15
- package/docs/components/Table/examples/Table.md +1879 -151
- package/docs/demos/AboutModal/examples/AboutModal.md +8 -2
- package/docs/demos/Alert/examples/Alert.md +24 -6
- package/docs/demos/BackToTop/examples/BackToTop.md +8 -2
- package/docs/demos/Banner/examples/Banner.md +16 -4
- package/docs/demos/CardView/examples/CardView.md +8 -2
- package/docs/demos/Dashboard/examples/Dashboard.md +8 -2
- package/docs/demos/DataList/examples/DataList.md +32 -8
- package/docs/demos/DescriptionList/examples/DescriptionList.md +24 -6
- package/docs/demos/Drawer/examples/Drawer.md +24 -6
- package/docs/demos/JumpLinks/examples/JumpLinks.md +32 -8
- package/docs/demos/Masthead/examples/Masthead.md +72 -18
- package/docs/demos/Modal/examples/Modal.md +48 -12
- package/docs/demos/Nav/examples/Nav.md +80 -20
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +40 -10
- package/docs/demos/Page/examples/Page.md +113 -28
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +56 -14
- package/docs/demos/Skeleton/examples/Skeleton.md +8 -2
- package/docs/demos/Table/examples/Table.md +496 -64
- package/docs/demos/Tabs/examples/Tabs.md +48 -12
- package/docs/demos/Toolbar/examples/Toolbar.md +16 -4
- package/docs/demos/Wizard/examples/Wizard.md +72 -18
- package/package.json +21 -1
- package/patternfly-base-no-globals.css +6 -0
- package/patternfly-base.css +6 -0
- package/patternfly-no-globals.css +99 -38
- package/patternfly.css +99 -38
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/patternfly.scss +3 -1
|
@@ -343,9 +343,15 @@ wrapperTag: div
|
|
|
343
343
|
</nav>
|
|
344
344
|
</div>
|
|
345
345
|
</section>
|
|
346
|
-
<section
|
|
346
|
+
<section
|
|
347
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
348
|
+
aria-labelledby="main-title"
|
|
349
|
+
>
|
|
347
350
|
<div class="pf-v6-c-page__main-body">
|
|
348
|
-
<h1
|
|
351
|
+
<h1
|
|
352
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
353
|
+
id="main-title"
|
|
354
|
+
>Main title</h1>
|
|
349
355
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
350
356
|
</div>
|
|
351
357
|
</section>
|
|
@@ -1793,9 +1799,15 @@ wrapperTag: div
|
|
|
1793
1799
|
</nav>
|
|
1794
1800
|
</div>
|
|
1795
1801
|
</section>
|
|
1796
|
-
<section
|
|
1802
|
+
<section
|
|
1803
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
1804
|
+
aria-labelledby="main-title"
|
|
1805
|
+
>
|
|
1797
1806
|
<div class="pf-v6-c-page__main-body">
|
|
1798
|
-
<h1
|
|
1807
|
+
<h1
|
|
1808
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
1809
|
+
id="main-title"
|
|
1810
|
+
>Main title</h1>
|
|
1799
1811
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
1800
1812
|
</div>
|
|
1801
1813
|
</section>
|
|
@@ -3132,9 +3144,15 @@ wrapperTag: div
|
|
|
3132
3144
|
</nav>
|
|
3133
3145
|
</div>
|
|
3134
3146
|
</section>
|
|
3135
|
-
<section
|
|
3147
|
+
<section
|
|
3148
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
3149
|
+
aria-labelledby="main-title"
|
|
3150
|
+
>
|
|
3136
3151
|
<div class="pf-v6-c-page__main-body">
|
|
3137
|
-
<h1
|
|
3152
|
+
<h1
|
|
3153
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
3154
|
+
id="main-title"
|
|
3155
|
+
>Main title</h1>
|
|
3138
3156
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
3139
3157
|
</div>
|
|
3140
3158
|
</section>
|
|
@@ -4406,9 +4424,15 @@ wrapperTag: div
|
|
|
4406
4424
|
</nav>
|
|
4407
4425
|
</div>
|
|
4408
4426
|
</section>
|
|
4409
|
-
<section
|
|
4427
|
+
<section
|
|
4428
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
4429
|
+
aria-labelledby="main-title"
|
|
4430
|
+
>
|
|
4410
4431
|
<div class="pf-v6-c-page__main-body">
|
|
4411
|
-
<h1
|
|
4432
|
+
<h1
|
|
4433
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
4434
|
+
id="main-title"
|
|
4435
|
+
>Main title</h1>
|
|
4412
4436
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
4413
4437
|
</div>
|
|
4414
4438
|
</section>
|
|
@@ -5826,9 +5850,15 @@ wrapperTag: div
|
|
|
5826
5850
|
</nav>
|
|
5827
5851
|
</div>
|
|
5828
5852
|
</section>
|
|
5829
|
-
<section
|
|
5853
|
+
<section
|
|
5854
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
5855
|
+
aria-labelledby="main-title"
|
|
5856
|
+
>
|
|
5830
5857
|
<div class="pf-v6-c-page__main-body">
|
|
5831
|
-
<h1
|
|
5858
|
+
<h1
|
|
5859
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
5860
|
+
id="main-title"
|
|
5861
|
+
>Main title</h1>
|
|
5832
5862
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
5833
5863
|
</div>
|
|
5834
5864
|
</section>
|
|
@@ -6374,9 +6404,15 @@ wrapperTag: div
|
|
|
6374
6404
|
</nav>
|
|
6375
6405
|
</div>
|
|
6376
6406
|
</section>
|
|
6377
|
-
<section
|
|
6407
|
+
<section
|
|
6408
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
6409
|
+
aria-labelledby="main-title"
|
|
6410
|
+
>
|
|
6378
6411
|
<div class="pf-v6-c-page__main-body">
|
|
6379
|
-
<h1
|
|
6412
|
+
<h1
|
|
6413
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
6414
|
+
id="main-title"
|
|
6415
|
+
>Main title</h1>
|
|
6380
6416
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
6381
6417
|
</div>
|
|
6382
6418
|
</section>
|
|
@@ -7071,9 +7107,15 @@ wrapperTag: div
|
|
|
7071
7107
|
</nav>
|
|
7072
7108
|
</div>
|
|
7073
7109
|
</section>
|
|
7074
|
-
<section
|
|
7110
|
+
<section
|
|
7111
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
7112
|
+
aria-labelledby="main-title"
|
|
7113
|
+
>
|
|
7075
7114
|
<div class="pf-v6-c-page__main-body">
|
|
7076
|
-
<h1
|
|
7115
|
+
<h1
|
|
7116
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
7117
|
+
id="main-title"
|
|
7118
|
+
>Main title</h1>
|
|
7077
7119
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
7078
7120
|
</div>
|
|
7079
7121
|
</section>
|
|
@@ -339,9 +339,15 @@ section: components
|
|
|
339
339
|
</nav>
|
|
340
340
|
</div>
|
|
341
341
|
</section>
|
|
342
|
-
<section
|
|
342
|
+
<section
|
|
343
|
+
class="pf-v6-c-page__main-section pf-m-limit-width"
|
|
344
|
+
aria-labelledby="main-title"
|
|
345
|
+
>
|
|
343
346
|
<div class="pf-v6-c-page__main-body">
|
|
344
|
-
<h1
|
|
347
|
+
<h1
|
|
348
|
+
class="pf-v6-c-content--h1 pf-m-page-title"
|
|
349
|
+
id="main-title"
|
|
350
|
+
>Main title</h1>
|
|
345
351
|
<p class="pf-v6-c-content--p">This is a full page demo.</p>
|
|
346
352
|
</div>
|
|
347
353
|
</section>
|