@patternfly/patternfly 6.5.0-prerelease.62 → 6.5.0-prerelease.64
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 +2 -2
- package/components/Button/button.scss +3 -3
- package/components/ClipboardCopy/clipboard-copy.css +7 -1
- package/components/ClipboardCopy/clipboard-copy.scss +10 -1
- package/components/Menu/menu.css +26 -19
- package/components/Menu/menu.scss +26 -19
- package/components/MenuToggle/menu-toggle.css +9 -5
- package/components/MenuToggle/menu-toggle.scss +12 -5
- package/components/_index.css +44 -27
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +13 -1
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +52 -4
- package/docs/components/Card/examples/Card.md +130 -10
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +39 -38
- package/docs/components/DataList/examples/DataList.md +221 -17
- package/docs/components/DualListSelector/examples/DualListSelector.md +234 -18
- package/docs/components/Hint/examples/Hint.md +39 -3
- package/docs/components/InlineEdit/examples/InlineEdit.md +26 -2
- package/docs/components/InputGroup/examples/InputGroup.md +13 -1
- package/docs/components/Login/examples/Login.md +13 -1
- package/docs/components/Menu/examples/Menu.md +195 -15
- package/docs/components/MenuToggle/examples/MenuToggle.md +1331 -100
- package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +481 -37
- package/docs/components/OverflowMenu/examples/overflow-menu.md +65 -5
- package/docs/components/Page/examples/Page.md +62 -15
- package/docs/components/Pagination/examples/Pagination.md +169 -13
- package/docs/components/Table/examples/Table.md +3461 -269
- package/docs/components/Toolbar/examples/Toolbar.md +507 -39
- package/docs/demos/AboutModal/examples/AboutModal.md +34 -4
- package/docs/demos/Alert/examples/Alert.md +102 -12
- package/docs/demos/BackToTop/examples/BackToTop.md +34 -4
- package/docs/demos/Banner/examples/Banner.md +68 -8
- package/docs/demos/Card/examples/Card.md +78 -6
- package/docs/demos/CardView/examples/CardView.md +214 -22
- package/docs/demos/Compass/examples/Compass.md +431 -56
- package/docs/demos/Dashboard/examples/Dashboard.md +71 -11
- package/docs/demos/DataList/examples/DataList.md +401 -53
- package/docs/demos/DescriptionList/examples/DescriptionList.md +115 -13
- package/docs/demos/Drawer/examples/Drawer.md +167 -17
- package/docs/demos/JumpLinks/examples/JumpLinks.md +188 -20
- package/docs/demos/Masthead/examples/Masthead.md +228 -30
- package/docs/demos/Modal/examples/Modal.md +204 -24
- package/docs/demos/Nav/examples/Nav.md +184 -28
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +1015 -85
- package/docs/demos/Page/examples/Page.md +503 -58
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +649 -97
- package/docs/demos/Skeleton/examples/Skeleton.md +34 -4
- package/docs/demos/Table/examples/Table.md +2641 -349
- package/docs/demos/Tabs/examples/Tabs.md +295 -31
- package/docs/demos/Toolbar/examples/Toolbar.md +675 -63
- package/docs/demos/Wizard/examples/Wizard.md +306 -36
- package/package.json +1 -1
- package/patternfly-no-globals.css +44 -27
- package/patternfly.css +44 -27
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -164,7 +164,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
164
164
|
id="data-list-checkboxes-actions-addl-cells-item-1-menu-toggle"
|
|
165
165
|
>
|
|
166
166
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
167
|
-
<
|
|
167
|
+
<svg
|
|
168
|
+
class="pf-v6-svg"
|
|
169
|
+
viewBox="0 0 32 32"
|
|
170
|
+
fill="currentColor"
|
|
171
|
+
aria-hidden="true"
|
|
172
|
+
role="img"
|
|
173
|
+
width="1em"
|
|
174
|
+
height="1em"
|
|
175
|
+
>
|
|
176
|
+
<path
|
|
177
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
178
|
+
/>
|
|
179
|
+
</svg>
|
|
168
180
|
</span>
|
|
169
181
|
</button>
|
|
170
182
|
</div>
|
|
@@ -208,7 +220,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
208
220
|
id="data-list-checkboxes-actions-addl-cells-item-2-menu-toggle"
|
|
209
221
|
>
|
|
210
222
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
211
|
-
<
|
|
223
|
+
<svg
|
|
224
|
+
class="pf-v6-svg"
|
|
225
|
+
viewBox="0 0 32 32"
|
|
226
|
+
fill="currentColor"
|
|
227
|
+
aria-hidden="true"
|
|
228
|
+
role="img"
|
|
229
|
+
width="1em"
|
|
230
|
+
height="1em"
|
|
231
|
+
>
|
|
232
|
+
<path
|
|
233
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
234
|
+
/>
|
|
235
|
+
</svg>
|
|
212
236
|
</span>
|
|
213
237
|
</button>
|
|
214
238
|
</div>
|
|
@@ -262,7 +286,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
262
286
|
id="data-list-checkboxes-actions-addl-cells-item-3-menu-toggle"
|
|
263
287
|
>
|
|
264
288
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
265
|
-
<
|
|
289
|
+
<svg
|
|
290
|
+
class="pf-v6-svg"
|
|
291
|
+
viewBox="0 0 32 32"
|
|
292
|
+
fill="currentColor"
|
|
293
|
+
aria-hidden="true"
|
|
294
|
+
role="img"
|
|
295
|
+
width="1em"
|
|
296
|
+
height="1em"
|
|
297
|
+
>
|
|
298
|
+
<path
|
|
299
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
300
|
+
/>
|
|
301
|
+
</svg>
|
|
266
302
|
</span>
|
|
267
303
|
</button>
|
|
268
304
|
</div>
|
|
@@ -377,7 +413,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
377
413
|
id="data-list-expandable-item-1-menu-toggle"
|
|
378
414
|
>
|
|
379
415
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
380
|
-
<
|
|
416
|
+
<svg
|
|
417
|
+
class="pf-v6-svg"
|
|
418
|
+
viewBox="0 0 32 32"
|
|
419
|
+
fill="currentColor"
|
|
420
|
+
aria-hidden="true"
|
|
421
|
+
role="img"
|
|
422
|
+
width="1em"
|
|
423
|
+
height="1em"
|
|
424
|
+
>
|
|
425
|
+
<path
|
|
426
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
427
|
+
/>
|
|
428
|
+
</svg>
|
|
381
429
|
</span>
|
|
382
430
|
</button>
|
|
383
431
|
</div>
|
|
@@ -447,7 +495,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
447
495
|
id="data-list-expandable-item-2-menu-toggle"
|
|
448
496
|
>
|
|
449
497
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
450
|
-
<
|
|
498
|
+
<svg
|
|
499
|
+
class="pf-v6-svg"
|
|
500
|
+
viewBox="0 0 32 32"
|
|
501
|
+
fill="currentColor"
|
|
502
|
+
aria-hidden="true"
|
|
503
|
+
role="img"
|
|
504
|
+
width="1em"
|
|
505
|
+
height="1em"
|
|
506
|
+
>
|
|
507
|
+
<path
|
|
508
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
509
|
+
/>
|
|
510
|
+
</svg>
|
|
451
511
|
</span>
|
|
452
512
|
</button>
|
|
453
513
|
</div>
|
|
@@ -521,7 +581,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
521
581
|
id="data-list-expandable-item-3-menu-toggle"
|
|
522
582
|
>
|
|
523
583
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
524
|
-
<
|
|
584
|
+
<svg
|
|
585
|
+
class="pf-v6-svg"
|
|
586
|
+
viewBox="0 0 32 32"
|
|
587
|
+
fill="currentColor"
|
|
588
|
+
aria-hidden="true"
|
|
589
|
+
role="img"
|
|
590
|
+
width="1em"
|
|
591
|
+
height="1em"
|
|
592
|
+
>
|
|
593
|
+
<path
|
|
594
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
595
|
+
/>
|
|
596
|
+
</svg>
|
|
525
597
|
</span>
|
|
526
598
|
</button>
|
|
527
599
|
</div>
|
|
@@ -607,7 +679,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
607
679
|
id="data-list-expandable-compact-item-1-menu-toggle"
|
|
608
680
|
>
|
|
609
681
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
610
|
-
<
|
|
682
|
+
<svg
|
|
683
|
+
class="pf-v6-svg"
|
|
684
|
+
viewBox="0 0 32 32"
|
|
685
|
+
fill="currentColor"
|
|
686
|
+
aria-hidden="true"
|
|
687
|
+
role="img"
|
|
688
|
+
width="1em"
|
|
689
|
+
height="1em"
|
|
690
|
+
>
|
|
691
|
+
<path
|
|
692
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
693
|
+
/>
|
|
694
|
+
</svg>
|
|
611
695
|
</span>
|
|
612
696
|
</button>
|
|
613
697
|
</div>
|
|
@@ -680,7 +764,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
680
764
|
id="data-list-expandable-compact-item-2-menu-toggle"
|
|
681
765
|
>
|
|
682
766
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
683
|
-
<
|
|
767
|
+
<svg
|
|
768
|
+
class="pf-v6-svg"
|
|
769
|
+
viewBox="0 0 32 32"
|
|
770
|
+
fill="currentColor"
|
|
771
|
+
aria-hidden="true"
|
|
772
|
+
role="img"
|
|
773
|
+
width="1em"
|
|
774
|
+
height="1em"
|
|
775
|
+
>
|
|
776
|
+
<path
|
|
777
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
778
|
+
/>
|
|
779
|
+
</svg>
|
|
684
780
|
</span>
|
|
685
781
|
</button>
|
|
686
782
|
</div>
|
|
@@ -754,7 +850,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
754
850
|
id="data-list-expandable-compact-item-3-menu-toggle"
|
|
755
851
|
>
|
|
756
852
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
757
|
-
<
|
|
853
|
+
<svg
|
|
854
|
+
class="pf-v6-svg"
|
|
855
|
+
viewBox="0 0 32 32"
|
|
856
|
+
fill="currentColor"
|
|
857
|
+
aria-hidden="true"
|
|
858
|
+
role="img"
|
|
859
|
+
width="1em"
|
|
860
|
+
height="1em"
|
|
861
|
+
>
|
|
862
|
+
<path
|
|
863
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
864
|
+
/>
|
|
865
|
+
</svg>
|
|
758
866
|
</span>
|
|
759
867
|
</button>
|
|
760
868
|
</div>
|
|
@@ -840,7 +948,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
840
948
|
id="data-list-expandable-nested-item-1-menu-toggle"
|
|
841
949
|
>
|
|
842
950
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
843
|
-
<
|
|
951
|
+
<svg
|
|
952
|
+
class="pf-v6-svg"
|
|
953
|
+
viewBox="0 0 32 32"
|
|
954
|
+
fill="currentColor"
|
|
955
|
+
aria-hidden="true"
|
|
956
|
+
role="img"
|
|
957
|
+
width="1em"
|
|
958
|
+
height="1em"
|
|
959
|
+
>
|
|
960
|
+
<path
|
|
961
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
962
|
+
/>
|
|
963
|
+
</svg>
|
|
844
964
|
</span>
|
|
845
965
|
</button>
|
|
846
966
|
</div>
|
|
@@ -1072,7 +1192,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1072
1192
|
id="data-list-expandable-nested-item-2-menu-toggle"
|
|
1073
1193
|
>
|
|
1074
1194
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1075
|
-
<
|
|
1195
|
+
<svg
|
|
1196
|
+
class="pf-v6-svg"
|
|
1197
|
+
viewBox="0 0 32 32"
|
|
1198
|
+
fill="currentColor"
|
|
1199
|
+
aria-hidden="true"
|
|
1200
|
+
role="img"
|
|
1201
|
+
width="1em"
|
|
1202
|
+
height="1em"
|
|
1203
|
+
>
|
|
1204
|
+
<path
|
|
1205
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
1206
|
+
/>
|
|
1207
|
+
</svg>
|
|
1076
1208
|
</span>
|
|
1077
1209
|
</button>
|
|
1078
1210
|
</div>
|
|
@@ -1146,7 +1278,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1146
1278
|
id="data-list-expandable-nested-item-3-menu-toggle"
|
|
1147
1279
|
>
|
|
1148
1280
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1149
|
-
<
|
|
1281
|
+
<svg
|
|
1282
|
+
class="pf-v6-svg"
|
|
1283
|
+
viewBox="0 0 32 32"
|
|
1284
|
+
fill="currentColor"
|
|
1285
|
+
aria-hidden="true"
|
|
1286
|
+
role="img"
|
|
1287
|
+
width="1em"
|
|
1288
|
+
height="1em"
|
|
1289
|
+
>
|
|
1290
|
+
<path
|
|
1291
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
1292
|
+
/>
|
|
1293
|
+
</svg>
|
|
1150
1294
|
</span>
|
|
1151
1295
|
</button>
|
|
1152
1296
|
</div>
|
|
@@ -1220,7 +1364,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1220
1364
|
id="data-list-compact-item-1-menu-toggle"
|
|
1221
1365
|
>
|
|
1222
1366
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1223
|
-
<
|
|
1367
|
+
<svg
|
|
1368
|
+
class="pf-v6-svg"
|
|
1369
|
+
viewBox="0 0 32 32"
|
|
1370
|
+
fill="currentColor"
|
|
1371
|
+
aria-hidden="true"
|
|
1372
|
+
role="img"
|
|
1373
|
+
width="1em"
|
|
1374
|
+
height="1em"
|
|
1375
|
+
>
|
|
1376
|
+
<path
|
|
1377
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
1378
|
+
/>
|
|
1379
|
+
</svg>
|
|
1224
1380
|
</span>
|
|
1225
1381
|
</button>
|
|
1226
1382
|
</div>
|
|
@@ -1262,7 +1418,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1262
1418
|
id="data-list-compact-item-2-menu-toggle"
|
|
1263
1419
|
>
|
|
1264
1420
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1265
|
-
<
|
|
1421
|
+
<svg
|
|
1422
|
+
class="pf-v6-svg"
|
|
1423
|
+
viewBox="0 0 32 32"
|
|
1424
|
+
fill="currentColor"
|
|
1425
|
+
aria-hidden="true"
|
|
1426
|
+
role="img"
|
|
1427
|
+
width="1em"
|
|
1428
|
+
height="1em"
|
|
1429
|
+
>
|
|
1430
|
+
<path
|
|
1431
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
1432
|
+
/>
|
|
1433
|
+
</svg>
|
|
1266
1434
|
</span>
|
|
1267
1435
|
</button>
|
|
1268
1436
|
</div>
|
|
@@ -1314,7 +1482,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1314
1482
|
id="data-list-compact-item-3-menu-toggle"
|
|
1315
1483
|
>
|
|
1316
1484
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1317
|
-
<
|
|
1485
|
+
<svg
|
|
1486
|
+
class="pf-v6-svg"
|
|
1487
|
+
viewBox="0 0 32 32"
|
|
1488
|
+
fill="currentColor"
|
|
1489
|
+
aria-hidden="true"
|
|
1490
|
+
role="img"
|
|
1491
|
+
width="1em"
|
|
1492
|
+
height="1em"
|
|
1493
|
+
>
|
|
1494
|
+
<path
|
|
1495
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
1496
|
+
/>
|
|
1497
|
+
</svg>
|
|
1318
1498
|
</span>
|
|
1319
1499
|
</button>
|
|
1320
1500
|
</div>
|
|
@@ -1451,7 +1631,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1451
1631
|
id="data-list-modifiers-item-2-menu-toggle"
|
|
1452
1632
|
>
|
|
1453
1633
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1454
|
-
<
|
|
1634
|
+
<svg
|
|
1635
|
+
class="pf-v6-svg"
|
|
1636
|
+
viewBox="0 0 32 32"
|
|
1637
|
+
fill="currentColor"
|
|
1638
|
+
aria-hidden="true"
|
|
1639
|
+
role="img"
|
|
1640
|
+
width="1em"
|
|
1641
|
+
height="1em"
|
|
1642
|
+
>
|
|
1643
|
+
<path
|
|
1644
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
1645
|
+
/>
|
|
1646
|
+
</svg>
|
|
1455
1647
|
</span>
|
|
1456
1648
|
</button>
|
|
1457
1649
|
</div>
|
|
@@ -1540,7 +1732,19 @@ When a list item includes more than one block of content, it can be difficult fo
|
|
|
1540
1732
|
id="data-list-modifiers-item-3-menu-toggle"
|
|
1541
1733
|
>
|
|
1542
1734
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1543
|
-
<
|
|
1735
|
+
<svg
|
|
1736
|
+
class="pf-v6-svg"
|
|
1737
|
+
viewBox="0 0 32 32"
|
|
1738
|
+
fill="currentColor"
|
|
1739
|
+
aria-hidden="true"
|
|
1740
|
+
role="img"
|
|
1741
|
+
width="1em"
|
|
1742
|
+
height="1em"
|
|
1743
|
+
>
|
|
1744
|
+
<path
|
|
1745
|
+
d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
|
|
1746
|
+
/>
|
|
1747
|
+
</svg>
|
|
1544
1748
|
</span>
|
|
1545
1749
|
</button>
|
|
1546
1750
|
</div>
|