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.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
|
|
@@ -6590,7 +6591,8 @@ var EditContentDialog = function EditContentDialog(_ref) {
|
|
6590
6591
|
value = _ref$value === void 0 ? {} : _ref$value,
|
6591
6592
|
filter = _ref.filter,
|
6592
6593
|
validator = _ref.validator,
|
6593
|
-
onOK = _ref.onOK
|
6594
|
+
onOK = _ref.onOK,
|
6595
|
+
className = _ref.className;
|
6594
6596
|
var site = React.useContext(SiteContext);
|
6595
6597
|
|
6596
6598
|
var _useState = React.useState(value),
|
@@ -6658,7 +6660,8 @@ var EditContentDialog = function EditContentDialog(_ref) {
|
|
6658
6660
|
}, /*#__PURE__*/React__default["default"].createElement(ContentEditor, {
|
6659
6661
|
content: content,
|
6660
6662
|
onChange: change,
|
6661
|
-
filter: filterForm
|
6663
|
+
filter: filterForm,
|
6664
|
+
className: className
|
6662
6665
|
}), errors.map(function (error) {
|
6663
6666
|
return /*#__PURE__*/React__default["default"].createElement(Text, {
|
6664
6667
|
use: "overline",
|