ywana-core8 0.0.801 → 0.0.803

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
@@ -3953,11 +3953,12 @@ var Page = function Page(props) {
3953
3953
  _props$layout = props.layout,
3954
3954
  layout = _props$layout === void 0 ? "simple" : _props$layout,
3955
3955
  _props$context = props.context,
3956
- context = _props$context === void 0 ? {} : _props$context;
3956
+ context = _props$context === void 0 ? {} : _props$context,
3957
+ className = props.className;
3957
3958
  return /*#__PURE__*/React__default["default"].createElement(PageProvider, {
3958
3959
  context: context
3959
3960
  }, /*#__PURE__*/React__default["default"].createElement("article", {
3960
- className: "page6 " + layout
3961
+ className: "page6 " + layout + " " + className
3961
3962
  }, children));
3962
3963
  };
3963
3964
 
@@ -5679,7 +5680,9 @@ var EntityEditor = function EntityEditor(_ref6) {
5679
5680
  onChange = _ref6.onChange;
5680
5681
  var id = field.id,
5681
5682
  item = field.item,
5682
- label = field.label;
5683
+ label = field.label,
5684
+ _field$outlined = field.outlined,
5685
+ outlined = _field$outlined === void 0 ? false : _field$outlined;
5683
5686
  var content = new Content(item, value);
5684
5687
 
5685
5688
  function change(fid, value) {
@@ -5725,7 +5728,7 @@ var EntityEditor = function EntityEditor(_ref6) {
5725
5728
  key: field.id,
5726
5729
  field: field,
5727
5730
  onChange: change,
5728
- outlined: true,
5731
+ outlined: outlined,
5729
5732
  content: content
5730
5733
  });
5731
5734
  }))) : null;