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.modern.js
CHANGED
@@ -8182,6 +8182,10 @@ var TableEditor$1 = function TableEditor(props) {
|
|
8182
8182
|
rows: []
|
8183
8183
|
};
|
8184
8184
|
}, [schema]);
|
8185
|
+
table.columns.push({
|
8186
|
+
id: "actions",
|
8187
|
+
label: ""
|
8188
|
+
});
|
8185
8189
|
var items = filter ? filter(all) : all;
|
8186
8190
|
if (items.length === 0) return /*#__PURE__*/React.createElement("div", {
|
8187
8191
|
className: "empty-message"
|
@@ -8224,10 +8228,6 @@ var TableEditor$1 = function TableEditor(props) {
|
|
8224
8228
|
}));
|
8225
8229
|
return item;
|
8226
8230
|
});
|
8227
|
-
table.columns.push({
|
8228
|
-
id: "actions",
|
8229
|
-
label: ""
|
8230
|
-
});
|
8231
8231
|
table.rows = rows;
|
8232
8232
|
return {
|
8233
8233
|
id: groupName,
|