ywana-core8 0.0.648 → 0.0.650
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 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -4
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage2.js +2 -2
package/dist/index.cjs
CHANGED
@@ -8190,6 +8190,10 @@ var TableEditor$1 = function TableEditor(props) {
|
|
8190
8190
|
rows: []
|
8191
8191
|
};
|
8192
8192
|
}, [schema]);
|
8193
|
+
table.columns.push({
|
8194
|
+
id: "actions",
|
8195
|
+
label: ""
|
8196
|
+
});
|
8193
8197
|
var items = filter ? filter(all) : all;
|
8194
8198
|
if (items.length === 0) return /*#__PURE__*/React__default["default"].createElement("div", {
|
8195
8199
|
className: "empty-message"
|
@@ -8232,10 +8236,6 @@ var TableEditor$1 = function TableEditor(props) {
|
|
8232
8236
|
}));
|
8233
8237
|
return item;
|
8234
8238
|
});
|
8235
|
-
table.columns.push({
|
8236
|
-
id: "actions",
|
8237
|
-
label: ""
|
8238
|
-
});
|
8239
8239
|
table.rows = rows;
|
8240
8240
|
return {
|
8241
8241
|
id: groupName,
|