@patternfly/patternfly 6.0.0-alpha.31 → 6.0.0-alpha.32
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/Pagination/pagination.css +61 -121
- package/components/Pagination/pagination.scss +48 -127
- package/docs/components/Pagination/examples/Pagination.md +663 -637
- package/docs/components/Toolbar/examples/Toolbar.md +102 -100
- package/docs/demos/CardView/examples/CardView.md +102 -98
- package/docs/demos/DataList/examples/DataList.md +408 -392
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +319 -299
- package/docs/demos/Table/examples/Table.md +1239 -1193
- package/docs/demos/Toolbar/examples/Toolbar.md +408 -392
- package/package.json +1 -1
- package/patternfly-no-globals.css +61 -125
- package/patternfly-theme-dark-unversioned.css +61 -125
- package/patternfly.css +61 -125
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/components/Pagination/themes/dark/pagination.scss +0 -7
|
@@ -411,55 +411,57 @@ wrapperTag: div
|
|
|
411
411
|
|
|
412
412
|
<div class="pf-v5-c-toolbar__item pf-m-pagination">
|
|
413
413
|
<div class="pf-v5-c-pagination pf-m-compact">
|
|
414
|
-
<div class="pf-v5-c-
|
|
415
|
-
<
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
<
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
<
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
<
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
<
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
<
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
<
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
414
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
415
|
+
<div class="pf-v5-c-options-menu">
|
|
416
|
+
<button
|
|
417
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
418
|
+
type="button"
|
|
419
|
+
id="data-list-basic-example-toolbar-top-pagination-toggle"
|
|
420
|
+
aria-haspopup="listbox"
|
|
421
|
+
aria-expanded="false"
|
|
422
|
+
>
|
|
423
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
424
|
+
<b>1 - 10</b> of
|
|
425
|
+
<b>36</b>
|
|
426
|
+
</span>
|
|
427
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
428
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
429
|
+
</div>
|
|
430
|
+
</button>
|
|
431
|
+
<ul
|
|
432
|
+
class="pf-v5-c-options-menu__menu"
|
|
433
|
+
role="menu"
|
|
434
|
+
aria-labelledby="data-list-basic-example-toolbar-top-pagination-toggle"
|
|
435
|
+
hidden
|
|
436
|
+
>
|
|
437
|
+
<li role="none">
|
|
438
|
+
<button
|
|
439
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
440
|
+
type="button"
|
|
441
|
+
role="menuitem"
|
|
442
|
+
>5 per page</button>
|
|
443
|
+
</li>
|
|
444
|
+
<li role="none">
|
|
445
|
+
<button
|
|
446
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
447
|
+
type="button"
|
|
448
|
+
role="menuitem"
|
|
449
|
+
>
|
|
450
|
+
10 per page
|
|
451
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
452
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
453
|
+
</div>
|
|
454
|
+
</button>
|
|
455
|
+
</li>
|
|
456
|
+
<li role="none">
|
|
457
|
+
<button
|
|
458
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
459
|
+
type="button"
|
|
460
|
+
role="menuitem"
|
|
461
|
+
>20 per page</button>
|
|
462
|
+
</li>
|
|
463
|
+
</ul>
|
|
464
|
+
</div>
|
|
463
465
|
</div>
|
|
464
466
|
<nav
|
|
465
467
|
class="pf-v5-c-pagination__nav"
|
|
@@ -827,55 +829,57 @@ wrapperTag: div
|
|
|
827
829
|
</li>
|
|
828
830
|
</ul>
|
|
829
831
|
<div class="pf-v5-c-pagination pf-m-bottom">
|
|
830
|
-
<div class="pf-v5-c-
|
|
831
|
-
<
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
<
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
<
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
<
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
<
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
<
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
<
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
832
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
833
|
+
<div class="pf-v5-c-options-menu pf-m-top">
|
|
834
|
+
<button
|
|
835
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
836
|
+
type="button"
|
|
837
|
+
id="{{page--id}}-pagination-options-menu-bottom-example-toggle"
|
|
838
|
+
aria-haspopup="listbox"
|
|
839
|
+
aria-expanded="false"
|
|
840
|
+
>
|
|
841
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
842
|
+
<b>1 - 10</b> of
|
|
843
|
+
<b>36</b>
|
|
844
|
+
</span>
|
|
845
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
846
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
847
|
+
</div>
|
|
848
|
+
</button>
|
|
849
|
+
<ul
|
|
850
|
+
class="pf-v5-c-options-menu__menu pf-m-top"
|
|
851
|
+
role="menu"
|
|
852
|
+
aria-labelledby="{{page--id}}-pagination-options-menu-bottom-example-toggle"
|
|
853
|
+
hidden
|
|
854
|
+
>
|
|
855
|
+
<li role="none">
|
|
856
|
+
<button
|
|
857
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
858
|
+
type="button"
|
|
859
|
+
role="menuitem"
|
|
860
|
+
>5 per page</button>
|
|
861
|
+
</li>
|
|
862
|
+
<li role="none">
|
|
863
|
+
<button
|
|
864
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
865
|
+
type="button"
|
|
866
|
+
role="menuitem"
|
|
867
|
+
>
|
|
868
|
+
10 per page
|
|
869
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
870
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
871
|
+
</div>
|
|
872
|
+
</button>
|
|
873
|
+
</li>
|
|
874
|
+
<li role="none">
|
|
875
|
+
<button
|
|
876
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
877
|
+
type="button"
|
|
878
|
+
role="menuitem"
|
|
879
|
+
>20 per page</button>
|
|
880
|
+
</li>
|
|
881
|
+
</ul>
|
|
882
|
+
</div>
|
|
879
883
|
</div>
|
|
880
884
|
<nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
|
|
881
885
|
<div class="pf-v5-c-pagination__nav-control pf-m-first">
|
|
@@ -1369,55 +1373,57 @@ wrapperTag: div
|
|
|
1369
1373
|
|
|
1370
1374
|
<div class="pf-v5-c-toolbar__item pf-m-pagination">
|
|
1371
1375
|
<div class="pf-v5-c-pagination pf-m-compact">
|
|
1372
|
-
<div class="pf-v5-c-
|
|
1373
|
-
<
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
<
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
<
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
<
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
<
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
<
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
<
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1376
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
1377
|
+
<div class="pf-v5-c-options-menu">
|
|
1378
|
+
<button
|
|
1379
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
1380
|
+
type="button"
|
|
1381
|
+
id="data-list-actionable-example-toolbar-top-pagination-toggle"
|
|
1382
|
+
aria-haspopup="listbox"
|
|
1383
|
+
aria-expanded="false"
|
|
1384
|
+
>
|
|
1385
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
1386
|
+
<b>1 - 10</b> of
|
|
1387
|
+
<b>36</b>
|
|
1388
|
+
</span>
|
|
1389
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
1390
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
1391
|
+
</div>
|
|
1392
|
+
</button>
|
|
1393
|
+
<ul
|
|
1394
|
+
class="pf-v5-c-options-menu__menu"
|
|
1395
|
+
role="menu"
|
|
1396
|
+
aria-labelledby="data-list-actionable-example-toolbar-top-pagination-toggle"
|
|
1397
|
+
hidden
|
|
1398
|
+
>
|
|
1399
|
+
<li role="none">
|
|
1400
|
+
<button
|
|
1401
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
1402
|
+
type="button"
|
|
1403
|
+
role="menuitem"
|
|
1404
|
+
>5 per page</button>
|
|
1405
|
+
</li>
|
|
1406
|
+
<li role="none">
|
|
1407
|
+
<button
|
|
1408
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
1409
|
+
type="button"
|
|
1410
|
+
role="menuitem"
|
|
1411
|
+
>
|
|
1412
|
+
10 per page
|
|
1413
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
1414
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
1415
|
+
</div>
|
|
1416
|
+
</button>
|
|
1417
|
+
</li>
|
|
1418
|
+
<li role="none">
|
|
1419
|
+
<button
|
|
1420
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
1421
|
+
type="button"
|
|
1422
|
+
role="menuitem"
|
|
1423
|
+
>20 per page</button>
|
|
1424
|
+
</li>
|
|
1425
|
+
</ul>
|
|
1426
|
+
</div>
|
|
1421
1427
|
</div>
|
|
1422
1428
|
<nav
|
|
1423
1429
|
class="pf-v5-c-pagination__nav"
|
|
@@ -1750,55 +1756,57 @@ wrapperTag: div
|
|
|
1750
1756
|
</li>
|
|
1751
1757
|
</ul>
|
|
1752
1758
|
<div class="pf-v5-c-pagination pf-m-bottom">
|
|
1753
|
-
<div class="pf-v5-c-
|
|
1754
|
-
<
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
<
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
<
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
<
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
<
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
<
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
<
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1759
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
1760
|
+
<div class="pf-v5-c-options-menu pf-m-top">
|
|
1761
|
+
<button
|
|
1762
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
1763
|
+
type="button"
|
|
1764
|
+
id="{{page--id}}-pagination-options-menu-bottom-example-toggle"
|
|
1765
|
+
aria-haspopup="listbox"
|
|
1766
|
+
aria-expanded="false"
|
|
1767
|
+
>
|
|
1768
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
1769
|
+
<b>1 - 10</b> of
|
|
1770
|
+
<b>36</b>
|
|
1771
|
+
</span>
|
|
1772
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
1773
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
1774
|
+
</div>
|
|
1775
|
+
</button>
|
|
1776
|
+
<ul
|
|
1777
|
+
class="pf-v5-c-options-menu__menu pf-m-top"
|
|
1778
|
+
role="menu"
|
|
1779
|
+
aria-labelledby="{{page--id}}-pagination-options-menu-bottom-example-toggle"
|
|
1780
|
+
hidden
|
|
1781
|
+
>
|
|
1782
|
+
<li role="none">
|
|
1783
|
+
<button
|
|
1784
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
1785
|
+
type="button"
|
|
1786
|
+
role="menuitem"
|
|
1787
|
+
>5 per page</button>
|
|
1788
|
+
</li>
|
|
1789
|
+
<li role="none">
|
|
1790
|
+
<button
|
|
1791
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
1792
|
+
type="button"
|
|
1793
|
+
role="menuitem"
|
|
1794
|
+
>
|
|
1795
|
+
10 per page
|
|
1796
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
1797
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
1798
|
+
</div>
|
|
1799
|
+
</button>
|
|
1800
|
+
</li>
|
|
1801
|
+
<li role="none">
|
|
1802
|
+
<button
|
|
1803
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
1804
|
+
type="button"
|
|
1805
|
+
role="menuitem"
|
|
1806
|
+
>20 per page</button>
|
|
1807
|
+
</li>
|
|
1808
|
+
</ul>
|
|
1809
|
+
</div>
|
|
1802
1810
|
</div>
|
|
1803
1811
|
<nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
|
|
1804
1812
|
<div class="pf-v5-c-pagination__nav-control pf-m-first">
|
|
@@ -2291,55 +2299,57 @@ wrapperTag: div
|
|
|
2291
2299
|
|
|
2292
2300
|
<div class="pf-v5-c-toolbar__item pf-m-pagination">
|
|
2293
2301
|
<div class="pf-v5-c-pagination pf-m-compact">
|
|
2294
|
-
<div class="pf-v5-c-
|
|
2295
|
-
<
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
<
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
<
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
<
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
<
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
<
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
<
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2302
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
2303
|
+
<div class="pf-v5-c-options-menu">
|
|
2304
|
+
<button
|
|
2305
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
2306
|
+
type="button"
|
|
2307
|
+
id="data-list-expandable-example-toolbar-top-pagination-toggle"
|
|
2308
|
+
aria-haspopup="listbox"
|
|
2309
|
+
aria-expanded="false"
|
|
2310
|
+
>
|
|
2311
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
2312
|
+
<b>1 - 10</b> of
|
|
2313
|
+
<b>36</b>
|
|
2314
|
+
</span>
|
|
2315
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
2316
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
2317
|
+
</div>
|
|
2318
|
+
</button>
|
|
2319
|
+
<ul
|
|
2320
|
+
class="pf-v5-c-options-menu__menu"
|
|
2321
|
+
role="menu"
|
|
2322
|
+
aria-labelledby="data-list-expandable-example-toolbar-top-pagination-toggle"
|
|
2323
|
+
hidden
|
|
2324
|
+
>
|
|
2325
|
+
<li role="none">
|
|
2326
|
+
<button
|
|
2327
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
2328
|
+
type="button"
|
|
2329
|
+
role="menuitem"
|
|
2330
|
+
>5 per page</button>
|
|
2331
|
+
</li>
|
|
2332
|
+
<li role="none">
|
|
2333
|
+
<button
|
|
2334
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
2335
|
+
type="button"
|
|
2336
|
+
role="menuitem"
|
|
2337
|
+
>
|
|
2338
|
+
10 per page
|
|
2339
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
2340
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
2341
|
+
</div>
|
|
2342
|
+
</button>
|
|
2343
|
+
</li>
|
|
2344
|
+
<li role="none">
|
|
2345
|
+
<button
|
|
2346
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
2347
|
+
type="button"
|
|
2348
|
+
role="menuitem"
|
|
2349
|
+
>20 per page</button>
|
|
2350
|
+
</li>
|
|
2351
|
+
</ul>
|
|
2352
|
+
</div>
|
|
2343
2353
|
</div>
|
|
2344
2354
|
<nav
|
|
2345
2355
|
class="pf-v5-c-pagination__nav"
|
|
@@ -3422,55 +3432,57 @@ wrapperTag: div
|
|
|
3422
3432
|
</li>
|
|
3423
3433
|
</ul>
|
|
3424
3434
|
<div class="pf-v5-c-pagination pf-m-bottom">
|
|
3425
|
-
<div class="pf-v5-c-
|
|
3426
|
-
<
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
<
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
<
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
<
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
<
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
<
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
<
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3435
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
3436
|
+
<div class="pf-v5-c-options-menu pf-m-top">
|
|
3437
|
+
<button
|
|
3438
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
3439
|
+
type="button"
|
|
3440
|
+
id="{{page--id}}-pagination-options-menu-bottom-example-toggle"
|
|
3441
|
+
aria-haspopup="listbox"
|
|
3442
|
+
aria-expanded="false"
|
|
3443
|
+
>
|
|
3444
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
3445
|
+
<b>1 - 10</b> of
|
|
3446
|
+
<b>36</b>
|
|
3447
|
+
</span>
|
|
3448
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
3449
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
3450
|
+
</div>
|
|
3451
|
+
</button>
|
|
3452
|
+
<ul
|
|
3453
|
+
class="pf-v5-c-options-menu__menu pf-m-top"
|
|
3454
|
+
role="menu"
|
|
3455
|
+
aria-labelledby="{{page--id}}-pagination-options-menu-bottom-example-toggle"
|
|
3456
|
+
hidden
|
|
3457
|
+
>
|
|
3458
|
+
<li role="none">
|
|
3459
|
+
<button
|
|
3460
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
3461
|
+
type="button"
|
|
3462
|
+
role="menuitem"
|
|
3463
|
+
>5 per page</button>
|
|
3464
|
+
</li>
|
|
3465
|
+
<li role="none">
|
|
3466
|
+
<button
|
|
3467
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
3468
|
+
type="button"
|
|
3469
|
+
role="menuitem"
|
|
3470
|
+
>
|
|
3471
|
+
10 per page
|
|
3472
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
3473
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
3474
|
+
</div>
|
|
3475
|
+
</button>
|
|
3476
|
+
</li>
|
|
3477
|
+
<li role="none">
|
|
3478
|
+
<button
|
|
3479
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
3480
|
+
type="button"
|
|
3481
|
+
role="menuitem"
|
|
3482
|
+
>20 per page</button>
|
|
3483
|
+
</li>
|
|
3484
|
+
</ul>
|
|
3485
|
+
</div>
|
|
3474
3486
|
</div>
|
|
3475
3487
|
<nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
|
|
3476
3488
|
<div class="pf-v5-c-pagination__nav-control pf-m-first">
|
|
@@ -3925,55 +3937,57 @@ wrapperTag: div
|
|
|
3925
3937
|
|
|
3926
3938
|
<div class="pf-v5-c-toolbar__item pf-m-pagination">
|
|
3927
3939
|
<div class="pf-v5-c-pagination pf-m-compact">
|
|
3928
|
-
<div class="pf-v5-c-
|
|
3929
|
-
<
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
<
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
<
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
<
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
<
|
|
3959
|
-
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
<
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
<
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3940
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
3941
|
+
<div class="pf-v5-c-options-menu">
|
|
3942
|
+
<button
|
|
3943
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
3944
|
+
type="button"
|
|
3945
|
+
id="data-list-static-bottom-example-toolbar-top-pagination-toggle"
|
|
3946
|
+
aria-haspopup="listbox"
|
|
3947
|
+
aria-expanded="false"
|
|
3948
|
+
>
|
|
3949
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
3950
|
+
<b>1 - 10</b> of
|
|
3951
|
+
<b>36</b>
|
|
3952
|
+
</span>
|
|
3953
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
3954
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
3955
|
+
</div>
|
|
3956
|
+
</button>
|
|
3957
|
+
<ul
|
|
3958
|
+
class="pf-v5-c-options-menu__menu"
|
|
3959
|
+
role="menu"
|
|
3960
|
+
aria-labelledby="data-list-static-bottom-example-toolbar-top-pagination-toggle"
|
|
3961
|
+
hidden
|
|
3962
|
+
>
|
|
3963
|
+
<li role="none">
|
|
3964
|
+
<button
|
|
3965
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
3966
|
+
type="button"
|
|
3967
|
+
role="menuitem"
|
|
3968
|
+
>5 per page</button>
|
|
3969
|
+
</li>
|
|
3970
|
+
<li role="none">
|
|
3971
|
+
<button
|
|
3972
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
3973
|
+
type="button"
|
|
3974
|
+
role="menuitem"
|
|
3975
|
+
>
|
|
3976
|
+
10 per page
|
|
3977
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
3978
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
3979
|
+
</div>
|
|
3980
|
+
</button>
|
|
3981
|
+
</li>
|
|
3982
|
+
<li role="none">
|
|
3983
|
+
<button
|
|
3984
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
3985
|
+
type="button"
|
|
3986
|
+
role="menuitem"
|
|
3987
|
+
>20 per page</button>
|
|
3988
|
+
</li>
|
|
3989
|
+
</ul>
|
|
3990
|
+
</div>
|
|
3977
3991
|
</div>
|
|
3978
3992
|
<nav
|
|
3979
3993
|
class="pf-v5-c-pagination__nav"
|
|
@@ -4341,55 +4355,57 @@ wrapperTag: div
|
|
|
4341
4355
|
</li>
|
|
4342
4356
|
</ul>
|
|
4343
4357
|
<div class="pf-v5-c-pagination pf-m-bottom pf-m-static">
|
|
4344
|
-
<div class="pf-v5-c-
|
|
4345
|
-
<
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
<
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
<
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
<
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
<
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
<
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
<
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4358
|
+
<div class="pf-v5-c-pagination__page-menu">
|
|
4359
|
+
<div class="pf-v5-c-options-menu pf-m-top">
|
|
4360
|
+
<button
|
|
4361
|
+
class="pf-v5-c-options-menu__toggle pf-m-text pf-m-plain"
|
|
4362
|
+
type="button"
|
|
4363
|
+
id="{{page--id}}pagination-options-menu-bottom-example-static-toggle"
|
|
4364
|
+
aria-haspopup="listbox"
|
|
4365
|
+
aria-expanded="false"
|
|
4366
|
+
>
|
|
4367
|
+
<span class="pf-v5-c-options-menu__toggle-text">
|
|
4368
|
+
<b>1 - 10</b> of
|
|
4369
|
+
<b>36</b>
|
|
4370
|
+
</span>
|
|
4371
|
+
<div class="pf-v5-c-options-menu__toggle-icon">
|
|
4372
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
4373
|
+
</div>
|
|
4374
|
+
</button>
|
|
4375
|
+
<ul
|
|
4376
|
+
class="pf-v5-c-options-menu__menu pf-m-top"
|
|
4377
|
+
role="menu"
|
|
4378
|
+
aria-labelledby="{{page--id}}pagination-options-menu-bottom-example-static-toggle"
|
|
4379
|
+
hidden
|
|
4380
|
+
>
|
|
4381
|
+
<li role="none">
|
|
4382
|
+
<button
|
|
4383
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
4384
|
+
type="button"
|
|
4385
|
+
role="menuitem"
|
|
4386
|
+
>5 per page</button>
|
|
4387
|
+
</li>
|
|
4388
|
+
<li role="none">
|
|
4389
|
+
<button
|
|
4390
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
4391
|
+
type="button"
|
|
4392
|
+
role="menuitem"
|
|
4393
|
+
>
|
|
4394
|
+
10 per page
|
|
4395
|
+
<div class="pf-v5-c-options-menu__menu-item-icon">
|
|
4396
|
+
<i class="fas fa-check" aria-hidden="true"></i>
|
|
4397
|
+
</div>
|
|
4398
|
+
</button>
|
|
4399
|
+
</li>
|
|
4400
|
+
<li role="none">
|
|
4401
|
+
<button
|
|
4402
|
+
class="pf-v5-c-options-menu__menu-item"
|
|
4403
|
+
type="button"
|
|
4404
|
+
role="menuitem"
|
|
4405
|
+
>20 per page</button>
|
|
4406
|
+
</li>
|
|
4407
|
+
</ul>
|
|
4408
|
+
</div>
|
|
4393
4409
|
</div>
|
|
4394
4410
|
<nav class="pf-v5-c-pagination__nav" aria-label="Pagination">
|
|
4395
4411
|
<div class="pf-v5-c-pagination__nav-control pf-m-first">
|