ywana-core8 0.0.934 → 0.0.936
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 +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +4 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +1 -1
- package/src/domain/TablePage.js +1 -1
- package/src/incubator/task.css +4 -0
package/dist/index.cjs
CHANGED
@@ -5966,7 +5966,8 @@ var ContentEditor = function ContentEditor(_ref) {
|
|
5966
5966
|
return filter ? filter(field, content) : true;
|
5967
5967
|
});
|
5968
5968
|
return filtered.length > 0 ? /*#__PURE__*/React__default["default"].createElement("section", {
|
5969
|
-
key: title
|
5969
|
+
key: title,
|
5970
|
+
className: title
|
5970
5971
|
}, title && title.length > 0 ? /*#__PURE__*/React__default["default"].createElement("header", null, title) : null, /*#__PURE__*/React__default["default"].createElement("main", null, filtered.map(function (field) {
|
5971
5972
|
return /*#__PURE__*/React__default["default"].createElement(FieldEditor, {
|
5972
5973
|
key: field.id,
|
@@ -8235,7 +8236,8 @@ var TablePage = function TablePage(props) {
|
|
8235
8236
|
type: schema,
|
8236
8237
|
onOK: onOK,
|
8237
8238
|
validator: validator,
|
8238
|
-
filter: formFilter
|
8239
|
+
filter: formFilter,
|
8240
|
+
className: className + "-create-dialog"
|
8239
8241
|
}));
|
8240
8242
|
}
|
8241
8243
|
function saveQuery(filters) {
|