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.modern.js
CHANGED
@@ -3945,11 +3945,12 @@ var Page = function Page(props) {
|
|
3945
3945
|
_props$layout = props.layout,
|
3946
3946
|
layout = _props$layout === void 0 ? "simple" : _props$layout,
|
3947
3947
|
_props$context = props.context,
|
3948
|
-
context = _props$context === void 0 ? {} : _props$context
|
3948
|
+
context = _props$context === void 0 ? {} : _props$context,
|
3949
|
+
className = props.className;
|
3949
3950
|
return /*#__PURE__*/React.createElement(PageProvider, {
|
3950
3951
|
context: context
|
3951
3952
|
}, /*#__PURE__*/React.createElement("article", {
|
3952
|
-
className: "page6 " + layout
|
3953
|
+
className: "page6 " + layout + " " + className
|
3953
3954
|
}, children));
|
3954
3955
|
};
|
3955
3956
|
|
@@ -6582,7 +6583,8 @@ var EditContentDialog = function EditContentDialog(_ref) {
|
|
6582
6583
|
value = _ref$value === void 0 ? {} : _ref$value,
|
6583
6584
|
filter = _ref.filter,
|
6584
6585
|
validator = _ref.validator,
|
6585
|
-
onOK = _ref.onOK
|
6586
|
+
onOK = _ref.onOK,
|
6587
|
+
className = _ref.className;
|
6586
6588
|
var site = useContext(SiteContext);
|
6587
6589
|
|
6588
6590
|
var _useState = useState(value),
|
@@ -6650,7 +6652,8 @@ var EditContentDialog = function EditContentDialog(_ref) {
|
|
6650
6652
|
}, /*#__PURE__*/React.createElement(ContentEditor, {
|
6651
6653
|
content: content,
|
6652
6654
|
onChange: change,
|
6653
|
-
filter: filterForm
|
6655
|
+
filter: filterForm,
|
6656
|
+
className: className
|
6654
6657
|
}), errors.map(function (error) {
|
6655
6658
|
return /*#__PURE__*/React.createElement(Text, {
|
6656
6659
|
use: "overline",
|