@rhc-shared-components/packages-table 0.1.1 → 0.2.2
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/dist/index.js +3 -3
- package/dist/index.modern.js +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1447,14 +1447,14 @@ function FilterableTable(_ref) {
|
|
|
1447
1447
|
key: "pkg-table-row-" + rowIdx + "-col-" + colIdx
|
|
1448
1448
|
}, (_renderRow = renderRow(row)) == null ? void 0 : _renderRow[colIdx]);
|
|
1449
1449
|
}));
|
|
1450
|
-
}) : React__default["default"].createElement(Td, {
|
|
1450
|
+
}) : React__default["default"].createElement(Tr, null, React__default["default"].createElement(Td, {
|
|
1451
1451
|
colSpan: columns.length
|
|
1452
1452
|
}, React__default["default"].createElement(reactCore.EmptyState, null, React__default["default"].createElement(reactCore.EmptyStateIcon, {
|
|
1453
1453
|
icon: SearchIcon
|
|
1454
1454
|
}), React__default["default"].createElement(reactCore.Title, {
|
|
1455
1455
|
headingLevel: 'h5',
|
|
1456
1456
|
size: 'lg'
|
|
1457
|
-
}, "No results found")))))), renderPagination('bottom'));
|
|
1457
|
+
}, "No results found"))))))), renderPagination('bottom'));
|
|
1458
1458
|
}
|
|
1459
1459
|
|
|
1460
1460
|
var FilterInput = function FilterInput(_ref) {
|
|
@@ -1871,7 +1871,7 @@ var PackagesTable = function PackagesTable(_ref) {
|
|
|
1871
1871
|
}, React__namespace.createElement(VulnerabilitiesTable, {
|
|
1872
1872
|
vulnerabilities: uniqueVulnerabilities,
|
|
1873
1873
|
isLoading: isLoading
|
|
1874
|
-
})), excludedPackages.length
|
|
1874
|
+
})), excludedPackages.length > 0 && React__namespace.createElement(reactCore.Tab, {
|
|
1875
1875
|
eventKey: 1,
|
|
1876
1876
|
title: "Excluded Packages (" + excludedPackages.length + ")"
|
|
1877
1877
|
}, React__namespace.createElement("p", {
|
package/dist/index.modern.js
CHANGED
|
@@ -1388,14 +1388,14 @@ function FilterableTable({
|
|
|
1388
1388
|
return React__default.createElement(Td, {
|
|
1389
1389
|
key: `pkg-table-row-${rowIdx}-col-${colIdx}`
|
|
1390
1390
|
}, (_renderRow = renderRow(row)) == null ? void 0 : _renderRow[colIdx]);
|
|
1391
|
-
}))) : React__default.createElement(Td, {
|
|
1391
|
+
}))) : React__default.createElement(Tr, null, React__default.createElement(Td, {
|
|
1392
1392
|
colSpan: columns.length
|
|
1393
1393
|
}, React__default.createElement(EmptyState, null, React__default.createElement(EmptyStateIcon, {
|
|
1394
1394
|
icon: SearchIcon
|
|
1395
1395
|
}), React__default.createElement(Title, {
|
|
1396
1396
|
headingLevel: 'h5',
|
|
1397
1397
|
size: 'lg'
|
|
1398
|
-
}, "No results found")))))), renderPagination('bottom'));
|
|
1398
|
+
}, "No results found"))))))), renderPagination('bottom'));
|
|
1399
1399
|
}
|
|
1400
1400
|
|
|
1401
1401
|
const FilterInput = ({
|
|
@@ -1768,7 +1768,7 @@ const PackagesTable = ({
|
|
|
1768
1768
|
}, React.createElement(VulnerabilitiesTable, {
|
|
1769
1769
|
vulnerabilities: uniqueVulnerabilities,
|
|
1770
1770
|
isLoading: _isLoading
|
|
1771
|
-
})), excludedPackages.length
|
|
1771
|
+
})), excludedPackages.length > 0 && React.createElement(Tab, {
|
|
1772
1772
|
eventKey: 1,
|
|
1773
1773
|
title: `Excluded Packages (${excludedPackages.length})`
|
|
1774
1774
|
}, React.createElement("p", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rhc-shared-components/packages-table",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "project description",
|
|
5
5
|
"author": "redhatofficial",
|
|
6
6
|
"license": "MIT",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"publishConfig": {
|
|
78
78
|
"access": "public"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "9f479e71d392caf8769d74bde24786e33d309398"
|
|
81
81
|
}
|