Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fin-hypergrid

Package Overview
Dependencies
Maintainers
2
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fin-hypergrid - npm Package Compare versions

Comparing version 2.1.9 to 2.1.10

2

package.json
{
"name": "fin-hypergrid",
"version": "2.1.9",
"version": "2.1.10",
"description": "Canvas-based high-performance grid",

@@ -5,0 +5,0 @@ "repository": {

@@ -859,3 +859,4 @@ /* eslint-env browser */

var gridLinesVWidth = gridProps.gridLinesVWidth,
top = gridProps.gridLinesColumnHeader ? 0 : visibleRows[this.grid.getHeaderRowCount()].top,
userDataAreaTop = visibleRows[this.grid.getHeaderRowCount()].top,
top = gridProps.gridLinesColumnHeader ? 0 : userDataAreaTop,
bottom = gridProps.gridLinesUserDataArea ? viewHeight : visibleRows[this.grid.getHeaderRowCount() - 1].bottom;

@@ -872,5 +873,9 @@

lineTop = Math.max(top, vc.top || 0), // vc.top may be set by grouped headers plug-in
height = bottom - lineTop;
height = Math.min(bottom, vc.bottom || Infinity) - lineTop;
if (borderBox) { x -= gridLinesVWidth; }
gc.fillRect(x, lineTop, gridLinesVWidth, height);
if (gridProps.gridLinesUserDataArea && vc.bottom < userDataAreaTop) {
gc.fillRect(x, userDataAreaTop, gridLinesVWidth, bottom - userDataAreaTop);
}
}

@@ -877,0 +882,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc