@patternfly/patternfly 5.0.0-alpha.54 → 5.0.0-alpha.55
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/Table/table-grid.css +380 -391
- package/components/Table/table-grid.scss +97 -92
- package/components/Table/table-tree-view.css +254 -254
- package/components/Table/table-tree-view.scss +30 -30
- package/components/Table/table.css +232 -232
- package/components/Table/table.scss +265 -255
- package/docs/components/InlineEdit/examples/InlineEdit.md +50 -28
- package/docs/components/Table/examples/Table.md +6839 -3703
- package/docs/demos/Card/examples/Card.md +73 -34
- package/docs/demos/DataList/examples/DataList.md +187 -52
- package/docs/demos/DescriptionList/examples/DescriptionList.md +63 -23
- package/docs/demos/Table/examples/Table.md +2673 -1316
- package/docs/demos/Tabs/examples/Tabs.md +203 -50
- package/docs/demos/Toolbar/examples/Toolbar.md +272 -112
- package/package.json +3 -3
- package/patternfly-no-globals.css +866 -877
- package/patternfly.css +866 -877
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -1469,22 +1469,42 @@ section: components
|
|
|
1469
1469
|
aria-label="This is a table with checkboxes"
|
|
1470
1470
|
id="-table-table"
|
|
1471
1471
|
>
|
|
1472
|
-
<thead>
|
|
1473
|
-
<tr role="row">
|
|
1474
|
-
<td></td>
|
|
1475
|
-
<th
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
<
|
|
1481
|
-
|
|
1472
|
+
<thead class="pf-v5-c-table__thead">
|
|
1473
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
1474
|
+
<td class="pf-v5-c-table__td"></td>
|
|
1475
|
+
<th
|
|
1476
|
+
class="pf-v5-c-table__th"
|
|
1477
|
+
role="columnheader"
|
|
1478
|
+
scope="col"
|
|
1479
|
+
>Repositories</th>
|
|
1480
|
+
<th
|
|
1481
|
+
class="pf-v5-c-table__th"
|
|
1482
|
+
role="columnheader"
|
|
1483
|
+
scope="col"
|
|
1484
|
+
>Branches</th>
|
|
1485
|
+
<th
|
|
1486
|
+
class="pf-v5-c-table__th"
|
|
1487
|
+
role="columnheader"
|
|
1488
|
+
scope="col"
|
|
1489
|
+
>Pull requests</th>
|
|
1490
|
+
<th
|
|
1491
|
+
class="pf-v5-c-table__th"
|
|
1492
|
+
role="columnheader"
|
|
1493
|
+
scope="col"
|
|
1494
|
+
>Workspaces</th>
|
|
1495
|
+
<th
|
|
1496
|
+
class="pf-v5-c-table__th"
|
|
1497
|
+
role="columnheader"
|
|
1498
|
+
scope="col"
|
|
1499
|
+
>Last commit</th>
|
|
1500
|
+
<td class="pf-v5-c-table__td"></td>
|
|
1501
|
+
<td class="pf-v5-c-table__td"></td>
|
|
1482
1502
|
</tr>
|
|
1483
1503
|
</thead>
|
|
1484
1504
|
|
|
1485
|
-
<tbody role="rowgroup">
|
|
1486
|
-
<tr role="row">
|
|
1487
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
1505
|
+
<tbody class="pf-v5-c-table__tbody" role="rowgroup">
|
|
1506
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
1507
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
1488
1508
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
1489
1509
|
<input
|
|
1490
1510
|
class="pf-v5-c-check__input"
|
|
@@ -1494,32 +1514,44 @@ section: components
|
|
|
1494
1514
|
/>
|
|
1495
1515
|
</div>
|
|
1496
1516
|
</td>
|
|
1497
|
-
<th
|
|
1517
|
+
<th
|
|
1518
|
+
class="pf-v5-c-table__th"
|
|
1519
|
+
role="columnheader"
|
|
1520
|
+
data-label="Repository name"
|
|
1521
|
+
>
|
|
1498
1522
|
<div>
|
|
1499
1523
|
<div id="-table-table-node1">Node 1</div>
|
|
1500
1524
|
<a href="#">siemur/test-space</a>
|
|
1501
1525
|
</div>
|
|
1502
1526
|
</th>
|
|
1503
|
-
<td role="cell" data-label="Branches">
|
|
1527
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
1504
1528
|
<span>
|
|
1505
1529
|
<i class="fas fa-code-branch"></i> 10
|
|
1506
1530
|
</span>
|
|
1507
1531
|
</td>
|
|
1508
|
-
<td
|
|
1532
|
+
<td
|
|
1533
|
+
class="pf-v5-c-table__td"
|
|
1534
|
+
role="cell"
|
|
1535
|
+
data-label="Pull requests"
|
|
1536
|
+
>
|
|
1509
1537
|
<span>
|
|
1510
1538
|
<i class="fas fa-code"></i> 25
|
|
1511
1539
|
</span>
|
|
1512
1540
|
</td>
|
|
1513
|
-
<td role="cell" data-label="Workspaces">
|
|
1541
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
1514
1542
|
<span>
|
|
1515
1543
|
<i class="fas fa-cube"></i> 5
|
|
1516
1544
|
</span>
|
|
1517
1545
|
</td>
|
|
1518
|
-
<td
|
|
1519
|
-
|
|
1546
|
+
<td
|
|
1547
|
+
class="pf-v5-c-table__td"
|
|
1548
|
+
role="cell"
|
|
1549
|
+
data-label="Last commit"
|
|
1550
|
+
>2 days ago</td>
|
|
1551
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
1520
1552
|
<a href="#">Action link</a>
|
|
1521
1553
|
</td>
|
|
1522
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
1554
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
1523
1555
|
<div class="pf-v5-c-dropdown">
|
|
1524
1556
|
<button
|
|
1525
1557
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -1571,8 +1603,8 @@ section: components
|
|
|
1571
1603
|
</td>
|
|
1572
1604
|
</tr>
|
|
1573
1605
|
|
|
1574
|
-
<tr role="row">
|
|
1575
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
1606
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
1607
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
1576
1608
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
1577
1609
|
<input
|
|
1578
1610
|
class="pf-v5-c-check__input"
|
|
@@ -1582,32 +1614,44 @@ section: components
|
|
|
1582
1614
|
/>
|
|
1583
1615
|
</div>
|
|
1584
1616
|
</td>
|
|
1585
|
-
<th
|
|
1617
|
+
<th
|
|
1618
|
+
class="pf-v5-c-table__th"
|
|
1619
|
+
role="columnheader"
|
|
1620
|
+
data-label="Repository name"
|
|
1621
|
+
>
|
|
1586
1622
|
<div>
|
|
1587
1623
|
<div id="-table-table-node2">Node 2</div>
|
|
1588
1624
|
<a href="#">siemur/test-space</a>
|
|
1589
1625
|
</div>
|
|
1590
1626
|
</th>
|
|
1591
|
-
<td role="cell" data-label="Branches">
|
|
1627
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
1592
1628
|
<span>
|
|
1593
1629
|
<i class="fas fa-code-branch"></i> 8
|
|
1594
1630
|
</span>
|
|
1595
1631
|
</td>
|
|
1596
|
-
<td
|
|
1632
|
+
<td
|
|
1633
|
+
class="pf-v5-c-table__td"
|
|
1634
|
+
role="cell"
|
|
1635
|
+
data-label="Pull requests"
|
|
1636
|
+
>
|
|
1597
1637
|
<span>
|
|
1598
1638
|
<i class="fas fa-code"></i> 30
|
|
1599
1639
|
</span>
|
|
1600
1640
|
</td>
|
|
1601
|
-
<td role="cell" data-label="Workspaces">
|
|
1641
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
1602
1642
|
<span>
|
|
1603
1643
|
<i class="fas fa-cube"></i> 2
|
|
1604
1644
|
</span>
|
|
1605
1645
|
</td>
|
|
1606
|
-
<td
|
|
1607
|
-
|
|
1646
|
+
<td
|
|
1647
|
+
class="pf-v5-c-table__td"
|
|
1648
|
+
role="cell"
|
|
1649
|
+
data-label="Last commit"
|
|
1650
|
+
>2 days ago</td>
|
|
1651
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
1608
1652
|
<a href="#">Action link</a>
|
|
1609
1653
|
</td>
|
|
1610
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
1654
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
1611
1655
|
<div class="pf-v5-c-dropdown">
|
|
1612
1656
|
<button
|
|
1613
1657
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -1659,8 +1703,8 @@ section: components
|
|
|
1659
1703
|
</td>
|
|
1660
1704
|
</tr>
|
|
1661
1705
|
|
|
1662
|
-
<tr role="row">
|
|
1663
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
1706
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
1707
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
1664
1708
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
1665
1709
|
<input
|
|
1666
1710
|
class="pf-v5-c-check__input"
|
|
@@ -1670,32 +1714,44 @@ section: components
|
|
|
1670
1714
|
/>
|
|
1671
1715
|
</div>
|
|
1672
1716
|
</td>
|
|
1673
|
-
<th
|
|
1717
|
+
<th
|
|
1718
|
+
class="pf-v5-c-table__th"
|
|
1719
|
+
role="columnheader"
|
|
1720
|
+
data-label="Repository name"
|
|
1721
|
+
>
|
|
1674
1722
|
<div>
|
|
1675
1723
|
<div id="-table-table-node3">Node 3</div>
|
|
1676
1724
|
<a href="#">siemur/test-space</a>
|
|
1677
1725
|
</div>
|
|
1678
1726
|
</th>
|
|
1679
|
-
<td role="cell" data-label="Branches">
|
|
1727
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
1680
1728
|
<span>
|
|
1681
1729
|
<i class="fas fa-code-branch"></i> 12
|
|
1682
1730
|
</span>
|
|
1683
1731
|
</td>
|
|
1684
|
-
<td
|
|
1732
|
+
<td
|
|
1733
|
+
class="pf-v5-c-table__td"
|
|
1734
|
+
role="cell"
|
|
1735
|
+
data-label="Pull requests"
|
|
1736
|
+
>
|
|
1685
1737
|
<span>
|
|
1686
1738
|
<i class="fas fa-code"></i> 48
|
|
1687
1739
|
</span>
|
|
1688
1740
|
</td>
|
|
1689
|
-
<td role="cell" data-label="Workspaces">
|
|
1741
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
1690
1742
|
<span>
|
|
1691
1743
|
<i class="fas fa-cube"></i> 13
|
|
1692
1744
|
</span>
|
|
1693
1745
|
</td>
|
|
1694
|
-
<td
|
|
1695
|
-
|
|
1746
|
+
<td
|
|
1747
|
+
class="pf-v5-c-table__td"
|
|
1748
|
+
role="cell"
|
|
1749
|
+
data-label="Last commit"
|
|
1750
|
+
>30 days ago</td>
|
|
1751
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
1696
1752
|
<a href="#">Action link</a>
|
|
1697
1753
|
</td>
|
|
1698
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
1754
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
1699
1755
|
<div class="pf-v5-c-dropdown">
|
|
1700
1756
|
<button
|
|
1701
1757
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -1747,8 +1803,8 @@ section: components
|
|
|
1747
1803
|
</td>
|
|
1748
1804
|
</tr>
|
|
1749
1805
|
|
|
1750
|
-
<tr role="row">
|
|
1751
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
1806
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
1807
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
1752
1808
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
1753
1809
|
<input
|
|
1754
1810
|
class="pf-v5-c-check__input"
|
|
@@ -1758,32 +1814,44 @@ section: components
|
|
|
1758
1814
|
/>
|
|
1759
1815
|
</div>
|
|
1760
1816
|
</td>
|
|
1761
|
-
<th
|
|
1817
|
+
<th
|
|
1818
|
+
class="pf-v5-c-table__th"
|
|
1819
|
+
role="columnheader"
|
|
1820
|
+
data-label="Repository name"
|
|
1821
|
+
>
|
|
1762
1822
|
<div>
|
|
1763
1823
|
<div id="-table-table-node4">Node 4</div>
|
|
1764
1824
|
<a href="#">siemur/test-space</a>
|
|
1765
1825
|
</div>
|
|
1766
1826
|
</th>
|
|
1767
|
-
<td role="cell" data-label="Branches">
|
|
1827
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
1768
1828
|
<span>
|
|
1769
1829
|
<i class="fas fa-code-branch"></i> 3
|
|
1770
1830
|
</span>
|
|
1771
1831
|
</td>
|
|
1772
|
-
<td
|
|
1832
|
+
<td
|
|
1833
|
+
class="pf-v5-c-table__td"
|
|
1834
|
+
role="cell"
|
|
1835
|
+
data-label="Pull requests"
|
|
1836
|
+
>
|
|
1773
1837
|
<span>
|
|
1774
1838
|
<i class="fas fa-code"></i> 8
|
|
1775
1839
|
</span>
|
|
1776
1840
|
</td>
|
|
1777
|
-
<td role="cell" data-label="Workspaces">
|
|
1841
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
1778
1842
|
<span>
|
|
1779
1843
|
<i class="fas fa-cube"></i> 20
|
|
1780
1844
|
</span>
|
|
1781
1845
|
</td>
|
|
1782
|
-
<td
|
|
1783
|
-
|
|
1846
|
+
<td
|
|
1847
|
+
class="pf-v5-c-table__td"
|
|
1848
|
+
role="cell"
|
|
1849
|
+
data-label="Last commit"
|
|
1850
|
+
>8 days ago</td>
|
|
1851
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
1784
1852
|
<a href="#">Action link</a>
|
|
1785
1853
|
</td>
|
|
1786
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
1854
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
1787
1855
|
<div class="pf-v5-c-dropdown">
|
|
1788
1856
|
<button
|
|
1789
1857
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -1835,8 +1903,8 @@ section: components
|
|
|
1835
1903
|
</td>
|
|
1836
1904
|
</tr>
|
|
1837
1905
|
|
|
1838
|
-
<tr role="row">
|
|
1839
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
1906
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
1907
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
1840
1908
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
1841
1909
|
<input
|
|
1842
1910
|
class="pf-v5-c-check__input"
|
|
@@ -1846,32 +1914,44 @@ section: components
|
|
|
1846
1914
|
/>
|
|
1847
1915
|
</div>
|
|
1848
1916
|
</td>
|
|
1849
|
-
<td
|
|
1917
|
+
<td
|
|
1918
|
+
class="pf-v5-c-table__td"
|
|
1919
|
+
role="cell"
|
|
1920
|
+
data-label="Repository name"
|
|
1921
|
+
>
|
|
1850
1922
|
<div>
|
|
1851
1923
|
<div id="-table-table-node5">Node 5</div>
|
|
1852
1924
|
<a href="#">siemur/test-space</a>
|
|
1853
1925
|
</div>
|
|
1854
1926
|
</td>
|
|
1855
|
-
<td role="cell" data-label="Branches">
|
|
1927
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
1856
1928
|
<span>
|
|
1857
1929
|
<i class="fas fa-code-branch"></i> 34
|
|
1858
1930
|
</span>
|
|
1859
1931
|
</td>
|
|
1860
|
-
<td
|
|
1932
|
+
<td
|
|
1933
|
+
class="pf-v5-c-table__td"
|
|
1934
|
+
role="cell"
|
|
1935
|
+
data-label="Pull requests"
|
|
1936
|
+
>
|
|
1861
1937
|
<span>
|
|
1862
1938
|
<i class="fas fa-code"></i> 21
|
|
1863
1939
|
</span>
|
|
1864
1940
|
</td>
|
|
1865
|
-
<td role="cell" data-label="Workspaces">
|
|
1941
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
1866
1942
|
<span>
|
|
1867
1943
|
<i class="fas fa-cube"></i> 26
|
|
1868
1944
|
</span>
|
|
1869
1945
|
</td>
|
|
1870
|
-
<td
|
|
1871
|
-
|
|
1946
|
+
<td
|
|
1947
|
+
class="pf-v5-c-table__td"
|
|
1948
|
+
role="cell"
|
|
1949
|
+
data-label="Last commit"
|
|
1950
|
+
>2 days ago</td>
|
|
1951
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
1872
1952
|
<a href="#">Action link</a>
|
|
1873
1953
|
</td>
|
|
1874
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
1954
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
1875
1955
|
<div class="pf-v5-c-dropdown">
|
|
1876
1956
|
<button
|
|
1877
1957
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -4702,22 +4782,42 @@ section: components
|
|
|
4702
4782
|
aria-label="This is a table with checkboxes"
|
|
4703
4783
|
id="toolbar-and-table-static-search-overflow-menu-collapsed-table"
|
|
4704
4784
|
>
|
|
4705
|
-
<thead>
|
|
4706
|
-
<tr role="row">
|
|
4707
|
-
<td></td>
|
|
4708
|
-
<th
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
<
|
|
4714
|
-
|
|
4785
|
+
<thead class="pf-v5-c-table__thead">
|
|
4786
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
4787
|
+
<td class="pf-v5-c-table__td"></td>
|
|
4788
|
+
<th
|
|
4789
|
+
class="pf-v5-c-table__th"
|
|
4790
|
+
role="columnheader"
|
|
4791
|
+
scope="col"
|
|
4792
|
+
>Repositories</th>
|
|
4793
|
+
<th
|
|
4794
|
+
class="pf-v5-c-table__th"
|
|
4795
|
+
role="columnheader"
|
|
4796
|
+
scope="col"
|
|
4797
|
+
>Branches</th>
|
|
4798
|
+
<th
|
|
4799
|
+
class="pf-v5-c-table__th"
|
|
4800
|
+
role="columnheader"
|
|
4801
|
+
scope="col"
|
|
4802
|
+
>Pull requests</th>
|
|
4803
|
+
<th
|
|
4804
|
+
class="pf-v5-c-table__th"
|
|
4805
|
+
role="columnheader"
|
|
4806
|
+
scope="col"
|
|
4807
|
+
>Workspaces</th>
|
|
4808
|
+
<th
|
|
4809
|
+
class="pf-v5-c-table__th"
|
|
4810
|
+
role="columnheader"
|
|
4811
|
+
scope="col"
|
|
4812
|
+
>Last commit</th>
|
|
4813
|
+
<td class="pf-v5-c-table__td"></td>
|
|
4814
|
+
<td class="pf-v5-c-table__td"></td>
|
|
4715
4815
|
</tr>
|
|
4716
4816
|
</thead>
|
|
4717
4817
|
|
|
4718
|
-
<tbody role="rowgroup">
|
|
4719
|
-
<tr role="row">
|
|
4720
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
4818
|
+
<tbody class="pf-v5-c-table__tbody" role="rowgroup">
|
|
4819
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
4820
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
4721
4821
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
4722
4822
|
<input
|
|
4723
4823
|
class="pf-v5-c-check__input"
|
|
@@ -4727,7 +4827,11 @@ section: components
|
|
|
4727
4827
|
/>
|
|
4728
4828
|
</div>
|
|
4729
4829
|
</td>
|
|
4730
|
-
<th
|
|
4830
|
+
<th
|
|
4831
|
+
class="pf-v5-c-table__th"
|
|
4832
|
+
role="columnheader"
|
|
4833
|
+
data-label="Repository name"
|
|
4834
|
+
>
|
|
4731
4835
|
<div>
|
|
4732
4836
|
<div
|
|
4733
4837
|
id="toolbar-and-table-static-search-overflow-menu-collapsed-table-node1"
|
|
@@ -4735,26 +4839,34 @@ section: components
|
|
|
4735
4839
|
<a href="#">siemur/test-space</a>
|
|
4736
4840
|
</div>
|
|
4737
4841
|
</th>
|
|
4738
|
-
<td role="cell" data-label="Branches">
|
|
4842
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
4739
4843
|
<span>
|
|
4740
4844
|
<i class="fas fa-code-branch"></i> 10
|
|
4741
4845
|
</span>
|
|
4742
4846
|
</td>
|
|
4743
|
-
<td
|
|
4847
|
+
<td
|
|
4848
|
+
class="pf-v5-c-table__td"
|
|
4849
|
+
role="cell"
|
|
4850
|
+
data-label="Pull requests"
|
|
4851
|
+
>
|
|
4744
4852
|
<span>
|
|
4745
4853
|
<i class="fas fa-code"></i> 25
|
|
4746
4854
|
</span>
|
|
4747
4855
|
</td>
|
|
4748
|
-
<td role="cell" data-label="Workspaces">
|
|
4856
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
4749
4857
|
<span>
|
|
4750
4858
|
<i class="fas fa-cube"></i> 5
|
|
4751
4859
|
</span>
|
|
4752
4860
|
</td>
|
|
4753
|
-
<td
|
|
4754
|
-
|
|
4861
|
+
<td
|
|
4862
|
+
class="pf-v5-c-table__td"
|
|
4863
|
+
role="cell"
|
|
4864
|
+
data-label="Last commit"
|
|
4865
|
+
>2 days ago</td>
|
|
4866
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
4755
4867
|
<a href="#">Action link</a>
|
|
4756
4868
|
</td>
|
|
4757
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
4869
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
4758
4870
|
<div class="pf-v5-c-dropdown">
|
|
4759
4871
|
<button
|
|
4760
4872
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -4806,8 +4918,8 @@ section: components
|
|
|
4806
4918
|
</td>
|
|
4807
4919
|
</tr>
|
|
4808
4920
|
|
|
4809
|
-
<tr role="row">
|
|
4810
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
4921
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
4922
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
4811
4923
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
4812
4924
|
<input
|
|
4813
4925
|
class="pf-v5-c-check__input"
|
|
@@ -4817,7 +4929,11 @@ section: components
|
|
|
4817
4929
|
/>
|
|
4818
4930
|
</div>
|
|
4819
4931
|
</td>
|
|
4820
|
-
<th
|
|
4932
|
+
<th
|
|
4933
|
+
class="pf-v5-c-table__th"
|
|
4934
|
+
role="columnheader"
|
|
4935
|
+
data-label="Repository name"
|
|
4936
|
+
>
|
|
4821
4937
|
<div>
|
|
4822
4938
|
<div
|
|
4823
4939
|
id="toolbar-and-table-static-search-overflow-menu-collapsed-table-node2"
|
|
@@ -4825,26 +4941,34 @@ section: components
|
|
|
4825
4941
|
<a href="#">siemur/test-space</a>
|
|
4826
4942
|
</div>
|
|
4827
4943
|
</th>
|
|
4828
|
-
<td role="cell" data-label="Branches">
|
|
4944
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
4829
4945
|
<span>
|
|
4830
4946
|
<i class="fas fa-code-branch"></i> 8
|
|
4831
4947
|
</span>
|
|
4832
4948
|
</td>
|
|
4833
|
-
<td
|
|
4949
|
+
<td
|
|
4950
|
+
class="pf-v5-c-table__td"
|
|
4951
|
+
role="cell"
|
|
4952
|
+
data-label="Pull requests"
|
|
4953
|
+
>
|
|
4834
4954
|
<span>
|
|
4835
4955
|
<i class="fas fa-code"></i> 30
|
|
4836
4956
|
</span>
|
|
4837
4957
|
</td>
|
|
4838
|
-
<td role="cell" data-label="Workspaces">
|
|
4958
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
4839
4959
|
<span>
|
|
4840
4960
|
<i class="fas fa-cube"></i> 2
|
|
4841
4961
|
</span>
|
|
4842
4962
|
</td>
|
|
4843
|
-
<td
|
|
4844
|
-
|
|
4963
|
+
<td
|
|
4964
|
+
class="pf-v5-c-table__td"
|
|
4965
|
+
role="cell"
|
|
4966
|
+
data-label="Last commit"
|
|
4967
|
+
>2 days ago</td>
|
|
4968
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
4845
4969
|
<a href="#">Action link</a>
|
|
4846
4970
|
</td>
|
|
4847
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
4971
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
4848
4972
|
<div class="pf-v5-c-dropdown">
|
|
4849
4973
|
<button
|
|
4850
4974
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -4896,8 +5020,8 @@ section: components
|
|
|
4896
5020
|
</td>
|
|
4897
5021
|
</tr>
|
|
4898
5022
|
|
|
4899
|
-
<tr role="row">
|
|
4900
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
5023
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
5024
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
4901
5025
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
4902
5026
|
<input
|
|
4903
5027
|
class="pf-v5-c-check__input"
|
|
@@ -4907,7 +5031,11 @@ section: components
|
|
|
4907
5031
|
/>
|
|
4908
5032
|
</div>
|
|
4909
5033
|
</td>
|
|
4910
|
-
<th
|
|
5034
|
+
<th
|
|
5035
|
+
class="pf-v5-c-table__th"
|
|
5036
|
+
role="columnheader"
|
|
5037
|
+
data-label="Repository name"
|
|
5038
|
+
>
|
|
4911
5039
|
<div>
|
|
4912
5040
|
<div
|
|
4913
5041
|
id="toolbar-and-table-static-search-overflow-menu-collapsed-table-node3"
|
|
@@ -4915,26 +5043,34 @@ section: components
|
|
|
4915
5043
|
<a href="#">siemur/test-space</a>
|
|
4916
5044
|
</div>
|
|
4917
5045
|
</th>
|
|
4918
|
-
<td role="cell" data-label="Branches">
|
|
5046
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
4919
5047
|
<span>
|
|
4920
5048
|
<i class="fas fa-code-branch"></i> 12
|
|
4921
5049
|
</span>
|
|
4922
5050
|
</td>
|
|
4923
|
-
<td
|
|
5051
|
+
<td
|
|
5052
|
+
class="pf-v5-c-table__td"
|
|
5053
|
+
role="cell"
|
|
5054
|
+
data-label="Pull requests"
|
|
5055
|
+
>
|
|
4924
5056
|
<span>
|
|
4925
5057
|
<i class="fas fa-code"></i> 48
|
|
4926
5058
|
</span>
|
|
4927
5059
|
</td>
|
|
4928
|
-
<td role="cell" data-label="Workspaces">
|
|
5060
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
4929
5061
|
<span>
|
|
4930
5062
|
<i class="fas fa-cube"></i> 13
|
|
4931
5063
|
</span>
|
|
4932
5064
|
</td>
|
|
4933
|
-
<td
|
|
4934
|
-
|
|
5065
|
+
<td
|
|
5066
|
+
class="pf-v5-c-table__td"
|
|
5067
|
+
role="cell"
|
|
5068
|
+
data-label="Last commit"
|
|
5069
|
+
>30 days ago</td>
|
|
5070
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
4935
5071
|
<a href="#">Action link</a>
|
|
4936
5072
|
</td>
|
|
4937
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
5073
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
4938
5074
|
<div class="pf-v5-c-dropdown">
|
|
4939
5075
|
<button
|
|
4940
5076
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -4986,8 +5122,8 @@ section: components
|
|
|
4986
5122
|
</td>
|
|
4987
5123
|
</tr>
|
|
4988
5124
|
|
|
4989
|
-
<tr role="row">
|
|
4990
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
5125
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
5126
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
4991
5127
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
4992
5128
|
<input
|
|
4993
5129
|
class="pf-v5-c-check__input"
|
|
@@ -4997,7 +5133,11 @@ section: components
|
|
|
4997
5133
|
/>
|
|
4998
5134
|
</div>
|
|
4999
5135
|
</td>
|
|
5000
|
-
<th
|
|
5136
|
+
<th
|
|
5137
|
+
class="pf-v5-c-table__th"
|
|
5138
|
+
role="columnheader"
|
|
5139
|
+
data-label="Repository name"
|
|
5140
|
+
>
|
|
5001
5141
|
<div>
|
|
5002
5142
|
<div
|
|
5003
5143
|
id="toolbar-and-table-static-search-overflow-menu-collapsed-table-node4"
|
|
@@ -5005,26 +5145,34 @@ section: components
|
|
|
5005
5145
|
<a href="#">siemur/test-space</a>
|
|
5006
5146
|
</div>
|
|
5007
5147
|
</th>
|
|
5008
|
-
<td role="cell" data-label="Branches">
|
|
5148
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
5009
5149
|
<span>
|
|
5010
5150
|
<i class="fas fa-code-branch"></i> 3
|
|
5011
5151
|
</span>
|
|
5012
5152
|
</td>
|
|
5013
|
-
<td
|
|
5153
|
+
<td
|
|
5154
|
+
class="pf-v5-c-table__td"
|
|
5155
|
+
role="cell"
|
|
5156
|
+
data-label="Pull requests"
|
|
5157
|
+
>
|
|
5014
5158
|
<span>
|
|
5015
5159
|
<i class="fas fa-code"></i> 8
|
|
5016
5160
|
</span>
|
|
5017
5161
|
</td>
|
|
5018
|
-
<td role="cell" data-label="Workspaces">
|
|
5162
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
5019
5163
|
<span>
|
|
5020
5164
|
<i class="fas fa-cube"></i> 20
|
|
5021
5165
|
</span>
|
|
5022
5166
|
</td>
|
|
5023
|
-
<td
|
|
5024
|
-
|
|
5167
|
+
<td
|
|
5168
|
+
class="pf-v5-c-table__td"
|
|
5169
|
+
role="cell"
|
|
5170
|
+
data-label="Last commit"
|
|
5171
|
+
>8 days ago</td>
|
|
5172
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
5025
5173
|
<a href="#">Action link</a>
|
|
5026
5174
|
</td>
|
|
5027
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
5175
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
5028
5176
|
<div class="pf-v5-c-dropdown">
|
|
5029
5177
|
<button
|
|
5030
5178
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|
|
@@ -5076,8 +5224,8 @@ section: components
|
|
|
5076
5224
|
</td>
|
|
5077
5225
|
</tr>
|
|
5078
5226
|
|
|
5079
|
-
<tr role="row">
|
|
5080
|
-
<td class="pf-v5-c-table__check" role="cell">
|
|
5227
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
5228
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__check" role="cell">
|
|
5081
5229
|
<div class="pf-v5-c-check pf-m-standalone">
|
|
5082
5230
|
<input
|
|
5083
5231
|
class="pf-v5-c-check__input"
|
|
@@ -5087,7 +5235,11 @@ section: components
|
|
|
5087
5235
|
/>
|
|
5088
5236
|
</div>
|
|
5089
5237
|
</td>
|
|
5090
|
-
<td
|
|
5238
|
+
<td
|
|
5239
|
+
class="pf-v5-c-table__td"
|
|
5240
|
+
role="cell"
|
|
5241
|
+
data-label="Repository name"
|
|
5242
|
+
>
|
|
5091
5243
|
<div>
|
|
5092
5244
|
<div
|
|
5093
5245
|
id="toolbar-and-table-static-search-overflow-menu-collapsed-table-node5"
|
|
@@ -5095,26 +5247,34 @@ section: components
|
|
|
5095
5247
|
<a href="#">siemur/test-space</a>
|
|
5096
5248
|
</div>
|
|
5097
5249
|
</td>
|
|
5098
|
-
<td role="cell" data-label="Branches">
|
|
5250
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Branches">
|
|
5099
5251
|
<span>
|
|
5100
5252
|
<i class="fas fa-code-branch"></i> 34
|
|
5101
5253
|
</span>
|
|
5102
5254
|
</td>
|
|
5103
|
-
<td
|
|
5255
|
+
<td
|
|
5256
|
+
class="pf-v5-c-table__td"
|
|
5257
|
+
role="cell"
|
|
5258
|
+
data-label="Pull requests"
|
|
5259
|
+
>
|
|
5104
5260
|
<span>
|
|
5105
5261
|
<i class="fas fa-code"></i> 21
|
|
5106
5262
|
</span>
|
|
5107
5263
|
</td>
|
|
5108
|
-
<td role="cell" data-label="Workspaces">
|
|
5264
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Workspaces">
|
|
5109
5265
|
<span>
|
|
5110
5266
|
<i class="fas fa-cube"></i> 26
|
|
5111
5267
|
</span>
|
|
5112
5268
|
</td>
|
|
5113
|
-
<td
|
|
5114
|
-
|
|
5269
|
+
<td
|
|
5270
|
+
class="pf-v5-c-table__td"
|
|
5271
|
+
role="cell"
|
|
5272
|
+
data-label="Last commit"
|
|
5273
|
+
>2 days ago</td>
|
|
5274
|
+
<td class="pf-v5-c-table__td" role="cell" data-label="Action">
|
|
5115
5275
|
<a href="#">Action link</a>
|
|
5116
5276
|
</td>
|
|
5117
|
-
<td class="pf-v5-c-table__action" role="cell">
|
|
5277
|
+
<td class="pf-v5-c-table__td pf-v5-c-table__action" role="cell">
|
|
5118
5278
|
<div class="pf-v5-c-dropdown">
|
|
5119
5279
|
<button
|
|
5120
5280
|
class="pf-v5-c-dropdown__toggle pf-m-plain"
|