ywana-core8 0.0.519 → 0.0.520
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 +5 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +5 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +5 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TabbedTablePage.js +21 -13
package/dist/index.modern.js
CHANGED
@@ -7389,6 +7389,11 @@ var TableEditor = function TableEditor(props) {
|
|
7389
7389
|
groups[groupName].push(item);
|
7390
7390
|
return groups;
|
7391
7391
|
}, {});
|
7392
|
+
if (groups.length === 0) return /*#__PURE__*/React.createElement("div", {
|
7393
|
+
className: "empty-message"
|
7394
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
7395
|
+
icon: "search_off"
|
7396
|
+
}), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
|
7392
7397
|
return Object.keys(groups).map(function (groupName) {
|
7393
7398
|
var table = {
|
7394
7399
|
columns: Object.values(schema).filter(function (field) {
|