Gathering detailed insights and metrics for react-table-drag-select
Gathering detailed insights and metrics for react-table-drag-select
Gathering detailed insights and metrics for react-table-drag-select
Gathering detailed insights and metrics for react-table-drag-select
dfws-react-table-drag-select
React component for drag selecting table cells
react-select-table
React table component with selectable items
react-drag-select-table
- [x] fix the issue, where dragging the mouse to a different cell of the same row toggles the selection/ deselection - [x] add input that filters table content, add a label that says, how many items are selected - [ ] add highlighting of the matching pa
use-table-drag-select
A React hook for selecting table cells by dragging
npm install react-table-drag-select
Typescript
Module System
Node Version
NPM Version
JavaScript (88.5%)
CSS (11.5%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
86 Stars
59 Commits
26 Forks
2 Watchers
1 Branches
2 Contributors
Updated on Mar 17, 2025
Latest Version
0.3.1
Package Id
react-table-drag-select@0.3.1
Size
9.12 kB
NPM Version
5.3.0
Node Version
8.3.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1npm install -S react-table-drag-select
This code was used to make the gif you see above. See the demo for advanced usage.
1import React from "react"; 2import TableDragSelect from "react-table-drag-select"; 3import "react-table-drag-select/style.css"; 4 5class App extends React.Component { 6 state = { 7 cells: [ 8 [false, false, false, false, false, false], 9 [false, false, false, false, false, false], 10 [false, false, false, false, false, false], 11 [false, false, false, false, false, false], 12 [false, false, false, false, false, false], 13 [false, false, false, false, false, false], 14 [false, false, false, false, false, false] 15 ] 16 }; 17 18 render = () => 19 <TableDragSelect 20 value={this.state.cells} 21 onChange={cells => this.setState({ cells })} 22 > 23 <tr> 24 <td /> 25 <td /> 26 <td /> 27 <td /> 28 <td /> 29 <td /> 30 </tr> 31 <tr> 32 <td /> 33 <td /> 34 <td /> 35 <td /> 36 <td /> 37 <td /> 38 </tr> 39 <tr> 40 <td /> 41 <td /> 42 <td /> 43 <td /> 44 <td /> 45 <td /> 46 </tr> 47 <tr> 48 <td /> 49 <td /> 50 <td /> 51 <td /> 52 <td /> 53 <td /> 54 </tr> 55 <tr> 56 <td /> 57 <td /> 58 <td /> 59 <td /> 60 <td /> 61 <td /> 62 </tr> 63 <tr> 64 <td /> 65 <td /> 66 <td /> 67 <td /> 68 <td /> 69 <td /> 70 </tr> 71 <tr> 72 <td /> 73 <td /> 74 <td /> 75 <td /> 76 <td /> 77 <td /> 78 </tr> 79 </TableDragSelect>; 80}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/23 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
114 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More