Skip to content

Commit

Permalink
Fix scroll (#168)
Browse files Browse the repository at this point in the history
* Fix the bug with header not moving on scrolling horizontally

* Fix npm vulnerabilities

* Bump version to 2.5.9.0

* Optimize scrolling event so it doesn't occure too frequently

* Rename 'cursor' to more understandable name 'pointer edge'

* Move 'pointer edge' settings to 'cells' and group cells slices

* Move edges settings to 'selected cells group'

* Rename cells groups for better
  • Loading branch information
adiletelf authored Sep 23, 2024
1 parent 72fadb9 commit 229e1be
Show file tree
Hide file tree
Showing 8 changed files with 236 additions and 193 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.5.9
* Fix the bug with header not moving on scrolling horizontally
* Fix npm vulnerabilities

## 2.5.8
* Fix the bug with dragging cursors

Expand Down
32 changes: 14 additions & 18 deletions capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,6 @@
}
}
},
"cursor": {
"properties": {
"show": {
"type": {
"bool": true
}
},
"color": {
"type": {
"fill": {
"solid": {
"color": true
}
}
}
}
}
},
"forceSelection": {
"properties": {
"currentPeriod": {
Expand Down Expand Up @@ -316,6 +298,20 @@
"type": {
"numeric": true
}
},
"showEdges": {
"type": {
"bool": true
}
},
"edgeColor": {
"type": {
"fill": {
"solid": {
"color": true
}
}
}
}
}
},
Expand Down
Loading

0 comments on commit 229e1be

Please sign in to comment.