react-table-edit 0.6.8 → 0.6.9
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2220,7 +2220,7 @@ var CommandElement = (props) => {
|
|
|
2220
2220
|
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
2221
2221
|
import_reactstrap10.Button,
|
|
2222
2222
|
{
|
|
2223
|
-
id: `command-item-${indexRow}`,
|
|
2223
|
+
id: `command-item-${indexRow}-${index}`,
|
|
2224
2224
|
tabIndex: -1,
|
|
2225
2225
|
style: { padding: "5px", minWidth: 45, height: "100%" },
|
|
2226
2226
|
className: (0, import_classnames13.default)("command-item", {
|
|
@@ -2236,7 +2236,7 @@ var CommandElement = (props) => {
|
|
|
2236
2236
|
},
|
|
2237
2237
|
children: [
|
|
2238
2238
|
item.icon && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(icon_default, { iconName: item.icon, size: 16 }),
|
|
2239
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_reactstrap10.UncontrolledTooltip, { className: "r-tooltip", target: `command-item-${index}`, place: "top", children: t(item.tooltip ?? "") })
|
|
2239
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_reactstrap10.UncontrolledTooltip, { className: "r-tooltip", target: `command-item-${indexRow}-${index}`, place: "top", children: t(item.tooltip ?? "") })
|
|
2240
2240
|
]
|
|
2241
2241
|
},
|
|
2242
2242
|
`command-${index}`
|
package/dist/index.mjs
CHANGED
|
@@ -2186,7 +2186,7 @@ var CommandElement = (props) => {
|
|
|
2186
2186
|
return /* @__PURE__ */ jsxs14(
|
|
2187
2187
|
Button4,
|
|
2188
2188
|
{
|
|
2189
|
-
id: `command-item-${indexRow}`,
|
|
2189
|
+
id: `command-item-${indexRow}-${index}`,
|
|
2190
2190
|
tabIndex: -1,
|
|
2191
2191
|
style: { padding: "5px", minWidth: 45, height: "100%" },
|
|
2192
2192
|
className: classnames8("command-item", {
|
|
@@ -2202,7 +2202,7 @@ var CommandElement = (props) => {
|
|
|
2202
2202
|
},
|
|
2203
2203
|
children: [
|
|
2204
2204
|
item.icon && /* @__PURE__ */ jsx15(icon_default, { iconName: item.icon, size: 16 }),
|
|
2205
|
-
/* @__PURE__ */ jsx15(UncontrolledTooltip2, { className: "r-tooltip", target: `command-item-${index}`, place: "top", children: t(item.tooltip ?? "") })
|
|
2205
|
+
/* @__PURE__ */ jsx15(UncontrolledTooltip2, { className: "r-tooltip", target: `command-item-${indexRow}-${index}`, place: "top", children: t(item.tooltip ?? "") })
|
|
2206
2206
|
]
|
|
2207
2207
|
},
|
|
2208
2208
|
`command-${index}`
|