New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

slickgrid

Package Overview
Dependencies
Maintainers
2
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slickgrid - npm Package Compare versions

Comparing version 2.4.6 to 2.4.7

2

package.json
{
"name": "slickgrid",
"version": "2.4.6",
"version": "2.4.7",
"description": "A lightning fast JavaScript grid/spreadsheet",

@@ -5,0 +5,0 @@ "main": "slick.core.js",

@@ -16,3 +16,3 @@ (function ($) {

// option
// .viewportMode: FitColsToViewport (Scroll, FitColsToViewport, FitViewportToCols)
// .viewportMode: Legacy (Legacy, IgnoreViewport, FitColsToViewport, FitViewportToCols)
// .switchToScrollModeWidthPercent: undefined

@@ -22,2 +22,5 @@ // .minViewportWidthPx: undefined

//
// forceFitColumns
// absoluteColumnMinWidth - internal setting calulated from cell border and padding
//
// DETAILS

@@ -36,3 +39,3 @@ //

//
// Scroll:
// IgnoreViewport:
// - columns are sized independently of the viewport width. There will be empty space at the

@@ -46,3 +49,3 @@ // right of the viewport if the columns are smaller, and a horizontal scroll bar if they are larger.

// SizeToRemaining cols expand proportionally to fill viewport
// - if the total columns width is wider than the viewport by switchToScrollModeWidthPercent, switch to Scroll mode
// - if the total columns width is wider than the viewport by switchToScrollModeWidthPercent, switch to IgnoreViewport mode
// - otherwise (ie. no SizeToRemaining cols or viewport smaller than columns) all cols other

@@ -67,6 +70,11 @@ // than 'Locked' scale in proportion to fill viewport

// .rowSelectionMode: FirstNRows (FirstRow, FirstNRows, AllRows)
// .valueFilterMode: none (None, DeDuplicate, GetGreatest, GetLongestText, CanvasTextSize, CompareFunction())
// .rowSelectionCount: 100
// .valueFilterMode: None (None, DeDuplicate, GetGreatest, GetLongestText, CompareFunction())
// .widthEvalMode: HTML (CanvasTextSize, HTML)
// .sizeToRemaining: undefined
// .rowSelectionCount: 100
//
// columnDefaults.resizable
// columnDefaults.minWidth
// columnDefaults.maxWidth
//
// DETAILS

@@ -133,5 +141,5 @@ //

var ViewportMode = {
Scroll: 'SC',
FitColsToViewport: 'FV',
FitViewportToCols: 'FC'
IgnoreViewport: 'IGV',
FitColsToViewport: 'FCV',
FitViewportToCols: 'FVC'
};

@@ -138,0 +146,0 @@ if (Object.freeze) { Object.freeze(ViewportMode); }

Sorry, the diff of this file is too big to display

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