ywana-core8 0.0.103 → 0.0.104

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 CHANGED
@@ -4418,9 +4418,7 @@ var TableEditor = function TableEditor(props) {
4418
4418
  };
4419
4419
  }),
4420
4420
  rows: groups[groupName].map(function (item) {
4421
- item.checked = pageContext.checked.some(function (id) {
4422
- return id === item.id;
4423
- });
4421
+ item.checked = pageContext.checked.has(item.id);
4424
4422
  item.actions = actions ? actions.map(function (_action) {
4425
4423
  return _action.filter ? _action.filter(item) ? /*#__PURE__*/React__default["default"].createElement(Icon, {
4426
4424
  icon: _action.icon,