ywana-core8 0.0.401 → 0.0.404
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 +6 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +6 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +6 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -1
- package/src/domain/TablePage.js +4 -2
- package/src/site/dialog.js +1 -1
package/dist/index.modern.js
CHANGED
@@ -3400,7 +3400,7 @@ var Dialog = function Dialog(props) {
|
|
3400
3400
|
className: "overlay " + className,
|
3401
3401
|
onMouseDown: close
|
3402
3402
|
}), /*#__PURE__*/React.createElement("dialog", {
|
3403
|
-
className: "dialog-panel
|
3403
|
+
className: "dialog-panel " + className
|
3404
3404
|
}, /*#__PURE__*/React.createElement("header", null, icon ? /*#__PURE__*/React.createElement(MenuIcon, {
|
3405
3405
|
icon: icon
|
3406
3406
|
}) : null, /*#__PURE__*/React.createElement(Text, null, title)), /*#__PURE__*/React.createElement("main", null, children), /*#__PURE__*/React.createElement("footer", null, actions)));
|
@@ -5752,8 +5752,11 @@ var TableFilters = function TableFilters(props) {
|
|
5752
5752
|
if (filterSchema[key].filter === false) {
|
5753
5753
|
delete filterSchema[key];
|
5754
5754
|
} else if (filterSchema[key].type === TYPES.ENTITY) {
|
5755
|
-
var fs = filterSchema.item;
|
5756
|
-
|
5755
|
+
var fs = filterSchema[key].item;
|
5756
|
+
|
5757
|
+
for (var key in fs) {
|
5758
|
+
if (fs[key].filter === false) delete fs[key];
|
5759
|
+
}
|
5757
5760
|
}
|
5758
5761
|
}
|
5759
5762
|
|