@patternfly/patternfly 6.5.0-prerelease.43 → 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/_index.css +75 -2
- 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/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 +323 -29
- 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 +75 -2
- package/patternfly.css +75 -2
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -23,7 +23,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
23
23
|
disabled
|
|
24
24
|
>
|
|
25
25
|
<span class="pf-v6-c-button__icon">
|
|
26
|
-
<
|
|
26
|
+
<svg
|
|
27
|
+
class="pf-v6-svg"
|
|
28
|
+
viewBox="0 0 256 512"
|
|
29
|
+
fill="currentColor"
|
|
30
|
+
aria-hidden="true"
|
|
31
|
+
role="img"
|
|
32
|
+
width="1em"
|
|
33
|
+
height="1em"
|
|
34
|
+
>
|
|
35
|
+
<path
|
|
36
|
+
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"
|
|
37
|
+
/>
|
|
38
|
+
</svg>
|
|
27
39
|
</span>
|
|
28
40
|
</button>
|
|
29
41
|
</div>
|
|
@@ -107,7 +119,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
107
119
|
disabled
|
|
108
120
|
>
|
|
109
121
|
<span class="pf-v6-c-button__icon">
|
|
110
|
-
<
|
|
122
|
+
<svg
|
|
123
|
+
class="pf-v6-svg"
|
|
124
|
+
viewBox="0 0 256 512"
|
|
125
|
+
fill="currentColor"
|
|
126
|
+
aria-hidden="true"
|
|
127
|
+
role="img"
|
|
128
|
+
width="1em"
|
|
129
|
+
height="1em"
|
|
130
|
+
>
|
|
131
|
+
<path
|
|
132
|
+
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"
|
|
133
|
+
/>
|
|
134
|
+
</svg>
|
|
111
135
|
</span>
|
|
112
136
|
</button>
|
|
113
137
|
</div>
|
|
@@ -141,7 +165,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
141
165
|
disabled
|
|
142
166
|
>
|
|
143
167
|
<span class="pf-v6-c-button__icon">
|
|
144
|
-
<
|
|
168
|
+
<svg
|
|
169
|
+
class="pf-v6-svg"
|
|
170
|
+
viewBox="0 0 256 512"
|
|
171
|
+
fill="currentColor"
|
|
172
|
+
aria-hidden="true"
|
|
173
|
+
role="img"
|
|
174
|
+
width="1em"
|
|
175
|
+
height="1em"
|
|
176
|
+
>
|
|
177
|
+
<path
|
|
178
|
+
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"
|
|
179
|
+
/>
|
|
180
|
+
</svg>
|
|
145
181
|
</span>
|
|
146
182
|
</button>
|
|
147
183
|
</div>
|
|
@@ -259,7 +295,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
259
295
|
aria-label="Scroll right"
|
|
260
296
|
>
|
|
261
297
|
<span class="pf-v6-c-button__icon">
|
|
262
|
-
<
|
|
298
|
+
<svg
|
|
299
|
+
class="pf-v6-svg"
|
|
300
|
+
viewBox="0 0 256 512"
|
|
301
|
+
fill="currentColor"
|
|
302
|
+
aria-hidden="true"
|
|
303
|
+
role="img"
|
|
304
|
+
width="1em"
|
|
305
|
+
height="1em"
|
|
306
|
+
>
|
|
307
|
+
<path
|
|
308
|
+
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"
|
|
309
|
+
/>
|
|
310
|
+
</svg>
|
|
263
311
|
</span>
|
|
264
312
|
</button>
|
|
265
313
|
</div>
|
|
@@ -1347,7 +1395,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1347
1395
|
disabled
|
|
1348
1396
|
>
|
|
1349
1397
|
<span class="pf-v6-c-button__icon">
|
|
1350
|
-
<
|
|
1398
|
+
<svg
|
|
1399
|
+
class="pf-v6-svg"
|
|
1400
|
+
viewBox="0 0 256 512"
|
|
1401
|
+
fill="currentColor"
|
|
1402
|
+
aria-hidden="true"
|
|
1403
|
+
role="img"
|
|
1404
|
+
width="1em"
|
|
1405
|
+
height="1em"
|
|
1406
|
+
>
|
|
1407
|
+
<path
|
|
1408
|
+
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"
|
|
1409
|
+
/>
|
|
1410
|
+
</svg>
|
|
1351
1411
|
</span>
|
|
1352
1412
|
</button>
|
|
1353
1413
|
</div>
|
|
@@ -1431,7 +1491,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1431
1491
|
disabled
|
|
1432
1492
|
>
|
|
1433
1493
|
<span class="pf-v6-c-button__icon">
|
|
1434
|
-
<
|
|
1494
|
+
<svg
|
|
1495
|
+
class="pf-v6-svg"
|
|
1496
|
+
viewBox="0 0 256 512"
|
|
1497
|
+
fill="currentColor"
|
|
1498
|
+
aria-hidden="true"
|
|
1499
|
+
role="img"
|
|
1500
|
+
width="1em"
|
|
1501
|
+
height="1em"
|
|
1502
|
+
>
|
|
1503
|
+
<path
|
|
1504
|
+
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"
|
|
1505
|
+
/>
|
|
1506
|
+
</svg>
|
|
1435
1507
|
</span>
|
|
1436
1508
|
</button>
|
|
1437
1509
|
</div>
|
|
@@ -1456,7 +1528,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1456
1528
|
disabled
|
|
1457
1529
|
>
|
|
1458
1530
|
<span class="pf-v6-c-button__icon">
|
|
1459
|
-
<
|
|
1531
|
+
<svg
|
|
1532
|
+
class="pf-v6-svg"
|
|
1533
|
+
viewBox="0 0 256 512"
|
|
1534
|
+
fill="currentColor"
|
|
1535
|
+
aria-hidden="true"
|
|
1536
|
+
role="img"
|
|
1537
|
+
width="1em"
|
|
1538
|
+
height="1em"
|
|
1539
|
+
>
|
|
1540
|
+
<path
|
|
1541
|
+
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"
|
|
1542
|
+
/>
|
|
1543
|
+
</svg>
|
|
1460
1544
|
</span>
|
|
1461
1545
|
</button>
|
|
1462
1546
|
</div>
|
|
@@ -1574,7 +1658,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1574
1658
|
aria-label="Scroll right"
|
|
1575
1659
|
>
|
|
1576
1660
|
<span class="pf-v6-c-button__icon">
|
|
1577
|
-
<
|
|
1661
|
+
<svg
|
|
1662
|
+
class="pf-v6-svg"
|
|
1663
|
+
viewBox="0 0 256 512"
|
|
1664
|
+
fill="currentColor"
|
|
1665
|
+
aria-hidden="true"
|
|
1666
|
+
role="img"
|
|
1667
|
+
width="1em"
|
|
1668
|
+
height="1em"
|
|
1669
|
+
>
|
|
1670
|
+
<path
|
|
1671
|
+
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"
|
|
1672
|
+
/>
|
|
1673
|
+
</svg>
|
|
1578
1674
|
</span>
|
|
1579
1675
|
</button>
|
|
1580
1676
|
</div>
|
|
@@ -1687,7 +1783,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1687
1783
|
disabled
|
|
1688
1784
|
>
|
|
1689
1785
|
<span class="pf-v6-c-button__icon">
|
|
1690
|
-
<
|
|
1786
|
+
<svg
|
|
1787
|
+
class="pf-v6-svg"
|
|
1788
|
+
viewBox="0 0 256 512"
|
|
1789
|
+
fill="currentColor"
|
|
1790
|
+
aria-hidden="true"
|
|
1791
|
+
role="img"
|
|
1792
|
+
width="1em"
|
|
1793
|
+
height="1em"
|
|
1794
|
+
>
|
|
1795
|
+
<path
|
|
1796
|
+
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"
|
|
1797
|
+
/>
|
|
1798
|
+
</svg>
|
|
1691
1799
|
</span>
|
|
1692
1800
|
</button>
|
|
1693
1801
|
</div>
|
|
@@ -1775,7 +1883,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1775
1883
|
disabled
|
|
1776
1884
|
>
|
|
1777
1885
|
<span class="pf-v6-c-button__icon">
|
|
1778
|
-
<
|
|
1886
|
+
<svg
|
|
1887
|
+
class="pf-v6-svg"
|
|
1888
|
+
viewBox="0 0 256 512"
|
|
1889
|
+
fill="currentColor"
|
|
1890
|
+
aria-hidden="true"
|
|
1891
|
+
role="img"
|
|
1892
|
+
width="1em"
|
|
1893
|
+
height="1em"
|
|
1894
|
+
>
|
|
1895
|
+
<path
|
|
1896
|
+
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"
|
|
1897
|
+
/>
|
|
1898
|
+
</svg>
|
|
1779
1899
|
</span>
|
|
1780
1900
|
</button>
|
|
1781
1901
|
</div>
|
|
@@ -1803,7 +1923,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1803
1923
|
disabled
|
|
1804
1924
|
>
|
|
1805
1925
|
<span class="pf-v6-c-button__icon">
|
|
1806
|
-
<
|
|
1926
|
+
<svg
|
|
1927
|
+
class="pf-v6-svg"
|
|
1928
|
+
viewBox="0 0 256 512"
|
|
1929
|
+
fill="currentColor"
|
|
1930
|
+
aria-hidden="true"
|
|
1931
|
+
role="img"
|
|
1932
|
+
width="1em"
|
|
1933
|
+
height="1em"
|
|
1934
|
+
>
|
|
1935
|
+
<path
|
|
1936
|
+
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"
|
|
1937
|
+
/>
|
|
1938
|
+
</svg>
|
|
1807
1939
|
</span>
|
|
1808
1940
|
</button>
|
|
1809
1941
|
</div>
|
|
@@ -1889,7 +2021,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1889
2021
|
disabled
|
|
1890
2022
|
>
|
|
1891
2023
|
<span class="pf-v6-c-button__icon">
|
|
1892
|
-
<
|
|
2024
|
+
<svg
|
|
2025
|
+
class="pf-v6-svg"
|
|
2026
|
+
viewBox="0 0 256 512"
|
|
2027
|
+
fill="currentColor"
|
|
2028
|
+
aria-hidden="true"
|
|
2029
|
+
role="img"
|
|
2030
|
+
width="1em"
|
|
2031
|
+
height="1em"
|
|
2032
|
+
>
|
|
2033
|
+
<path
|
|
2034
|
+
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"
|
|
2035
|
+
/>
|
|
2036
|
+
</svg>
|
|
1893
2037
|
</span>
|
|
1894
2038
|
</button>
|
|
1895
2039
|
</div>
|
|
@@ -1914,7 +2058,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
1914
2058
|
disabled
|
|
1915
2059
|
>
|
|
1916
2060
|
<span class="pf-v6-c-button__icon">
|
|
1917
|
-
<
|
|
2061
|
+
<svg
|
|
2062
|
+
class="pf-v6-svg"
|
|
2063
|
+
viewBox="0 0 256 512"
|
|
2064
|
+
fill="currentColor"
|
|
2065
|
+
aria-hidden="true"
|
|
2066
|
+
role="img"
|
|
2067
|
+
width="1em"
|
|
2068
|
+
height="1em"
|
|
2069
|
+
>
|
|
2070
|
+
<path
|
|
2071
|
+
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"
|
|
2072
|
+
/>
|
|
2073
|
+
</svg>
|
|
1918
2074
|
</span>
|
|
1919
2075
|
</button>
|
|
1920
2076
|
</div>
|
|
@@ -2000,7 +2156,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2000
2156
|
disabled
|
|
2001
2157
|
>
|
|
2002
2158
|
<span class="pf-v6-c-button__icon">
|
|
2003
|
-
<
|
|
2159
|
+
<svg
|
|
2160
|
+
class="pf-v6-svg"
|
|
2161
|
+
viewBox="0 0 256 512"
|
|
2162
|
+
fill="currentColor"
|
|
2163
|
+
aria-hidden="true"
|
|
2164
|
+
role="img"
|
|
2165
|
+
width="1em"
|
|
2166
|
+
height="1em"
|
|
2167
|
+
>
|
|
2168
|
+
<path
|
|
2169
|
+
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"
|
|
2170
|
+
/>
|
|
2171
|
+
</svg>
|
|
2004
2172
|
</span>
|
|
2005
2173
|
</button>
|
|
2006
2174
|
</div>
|
|
@@ -2025,7 +2193,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2025
2193
|
disabled
|
|
2026
2194
|
>
|
|
2027
2195
|
<span class="pf-v6-c-button__icon">
|
|
2028
|
-
<
|
|
2196
|
+
<svg
|
|
2197
|
+
class="pf-v6-svg"
|
|
2198
|
+
viewBox="0 0 256 512"
|
|
2199
|
+
fill="currentColor"
|
|
2200
|
+
aria-hidden="true"
|
|
2201
|
+
role="img"
|
|
2202
|
+
width="1em"
|
|
2203
|
+
height="1em"
|
|
2204
|
+
>
|
|
2205
|
+
<path
|
|
2206
|
+
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"
|
|
2207
|
+
/>
|
|
2208
|
+
</svg>
|
|
2029
2209
|
</span>
|
|
2030
2210
|
</button>
|
|
2031
2211
|
</div>
|
|
@@ -2111,7 +2291,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2111
2291
|
disabled
|
|
2112
2292
|
>
|
|
2113
2293
|
<span class="pf-v6-c-button__icon">
|
|
2114
|
-
<
|
|
2294
|
+
<svg
|
|
2295
|
+
class="pf-v6-svg"
|
|
2296
|
+
viewBox="0 0 256 512"
|
|
2297
|
+
fill="currentColor"
|
|
2298
|
+
aria-hidden="true"
|
|
2299
|
+
role="img"
|
|
2300
|
+
width="1em"
|
|
2301
|
+
height="1em"
|
|
2302
|
+
>
|
|
2303
|
+
<path
|
|
2304
|
+
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"
|
|
2305
|
+
/>
|
|
2306
|
+
</svg>
|
|
2115
2307
|
</span>
|
|
2116
2308
|
</button>
|
|
2117
2309
|
</div>
|
|
@@ -2145,7 +2337,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2145
2337
|
disabled
|
|
2146
2338
|
>
|
|
2147
2339
|
<span class="pf-v6-c-button__icon">
|
|
2148
|
-
<
|
|
2340
|
+
<svg
|
|
2341
|
+
class="pf-v6-svg"
|
|
2342
|
+
viewBox="0 0 256 512"
|
|
2343
|
+
fill="currentColor"
|
|
2344
|
+
aria-hidden="true"
|
|
2345
|
+
role="img"
|
|
2346
|
+
width="1em"
|
|
2347
|
+
height="1em"
|
|
2348
|
+
>
|
|
2349
|
+
<path
|
|
2350
|
+
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"
|
|
2351
|
+
/>
|
|
2352
|
+
</svg>
|
|
2149
2353
|
</span>
|
|
2150
2354
|
</button>
|
|
2151
2355
|
</div>
|
|
@@ -2249,7 +2453,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2249
2453
|
disabled
|
|
2250
2454
|
>
|
|
2251
2455
|
<span class="pf-v6-c-button__icon">
|
|
2252
|
-
<
|
|
2456
|
+
<svg
|
|
2457
|
+
class="pf-v6-svg"
|
|
2458
|
+
viewBox="0 0 256 512"
|
|
2459
|
+
fill="currentColor"
|
|
2460
|
+
aria-hidden="true"
|
|
2461
|
+
role="img"
|
|
2462
|
+
width="1em"
|
|
2463
|
+
height="1em"
|
|
2464
|
+
>
|
|
2465
|
+
<path
|
|
2466
|
+
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"
|
|
2467
|
+
/>
|
|
2468
|
+
</svg>
|
|
2253
2469
|
</span>
|
|
2254
2470
|
</button>
|
|
2255
2471
|
</div>
|
|
@@ -2275,7 +2491,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2275
2491
|
aria-label="Scroll left"
|
|
2276
2492
|
>
|
|
2277
2493
|
<span class="pf-v6-c-button__icon">
|
|
2278
|
-
<
|
|
2494
|
+
<svg
|
|
2495
|
+
class="pf-v6-svg"
|
|
2496
|
+
viewBox="0 0 256 512"
|
|
2497
|
+
fill="currentColor"
|
|
2498
|
+
aria-hidden="true"
|
|
2499
|
+
role="img"
|
|
2500
|
+
width="1em"
|
|
2501
|
+
height="1em"
|
|
2502
|
+
>
|
|
2503
|
+
<path
|
|
2504
|
+
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"
|
|
2505
|
+
/>
|
|
2506
|
+
</svg>
|
|
2279
2507
|
</span>
|
|
2280
2508
|
</button>
|
|
2281
2509
|
</div>
|
|
@@ -2360,7 +2588,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2360
2588
|
aria-label="Scroll right"
|
|
2361
2589
|
>
|
|
2362
2590
|
<span class="pf-v6-c-button__icon">
|
|
2363
|
-
<
|
|
2591
|
+
<svg
|
|
2592
|
+
class="pf-v6-svg"
|
|
2593
|
+
viewBox="0 0 256 512"
|
|
2594
|
+
fill="currentColor"
|
|
2595
|
+
aria-hidden="true"
|
|
2596
|
+
role="img"
|
|
2597
|
+
width="1em"
|
|
2598
|
+
height="1em"
|
|
2599
|
+
>
|
|
2600
|
+
<path
|
|
2601
|
+
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"
|
|
2602
|
+
/>
|
|
2603
|
+
</svg>
|
|
2364
2604
|
</span>
|
|
2365
2605
|
</button>
|
|
2366
2606
|
</div>
|
|
@@ -2379,7 +2619,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2379
2619
|
aria-label="Scroll left"
|
|
2380
2620
|
>
|
|
2381
2621
|
<span class="pf-v6-c-button__icon">
|
|
2382
|
-
<
|
|
2622
|
+
<svg
|
|
2623
|
+
class="pf-v6-svg"
|
|
2624
|
+
viewBox="0 0 256 512"
|
|
2625
|
+
fill="currentColor"
|
|
2626
|
+
aria-hidden="true"
|
|
2627
|
+
role="img"
|
|
2628
|
+
width="1em"
|
|
2629
|
+
height="1em"
|
|
2630
|
+
>
|
|
2631
|
+
<path
|
|
2632
|
+
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"
|
|
2633
|
+
/>
|
|
2634
|
+
</svg>
|
|
2383
2635
|
</span>
|
|
2384
2636
|
</button>
|
|
2385
2637
|
</div>
|
|
@@ -2464,7 +2716,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2464
2716
|
aria-label="Scroll right"
|
|
2465
2717
|
>
|
|
2466
2718
|
<span class="pf-v6-c-button__icon">
|
|
2467
|
-
<
|
|
2719
|
+
<svg
|
|
2720
|
+
class="pf-v6-svg"
|
|
2721
|
+
viewBox="0 0 256 512"
|
|
2722
|
+
fill="currentColor"
|
|
2723
|
+
aria-hidden="true"
|
|
2724
|
+
role="img"
|
|
2725
|
+
width="1em"
|
|
2726
|
+
height="1em"
|
|
2727
|
+
>
|
|
2728
|
+
<path
|
|
2729
|
+
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"
|
|
2730
|
+
/>
|
|
2731
|
+
</svg>
|
|
2468
2732
|
</span>
|
|
2469
2733
|
</button>
|
|
2470
2734
|
</div>
|
|
@@ -2488,7 +2752,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2488
2752
|
aria-label="Scroll left"
|
|
2489
2753
|
>
|
|
2490
2754
|
<span class="pf-v6-c-button__icon">
|
|
2491
|
-
<
|
|
2755
|
+
<svg
|
|
2756
|
+
class="pf-v6-svg"
|
|
2757
|
+
viewBox="0 0 256 512"
|
|
2758
|
+
fill="currentColor"
|
|
2759
|
+
aria-hidden="true"
|
|
2760
|
+
role="img"
|
|
2761
|
+
width="1em"
|
|
2762
|
+
height="1em"
|
|
2763
|
+
>
|
|
2764
|
+
<path
|
|
2765
|
+
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"
|
|
2766
|
+
/>
|
|
2767
|
+
</svg>
|
|
2492
2768
|
</span>
|
|
2493
2769
|
</button>
|
|
2494
2770
|
</div>
|
|
@@ -2573,7 +2849,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2573
2849
|
aria-label="Scroll right"
|
|
2574
2850
|
>
|
|
2575
2851
|
<span class="pf-v6-c-button__icon">
|
|
2576
|
-
<
|
|
2852
|
+
<svg
|
|
2853
|
+
class="pf-v6-svg"
|
|
2854
|
+
viewBox="0 0 256 512"
|
|
2855
|
+
fill="currentColor"
|
|
2856
|
+
aria-hidden="true"
|
|
2857
|
+
role="img"
|
|
2858
|
+
width="1em"
|
|
2859
|
+
height="1em"
|
|
2860
|
+
>
|
|
2861
|
+
<path
|
|
2862
|
+
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"
|
|
2863
|
+
/>
|
|
2864
|
+
</svg>
|
|
2577
2865
|
</span>
|
|
2578
2866
|
</button>
|
|
2579
2867
|
</div>
|
|
@@ -2592,7 +2880,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2592
2880
|
aria-label="Scroll left"
|
|
2593
2881
|
>
|
|
2594
2882
|
<span class="pf-v6-c-button__icon">
|
|
2595
|
-
<
|
|
2883
|
+
<svg
|
|
2884
|
+
class="pf-v6-svg"
|
|
2885
|
+
viewBox="0 0 256 512"
|
|
2886
|
+
fill="currentColor"
|
|
2887
|
+
aria-hidden="true"
|
|
2888
|
+
role="img"
|
|
2889
|
+
width="1em"
|
|
2890
|
+
height="1em"
|
|
2891
|
+
>
|
|
2892
|
+
<path
|
|
2893
|
+
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"
|
|
2894
|
+
/>
|
|
2895
|
+
</svg>
|
|
2596
2896
|
</span>
|
|
2597
2897
|
</button>
|
|
2598
2898
|
</div>
|
|
@@ -2677,7 +2977,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2677
2977
|
aria-label="Scroll right"
|
|
2678
2978
|
>
|
|
2679
2979
|
<span class="pf-v6-c-button__icon">
|
|
2680
|
-
<
|
|
2980
|
+
<svg
|
|
2981
|
+
class="pf-v6-svg"
|
|
2982
|
+
viewBox="0 0 256 512"
|
|
2983
|
+
fill="currentColor"
|
|
2984
|
+
aria-hidden="true"
|
|
2985
|
+
role="img"
|
|
2986
|
+
width="1em"
|
|
2987
|
+
height="1em"
|
|
2988
|
+
>
|
|
2989
|
+
<path
|
|
2990
|
+
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"
|
|
2991
|
+
/>
|
|
2992
|
+
</svg>
|
|
2681
2993
|
</span>
|
|
2682
2994
|
</button>
|
|
2683
2995
|
</div>
|
|
@@ -2704,7 +3016,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2704
3016
|
disabled
|
|
2705
3017
|
>
|
|
2706
3018
|
<span class="pf-v6-c-button__icon">
|
|
2707
|
-
<
|
|
3019
|
+
<svg
|
|
3020
|
+
class="pf-v6-svg"
|
|
3021
|
+
viewBox="0 0 256 512"
|
|
3022
|
+
fill="currentColor"
|
|
3023
|
+
aria-hidden="true"
|
|
3024
|
+
role="img"
|
|
3025
|
+
width="1em"
|
|
3026
|
+
height="1em"
|
|
3027
|
+
>
|
|
3028
|
+
<path
|
|
3029
|
+
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"
|
|
3030
|
+
/>
|
|
3031
|
+
</svg>
|
|
2708
3032
|
</span>
|
|
2709
3033
|
</button>
|
|
2710
3034
|
</div>
|
|
@@ -2752,7 +3076,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2752
3076
|
disabled
|
|
2753
3077
|
>
|
|
2754
3078
|
<span class="pf-v6-c-button__icon">
|
|
2755
|
-
<
|
|
3079
|
+
<svg
|
|
3080
|
+
class="pf-v6-svg"
|
|
3081
|
+
viewBox="0 0 256 512"
|
|
3082
|
+
fill="currentColor"
|
|
3083
|
+
aria-hidden="true"
|
|
3084
|
+
role="img"
|
|
3085
|
+
width="1em"
|
|
3086
|
+
height="1em"
|
|
3087
|
+
>
|
|
3088
|
+
<path
|
|
3089
|
+
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"
|
|
3090
|
+
/>
|
|
3091
|
+
</svg>
|
|
2756
3092
|
</span>
|
|
2757
3093
|
</button>
|
|
2758
3094
|
</div>
|
|
@@ -2777,7 +3113,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2777
3113
|
disabled
|
|
2778
3114
|
>
|
|
2779
3115
|
<span class="pf-v6-c-button__icon">
|
|
2780
|
-
<
|
|
3116
|
+
<svg
|
|
3117
|
+
class="pf-v6-svg"
|
|
3118
|
+
viewBox="0 0 256 512"
|
|
3119
|
+
fill="currentColor"
|
|
3120
|
+
aria-hidden="true"
|
|
3121
|
+
role="img"
|
|
3122
|
+
width="1em"
|
|
3123
|
+
height="1em"
|
|
3124
|
+
>
|
|
3125
|
+
<path
|
|
3126
|
+
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"
|
|
3127
|
+
/>
|
|
3128
|
+
</svg>
|
|
2781
3129
|
</span>
|
|
2782
3130
|
</button>
|
|
2783
3131
|
</div>
|
|
@@ -2838,7 +3186,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2838
3186
|
disabled
|
|
2839
3187
|
>
|
|
2840
3188
|
<span class="pf-v6-c-button__icon">
|
|
2841
|
-
<
|
|
3189
|
+
<svg
|
|
3190
|
+
class="pf-v6-svg"
|
|
3191
|
+
viewBox="0 0 256 512"
|
|
3192
|
+
fill="currentColor"
|
|
3193
|
+
aria-hidden="true"
|
|
3194
|
+
role="img"
|
|
3195
|
+
width="1em"
|
|
3196
|
+
height="1em"
|
|
3197
|
+
>
|
|
3198
|
+
<path
|
|
3199
|
+
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"
|
|
3200
|
+
/>
|
|
3201
|
+
</svg>
|
|
2842
3202
|
</span>
|
|
2843
3203
|
</button>
|
|
2844
3204
|
</div>
|
|
@@ -2863,7 +3223,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2863
3223
|
disabled
|
|
2864
3224
|
>
|
|
2865
3225
|
<span class="pf-v6-c-button__icon">
|
|
2866
|
-
<
|
|
3226
|
+
<svg
|
|
3227
|
+
class="pf-v6-svg"
|
|
3228
|
+
viewBox="0 0 256 512"
|
|
3229
|
+
fill="currentColor"
|
|
3230
|
+
aria-hidden="true"
|
|
3231
|
+
role="img"
|
|
3232
|
+
width="1em"
|
|
3233
|
+
height="1em"
|
|
3234
|
+
>
|
|
3235
|
+
<path
|
|
3236
|
+
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"
|
|
3237
|
+
/>
|
|
3238
|
+
</svg>
|
|
2867
3239
|
</span>
|
|
2868
3240
|
</button>
|
|
2869
3241
|
</div>
|
|
@@ -2911,7 +3283,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2911
3283
|
disabled
|
|
2912
3284
|
>
|
|
2913
3285
|
<span class="pf-v6-c-button__icon">
|
|
2914
|
-
<
|
|
3286
|
+
<svg
|
|
3287
|
+
class="pf-v6-svg"
|
|
3288
|
+
viewBox="0 0 256 512"
|
|
3289
|
+
fill="currentColor"
|
|
3290
|
+
aria-hidden="true"
|
|
3291
|
+
role="img"
|
|
3292
|
+
width="1em"
|
|
3293
|
+
height="1em"
|
|
3294
|
+
>
|
|
3295
|
+
<path
|
|
3296
|
+
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"
|
|
3297
|
+
/>
|
|
3298
|
+
</svg>
|
|
2915
3299
|
</span>
|
|
2916
3300
|
</button>
|
|
2917
3301
|
</div>
|
|
@@ -2936,7 +3320,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2936
3320
|
disabled
|
|
2937
3321
|
>
|
|
2938
3322
|
<span class="pf-v6-c-button__icon">
|
|
2939
|
-
<
|
|
3323
|
+
<svg
|
|
3324
|
+
class="pf-v6-svg"
|
|
3325
|
+
viewBox="0 0 256 512"
|
|
3326
|
+
fill="currentColor"
|
|
3327
|
+
aria-hidden="true"
|
|
3328
|
+
role="img"
|
|
3329
|
+
width="1em"
|
|
3330
|
+
height="1em"
|
|
3331
|
+
>
|
|
3332
|
+
<path
|
|
3333
|
+
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"
|
|
3334
|
+
/>
|
|
3335
|
+
</svg>
|
|
2940
3336
|
</span>
|
|
2941
3337
|
</button>
|
|
2942
3338
|
</div>
|
|
@@ -2997,7 +3393,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
2997
3393
|
disabled
|
|
2998
3394
|
>
|
|
2999
3395
|
<span class="pf-v6-c-button__icon">
|
|
3000
|
-
<
|
|
3396
|
+
<svg
|
|
3397
|
+
class="pf-v6-svg"
|
|
3398
|
+
viewBox="0 0 256 512"
|
|
3399
|
+
fill="currentColor"
|
|
3400
|
+
aria-hidden="true"
|
|
3401
|
+
role="img"
|
|
3402
|
+
width="1em"
|
|
3403
|
+
height="1em"
|
|
3404
|
+
>
|
|
3405
|
+
<path
|
|
3406
|
+
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"
|
|
3407
|
+
/>
|
|
3408
|
+
</svg>
|
|
3001
3409
|
</span>
|
|
3002
3410
|
</button>
|
|
3003
3411
|
</div>
|
|
@@ -3027,7 +3435,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3027
3435
|
aria-label="Scroll left"
|
|
3028
3436
|
>
|
|
3029
3437
|
<span class="pf-v6-c-button__icon">
|
|
3030
|
-
<
|
|
3438
|
+
<svg
|
|
3439
|
+
class="pf-v6-svg"
|
|
3440
|
+
viewBox="0 0 256 512"
|
|
3441
|
+
fill="currentColor"
|
|
3442
|
+
aria-hidden="true"
|
|
3443
|
+
role="img"
|
|
3444
|
+
width="1em"
|
|
3445
|
+
height="1em"
|
|
3446
|
+
>
|
|
3447
|
+
<path
|
|
3448
|
+
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"
|
|
3449
|
+
/>
|
|
3450
|
+
</svg>
|
|
3031
3451
|
</span>
|
|
3032
3452
|
</button>
|
|
3033
3453
|
</div>
|
|
@@ -3115,7 +3535,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3115
3535
|
aria-label="Scroll right"
|
|
3116
3536
|
>
|
|
3117
3537
|
<span class="pf-v6-c-button__icon">
|
|
3118
|
-
<
|
|
3538
|
+
<svg
|
|
3539
|
+
class="pf-v6-svg"
|
|
3540
|
+
viewBox="0 0 256 512"
|
|
3541
|
+
fill="currentColor"
|
|
3542
|
+
aria-hidden="true"
|
|
3543
|
+
role="img"
|
|
3544
|
+
width="1em"
|
|
3545
|
+
height="1em"
|
|
3546
|
+
>
|
|
3547
|
+
<path
|
|
3548
|
+
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"
|
|
3549
|
+
/>
|
|
3550
|
+
</svg>
|
|
3119
3551
|
</span>
|
|
3120
3552
|
</button>
|
|
3121
3553
|
</div>
|
|
@@ -3138,7 +3570,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3138
3570
|
disabled
|
|
3139
3571
|
>
|
|
3140
3572
|
<span class="pf-v6-c-button__icon">
|
|
3141
|
-
<
|
|
3573
|
+
<svg
|
|
3574
|
+
class="pf-v6-svg"
|
|
3575
|
+
viewBox="0 0 256 512"
|
|
3576
|
+
fill="currentColor"
|
|
3577
|
+
aria-hidden="true"
|
|
3578
|
+
role="img"
|
|
3579
|
+
width="1em"
|
|
3580
|
+
height="1em"
|
|
3581
|
+
>
|
|
3582
|
+
<path
|
|
3583
|
+
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"
|
|
3584
|
+
/>
|
|
3585
|
+
</svg>
|
|
3142
3586
|
</span>
|
|
3143
3587
|
</button>
|
|
3144
3588
|
</div>
|
|
@@ -3224,7 +3668,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3224
3668
|
disabled
|
|
3225
3669
|
>
|
|
3226
3670
|
<span class="pf-v6-c-button__icon">
|
|
3227
|
-
<
|
|
3671
|
+
<svg
|
|
3672
|
+
class="pf-v6-svg"
|
|
3673
|
+
viewBox="0 0 256 512"
|
|
3674
|
+
fill="currentColor"
|
|
3675
|
+
aria-hidden="true"
|
|
3676
|
+
role="img"
|
|
3677
|
+
width="1em"
|
|
3678
|
+
height="1em"
|
|
3679
|
+
>
|
|
3680
|
+
<path
|
|
3681
|
+
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"
|
|
3682
|
+
/>
|
|
3683
|
+
</svg>
|
|
3228
3684
|
</span>
|
|
3229
3685
|
</button>
|
|
3230
3686
|
</div>
|
|
@@ -3242,7 +3698,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3242
3698
|
disabled
|
|
3243
3699
|
>
|
|
3244
3700
|
<span class="pf-v6-c-button__icon">
|
|
3245
|
-
<
|
|
3701
|
+
<svg
|
|
3702
|
+
class="pf-v6-svg"
|
|
3703
|
+
viewBox="0 0 256 512"
|
|
3704
|
+
fill="currentColor"
|
|
3705
|
+
aria-hidden="true"
|
|
3706
|
+
role="img"
|
|
3707
|
+
width="1em"
|
|
3708
|
+
height="1em"
|
|
3709
|
+
>
|
|
3710
|
+
<path
|
|
3711
|
+
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"
|
|
3712
|
+
/>
|
|
3713
|
+
</svg>
|
|
3246
3714
|
</span>
|
|
3247
3715
|
</button>
|
|
3248
3716
|
</div>
|
|
@@ -3331,7 +3799,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3331
3799
|
disabled
|
|
3332
3800
|
>
|
|
3333
3801
|
<span class="pf-v6-c-button__icon">
|
|
3334
|
-
<
|
|
3802
|
+
<svg
|
|
3803
|
+
class="pf-v6-svg"
|
|
3804
|
+
viewBox="0 0 256 512"
|
|
3805
|
+
fill="currentColor"
|
|
3806
|
+
aria-hidden="true"
|
|
3807
|
+
role="img"
|
|
3808
|
+
width="1em"
|
|
3809
|
+
height="1em"
|
|
3810
|
+
>
|
|
3811
|
+
<path
|
|
3812
|
+
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"
|
|
3813
|
+
/>
|
|
3814
|
+
</svg>
|
|
3335
3815
|
</span>
|
|
3336
3816
|
</button>
|
|
3337
3817
|
</div>
|
|
@@ -3354,7 +3834,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3354
3834
|
disabled
|
|
3355
3835
|
>
|
|
3356
3836
|
<span class="pf-v6-c-button__icon">
|
|
3357
|
-
<
|
|
3837
|
+
<svg
|
|
3838
|
+
class="pf-v6-svg"
|
|
3839
|
+
viewBox="0 0 256 512"
|
|
3840
|
+
fill="currentColor"
|
|
3841
|
+
aria-hidden="true"
|
|
3842
|
+
role="img"
|
|
3843
|
+
width="1em"
|
|
3844
|
+
height="1em"
|
|
3845
|
+
>
|
|
3846
|
+
<path
|
|
3847
|
+
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"
|
|
3848
|
+
/>
|
|
3849
|
+
</svg>
|
|
3358
3850
|
</span>
|
|
3359
3851
|
</button>
|
|
3360
3852
|
</div>
|
|
@@ -3440,7 +3932,19 @@ cssPrefix: pf-v6-c-tabs
|
|
|
3440
3932
|
disabled
|
|
3441
3933
|
>
|
|
3442
3934
|
<span class="pf-v6-c-button__icon">
|
|
3443
|
-
<
|
|
3935
|
+
<svg
|
|
3936
|
+
class="pf-v6-svg"
|
|
3937
|
+
viewBox="0 0 256 512"
|
|
3938
|
+
fill="currentColor"
|
|
3939
|
+
aria-hidden="true"
|
|
3940
|
+
role="img"
|
|
3941
|
+
width="1em"
|
|
3942
|
+
height="1em"
|
|
3943
|
+
>
|
|
3944
|
+
<path
|
|
3945
|
+
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"
|
|
3946
|
+
/>
|
|
3947
|
+
</svg>
|
|
3444
3948
|
</span>
|
|
3445
3949
|
</button>
|
|
3446
3950
|
</div>
|
|
@@ -3458,7 +3962,19 @@ As sub navigation:
|
|
|
3458
3962
|
disabled
|
|
3459
3963
|
>
|
|
3460
3964
|
<span class="pf-v6-c-button__icon">
|
|
3461
|
-
<
|
|
3965
|
+
<svg
|
|
3966
|
+
class="pf-v6-svg"
|
|
3967
|
+
viewBox="0 0 256 512"
|
|
3968
|
+
fill="currentColor"
|
|
3969
|
+
aria-hidden="true"
|
|
3970
|
+
role="img"
|
|
3971
|
+
width="1em"
|
|
3972
|
+
height="1em"
|
|
3973
|
+
>
|
|
3974
|
+
<path
|
|
3975
|
+
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"
|
|
3976
|
+
/>
|
|
3977
|
+
</svg>
|
|
3462
3978
|
</span>
|
|
3463
3979
|
</button>
|
|
3464
3980
|
</div>
|
|
@@ -3544,7 +4060,19 @@ As sub navigation:
|
|
|
3544
4060
|
disabled
|
|
3545
4061
|
>
|
|
3546
4062
|
<span class="pf-v6-c-button__icon">
|
|
3547
|
-
<
|
|
4063
|
+
<svg
|
|
4064
|
+
class="pf-v6-svg"
|
|
4065
|
+
viewBox="0 0 256 512"
|
|
4066
|
+
fill="currentColor"
|
|
4067
|
+
aria-hidden="true"
|
|
4068
|
+
role="img"
|
|
4069
|
+
width="1em"
|
|
4070
|
+
height="1em"
|
|
4071
|
+
>
|
|
4072
|
+
<path
|
|
4073
|
+
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"
|
|
4074
|
+
/>
|
|
4075
|
+
</svg>
|
|
3548
4076
|
</span>
|
|
3549
4077
|
</button>
|
|
3550
4078
|
</div>
|
|
@@ -3571,7 +4099,19 @@ As sub navigation:
|
|
|
3571
4099
|
disabled
|
|
3572
4100
|
>
|
|
3573
4101
|
<span class="pf-v6-c-button__icon">
|
|
3574
|
-
<
|
|
4102
|
+
<svg
|
|
4103
|
+
class="pf-v6-svg"
|
|
4104
|
+
viewBox="0 0 256 512"
|
|
4105
|
+
fill="currentColor"
|
|
4106
|
+
aria-hidden="true"
|
|
4107
|
+
role="img"
|
|
4108
|
+
width="1em"
|
|
4109
|
+
height="1em"
|
|
4110
|
+
>
|
|
4111
|
+
<path
|
|
4112
|
+
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"
|
|
4113
|
+
/>
|
|
4114
|
+
</svg>
|
|
3575
4115
|
</span>
|
|
3576
4116
|
</button>
|
|
3577
4117
|
</div>
|
|
@@ -3773,7 +4313,19 @@ As sub navigation:
|
|
|
3773
4313
|
aria-label="Scroll right"
|
|
3774
4314
|
>
|
|
3775
4315
|
<span class="pf-v6-c-button__icon">
|
|
3776
|
-
<
|
|
4316
|
+
<svg
|
|
4317
|
+
class="pf-v6-svg"
|
|
4318
|
+
viewBox="0 0 256 512"
|
|
4319
|
+
fill="currentColor"
|
|
4320
|
+
aria-hidden="true"
|
|
4321
|
+
role="img"
|
|
4322
|
+
width="1em"
|
|
4323
|
+
height="1em"
|
|
4324
|
+
>
|
|
4325
|
+
<path
|
|
4326
|
+
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"
|
|
4327
|
+
/>
|
|
4328
|
+
</svg>
|
|
3777
4329
|
</span>
|
|
3778
4330
|
</button>
|
|
3779
4331
|
</div>
|
|
@@ -3796,7 +4348,19 @@ As sub navigation:
|
|
|
3796
4348
|
disabled
|
|
3797
4349
|
>
|
|
3798
4350
|
<span class="pf-v6-c-button__icon">
|
|
3799
|
-
<
|
|
4351
|
+
<svg
|
|
4352
|
+
class="pf-v6-svg"
|
|
4353
|
+
viewBox="0 0 256 512"
|
|
4354
|
+
fill="currentColor"
|
|
4355
|
+
aria-hidden="true"
|
|
4356
|
+
role="img"
|
|
4357
|
+
width="1em"
|
|
4358
|
+
height="1em"
|
|
4359
|
+
>
|
|
4360
|
+
<path
|
|
4361
|
+
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"
|
|
4362
|
+
/>
|
|
4363
|
+
</svg>
|
|
3800
4364
|
</span>
|
|
3801
4365
|
</button>
|
|
3802
4366
|
</div>
|
|
@@ -3998,7 +4562,19 @@ As sub navigation:
|
|
|
3998
4562
|
aria-label="Scroll right"
|
|
3999
4563
|
>
|
|
4000
4564
|
<span class="pf-v6-c-button__icon">
|
|
4001
|
-
<
|
|
4565
|
+
<svg
|
|
4566
|
+
class="pf-v6-svg"
|
|
4567
|
+
viewBox="0 0 256 512"
|
|
4568
|
+
fill="currentColor"
|
|
4569
|
+
aria-hidden="true"
|
|
4570
|
+
role="img"
|
|
4571
|
+
width="1em"
|
|
4572
|
+
height="1em"
|
|
4573
|
+
>
|
|
4574
|
+
<path
|
|
4575
|
+
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"
|
|
4576
|
+
/>
|
|
4577
|
+
</svg>
|
|
4002
4578
|
</span>
|
|
4003
4579
|
</button>
|
|
4004
4580
|
</div>
|
|
@@ -4021,7 +4597,19 @@ As sub navigation:
|
|
|
4021
4597
|
disabled
|
|
4022
4598
|
>
|
|
4023
4599
|
<span class="pf-v6-c-button__icon">
|
|
4024
|
-
<
|
|
4600
|
+
<svg
|
|
4601
|
+
class="pf-v6-svg"
|
|
4602
|
+
viewBox="0 0 256 512"
|
|
4603
|
+
fill="currentColor"
|
|
4604
|
+
aria-hidden="true"
|
|
4605
|
+
role="img"
|
|
4606
|
+
width="1em"
|
|
4607
|
+
height="1em"
|
|
4608
|
+
>
|
|
4609
|
+
<path
|
|
4610
|
+
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"
|
|
4611
|
+
/>
|
|
4612
|
+
</svg>
|
|
4025
4613
|
</span>
|
|
4026
4614
|
</button>
|
|
4027
4615
|
</div>
|
|
@@ -4223,7 +4811,19 @@ As sub navigation:
|
|
|
4223
4811
|
aria-label="Scroll right"
|
|
4224
4812
|
>
|
|
4225
4813
|
<span class="pf-v6-c-button__icon">
|
|
4226
|
-
<
|
|
4814
|
+
<svg
|
|
4815
|
+
class="pf-v6-svg"
|
|
4816
|
+
viewBox="0 0 256 512"
|
|
4817
|
+
fill="currentColor"
|
|
4818
|
+
aria-hidden="true"
|
|
4819
|
+
role="img"
|
|
4820
|
+
width="1em"
|
|
4821
|
+
height="1em"
|
|
4822
|
+
>
|
|
4823
|
+
<path
|
|
4824
|
+
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"
|
|
4825
|
+
/>
|
|
4826
|
+
</svg>
|
|
4227
4827
|
</span>
|
|
4228
4828
|
</button>
|
|
4229
4829
|
</div>
|
|
@@ -4246,7 +4846,19 @@ As sub navigation:
|
|
|
4246
4846
|
disabled
|
|
4247
4847
|
>
|
|
4248
4848
|
<span class="pf-v6-c-button__icon">
|
|
4249
|
-
<
|
|
4849
|
+
<svg
|
|
4850
|
+
class="pf-v6-svg"
|
|
4851
|
+
viewBox="0 0 256 512"
|
|
4852
|
+
fill="currentColor"
|
|
4853
|
+
aria-hidden="true"
|
|
4854
|
+
role="img"
|
|
4855
|
+
width="1em"
|
|
4856
|
+
height="1em"
|
|
4857
|
+
>
|
|
4858
|
+
<path
|
|
4859
|
+
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"
|
|
4860
|
+
/>
|
|
4861
|
+
</svg>
|
|
4250
4862
|
</span>
|
|
4251
4863
|
</button>
|
|
4252
4864
|
</div>
|
|
@@ -4469,7 +5081,19 @@ As sub navigation:
|
|
|
4469
5081
|
aria-label="Scroll right"
|
|
4470
5082
|
>
|
|
4471
5083
|
<span class="pf-v6-c-button__icon">
|
|
4472
|
-
<
|
|
5084
|
+
<svg
|
|
5085
|
+
class="pf-v6-svg"
|
|
5086
|
+
viewBox="0 0 256 512"
|
|
5087
|
+
fill="currentColor"
|
|
5088
|
+
aria-hidden="true"
|
|
5089
|
+
role="img"
|
|
5090
|
+
width="1em"
|
|
5091
|
+
height="1em"
|
|
5092
|
+
>
|
|
5093
|
+
<path
|
|
5094
|
+
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"
|
|
5095
|
+
/>
|
|
5096
|
+
</svg>
|
|
4473
5097
|
</span>
|
|
4474
5098
|
</button>
|
|
4475
5099
|
</div>
|
|
@@ -4492,7 +5116,19 @@ As sub navigation:
|
|
|
4492
5116
|
disabled
|
|
4493
5117
|
>
|
|
4494
5118
|
<span class="pf-v6-c-button__icon">
|
|
4495
|
-
<
|
|
5119
|
+
<svg
|
|
5120
|
+
class="pf-v6-svg"
|
|
5121
|
+
viewBox="0 0 256 512"
|
|
5122
|
+
fill="currentColor"
|
|
5123
|
+
aria-hidden="true"
|
|
5124
|
+
role="img"
|
|
5125
|
+
width="1em"
|
|
5126
|
+
height="1em"
|
|
5127
|
+
>
|
|
5128
|
+
<path
|
|
5129
|
+
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"
|
|
5130
|
+
/>
|
|
5131
|
+
</svg>
|
|
4496
5132
|
</span>
|
|
4497
5133
|
</button>
|
|
4498
5134
|
</div>
|
|
@@ -4583,7 +5219,19 @@ As sub navigation:
|
|
|
4583
5219
|
disabled
|
|
4584
5220
|
>
|
|
4585
5221
|
<span class="pf-v6-c-button__icon">
|
|
4586
|
-
<
|
|
5222
|
+
<svg
|
|
5223
|
+
class="pf-v6-svg"
|
|
5224
|
+
viewBox="0 0 256 512"
|
|
5225
|
+
fill="currentColor"
|
|
5226
|
+
aria-hidden="true"
|
|
5227
|
+
role="img"
|
|
5228
|
+
width="1em"
|
|
5229
|
+
height="1em"
|
|
5230
|
+
>
|
|
5231
|
+
<path
|
|
5232
|
+
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"
|
|
5233
|
+
/>
|
|
5234
|
+
</svg>
|
|
4587
5235
|
</span>
|
|
4588
5236
|
</button>
|
|
4589
5237
|
</div>
|
|
@@ -4606,7 +5254,19 @@ As sub navigation:
|
|
|
4606
5254
|
disabled
|
|
4607
5255
|
>
|
|
4608
5256
|
<span class="pf-v6-c-button__icon">
|
|
4609
|
-
<
|
|
5257
|
+
<svg
|
|
5258
|
+
class="pf-v6-svg"
|
|
5259
|
+
viewBox="0 0 256 512"
|
|
5260
|
+
fill="currentColor"
|
|
5261
|
+
aria-hidden="true"
|
|
5262
|
+
role="img"
|
|
5263
|
+
width="1em"
|
|
5264
|
+
height="1em"
|
|
5265
|
+
>
|
|
5266
|
+
<path
|
|
5267
|
+
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"
|
|
5268
|
+
/>
|
|
5269
|
+
</svg>
|
|
4610
5270
|
</span>
|
|
4611
5271
|
</button>
|
|
4612
5272
|
</div>
|
|
@@ -4808,7 +5468,19 @@ As sub navigation:
|
|
|
4808
5468
|
aria-label="Scroll right"
|
|
4809
5469
|
>
|
|
4810
5470
|
<span class="pf-v6-c-button__icon">
|
|
4811
|
-
<
|
|
5471
|
+
<svg
|
|
5472
|
+
class="pf-v6-svg"
|
|
5473
|
+
viewBox="0 0 256 512"
|
|
5474
|
+
fill="currentColor"
|
|
5475
|
+
aria-hidden="true"
|
|
5476
|
+
role="img"
|
|
5477
|
+
width="1em"
|
|
5478
|
+
height="1em"
|
|
5479
|
+
>
|
|
5480
|
+
<path
|
|
5481
|
+
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"
|
|
5482
|
+
/>
|
|
5483
|
+
</svg>
|
|
4812
5484
|
</span>
|
|
4813
5485
|
</button>
|
|
4814
5486
|
</div>
|
|
@@ -4827,7 +5499,19 @@ As sub navigation:
|
|
|
4827
5499
|
disabled
|
|
4828
5500
|
>
|
|
4829
5501
|
<span class="pf-v6-c-button__icon">
|
|
4830
|
-
<
|
|
5502
|
+
<svg
|
|
5503
|
+
class="pf-v6-svg"
|
|
5504
|
+
viewBox="0 0 256 512"
|
|
5505
|
+
fill="currentColor"
|
|
5506
|
+
aria-hidden="true"
|
|
5507
|
+
role="img"
|
|
5508
|
+
width="1em"
|
|
5509
|
+
height="1em"
|
|
5510
|
+
>
|
|
5511
|
+
<path
|
|
5512
|
+
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"
|
|
5513
|
+
/>
|
|
5514
|
+
</svg>
|
|
4831
5515
|
</span>
|
|
4832
5516
|
</button>
|
|
4833
5517
|
</div>
|
|
@@ -5029,7 +5713,19 @@ As sub navigation:
|
|
|
5029
5713
|
aria-label="Scroll right"
|
|
5030
5714
|
>
|
|
5031
5715
|
<span class="pf-v6-c-button__icon">
|
|
5032
|
-
<
|
|
5716
|
+
<svg
|
|
5717
|
+
class="pf-v6-svg"
|
|
5718
|
+
viewBox="0 0 256 512"
|
|
5719
|
+
fill="currentColor"
|
|
5720
|
+
aria-hidden="true"
|
|
5721
|
+
role="img"
|
|
5722
|
+
width="1em"
|
|
5723
|
+
height="1em"
|
|
5724
|
+
>
|
|
5725
|
+
<path
|
|
5726
|
+
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"
|
|
5727
|
+
/>
|
|
5728
|
+
</svg>
|
|
5033
5729
|
</span>
|
|
5034
5730
|
</button>
|
|
5035
5731
|
</div>
|
|
@@ -5054,7 +5750,19 @@ As sub navigation:
|
|
|
5054
5750
|
disabled
|
|
5055
5751
|
>
|
|
5056
5752
|
<span class="pf-v6-c-button__icon">
|
|
5057
|
-
<
|
|
5753
|
+
<svg
|
|
5754
|
+
class="pf-v6-svg"
|
|
5755
|
+
viewBox="0 0 256 512"
|
|
5756
|
+
fill="currentColor"
|
|
5757
|
+
aria-hidden="true"
|
|
5758
|
+
role="img"
|
|
5759
|
+
width="1em"
|
|
5760
|
+
height="1em"
|
|
5761
|
+
>
|
|
5762
|
+
<path
|
|
5763
|
+
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"
|
|
5764
|
+
/>
|
|
5765
|
+
</svg>
|
|
5058
5766
|
</span>
|
|
5059
5767
|
</button>
|
|
5060
5768
|
</div>
|
|
@@ -5256,7 +5964,19 @@ As sub navigation:
|
|
|
5256
5964
|
aria-label="Scroll right"
|
|
5257
5965
|
>
|
|
5258
5966
|
<span class="pf-v6-c-button__icon">
|
|
5259
|
-
<
|
|
5967
|
+
<svg
|
|
5968
|
+
class="pf-v6-svg"
|
|
5969
|
+
viewBox="0 0 256 512"
|
|
5970
|
+
fill="currentColor"
|
|
5971
|
+
aria-hidden="true"
|
|
5972
|
+
role="img"
|
|
5973
|
+
width="1em"
|
|
5974
|
+
height="1em"
|
|
5975
|
+
>
|
|
5976
|
+
<path
|
|
5977
|
+
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"
|
|
5978
|
+
/>
|
|
5979
|
+
</svg>
|
|
5260
5980
|
</span>
|
|
5261
5981
|
</button>
|
|
5262
5982
|
</div>
|
|
@@ -5279,7 +5999,19 @@ As sub navigation:
|
|
|
5279
5999
|
disabled
|
|
5280
6000
|
>
|
|
5281
6001
|
<span class="pf-v6-c-button__icon">
|
|
5282
|
-
<
|
|
6002
|
+
<svg
|
|
6003
|
+
class="pf-v6-svg"
|
|
6004
|
+
viewBox="0 0 256 512"
|
|
6005
|
+
fill="currentColor"
|
|
6006
|
+
aria-hidden="true"
|
|
6007
|
+
role="img"
|
|
6008
|
+
width="1em"
|
|
6009
|
+
height="1em"
|
|
6010
|
+
>
|
|
6011
|
+
<path
|
|
6012
|
+
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"
|
|
6013
|
+
/>
|
|
6014
|
+
</svg>
|
|
5283
6015
|
</span>
|
|
5284
6016
|
</button>
|
|
5285
6017
|
</div>
|
|
@@ -5481,7 +6213,19 @@ As sub navigation:
|
|
|
5481
6213
|
aria-label="Scroll right"
|
|
5482
6214
|
>
|
|
5483
6215
|
<span class="pf-v6-c-button__icon">
|
|
5484
|
-
<
|
|
6216
|
+
<svg
|
|
6217
|
+
class="pf-v6-svg"
|
|
6218
|
+
viewBox="0 0 256 512"
|
|
6219
|
+
fill="currentColor"
|
|
6220
|
+
aria-hidden="true"
|
|
6221
|
+
role="img"
|
|
6222
|
+
width="1em"
|
|
6223
|
+
height="1em"
|
|
6224
|
+
>
|
|
6225
|
+
<path
|
|
6226
|
+
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"
|
|
6227
|
+
/>
|
|
6228
|
+
</svg>
|
|
5485
6229
|
</span>
|
|
5486
6230
|
</button>
|
|
5487
6231
|
</div>
|
|
@@ -5504,7 +6248,19 @@ As sub navigation:
|
|
|
5504
6248
|
disabled
|
|
5505
6249
|
>
|
|
5506
6250
|
<span class="pf-v6-c-button__icon">
|
|
5507
|
-
<
|
|
6251
|
+
<svg
|
|
6252
|
+
class="pf-v6-svg"
|
|
6253
|
+
viewBox="0 0 256 512"
|
|
6254
|
+
fill="currentColor"
|
|
6255
|
+
aria-hidden="true"
|
|
6256
|
+
role="img"
|
|
6257
|
+
width="1em"
|
|
6258
|
+
height="1em"
|
|
6259
|
+
>
|
|
6260
|
+
<path
|
|
6261
|
+
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"
|
|
6262
|
+
/>
|
|
6263
|
+
</svg>
|
|
5508
6264
|
</span>
|
|
5509
6265
|
</button>
|
|
5510
6266
|
</div>
|
|
@@ -5706,7 +6462,19 @@ As sub navigation:
|
|
|
5706
6462
|
aria-label="Scroll right"
|
|
5707
6463
|
>
|
|
5708
6464
|
<span class="pf-v6-c-button__icon">
|
|
5709
|
-
<
|
|
6465
|
+
<svg
|
|
6466
|
+
class="pf-v6-svg"
|
|
6467
|
+
viewBox="0 0 256 512"
|
|
6468
|
+
fill="currentColor"
|
|
6469
|
+
aria-hidden="true"
|
|
6470
|
+
role="img"
|
|
6471
|
+
width="1em"
|
|
6472
|
+
height="1em"
|
|
6473
|
+
>
|
|
6474
|
+
<path
|
|
6475
|
+
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"
|
|
6476
|
+
/>
|
|
6477
|
+
</svg>
|
|
5710
6478
|
</span>
|
|
5711
6479
|
</button>
|
|
5712
6480
|
</div>
|
|
@@ -5729,7 +6497,19 @@ As sub navigation:
|
|
|
5729
6497
|
disabled
|
|
5730
6498
|
>
|
|
5731
6499
|
<span class="pf-v6-c-button__icon">
|
|
5732
|
-
<
|
|
6500
|
+
<svg
|
|
6501
|
+
class="pf-v6-svg"
|
|
6502
|
+
viewBox="0 0 256 512"
|
|
6503
|
+
fill="currentColor"
|
|
6504
|
+
aria-hidden="true"
|
|
6505
|
+
role="img"
|
|
6506
|
+
width="1em"
|
|
6507
|
+
height="1em"
|
|
6508
|
+
>
|
|
6509
|
+
<path
|
|
6510
|
+
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"
|
|
6511
|
+
/>
|
|
6512
|
+
</svg>
|
|
5733
6513
|
</span>
|
|
5734
6514
|
</button>
|
|
5735
6515
|
</div>
|
|
@@ -5952,7 +6732,19 @@ As sub navigation:
|
|
|
5952
6732
|
aria-label="Scroll right"
|
|
5953
6733
|
>
|
|
5954
6734
|
<span class="pf-v6-c-button__icon">
|
|
5955
|
-
<
|
|
6735
|
+
<svg
|
|
6736
|
+
class="pf-v6-svg"
|
|
6737
|
+
viewBox="0 0 256 512"
|
|
6738
|
+
fill="currentColor"
|
|
6739
|
+
aria-hidden="true"
|
|
6740
|
+
role="img"
|
|
6741
|
+
width="1em"
|
|
6742
|
+
height="1em"
|
|
6743
|
+
>
|
|
6744
|
+
<path
|
|
6745
|
+
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"
|
|
6746
|
+
/>
|
|
6747
|
+
</svg>
|
|
5956
6748
|
</span>
|
|
5957
6749
|
</button>
|
|
5958
6750
|
</div>
|
|
@@ -5975,7 +6767,19 @@ As sub navigation:
|
|
|
5975
6767
|
disabled
|
|
5976
6768
|
>
|
|
5977
6769
|
<span class="pf-v6-c-button__icon">
|
|
5978
|
-
<
|
|
6770
|
+
<svg
|
|
6771
|
+
class="pf-v6-svg"
|
|
6772
|
+
viewBox="0 0 256 512"
|
|
6773
|
+
fill="currentColor"
|
|
6774
|
+
aria-hidden="true"
|
|
6775
|
+
role="img"
|
|
6776
|
+
width="1em"
|
|
6777
|
+
height="1em"
|
|
6778
|
+
>
|
|
6779
|
+
<path
|
|
6780
|
+
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"
|
|
6781
|
+
/>
|
|
6782
|
+
</svg>
|
|
5979
6783
|
</span>
|
|
5980
6784
|
</button>
|
|
5981
6785
|
</div>
|
|
@@ -6066,7 +6870,19 @@ As sub navigation:
|
|
|
6066
6870
|
disabled
|
|
6067
6871
|
>
|
|
6068
6872
|
<span class="pf-v6-c-button__icon">
|
|
6069
|
-
<
|
|
6873
|
+
<svg
|
|
6874
|
+
class="pf-v6-svg"
|
|
6875
|
+
viewBox="0 0 256 512"
|
|
6876
|
+
fill="currentColor"
|
|
6877
|
+
aria-hidden="true"
|
|
6878
|
+
role="img"
|
|
6879
|
+
width="1em"
|
|
6880
|
+
height="1em"
|
|
6881
|
+
>
|
|
6882
|
+
<path
|
|
6883
|
+
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"
|
|
6884
|
+
/>
|
|
6885
|
+
</svg>
|
|
6070
6886
|
</span>
|
|
6071
6887
|
</button>
|
|
6072
6888
|
</div>
|
|
@@ -6089,7 +6905,19 @@ As sub navigation:
|
|
|
6089
6905
|
disabled
|
|
6090
6906
|
>
|
|
6091
6907
|
<span class="pf-v6-c-button__icon">
|
|
6092
|
-
<
|
|
6908
|
+
<svg
|
|
6909
|
+
class="pf-v6-svg"
|
|
6910
|
+
viewBox="0 0 256 512"
|
|
6911
|
+
fill="currentColor"
|
|
6912
|
+
aria-hidden="true"
|
|
6913
|
+
role="img"
|
|
6914
|
+
width="1em"
|
|
6915
|
+
height="1em"
|
|
6916
|
+
>
|
|
6917
|
+
<path
|
|
6918
|
+
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"
|
|
6919
|
+
/>
|
|
6920
|
+
</svg>
|
|
6093
6921
|
</span>
|
|
6094
6922
|
</button>
|
|
6095
6923
|
</div>
|
|
@@ -6291,7 +7119,19 @@ As sub navigation:
|
|
|
6291
7119
|
aria-label="Scroll right"
|
|
6292
7120
|
>
|
|
6293
7121
|
<span class="pf-v6-c-button__icon">
|
|
6294
|
-
<
|
|
7122
|
+
<svg
|
|
7123
|
+
class="pf-v6-svg"
|
|
7124
|
+
viewBox="0 0 256 512"
|
|
7125
|
+
fill="currentColor"
|
|
7126
|
+
aria-hidden="true"
|
|
7127
|
+
role="img"
|
|
7128
|
+
width="1em"
|
|
7129
|
+
height="1em"
|
|
7130
|
+
>
|
|
7131
|
+
<path
|
|
7132
|
+
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"
|
|
7133
|
+
/>
|
|
7134
|
+
</svg>
|
|
6295
7135
|
</span>
|
|
6296
7136
|
</button>
|
|
6297
7137
|
</div>
|
|
@@ -6310,7 +7150,19 @@ As sub navigation:
|
|
|
6310
7150
|
disabled
|
|
6311
7151
|
>
|
|
6312
7152
|
<span class="pf-v6-c-button__icon">
|
|
6313
|
-
<
|
|
7153
|
+
<svg
|
|
7154
|
+
class="pf-v6-svg"
|
|
7155
|
+
viewBox="0 0 256 512"
|
|
7156
|
+
fill="currentColor"
|
|
7157
|
+
aria-hidden="true"
|
|
7158
|
+
role="img"
|
|
7159
|
+
width="1em"
|
|
7160
|
+
height="1em"
|
|
7161
|
+
>
|
|
7162
|
+
<path
|
|
7163
|
+
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"
|
|
7164
|
+
/>
|
|
7165
|
+
</svg>
|
|
6314
7166
|
</span>
|
|
6315
7167
|
</button>
|
|
6316
7168
|
</div>
|
|
@@ -6512,7 +7364,19 @@ As sub navigation:
|
|
|
6512
7364
|
aria-label="Scroll right"
|
|
6513
7365
|
>
|
|
6514
7366
|
<span class="pf-v6-c-button__icon">
|
|
6515
|
-
<
|
|
7367
|
+
<svg
|
|
7368
|
+
class="pf-v6-svg"
|
|
7369
|
+
viewBox="0 0 256 512"
|
|
7370
|
+
fill="currentColor"
|
|
7371
|
+
aria-hidden="true"
|
|
7372
|
+
role="img"
|
|
7373
|
+
width="1em"
|
|
7374
|
+
height="1em"
|
|
7375
|
+
>
|
|
7376
|
+
<path
|
|
7377
|
+
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"
|
|
7378
|
+
/>
|
|
7379
|
+
</svg>
|
|
6516
7380
|
</span>
|
|
6517
7381
|
</button>
|
|
6518
7382
|
</div>
|
|
@@ -6537,7 +7401,19 @@ As sub navigation:
|
|
|
6537
7401
|
disabled
|
|
6538
7402
|
>
|
|
6539
7403
|
<span class="pf-v6-c-button__icon">
|
|
6540
|
-
<
|
|
7404
|
+
<svg
|
|
7405
|
+
class="pf-v6-svg"
|
|
7406
|
+
viewBox="0 0 256 512"
|
|
7407
|
+
fill="currentColor"
|
|
7408
|
+
aria-hidden="true"
|
|
7409
|
+
role="img"
|
|
7410
|
+
width="1em"
|
|
7411
|
+
height="1em"
|
|
7412
|
+
>
|
|
7413
|
+
<path
|
|
7414
|
+
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"
|
|
7415
|
+
/>
|
|
7416
|
+
</svg>
|
|
6541
7417
|
</span>
|
|
6542
7418
|
</button>
|
|
6543
7419
|
</div>
|
|
@@ -6926,7 +7802,19 @@ As sub navigation:
|
|
|
6926
7802
|
aria-label="Scroll right"
|
|
6927
7803
|
>
|
|
6928
7804
|
<span class="pf-v6-c-button__icon">
|
|
6929
|
-
<
|
|
7805
|
+
<svg
|
|
7806
|
+
class="pf-v6-svg"
|
|
7807
|
+
viewBox="0 0 256 512"
|
|
7808
|
+
fill="currentColor"
|
|
7809
|
+
aria-hidden="true"
|
|
7810
|
+
role="img"
|
|
7811
|
+
width="1em"
|
|
7812
|
+
height="1em"
|
|
7813
|
+
>
|
|
7814
|
+
<path
|
|
7815
|
+
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"
|
|
7816
|
+
/>
|
|
7817
|
+
</svg>
|
|
6930
7818
|
</span>
|
|
6931
7819
|
</button>
|
|
6932
7820
|
</div>
|
|
@@ -6949,7 +7837,19 @@ As sub navigation:
|
|
|
6949
7837
|
disabled
|
|
6950
7838
|
>
|
|
6951
7839
|
<span class="pf-v6-c-button__icon">
|
|
6952
|
-
<
|
|
7840
|
+
<svg
|
|
7841
|
+
class="pf-v6-svg"
|
|
7842
|
+
viewBox="0 0 256 512"
|
|
7843
|
+
fill="currentColor"
|
|
7844
|
+
aria-hidden="true"
|
|
7845
|
+
role="img"
|
|
7846
|
+
width="1em"
|
|
7847
|
+
height="1em"
|
|
7848
|
+
>
|
|
7849
|
+
<path
|
|
7850
|
+
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"
|
|
7851
|
+
/>
|
|
7852
|
+
</svg>
|
|
6953
7853
|
</span>
|
|
6954
7854
|
</button>
|
|
6955
7855
|
</div>
|
|
@@ -7338,7 +8238,19 @@ As sub navigation:
|
|
|
7338
8238
|
aria-label="Scroll right"
|
|
7339
8239
|
>
|
|
7340
8240
|
<span class="pf-v6-c-button__icon">
|
|
7341
|
-
<
|
|
8241
|
+
<svg
|
|
8242
|
+
class="pf-v6-svg"
|
|
8243
|
+
viewBox="0 0 256 512"
|
|
8244
|
+
fill="currentColor"
|
|
8245
|
+
aria-hidden="true"
|
|
8246
|
+
role="img"
|
|
8247
|
+
width="1em"
|
|
8248
|
+
height="1em"
|
|
8249
|
+
>
|
|
8250
|
+
<path
|
|
8251
|
+
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"
|
|
8252
|
+
/>
|
|
8253
|
+
</svg>
|
|
7342
8254
|
</span>
|
|
7343
8255
|
</button>
|
|
7344
8256
|
</div>
|
|
@@ -7361,7 +8273,19 @@ As sub navigation:
|
|
|
7361
8273
|
disabled
|
|
7362
8274
|
>
|
|
7363
8275
|
<span class="pf-v6-c-button__icon">
|
|
7364
|
-
<
|
|
8276
|
+
<svg
|
|
8277
|
+
class="pf-v6-svg"
|
|
8278
|
+
viewBox="0 0 256 512"
|
|
8279
|
+
fill="currentColor"
|
|
8280
|
+
aria-hidden="true"
|
|
8281
|
+
role="img"
|
|
8282
|
+
width="1em"
|
|
8283
|
+
height="1em"
|
|
8284
|
+
>
|
|
8285
|
+
<path
|
|
8286
|
+
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"
|
|
8287
|
+
/>
|
|
8288
|
+
</svg>
|
|
7365
8289
|
</span>
|
|
7366
8290
|
</button>
|
|
7367
8291
|
</div>
|
|
@@ -7750,7 +8674,19 @@ As sub navigation:
|
|
|
7750
8674
|
aria-label="Scroll right"
|
|
7751
8675
|
>
|
|
7752
8676
|
<span class="pf-v6-c-button__icon">
|
|
7753
|
-
<
|
|
8677
|
+
<svg
|
|
8678
|
+
class="pf-v6-svg"
|
|
8679
|
+
viewBox="0 0 256 512"
|
|
8680
|
+
fill="currentColor"
|
|
8681
|
+
aria-hidden="true"
|
|
8682
|
+
role="img"
|
|
8683
|
+
width="1em"
|
|
8684
|
+
height="1em"
|
|
8685
|
+
>
|
|
8686
|
+
<path
|
|
8687
|
+
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"
|
|
8688
|
+
/>
|
|
8689
|
+
</svg>
|
|
7754
8690
|
</span>
|
|
7755
8691
|
</button>
|
|
7756
8692
|
</div>
|
|
@@ -7773,7 +8709,19 @@ As sub navigation:
|
|
|
7773
8709
|
disabled
|
|
7774
8710
|
>
|
|
7775
8711
|
<span class="pf-v6-c-button__icon">
|
|
7776
|
-
<
|
|
8712
|
+
<svg
|
|
8713
|
+
class="pf-v6-svg"
|
|
8714
|
+
viewBox="0 0 256 512"
|
|
8715
|
+
fill="currentColor"
|
|
8716
|
+
aria-hidden="true"
|
|
8717
|
+
role="img"
|
|
8718
|
+
width="1em"
|
|
8719
|
+
height="1em"
|
|
8720
|
+
>
|
|
8721
|
+
<path
|
|
8722
|
+
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"
|
|
8723
|
+
/>
|
|
8724
|
+
</svg>
|
|
7777
8725
|
</span>
|
|
7778
8726
|
</button>
|
|
7779
8727
|
</div>
|
|
@@ -8189,7 +9137,19 @@ As sub navigation:
|
|
|
8189
9137
|
aria-label="Scroll right"
|
|
8190
9138
|
>
|
|
8191
9139
|
<span class="pf-v6-c-button__icon">
|
|
8192
|
-
<
|
|
9140
|
+
<svg
|
|
9141
|
+
class="pf-v6-svg"
|
|
9142
|
+
viewBox="0 0 256 512"
|
|
9143
|
+
fill="currentColor"
|
|
9144
|
+
aria-hidden="true"
|
|
9145
|
+
role="img"
|
|
9146
|
+
width="1em"
|
|
9147
|
+
height="1em"
|
|
9148
|
+
>
|
|
9149
|
+
<path
|
|
9150
|
+
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"
|
|
9151
|
+
/>
|
|
9152
|
+
</svg>
|
|
8193
9153
|
</span>
|
|
8194
9154
|
</button>
|
|
8195
9155
|
</div>
|
|
@@ -8212,7 +9172,19 @@ As sub navigation:
|
|
|
8212
9172
|
disabled
|
|
8213
9173
|
>
|
|
8214
9174
|
<span class="pf-v6-c-button__icon">
|
|
8215
|
-
<
|
|
9175
|
+
<svg
|
|
9176
|
+
class="pf-v6-svg"
|
|
9177
|
+
viewBox="0 0 256 512"
|
|
9178
|
+
fill="currentColor"
|
|
9179
|
+
aria-hidden="true"
|
|
9180
|
+
role="img"
|
|
9181
|
+
width="1em"
|
|
9182
|
+
height="1em"
|
|
9183
|
+
>
|
|
9184
|
+
<path
|
|
9185
|
+
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"
|
|
9186
|
+
/>
|
|
9187
|
+
</svg>
|
|
8216
9188
|
</span>
|
|
8217
9189
|
</button>
|
|
8218
9190
|
</div>
|
|
@@ -8345,7 +9317,19 @@ As sub navigation:
|
|
|
8345
9317
|
disabled
|
|
8346
9318
|
>
|
|
8347
9319
|
<span class="pf-v6-c-button__icon">
|
|
8348
|
-
<
|
|
9320
|
+
<svg
|
|
9321
|
+
class="pf-v6-svg"
|
|
9322
|
+
viewBox="0 0 256 512"
|
|
9323
|
+
fill="currentColor"
|
|
9324
|
+
aria-hidden="true"
|
|
9325
|
+
role="img"
|
|
9326
|
+
width="1em"
|
|
9327
|
+
height="1em"
|
|
9328
|
+
>
|
|
9329
|
+
<path
|
|
9330
|
+
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"
|
|
9331
|
+
/>
|
|
9332
|
+
</svg>
|
|
8349
9333
|
</span>
|
|
8350
9334
|
</button>
|
|
8351
9335
|
</div>
|
|
@@ -8368,7 +9352,19 @@ As sub navigation:
|
|
|
8368
9352
|
disabled
|
|
8369
9353
|
>
|
|
8370
9354
|
<span class="pf-v6-c-button__icon">
|
|
8371
|
-
<
|
|
9355
|
+
<svg
|
|
9356
|
+
class="pf-v6-svg"
|
|
9357
|
+
viewBox="0 0 256 512"
|
|
9358
|
+
fill="currentColor"
|
|
9359
|
+
aria-hidden="true"
|
|
9360
|
+
role="img"
|
|
9361
|
+
width="1em"
|
|
9362
|
+
height="1em"
|
|
9363
|
+
>
|
|
9364
|
+
<path
|
|
9365
|
+
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"
|
|
9366
|
+
/>
|
|
9367
|
+
</svg>
|
|
8372
9368
|
</span>
|
|
8373
9369
|
</button>
|
|
8374
9370
|
</div>
|
|
@@ -8757,7 +9753,19 @@ As sub navigation:
|
|
|
8757
9753
|
aria-label="Scroll right"
|
|
8758
9754
|
>
|
|
8759
9755
|
<span class="pf-v6-c-button__icon">
|
|
8760
|
-
<
|
|
9756
|
+
<svg
|
|
9757
|
+
class="pf-v6-svg"
|
|
9758
|
+
viewBox="0 0 256 512"
|
|
9759
|
+
fill="currentColor"
|
|
9760
|
+
aria-hidden="true"
|
|
9761
|
+
role="img"
|
|
9762
|
+
width="1em"
|
|
9763
|
+
height="1em"
|
|
9764
|
+
>
|
|
9765
|
+
<path
|
|
9766
|
+
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"
|
|
9767
|
+
/>
|
|
9768
|
+
</svg>
|
|
8761
9769
|
</span>
|
|
8762
9770
|
</button>
|
|
8763
9771
|
</div>
|
|
@@ -8776,7 +9784,19 @@ As sub navigation:
|
|
|
8776
9784
|
disabled
|
|
8777
9785
|
>
|
|
8778
9786
|
<span class="pf-v6-c-button__icon">
|
|
8779
|
-
<
|
|
9787
|
+
<svg
|
|
9788
|
+
class="pf-v6-svg"
|
|
9789
|
+
viewBox="0 0 256 512"
|
|
9790
|
+
fill="currentColor"
|
|
9791
|
+
aria-hidden="true"
|
|
9792
|
+
role="img"
|
|
9793
|
+
width="1em"
|
|
9794
|
+
height="1em"
|
|
9795
|
+
>
|
|
9796
|
+
<path
|
|
9797
|
+
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"
|
|
9798
|
+
/>
|
|
9799
|
+
</svg>
|
|
8780
9800
|
</span>
|
|
8781
9801
|
</button>
|
|
8782
9802
|
</div>
|
|
@@ -9165,7 +10185,19 @@ As sub navigation:
|
|
|
9165
10185
|
aria-label="Scroll right"
|
|
9166
10186
|
>
|
|
9167
10187
|
<span class="pf-v6-c-button__icon">
|
|
9168
|
-
<
|
|
10188
|
+
<svg
|
|
10189
|
+
class="pf-v6-svg"
|
|
10190
|
+
viewBox="0 0 256 512"
|
|
10191
|
+
fill="currentColor"
|
|
10192
|
+
aria-hidden="true"
|
|
10193
|
+
role="img"
|
|
10194
|
+
width="1em"
|
|
10195
|
+
height="1em"
|
|
10196
|
+
>
|
|
10197
|
+
<path
|
|
10198
|
+
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"
|
|
10199
|
+
/>
|
|
10200
|
+
</svg>
|
|
9169
10201
|
</span>
|
|
9170
10202
|
</button>
|
|
9171
10203
|
</div>
|
|
@@ -9192,7 +10224,19 @@ As sub navigation:
|
|
|
9192
10224
|
disabled
|
|
9193
10225
|
>
|
|
9194
10226
|
<span class="pf-v6-c-button__icon">
|
|
9195
|
-
<
|
|
10227
|
+
<svg
|
|
10228
|
+
class="pf-v6-svg"
|
|
10229
|
+
viewBox="0 0 256 512"
|
|
10230
|
+
fill="currentColor"
|
|
10231
|
+
aria-hidden="true"
|
|
10232
|
+
role="img"
|
|
10233
|
+
width="1em"
|
|
10234
|
+
height="1em"
|
|
10235
|
+
>
|
|
10236
|
+
<path
|
|
10237
|
+
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"
|
|
10238
|
+
/>
|
|
10239
|
+
</svg>
|
|
9196
10240
|
</span>
|
|
9197
10241
|
</button>
|
|
9198
10242
|
</div>
|
|
@@ -9355,7 +10399,19 @@ As sub navigation:
|
|
|
9355
10399
|
aria-label="Scroll right"
|
|
9356
10400
|
>
|
|
9357
10401
|
<span class="pf-v6-c-button__icon">
|
|
9358
|
-
<
|
|
10402
|
+
<svg
|
|
10403
|
+
class="pf-v6-svg"
|
|
10404
|
+
viewBox="0 0 256 512"
|
|
10405
|
+
fill="currentColor"
|
|
10406
|
+
aria-hidden="true"
|
|
10407
|
+
role="img"
|
|
10408
|
+
width="1em"
|
|
10409
|
+
height="1em"
|
|
10410
|
+
>
|
|
10411
|
+
<path
|
|
10412
|
+
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"
|
|
10413
|
+
/>
|
|
10414
|
+
</svg>
|
|
9359
10415
|
</span>
|
|
9360
10416
|
</button>
|
|
9361
10417
|
</div>
|
|
@@ -9366,7 +10422,19 @@ As sub navigation:
|
|
|
9366
10422
|
aria-label="Add tab"
|
|
9367
10423
|
>
|
|
9368
10424
|
<span class="pf-v6-c-button__icon">
|
|
9369
|
-
<
|
|
10425
|
+
<svg
|
|
10426
|
+
class="pf-v6-svg"
|
|
10427
|
+
viewBox="0 0 448 512"
|
|
10428
|
+
fill="currentColor"
|
|
10429
|
+
aria-hidden="true"
|
|
10430
|
+
role="img"
|
|
10431
|
+
width="1em"
|
|
10432
|
+
height="1em"
|
|
10433
|
+
>
|
|
10434
|
+
<path
|
|
10435
|
+
d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"
|
|
10436
|
+
/>
|
|
10437
|
+
</svg>
|
|
9370
10438
|
</span>
|
|
9371
10439
|
</button>
|
|
9372
10440
|
</span>
|
|
@@ -9385,7 +10453,19 @@ As sub navigation:
|
|
|
9385
10453
|
disabled
|
|
9386
10454
|
>
|
|
9387
10455
|
<span class="pf-v6-c-button__icon">
|
|
9388
|
-
<
|
|
10456
|
+
<svg
|
|
10457
|
+
class="pf-v6-svg"
|
|
10458
|
+
viewBox="0 0 256 512"
|
|
10459
|
+
fill="currentColor"
|
|
10460
|
+
aria-hidden="true"
|
|
10461
|
+
role="img"
|
|
10462
|
+
width="1em"
|
|
10463
|
+
height="1em"
|
|
10464
|
+
>
|
|
10465
|
+
<path
|
|
10466
|
+
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"
|
|
10467
|
+
/>
|
|
10468
|
+
</svg>
|
|
9389
10469
|
</span>
|
|
9390
10470
|
</button>
|
|
9391
10471
|
</div>
|
|
@@ -9548,7 +10628,19 @@ As sub navigation:
|
|
|
9548
10628
|
aria-label="Scroll right"
|
|
9549
10629
|
>
|
|
9550
10630
|
<span class="pf-v6-c-button__icon">
|
|
9551
|
-
<
|
|
10631
|
+
<svg
|
|
10632
|
+
class="pf-v6-svg"
|
|
10633
|
+
viewBox="0 0 256 512"
|
|
10634
|
+
fill="currentColor"
|
|
10635
|
+
aria-hidden="true"
|
|
10636
|
+
role="img"
|
|
10637
|
+
width="1em"
|
|
10638
|
+
height="1em"
|
|
10639
|
+
>
|
|
10640
|
+
<path
|
|
10641
|
+
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"
|
|
10642
|
+
/>
|
|
10643
|
+
</svg>
|
|
9552
10644
|
</span>
|
|
9553
10645
|
</button>
|
|
9554
10646
|
</div>
|
|
@@ -9559,7 +10651,19 @@ As sub navigation:
|
|
|
9559
10651
|
aria-label="Add tab"
|
|
9560
10652
|
>
|
|
9561
10653
|
<span class="pf-v6-c-button__icon">
|
|
9562
|
-
<
|
|
10654
|
+
<svg
|
|
10655
|
+
class="pf-v6-svg"
|
|
10656
|
+
viewBox="0 0 448 512"
|
|
10657
|
+
fill="currentColor"
|
|
10658
|
+
aria-hidden="true"
|
|
10659
|
+
role="img"
|
|
10660
|
+
width="1em"
|
|
10661
|
+
height="1em"
|
|
10662
|
+
>
|
|
10663
|
+
<path
|
|
10664
|
+
d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"
|
|
10665
|
+
/>
|
|
10666
|
+
</svg>
|
|
9563
10667
|
</span>
|
|
9564
10668
|
</button>
|
|
9565
10669
|
</span>
|
|
@@ -9582,7 +10686,19 @@ As sub navigation:
|
|
|
9582
10686
|
disabled
|
|
9583
10687
|
>
|
|
9584
10688
|
<span class="pf-v6-c-button__icon">
|
|
9585
|
-
<
|
|
10689
|
+
<svg
|
|
10690
|
+
class="pf-v6-svg"
|
|
10691
|
+
viewBox="0 0 256 512"
|
|
10692
|
+
fill="currentColor"
|
|
10693
|
+
aria-hidden="true"
|
|
10694
|
+
role="img"
|
|
10695
|
+
width="1em"
|
|
10696
|
+
height="1em"
|
|
10697
|
+
>
|
|
10698
|
+
<path
|
|
10699
|
+
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"
|
|
10700
|
+
/>
|
|
10701
|
+
</svg>
|
|
9586
10702
|
</span>
|
|
9587
10703
|
</button>
|
|
9588
10704
|
</div>
|
|
@@ -9745,7 +10861,19 @@ As sub navigation:
|
|
|
9745
10861
|
aria-label="Scroll right"
|
|
9746
10862
|
>
|
|
9747
10863
|
<span class="pf-v6-c-button__icon">
|
|
9748
|
-
<
|
|
10864
|
+
<svg
|
|
10865
|
+
class="pf-v6-svg"
|
|
10866
|
+
viewBox="0 0 256 512"
|
|
10867
|
+
fill="currentColor"
|
|
10868
|
+
aria-hidden="true"
|
|
10869
|
+
role="img"
|
|
10870
|
+
width="1em"
|
|
10871
|
+
height="1em"
|
|
10872
|
+
>
|
|
10873
|
+
<path
|
|
10874
|
+
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"
|
|
10875
|
+
/>
|
|
10876
|
+
</svg>
|
|
9749
10877
|
</span>
|
|
9750
10878
|
</button>
|
|
9751
10879
|
</div>
|
|
@@ -9756,7 +10884,19 @@ As sub navigation:
|
|
|
9756
10884
|
aria-label="Add tab"
|
|
9757
10885
|
>
|
|
9758
10886
|
<span class="pf-v6-c-button__icon">
|
|
9759
|
-
<
|
|
10887
|
+
<svg
|
|
10888
|
+
class="pf-v6-svg"
|
|
10889
|
+
viewBox="0 0 448 512"
|
|
10890
|
+
fill="currentColor"
|
|
10891
|
+
aria-hidden="true"
|
|
10892
|
+
role="img"
|
|
10893
|
+
width="1em"
|
|
10894
|
+
height="1em"
|
|
10895
|
+
>
|
|
10896
|
+
<path
|
|
10897
|
+
d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"
|
|
10898
|
+
/>
|
|
10899
|
+
</svg>
|
|
9760
10900
|
</span>
|
|
9761
10901
|
</button>
|
|
9762
10902
|
</span>
|
|
@@ -9779,7 +10919,19 @@ As sub navigation:
|
|
|
9779
10919
|
disabled
|
|
9780
10920
|
>
|
|
9781
10921
|
<span class="pf-v6-c-button__icon">
|
|
9782
|
-
<
|
|
10922
|
+
<svg
|
|
10923
|
+
class="pf-v6-svg"
|
|
10924
|
+
viewBox="0 0 256 512"
|
|
10925
|
+
fill="currentColor"
|
|
10926
|
+
aria-hidden="true"
|
|
10927
|
+
role="img"
|
|
10928
|
+
width="1em"
|
|
10929
|
+
height="1em"
|
|
10930
|
+
>
|
|
10931
|
+
<path
|
|
10932
|
+
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"
|
|
10933
|
+
/>
|
|
10934
|
+
</svg>
|
|
9783
10935
|
</span>
|
|
9784
10936
|
</button>
|
|
9785
10937
|
</div>
|
|
@@ -9942,7 +11094,19 @@ As sub navigation:
|
|
|
9942
11094
|
aria-label="Scroll right"
|
|
9943
11095
|
>
|
|
9944
11096
|
<span class="pf-v6-c-button__icon">
|
|
9945
|
-
<
|
|
11097
|
+
<svg
|
|
11098
|
+
class="pf-v6-svg"
|
|
11099
|
+
viewBox="0 0 256 512"
|
|
11100
|
+
fill="currentColor"
|
|
11101
|
+
aria-hidden="true"
|
|
11102
|
+
role="img"
|
|
11103
|
+
width="1em"
|
|
11104
|
+
height="1em"
|
|
11105
|
+
>
|
|
11106
|
+
<path
|
|
11107
|
+
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"
|
|
11108
|
+
/>
|
|
11109
|
+
</svg>
|
|
9946
11110
|
</span>
|
|
9947
11111
|
</button>
|
|
9948
11112
|
</div>
|
|
@@ -9953,7 +11117,19 @@ As sub navigation:
|
|
|
9953
11117
|
aria-label="Add tab"
|
|
9954
11118
|
>
|
|
9955
11119
|
<span class="pf-v6-c-button__icon">
|
|
9956
|
-
<
|
|
11120
|
+
<svg
|
|
11121
|
+
class="pf-v6-svg"
|
|
11122
|
+
viewBox="0 0 448 512"
|
|
11123
|
+
fill="currentColor"
|
|
11124
|
+
aria-hidden="true"
|
|
11125
|
+
role="img"
|
|
11126
|
+
width="1em"
|
|
11127
|
+
height="1em"
|
|
11128
|
+
>
|
|
11129
|
+
<path
|
|
11130
|
+
d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"
|
|
11131
|
+
/>
|
|
11132
|
+
</svg>
|
|
9957
11133
|
</span>
|
|
9958
11134
|
</button>
|
|
9959
11135
|
</span>
|
|
@@ -9986,7 +11162,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
9986
11162
|
disabled
|
|
9987
11163
|
>
|
|
9988
11164
|
<span class="pf-v6-c-button__icon">
|
|
9989
|
-
<
|
|
11165
|
+
<svg
|
|
11166
|
+
class="pf-v6-svg"
|
|
11167
|
+
viewBox="0 0 256 512"
|
|
11168
|
+
fill="currentColor"
|
|
11169
|
+
aria-hidden="true"
|
|
11170
|
+
role="img"
|
|
11171
|
+
width="1em"
|
|
11172
|
+
height="1em"
|
|
11173
|
+
>
|
|
11174
|
+
<path
|
|
11175
|
+
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"
|
|
11176
|
+
/>
|
|
11177
|
+
</svg>
|
|
9990
11178
|
</span>
|
|
9991
11179
|
</button>
|
|
9992
11180
|
</div>
|
|
@@ -10242,7 +11430,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
10242
11430
|
disabled
|
|
10243
11431
|
>
|
|
10244
11432
|
<span class="pf-v6-c-button__icon">
|
|
10245
|
-
<
|
|
11433
|
+
<svg
|
|
11434
|
+
class="pf-v6-svg"
|
|
11435
|
+
viewBox="0 0 256 512"
|
|
11436
|
+
fill="currentColor"
|
|
11437
|
+
aria-hidden="true"
|
|
11438
|
+
role="img"
|
|
11439
|
+
width="1em"
|
|
11440
|
+
height="1em"
|
|
11441
|
+
>
|
|
11442
|
+
<path
|
|
11443
|
+
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"
|
|
11444
|
+
/>
|
|
11445
|
+
</svg>
|
|
10246
11446
|
</span>
|
|
10247
11447
|
</button>
|
|
10248
11448
|
</div>
|
|
@@ -10267,7 +11467,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
10267
11467
|
aria-label="Scroll left"
|
|
10268
11468
|
>
|
|
10269
11469
|
<span class="pf-v6-c-button__icon">
|
|
10270
|
-
<
|
|
11470
|
+
<svg
|
|
11471
|
+
class="pf-v6-svg"
|
|
11472
|
+
viewBox="0 0 256 512"
|
|
11473
|
+
fill="currentColor"
|
|
11474
|
+
aria-hidden="true"
|
|
11475
|
+
role="img"
|
|
11476
|
+
width="1em"
|
|
11477
|
+
height="1em"
|
|
11478
|
+
>
|
|
11479
|
+
<path
|
|
11480
|
+
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"
|
|
11481
|
+
/>
|
|
11482
|
+
</svg>
|
|
10271
11483
|
</span>
|
|
10272
11484
|
</button>
|
|
10273
11485
|
</div>
|
|
@@ -10520,7 +11732,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
10520
11732
|
aria-label="Scroll right"
|
|
10521
11733
|
>
|
|
10522
11734
|
<span class="pf-v6-c-button__icon">
|
|
10523
|
-
<
|
|
11735
|
+
<svg
|
|
11736
|
+
class="pf-v6-svg"
|
|
11737
|
+
viewBox="0 0 256 512"
|
|
11738
|
+
fill="currentColor"
|
|
11739
|
+
aria-hidden="true"
|
|
11740
|
+
role="img"
|
|
11741
|
+
width="1em"
|
|
11742
|
+
height="1em"
|
|
11743
|
+
>
|
|
11744
|
+
<path
|
|
11745
|
+
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"
|
|
11746
|
+
/>
|
|
11747
|
+
</svg>
|
|
10524
11748
|
</span>
|
|
10525
11749
|
</button>
|
|
10526
11750
|
</div>
|
|
@@ -10540,7 +11764,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
10540
11764
|
aria-label="Scroll left"
|
|
10541
11765
|
>
|
|
10542
11766
|
<span class="pf-v6-c-button__icon">
|
|
10543
|
-
<
|
|
11767
|
+
<svg
|
|
11768
|
+
class="pf-v6-svg"
|
|
11769
|
+
viewBox="0 0 256 512"
|
|
11770
|
+
fill="currentColor"
|
|
11771
|
+
aria-hidden="true"
|
|
11772
|
+
role="img"
|
|
11773
|
+
width="1em"
|
|
11774
|
+
height="1em"
|
|
11775
|
+
>
|
|
11776
|
+
<path
|
|
11777
|
+
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"
|
|
11778
|
+
/>
|
|
11779
|
+
</svg>
|
|
10544
11780
|
</span>
|
|
10545
11781
|
</button>
|
|
10546
11782
|
</div>
|
|
@@ -10793,7 +12029,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
10793
12029
|
aria-label="Scroll right"
|
|
10794
12030
|
>
|
|
10795
12031
|
<span class="pf-v6-c-button__icon">
|
|
10796
|
-
<
|
|
12032
|
+
<svg
|
|
12033
|
+
class="pf-v6-svg"
|
|
12034
|
+
viewBox="0 0 256 512"
|
|
12035
|
+
fill="currentColor"
|
|
12036
|
+
aria-hidden="true"
|
|
12037
|
+
role="img"
|
|
12038
|
+
width="1em"
|
|
12039
|
+
height="1em"
|
|
12040
|
+
>
|
|
12041
|
+
<path
|
|
12042
|
+
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"
|
|
12043
|
+
/>
|
|
12044
|
+
</svg>
|
|
10797
12045
|
</span>
|
|
10798
12046
|
</button>
|
|
10799
12047
|
</div>
|
|
@@ -10819,7 +12067,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
10819
12067
|
disabled
|
|
10820
12068
|
>
|
|
10821
12069
|
<span class="pf-v6-c-button__icon">
|
|
10822
|
-
<
|
|
12070
|
+
<svg
|
|
12071
|
+
class="pf-v6-svg"
|
|
12072
|
+
viewBox="0 0 256 512"
|
|
12073
|
+
fill="currentColor"
|
|
12074
|
+
aria-hidden="true"
|
|
12075
|
+
role="img"
|
|
12076
|
+
width="1em"
|
|
12077
|
+
height="1em"
|
|
12078
|
+
>
|
|
12079
|
+
<path
|
|
12080
|
+
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"
|
|
12081
|
+
/>
|
|
12082
|
+
</svg>
|
|
10823
12083
|
</span>
|
|
10824
12084
|
</button>
|
|
10825
12085
|
</div>
|
|
@@ -10955,7 +12215,19 @@ To animate the current tab accent, you must set the following variables on the `
|
|
|
10955
12215
|
disabled
|
|
10956
12216
|
>
|
|
10957
12217
|
<span class="pf-v6-c-button__icon">
|
|
10958
|
-
<
|
|
12218
|
+
<svg
|
|
12219
|
+
class="pf-v6-svg"
|
|
12220
|
+
viewBox="0 0 256 512"
|
|
12221
|
+
fill="currentColor"
|
|
12222
|
+
aria-hidden="true"
|
|
12223
|
+
role="img"
|
|
12224
|
+
width="1em"
|
|
12225
|
+
height="1em"
|
|
12226
|
+
>
|
|
12227
|
+
<path
|
|
12228
|
+
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"
|
|
12229
|
+
/>
|
|
12230
|
+
</svg>
|
|
10959
12231
|
</span>
|
|
10960
12232
|
</button>
|
|
10961
12233
|
</div>
|