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.umd.js
CHANGED
@@ -4806,7 +4806,7 @@
|
|
4806
4806
|
options: options
|
4807
4807
|
};
|
4808
4808
|
}),
|
4809
|
-
rows: groups[groupName].map(function (item) {
|
4809
|
+
rows: groups[groupName].map(function (item, index) {
|
4810
4810
|
item.actions = actions ? actions.map(function (_action) {
|
4811
4811
|
return _action.filter ? _action.filter(item) ? /*#__PURE__*/React__default["default"].createElement(Icon, {
|
4812
4812
|
icon: _action.icon,
|
@@ -4829,7 +4829,7 @@
|
|
4829
4829
|
size: "small",
|
4830
4830
|
clickable: true,
|
4831
4831
|
action: function action() {
|
4832
|
-
return remove(
|
4832
|
+
return remove(index);
|
4833
4833
|
}
|
4834
4834
|
}));
|
4835
4835
|
return item;
|