ywana-core8 0.0.597 → 0.0.598
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 +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -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
@@ -5566,6 +5566,7 @@ var CollectionPage = function CollectionPage(props) {
|
|
5566
5566
|
_props$canEdit = props.canEdit,
|
5567
5567
|
canEdit = _props$canEdit === void 0 ? false : _props$canEdit,
|
5568
5568
|
searchBy = props.searchBy,
|
5569
|
+
addValidator = props.addValidator,
|
5569
5570
|
_props$autosave = props.autosave,
|
5570
5571
|
autosave = _props$autosave === void 0 ? false : _props$autosave,
|
5571
5572
|
_props$delay = props.delay,
|
@@ -5614,7 +5615,8 @@ var CollectionPage = function CollectionPage(props) {
|
|
5614
5615
|
site.openDialog( /*#__PURE__*/React.createElement(CreateContentDialog, {
|
5615
5616
|
label: "" + name,
|
5616
5617
|
type: schema,
|
5617
|
-
onOK: onOK
|
5618
|
+
onOK: onOK,
|
5619
|
+
validator: addValidator
|
5618
5620
|
}));
|
5619
5621
|
}
|
5620
5622
|
|