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.umd.js
CHANGED
@@ -8184,6 +8184,10 @@
|
|
8184
8184
|
rows: []
|
8185
8185
|
};
|
8186
8186
|
}, [schema]);
|
8187
|
+
table.columns.push({
|
8188
|
+
id: "actions",
|
8189
|
+
label: ""
|
8190
|
+
});
|
8187
8191
|
var items = filter ? filter(all) : all;
|
8188
8192
|
if (items.length === 0) return /*#__PURE__*/React__default["default"].createElement("div", {
|
8189
8193
|
className: "empty-message"
|
@@ -8226,10 +8230,6 @@
|
|
8226
8230
|
}));
|
8227
8231
|
return item;
|
8228
8232
|
});
|
8229
|
-
table.columns.push({
|
8230
|
-
id: "actions",
|
8231
|
-
label: ""
|
8232
|
-
});
|
8233
8233
|
table.rows = rows;
|
8234
8234
|
return {
|
8235
8235
|
id: groupName,
|