@patternfly/patternfly 6.5.0-prerelease.25 → 6.5.0-prerelease.26
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/components/Compass/compass.css +78 -9
- package/components/Compass/compass.scss +85 -50
- package/components/_index.css +78 -9
- package/docs/components/Compass/examples/Compass.css +2 -2
- package/docs/components/Compass/examples/Compass.md +6 -5
- package/docs/components/Tabs/examples/Tabs.md +813 -77
- package/docs/demos/Card/examples/Card.md +14 -2
- package/docs/demos/Compass/examples/Compass.md +109 -30
- package/docs/demos/DescriptionList/examples/DescriptionList.md +11 -2
- package/docs/demos/Drawer/examples/Drawer.md +11 -2
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +16 -2
- package/docs/demos/Tabs/examples/Tabs.md +72 -9
- package/package.json +1 -1
- package/patternfly-no-globals.css +78 -9
- package/patternfly.css +78 -9
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -717,13 +717,23 @@ wrapperTag: div
|
|
|
717
717
|
</div>
|
|
718
718
|
</div>
|
|
719
719
|
<div class="pf-v6-c-card__body">
|
|
720
|
-
<div
|
|
721
|
-
|
|
720
|
+
<div
|
|
721
|
+
class="pf-v6-c-tabs pf-m-fill"
|
|
722
|
+
aria-label="Status, tabbed card example"
|
|
723
|
+
role="region"
|
|
724
|
+
id="status-tabs"
|
|
725
|
+
>
|
|
726
|
+
<ul
|
|
727
|
+
class="pf-v6-c-tabs__list"
|
|
728
|
+
role="tablist"
|
|
729
|
+
aria-label="Status, tabbed card example"
|
|
730
|
+
>
|
|
722
731
|
<li class="pf-v6-c-tabs__item pf-m-current" role="presentation">
|
|
723
732
|
<button
|
|
724
733
|
type="button"
|
|
725
734
|
class="pf-v6-c-tabs__link"
|
|
726
735
|
role="tab"
|
|
736
|
+
aria-selected="true"
|
|
727
737
|
id="status-tabs-object-1-link"
|
|
728
738
|
>
|
|
729
739
|
<span class="pf-v6-c-tabs__item-text">Object 1</span>
|
|
@@ -734,6 +744,7 @@ wrapperTag: div
|
|
|
734
744
|
type="button"
|
|
735
745
|
class="pf-v6-c-tabs__link"
|
|
736
746
|
role="tab"
|
|
747
|
+
aria-selected="false"
|
|
737
748
|
id="status-tabs-object-2-link"
|
|
738
749
|
>
|
|
739
750
|
<span class="pf-v6-c-tabs__item-text">Object 2</span>
|
|
@@ -744,6 +755,7 @@ wrapperTag: div
|
|
|
744
755
|
type="button"
|
|
745
756
|
class="pf-v6-c-tabs__link"
|
|
746
757
|
role="tab"
|
|
758
|
+
aria-selected="false"
|
|
747
759
|
id="status-tabs-object-3-link"
|
|
748
760
|
>
|
|
749
761
|
<span class="pf-v6-c-tabs__item-text">Object 3</span>
|