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

slickgrid

Package Overview
Dependencies
Maintainers
2
Versions
123
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.29 to 2.4.30

2

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

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

@@ -37,2 +37,3 @@ /***

* gridContainer: DOM element selector of the grid container, optional but when provided it will be resized with same size as the grid (typically a container holding the grid and extra custom footer/pagination)
* applyResizeToContainer: Defaults to false, do we want to apply the resized dimentions to the grid container as well?
* rightPadding: Defaults to 0, right side padding to remove from the total dimension

@@ -82,2 +83,3 @@ * bottomPadding: Defaults to 20, bottom padding to remove from the total dimension

bottomPadding: 20,
applyResizeToContainer: false,
minHeight: 180,

@@ -272,3 +274,3 @@ minWidth: 300,

_gridDomElm.height(newHeight);
if (options.gridContainer) {
if (options.gridContainer && options.applyResizeToContainer) {
_gridContainerElm.height(newHeight);

@@ -279,3 +281,3 @@ }

_gridDomElm.width(newWidth);
if (options.gridContainer) {
if (options.gridContainer && options.applyResizeToContainer) {
_gridContainerElm.width(newWidth);

@@ -282,0 +284,0 @@ }

@@ -46,2 +46,3 @@ (function ($) {

formValues: {},
editors: {}
};

@@ -94,3 +95,5 @@

editors.push(new (column.editor)(newArgs));
var currentEditor = new (column.editor)(newArgs);
options.editors[column.id] = currentEditor; // add every Editor instance refs
editors.push(currentEditor);
}

@@ -97,0 +100,0 @@ idx++;

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