ywana-core8 0.0.723 → 0.0.725

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
@@ -10393,8 +10393,9 @@ var CollectionEditor = function CollectionEditor(props) {
10393
10393
  var context = React.useContext(CollectionContext);
10394
10394
  var selected = context.selected;
10395
10395
  var customEditor = props.customEditor;
10396
+ var style = selected ? 'selected' : '';
10396
10397
  return /*#__PURE__*/React__default["default"].createElement("div", {
10397
- className: "collection-editor " + selected
10398
+ className: "collection-editor " + style
10398
10399
  }, customEditor);
10399
10400
  };
10400
10401