ywana-core8 0.0.98 → 0.0.99
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 +9 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +9 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +9 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +3 -1
package/dist/index.modern.js
CHANGED
@@ -4298,8 +4298,16 @@ var TableFilters = function TableFilters(props) {
|
|
4298
4298
|
|
4299
4299
|
var TableEditor = function TableEditor(props) {
|
4300
4300
|
var check = function check(ids) {
|
4301
|
+
if (ids === void 0) {
|
4302
|
+
ids = [];
|
4303
|
+
}
|
4301
4304
|
|
4302
|
-
|
4305
|
+
try {
|
4306
|
+
console.log("check: ", ids);
|
4307
|
+
return Promise.resolve();
|
4308
|
+
} catch (e) {
|
4309
|
+
return Promise.reject(e);
|
4310
|
+
}
|
4303
4311
|
};
|
4304
4312
|
|
4305
4313
|
var select = function select(row, event) {
|