ywana-core8 0.0.527 → 0.0.528
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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/CollectionPage.js +2 -2
package/dist/index.cjs
CHANGED
@@ -4895,6 +4895,7 @@ var CollectionPage = function CollectionPage(props) {
|
|
4895
4895
|
title = props.title,
|
4896
4896
|
_props$name = props.name,
|
4897
4897
|
name = _props$name === void 0 ? "Collection 1" : _props$name,
|
4898
|
+
className = props.className,
|
4898
4899
|
schema = props.schema,
|
4899
4900
|
url = props.url,
|
4900
4901
|
field = props.field,
|
@@ -4966,7 +4967,7 @@ var CollectionPage = function CollectionPage(props) {
|
|
4966
4967
|
}
|
4967
4968
|
|
4968
4969
|
return /*#__PURE__*/React__default["default"].createElement(React.Fragment, null, /*#__PURE__*/React__default["default"].createElement(Header, {
|
4969
|
-
className: "collection-page",
|
4970
|
+
className: "collection-page " + className,
|
4970
4971
|
title: /*#__PURE__*/React__default["default"].createElement(Text, null, title)
|
4971
4972
|
}, canAdd ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
4972
4973
|
icon: "add",
|