@patternfly/patternfly 6.5.0-prerelease.42 → 6.5.0-prerelease.44
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/Button/button.css +75 -2
- package/components/Button/button.scss +84 -3
- package/components/Compass/compass.css +5 -5
- package/components/Compass/compass.scss +5 -4
- package/components/_index.css +80 -7
- package/docs/components/AboutModalBox/examples/AboutModalBox.md +13 -1
- package/docs/components/ActionList/examples/ActionList.md +143 -11
- package/docs/components/Alert/examples/Alert.md +182 -14
- package/docs/components/BackToTop/examples/BackToTop.md +13 -1
- package/docs/components/Button/examples/Button.md +2017 -157
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +104 -8
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +208 -16
- package/docs/components/CodeBlock/examples/CodeBlock.md +78 -6
- package/docs/components/CodeEditor/examples/CodeEditor.md +195 -15
- package/docs/components/Compass/examples/Compass.md +1 -0
- package/docs/components/DatePicker/examples/DatePicker.md +78 -6
- package/docs/components/DescriptionList/examples/DescriptionList.md +325 -25
- package/docs/components/Drawer/examples/Drawer.md +273 -21
- package/docs/components/DualListSelector/examples/DualListSelector.md +106 -112
- package/docs/components/InlineEdit/examples/InlineEdit.md +312 -24
- package/docs/components/InputGroup/examples/InputGroup.md +26 -2
- package/docs/components/Label/examples/Label.md +242 -218
- package/docs/components/Login/examples/Login.md +26 -2
- package/docs/components/Masthead/examples/masthead.md +13 -1
- package/docs/components/MenuToggle/examples/MenuToggle.md +1 -1
- package/docs/components/ModalBox/examples/ModalBox.md +195 -15
- package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +117 -9
- package/docs/components/Nav/examples/Navigation.md +52 -4
- package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +26 -2
- package/docs/components/OverflowMenu/examples/overflow-menu.md +78 -6
- package/docs/components/Page/examples/Page.md +13 -1
- package/docs/components/Pagination/examples/Pagination.md +624 -48
- package/docs/components/Popover/examples/Popover.md +208 -16
- package/docs/components/Slider/examples/Slider.md +4 -4
- package/docs/components/Table/examples/Table.md +52 -4
- package/docs/components/Tabs/examples/Tabs.md +1378 -106
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +128 -44
- package/docs/components/Toolbar/examples/Toolbar.md +455 -35
- package/docs/components/TreeView/examples/TreeView.md +52 -4
- package/docs/components/Wizard/examples/Wizard.md +169 -13
- package/docs/demos/AboutModal/examples/AboutModal.md +13 -1
- package/docs/demos/Alert/examples/Alert.md +39 -3
- package/docs/demos/BackToTop/examples/BackToTop.md +13 -1
- package/docs/demos/Button/examples/Button.md +13 -1
- package/docs/demos/Card/examples/Card.md +65 -5
- package/docs/demos/CardView/examples/CardView.md +78 -6
- package/docs/demos/Compass/examples/Compass.md +689 -359
- package/docs/demos/Dashboard/examples/Dashboard.md +39 -3
- package/docs/demos/DataList/examples/DataList.md +312 -24
- package/docs/demos/DescriptionList/examples/DescriptionList.md +13 -1
- package/docs/demos/Drawer/examples/Drawer.md +39 -3
- package/docs/demos/Form/examples/BasicForms.md +106 -10
- package/docs/demos/JumpLinks/examples/JumpLinks.md +26 -2
- package/docs/demos/Masthead/examples/Masthead.md +40 -4
- package/docs/demos/Modal/examples/Modal.md +78 -6
- package/docs/demos/Nav/examples/Nav.md +52 -4
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +52 -4
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +295 -55
- package/docs/demos/Table/examples/Table.md +1108 -145
- package/docs/demos/Tabs/examples/Tabs.md +53 -8
- package/docs/demos/Toolbar/examples/Toolbar.md +414 -36
- package/docs/demos/Wizard/examples/Wizard.md +130 -10
- package/package.json +2 -2
- package/patternfly-no-globals.css +80 -7
- package/patternfly.css +80 -7
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -517,7 +517,19 @@ section: patterns
|
|
|
517
517
|
aria-label="Go to previous page"
|
|
518
518
|
>
|
|
519
519
|
<span class="pf-v6-c-button__icon">
|
|
520
|
-
<
|
|
520
|
+
<svg
|
|
521
|
+
class="pf-v6-svg"
|
|
522
|
+
viewBox="0 0 256 512"
|
|
523
|
+
fill="currentColor"
|
|
524
|
+
aria-hidden="true"
|
|
525
|
+
role="img"
|
|
526
|
+
width="1em"
|
|
527
|
+
height="1em"
|
|
528
|
+
>
|
|
529
|
+
<path
|
|
530
|
+
d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"
|
|
531
|
+
/>
|
|
532
|
+
</svg>
|
|
521
533
|
</span>
|
|
522
534
|
</button>
|
|
523
535
|
</div>
|
|
@@ -528,7 +540,19 @@ section: patterns
|
|
|
528
540
|
aria-label="Go to next page"
|
|
529
541
|
>
|
|
530
542
|
<span class="pf-v6-c-button__icon">
|
|
531
|
-
<
|
|
543
|
+
<svg
|
|
544
|
+
class="pf-v6-svg"
|
|
545
|
+
viewBox="0 0 256 512"
|
|
546
|
+
fill="currentColor"
|
|
547
|
+
aria-hidden="true"
|
|
548
|
+
role="img"
|
|
549
|
+
width="1em"
|
|
550
|
+
height="1em"
|
|
551
|
+
>
|
|
552
|
+
<path
|
|
553
|
+
d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"
|
|
554
|
+
/>
|
|
555
|
+
</svg>
|
|
532
556
|
</span>
|
|
533
557
|
</button>
|
|
534
558
|
</div>
|
|
@@ -1059,7 +1083,19 @@ section: patterns
|
|
|
1059
1083
|
aria-label="Go to first page"
|
|
1060
1084
|
>
|
|
1061
1085
|
<span class="pf-v6-c-button__icon">
|
|
1062
|
-
<
|
|
1086
|
+
<svg
|
|
1087
|
+
class="pf-v6-svg"
|
|
1088
|
+
viewBox="0 0 448 512"
|
|
1089
|
+
fill="currentColor"
|
|
1090
|
+
aria-hidden="true"
|
|
1091
|
+
role="img"
|
|
1092
|
+
width="1em"
|
|
1093
|
+
height="1em"
|
|
1094
|
+
>
|
|
1095
|
+
<path
|
|
1096
|
+
d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"
|
|
1097
|
+
/>
|
|
1098
|
+
</svg>
|
|
1063
1099
|
</span>
|
|
1064
1100
|
</button>
|
|
1065
1101
|
</div>
|
|
@@ -1071,7 +1107,19 @@ section: patterns
|
|
|
1071
1107
|
aria-label="Go to previous page"
|
|
1072
1108
|
>
|
|
1073
1109
|
<span class="pf-v6-c-button__icon">
|
|
1074
|
-
<
|
|
1110
|
+
<svg
|
|
1111
|
+
class="pf-v6-svg"
|
|
1112
|
+
viewBox="0 0 256 512"
|
|
1113
|
+
fill="currentColor"
|
|
1114
|
+
aria-hidden="true"
|
|
1115
|
+
role="img"
|
|
1116
|
+
width="1em"
|
|
1117
|
+
height="1em"
|
|
1118
|
+
>
|
|
1119
|
+
<path
|
|
1120
|
+
d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"
|
|
1121
|
+
/>
|
|
1122
|
+
</svg>
|
|
1075
1123
|
</span>
|
|
1076
1124
|
</button>
|
|
1077
1125
|
</div>
|
|
@@ -1094,7 +1142,19 @@ section: patterns
|
|
|
1094
1142
|
aria-label="Go to next page"
|
|
1095
1143
|
>
|
|
1096
1144
|
<span class="pf-v6-c-button__icon">
|
|
1097
|
-
<
|
|
1145
|
+
<svg
|
|
1146
|
+
class="pf-v6-svg"
|
|
1147
|
+
viewBox="0 0 256 512"
|
|
1148
|
+
fill="currentColor"
|
|
1149
|
+
aria-hidden="true"
|
|
1150
|
+
role="img"
|
|
1151
|
+
width="1em"
|
|
1152
|
+
height="1em"
|
|
1153
|
+
>
|
|
1154
|
+
<path
|
|
1155
|
+
d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"
|
|
1156
|
+
/>
|
|
1157
|
+
</svg>
|
|
1098
1158
|
</span>
|
|
1099
1159
|
</button>
|
|
1100
1160
|
</div>
|
|
@@ -1106,7 +1166,19 @@ section: patterns
|
|
|
1106
1166
|
aria-label="Go to last page"
|
|
1107
1167
|
>
|
|
1108
1168
|
<span class="pf-v6-c-button__icon">
|
|
1109
|
-
<
|
|
1169
|
+
<svg
|
|
1170
|
+
class="pf-v6-svg"
|
|
1171
|
+
viewBox="0 0 448 512"
|
|
1172
|
+
fill="currentColor"
|
|
1173
|
+
aria-hidden="true"
|
|
1174
|
+
role="img"
|
|
1175
|
+
width="1em"
|
|
1176
|
+
height="1em"
|
|
1177
|
+
>
|
|
1178
|
+
<path
|
|
1179
|
+
d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"
|
|
1180
|
+
/>
|
|
1181
|
+
</svg>
|
|
1110
1182
|
</span>
|
|
1111
1183
|
</button>
|
|
1112
1184
|
</div>
|