ywana-core8 0.0.548 → 0.0.549
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -4803,7 +4803,7 @@ var TableEditor$2 = function TableEditor(props) {
|
|
4803
4803
|
options: options
|
4804
4804
|
};
|
4805
4805
|
}),
|
4806
|
-
rows: groups[groupName].map(function (item) {
|
4806
|
+
rows: groups[groupName].map(function (item, index) {
|
4807
4807
|
item.actions = actions ? actions.map(function (_action) {
|
4808
4808
|
return _action.filter ? _action.filter(item) ? /*#__PURE__*/React.createElement(Icon, {
|
4809
4809
|
icon: _action.icon,
|
@@ -4826,7 +4826,7 @@ var TableEditor$2 = function TableEditor(props) {
|
|
4826
4826
|
size: "small",
|
4827
4827
|
clickable: true,
|
4828
4828
|
action: function action() {
|
4829
|
-
return remove(
|
4829
|
+
return remove(index);
|
4830
4830
|
}
|
4831
4831
|
}));
|
4832
4832
|
return item;
|