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.umd.js
CHANGED
@@ -4890,6 +4890,7 @@
|
|
4890
4890
|
title = props.title,
|
4891
4891
|
_props$name = props.name,
|
4892
4892
|
name = _props$name === void 0 ? "Collection 1" : _props$name,
|
4893
|
+
className = props.className,
|
4893
4894
|
schema = props.schema,
|
4894
4895
|
url = props.url,
|
4895
4896
|
field = props.field,
|
@@ -4961,7 +4962,7 @@
|
|
4961
4962
|
}
|
4962
4963
|
|
4963
4964
|
return /*#__PURE__*/React__default["default"].createElement(React.Fragment, null, /*#__PURE__*/React__default["default"].createElement(Header, {
|
4964
|
-
className: "collection-page",
|
4965
|
+
className: "collection-page " + className,
|
4965
4966
|
title: /*#__PURE__*/React__default["default"].createElement(Text, null, title)
|
4966
4967
|
}, canAdd ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
4967
4968
|
icon: "add",
|