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.31 to 2.4.32

4

controls/slick.columnpicker.js

@@ -217,2 +217,4 @@ /***

if ($(e.target).is(":checkbox")) {
var isChecked = e.target.checked;
var columnId = $(e.target).data("column-id") || "";
var visibleColumns = [];

@@ -231,3 +233,3 @@ $.each(columnCheckboxes, function (i) {

_grid.setColumns(visibleColumns);
onColumnsChanged.notify({ allColumns: columns, columns: visibleColumns, grid: _grid });
onColumnsChanged.notify({ columnId: columnId, showing: isChecked, allColumns: columns, columns: visibleColumns, grid: _grid });
}

@@ -234,0 +236,0 @@ }

@@ -603,2 +603,4 @@ /***

if ($(e.target).is(":checkbox")) {
var isChecked = e.target.checked;
var columnId = $(e.target).data("column-id") || "";
var visibleColumns = [];

@@ -617,2 +619,4 @@ $.each(columnCheckboxes, function (i) {

var callbackArgs = {
"columnId": columnId,
"showing": isChecked,
"grid": _grid,

@@ -619,0 +623,0 @@ "allColumns": columns,

{
"name": "slickgrid",
"version": "2.4.31",
"version": "2.4.32",
"description": "A lightning fast JavaScript grid/spreadsheet",

@@ -37,6 +37,6 @@ "main": "slick.core.js",

"devDependencies": {
"cypress": "^5.1.0",
"eslint": "^7.8.1",
"cypress": "^6.0.0",
"eslint": "^7.14.0",
"http-server": "^0.12.3"
}
}

@@ -102,3 +102,7 @@ (function ($) {

// focus on first input
setTimeout(function () { editors[0].focus(); }, 0);
setTimeout(function () {
if (Array.isArray(editors) && editors.length > 0 && editors[0].focus) {
editors[0].focus();
}
}, 0);
}

@@ -105,0 +109,0 @@

Sorry, the diff of this file is not supported yet

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