ywana-core8 0.0.647 → 0.0.649
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 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage2.js +3 -2
- package/src/incubator/stateMachine.js +97 -0
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"
|