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