ywana-core8 0.0.723 → 0.0.724
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.umd.js
CHANGED
@@ -10387,8 +10387,9 @@
|
|
10387
10387
|
var context = React.useContext(CollectionContext);
|
10388
10388
|
var selected = context.selected;
|
10389
10389
|
var customEditor = props.customEditor;
|
10390
|
+
var style = selected ? 'selected' : '';
|
10390
10391
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
10391
|
-
className: "collection-editor " +
|
10392
|
+
className: "collection-editor " + style
|
10392
10393
|
}, customEditor);
|
10393
10394
|
};
|
10394
10395
|
|