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.13 to 2.4.14

2

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

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

@@ -86,8 +86,2 @@ /***

});
if (Object.freeze) {
Object.freeze(Slick.ColAutosizeMode);
Object.freeze(Slick.AutoWidthStrategy);
}

@@ -94,0 +88,0 @@ /***

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

function setFunctionName(fn, fnName) {
if (Object && Object.defineProperty) {
try {
Object.defineProperty(fn, 'name', {

@@ -838,3 +838,3 @@ writable: true,

});
} else {
} catch(err) {
fn.name = fnName;

@@ -841,0 +841,0 @@ }

@@ -41,3 +41,4 @@ (function ($) {

groupFormatter: defaultGroupCellFormatter,
totalsFormatter: defaultTotalsCellFormatter
totalsFormatter: defaultTotalsCellFormatter,
includeHeaderTotals: false
};

@@ -141,3 +142,3 @@

function getGroupRowMetadata(item) {
var groupLevel = item && item.level;
var groupLevel = item && item.level;
return {

@@ -147,5 +148,6 @@ selectable: false,

cssClasses: options.groupCssClass + ' slick-group-level-' + groupLevel,
formatter: options.includeHeaderTotals && options.totalsFormatter,
columns: {
0: {
colspan: "*",
colspan: options.includeHeaderTotals?"1":"*",
formatter: options.groupFormatter,

@@ -152,0 +154,0 @@ editor: null

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