ywana-core8 0.0.405 → 0.0.408
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/{__reactpreview__ → __previewjs__}/Wrapper.tsx +0 -0
- package/dist/index.cjs +3 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -5
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/preview.config.cjs +35 -0
- package/src/desktop/dektop.test.js +11 -0
- package/src/desktop/desktop.css +6 -0
- package/src/desktop/desktop.js +13 -0
- package/src/desktop/window.css +58 -0
- package/src/desktop/window.js +27 -0
- package/src/domain/TablePage.js +1 -1
- package/src/html/icon.js +1 -1
- package/reactpreview.config.js +0 -37
package/dist/index.modern.js
CHANGED
@@ -165,7 +165,7 @@ var Icon = function Icon(_ref) {
|
|
165
165
|
event.preventDefault();
|
166
166
|
}
|
167
167
|
|
168
|
-
if (action) action(event);
|
168
|
+
if (action && !disabled) action(event);
|
169
169
|
}
|
170
170
|
|
171
171
|
var style = disabled ? "disabled" : clickable ? "clickable" : "";
|
@@ -5760,11 +5760,9 @@ var TableFilters = function TableFilters(props) {
|
|
5760
5760
|
if (fs[key].filter === false) delete fs[key];
|
5761
5761
|
}
|
5762
5762
|
}
|
5763
|
-
}
|
5763
|
+
} //Object.values(filterSchema).forEach(field => field.section = null)
|
5764
|
+
|
5764
5765
|
|
5765
|
-
Object.values(filterSchema).forEach(function (field) {
|
5766
|
-
return field.section = null;
|
5767
|
-
});
|
5768
5766
|
delete filterSchema.flows;
|
5769
5767
|
return filterSchema;
|
5770
5768
|
}, [schema]);
|