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.umd.js
CHANGED
@@ -4302,8 +4302,16 @@
|
|
4302
4302
|
|
4303
4303
|
var TableEditor = function TableEditor(props) {
|
4304
4304
|
var check = function check(ids) {
|
4305
|
+
if (ids === void 0) {
|
4306
|
+
ids = [];
|
4307
|
+
}
|
4305
4308
|
|
4306
|
-
|
4309
|
+
try {
|
4310
|
+
console.log("check: ", ids);
|
4311
|
+
return Promise.resolve();
|
4312
|
+
} catch (e) {
|
4313
|
+
return Promise.reject(e);
|
4314
|
+
}
|
4307
4315
|
};
|
4308
4316
|
|
4309
4317
|
var select = function select(row, event) {
|