pge-front-common 10.4.9 → 10.4.10
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/lib/index.esm.js +4 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +4 -2
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.esm.js
CHANGED
|
@@ -8550,8 +8550,10 @@ var TableComponent = function (_a) {
|
|
|
8550
8550
|
column.name,
|
|
8551
8551
|
" ",
|
|
8552
8552
|
columnIcon && columnIcon)); }),
|
|
8553
|
-
hasIcon && React__default.createElement("th", { className: styles.th }
|
|
8554
|
-
|
|
8553
|
+
hasIcon && (React__default.createElement("th", { className: styles.th },
|
|
8554
|
+
iconColumnName || "Ações",
|
|
8555
|
+
" ",
|
|
8556
|
+
columnIcon && columnIcon)))),
|
|
8555
8557
|
React__default.createElement("tbody", { className: styles.tbody }, data.length > 0 ? (data.map(function (item, index) { return (React__default.createElement("tr", { key: item.id || index, className: index % 2 === 0 ? styles.rowWhite : styles.rowGray },
|
|
8556
8558
|
columns.map(function (column) { return (React__default.createElement("td", { key: item.id + column.uid, className: styles.td }, renderColumnCell(item, column))); }),
|
|
8557
8559
|
hasIcon && (React__default.createElement("td", { className: styles.actionCell }, renderActionIconCell(item))))); })) : (React__default.createElement("tr", null,
|