@patternfly/patternfly 6.5.0-prerelease.52 → 6.5.0-prerelease.54
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/Card/card.css +20 -8
- package/components/Card/card.scss +26 -7
- package/components/Wizard/wizard.css +20 -2
- package/components/Wizard/wizard.scss +22 -2
- package/components/_index.css +40 -10
- package/docs/components/Wizard/examples/Wizard.md +323 -0
- package/docs/demos/Card/examples/Card.md +564 -86
- package/docs/demos/CardView/examples/CardView.md +15 -1
- package/docs/demos/Compass/examples/Compass.md +393 -82
- package/docs/demos/Dashboard/examples/Dashboard.md +434 -100
- package/package.json +1 -1
- package/patternfly-no-globals.css +40 -10
- package/patternfly.css +40 -10
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -652,7 +652,21 @@ section: patterns
|
|
|
652
652
|
<div class="pf-v6-l-bullseye">
|
|
653
653
|
<div class="pf-v6-c-empty-state pf-m-xs">
|
|
654
654
|
<div class="pf-v6-c-empty-state__content">
|
|
655
|
-
<
|
|
655
|
+
<div class="pf-v6-c-empty-state__icon">
|
|
656
|
+
<svg
|
|
657
|
+
class="pf-v6-svg"
|
|
658
|
+
viewBox="0 0 32 32"
|
|
659
|
+
fill="currentColor"
|
|
660
|
+
aria-hidden="true"
|
|
661
|
+
role="img"
|
|
662
|
+
width="1em"
|
|
663
|
+
height="1em"
|
|
664
|
+
>
|
|
665
|
+
<path
|
|
666
|
+
d="M16 1C7.729 1 1 7.729 1 16s6.729 15 15 15 15-6.729 15-15S24.271 1 16 1Zm7 16.125h-5.875V23a1.125 1.125 0 0 1-2.25 0v-5.875H9a1.125 1.125 0 0 1 0-2.25h5.875V9a1.125 1.125 0 0 1 2.25 0v5.875H23a1.125 1.125 0 0 1 0 2.25Z"
|
|
667
|
+
/>
|
|
668
|
+
</svg>
|
|
669
|
+
</div>
|
|
656
670
|
<div class="pf-v6-c-card__title">
|
|
657
671
|
<h2
|
|
658
672
|
class="pf-v6-c-card__title-text pf-m-md"
|