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.modern.js
CHANGED
@@ -4887,6 +4887,7 @@ var CollectionPage = function CollectionPage(props) {
|
|
4887
4887
|
title = props.title,
|
4888
4888
|
_props$name = props.name,
|
4889
4889
|
name = _props$name === void 0 ? "Collection 1" : _props$name,
|
4890
|
+
className = props.className,
|
4890
4891
|
schema = props.schema,
|
4891
4892
|
url = props.url,
|
4892
4893
|
field = props.field,
|
@@ -4958,7 +4959,7 @@ var CollectionPage = function CollectionPage(props) {
|
|
4958
4959
|
}
|
4959
4960
|
|
4960
4961
|
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
|
4961
|
-
className: "collection-page",
|
4962
|
+
className: "collection-page " + className,
|
4962
4963
|
title: /*#__PURE__*/React.createElement(Text, null, title)
|
4963
4964
|
}, canAdd ? /*#__PURE__*/React.createElement(Button, {
|
4964
4965
|
icon: "add",
|