ywana-core8 0.0.287 → 0.0.288
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 +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +3 -1
- package/src/html/table.test.js +31 -0
package/dist/index.umd.js
CHANGED
@@ -1444,7 +1444,9 @@
|
|
1444
1444
|
}
|
1445
1445
|
|
1446
1446
|
function select(row, event) {
|
1447
|
-
if (
|
1447
|
+
if (event.target.id !== "checked") {
|
1448
|
+
if (onRowSelection) onRowSelection(row, event);
|
1449
|
+
}
|
1448
1450
|
}
|
1449
1451
|
|
1450
1452
|
function sort(dragged, dropped) {
|