ywana-core8 0.0.802 → 0.0.804
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 +7 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +7 -4
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +7 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/EditContentDialog.js +2 -2
- package/src/site/page.js +2 -2
package/dist/index.umd.js
CHANGED
@@ -3947,11 +3947,12 @@
|
|
3947
3947
|
_props$layout = props.layout,
|
3948
3948
|
layout = _props$layout === void 0 ? "simple" : _props$layout,
|
3949
3949
|
_props$context = props.context,
|
3950
|
-
context = _props$context === void 0 ? {} : _props$context
|
3950
|
+
context = _props$context === void 0 ? {} : _props$context,
|
3951
|
+
className = props.className;
|
3951
3952
|
return /*#__PURE__*/React__default["default"].createElement(PageProvider, {
|
3952
3953
|
context: context
|
3953
3954
|
}, /*#__PURE__*/React__default["default"].createElement("article", {
|
3954
|
-
className: "page6 " + layout
|
3955
|
+
className: "page6 " + layout + " " + className
|
3955
3956
|
}, children));
|
3956
3957
|
};
|
3957
3958
|
|
@@ -6584,7 +6585,8 @@
|
|
6584
6585
|
value = _ref$value === void 0 ? {} : _ref$value,
|
6585
6586
|
filter = _ref.filter,
|
6586
6587
|
validator = _ref.validator,
|
6587
|
-
onOK = _ref.onOK
|
6588
|
+
onOK = _ref.onOK,
|
6589
|
+
className = _ref.className;
|
6588
6590
|
var site = React.useContext(SiteContext);
|
6589
6591
|
|
6590
6592
|
var _useState = React.useState(value),
|
@@ -6652,7 +6654,8 @@
|
|
6652
6654
|
}, /*#__PURE__*/React__default["default"].createElement(ContentEditor, {
|
6653
6655
|
content: content,
|
6654
6656
|
onChange: change,
|
6655
|
-
filter: filterForm
|
6657
|
+
filter: filterForm,
|
6658
|
+
className: className
|
6656
6659
|
}), errors.map(function (error) {
|
6657
6660
|
return /*#__PURE__*/React__default["default"].createElement(Text, {
|
6658
6661
|
use: "overline",
|