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.modern.js
CHANGED
@@ -1441,7 +1441,9 @@ var DataTable = function DataTable(props) {
|
|
1441
1441
|
}
|
1442
1442
|
|
1443
1443
|
function select(row, event) {
|
1444
|
-
if (
|
1444
|
+
if (event.target.id !== "checked") {
|
1445
|
+
if (onRowSelection) onRowSelection(row, event);
|
1446
|
+
}
|
1445
1447
|
}
|
1446
1448
|
|
1447
1449
|
function sort(dragged, dropped) {
|