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.cjs
CHANGED
@@ -1449,7 +1449,9 @@ var DataTable = function DataTable(props) {
|
|
1449
1449
|
}
|
1450
1450
|
|
1451
1451
|
function select(row, event) {
|
1452
|
-
if (
|
1452
|
+
if (event.target.id !== "checked") {
|
1453
|
+
if (onRowSelection) onRowSelection(row, event);
|
1454
|
+
}
|
1453
1455
|
}
|
1454
1456
|
|
1455
1457
|
function sort(dragged, dropped) {
|