trotl-table 1.0.32 → 1.0.33
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.cjs.js +10 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +10 -5
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -10503,14 +10503,16 @@ function TableInner({
|
|
|
10503
10503
|
"aria-label": translate("view")
|
|
10504
10504
|
}, showIcons ? /*#__PURE__*/React.createElement("span", {
|
|
10505
10505
|
role: "img",
|
|
10506
|
-
"aria-hidden": "false"
|
|
10506
|
+
"aria-hidden": "false",
|
|
10507
|
+
title: translate("view")
|
|
10507
10508
|
}, "\uD83D\uDC41\uFE0F") : translate("view")), showEdit && /*#__PURE__*/React.createElement("button", {
|
|
10508
10509
|
className: "action-btn-table",
|
|
10509
10510
|
onClick: () => editCallbackRef.current(row),
|
|
10510
10511
|
"aria-label": translate("edit")
|
|
10511
10512
|
}, showIcons ? /*#__PURE__*/React.createElement("span", {
|
|
10512
10513
|
role: "img",
|
|
10513
|
-
"aria-hidden": "false"
|
|
10514
|
+
"aria-hidden": "false",
|
|
10515
|
+
title: translate("edit")
|
|
10514
10516
|
}, "\u270F\uFE0F") : translate("edit")), showDuplicate && /*#__PURE__*/React.createElement("button", {
|
|
10515
10517
|
className: "action-btn-table",
|
|
10516
10518
|
onClick: e => {
|
|
@@ -10523,7 +10525,8 @@ function TableInner({
|
|
|
10523
10525
|
color: "black"
|
|
10524
10526
|
},
|
|
10525
10527
|
role: "img",
|
|
10526
|
-
"aria-hidden": "false"
|
|
10528
|
+
"aria-hidden": "false",
|
|
10529
|
+
title: translate("duplicate")
|
|
10527
10530
|
}, "\uD83D\uDDD0") : translate("duplicate")), showDelete && /*#__PURE__*/React.createElement("button", {
|
|
10528
10531
|
className: "action-btn-table",
|
|
10529
10532
|
onClick: e => {
|
|
@@ -10539,7 +10542,8 @@ function TableInner({
|
|
|
10539
10542
|
"aria-label": translate("delete")
|
|
10540
10543
|
}, showIcons ? /*#__PURE__*/React.createElement("span", {
|
|
10541
10544
|
role: "img",
|
|
10542
|
-
"aria-hidden": "false"
|
|
10545
|
+
"aria-hidden": "false",
|
|
10546
|
+
title: translate("delete")
|
|
10543
10547
|
}, "\uD83D\uDDD1\uFE0F") : translate("delete")), showShare && /*#__PURE__*/React.createElement("button", {
|
|
10544
10548
|
className: "action-btn-table",
|
|
10545
10549
|
onClick: e => {
|
|
@@ -10549,7 +10553,8 @@ function TableInner({
|
|
|
10549
10553
|
"aria-label": translate("share")
|
|
10550
10554
|
}, showIcons ? /*#__PURE__*/React.createElement("span", {
|
|
10551
10555
|
role: "img",
|
|
10552
|
-
"aria-hidden": "false"
|
|
10556
|
+
"aria-hidden": "false",
|
|
10557
|
+
title: translate("share")
|
|
10553
10558
|
}, "\uD83D\uDD17") : translate("share"))));
|
|
10554
10559
|
if (enableDragRow && item.type === "row") {
|
|
10555
10560
|
return /*#__PURE__*/React.createElement(DraggableRow, {
|