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

@socketsupply/components

Package Overview
Dependencies
Maintainers
4
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@socketsupply/components - npm Package Compare versions

Comparing version 13.2.4 to 13.2.5

2

package.json
{
"name": "@socketsupply/components",
"version": "13.2.4",
"version": "13.2.5",
"description": "Example components",

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

@@ -390,3 +390,4 @@ const Tonic = require('@socketsupply/tonic')

const totalHeight = this.rows.length * this.props.rowHeight
const rowsLength = this.rows ? this.rows.length : 0
const totalHeight = rowsLength * this.props.rowHeight
if (

@@ -403,3 +404,3 @@ viewEnd === totalHeight &&

if (
this.rows.length === this.props.maxRowsLength &&
rowsLength === this.props.maxRowsLength &&
viewStart === 0 &&

@@ -416,3 +417,3 @@ this.prefetchTop &&

if (!popHappened && (
this.rows.length === this.props.maxRowsLength &&
rowsLength === this.props.maxRowsLength &&
start <= this.props.prefetchThreshold

@@ -464,4 +465,6 @@ )) {

const start = i * parseInt(this.props.rowsPerPage, 10)
const limit = Math.min((i + 1) * this.props.rowsPerPage, this.rows.length)
const rowsLength = this.rows ? this.rows.length : 0
const limit = Math.min((i + 1) * this.props.rowsPerPage, rowsLength)
const inner = this.querySelector('.tonic--windowed--inner')

@@ -468,0 +471,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