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

@syncfusion/ej2-treegrid

Package Overview
Dependencies
Maintainers
3
Versions
240
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-treegrid - npm Package Compare versions

Comparing version 18.2.58 to 18.2.59

8

CHANGELOG.md

@@ -9,2 +9,10 @@ # Changelog

- `#F157258` - `updateRow` method works fine for updating collapsed data.
## 18.2.58 (2020-09-15)
### TreeGrid
#### Bug Fixes
- `#292933` - checkbox rendered properly while using the template column.

@@ -11,0 +19,0 @@ - `#290187` - Row drag and drop between treegrid works fine while using self reference data binding.

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 18.2.58
* version : 18.2.59
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-treegrid@*",
"_id": "@syncfusion/ej2-treegrid@18.2.57",
"_id": "@syncfusion/ej2-treegrid@18.2.58",
"_inBundle": false,
"_integrity": "sha512-T9aXnV76bucYfo+jF7FLbcPlCZbJR2py1jGYgiwRibGLWMuA1WPccurFMOM/ECVsPFJeYhvlkqEvwrkU7t+QqQ==",
"_integrity": "sha512-O6KeIrJVvZKQIkZzO3ssCJTtqX7r1XbBvsH/NaEkTLKt4DeRz1YqBA+5agjcuM4QqxC1VpON2y2TCwWSTw1GNA==",
"_location": "/@syncfusion/ej2-treegrid",

@@ -27,4 +27,4 @@ "_phantomChildren": {},

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.2.57.tgz",
"_shasum": "452a479a76065325bc9d2d1a069eb378d7959158",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.2.58.tgz",
"_shasum": "34a3aa46e5b6b55d7a7db6e3b0179d516290cd99",
"_spec": "@syncfusion/ej2-treegrid@*",

@@ -40,6 +40,6 @@ "_where": "/jenkins/workspace/automation_release_18.1.0.1-52JLNOGRCDHXRVQM3W564VPLFCPHWUYDYU3I3DVRABSR7F6AIFYQ/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~18.2.57",
"@syncfusion/ej2-base": "~18.2.59",
"@syncfusion/ej2-data": "~18.2.54",
"@syncfusion/ej2-grids": "~18.2.58",
"@syncfusion/ej2-popups": "~18.2.54"
"@syncfusion/ej2-grids": "~18.2.59",
"@syncfusion/ej2-popups": "~18.2.57"
},

@@ -65,4 +65,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "18.2.58",
"version": "18.2.59",
"sideEffects": false
}

@@ -39,3 +39,4 @@ import { isNullOrUndefined, extend, getValue } from '@syncfusion/ej2-base';

}
var keys = Object.keys(modifiedData[k].taskData);
var keys = modifiedData[k].taskData ? Object.keys(modifiedData[k].taskData) :
Object.keys(modifiedData[k]);
i = treeData.length;

@@ -74,3 +75,6 @@ var _loop_1 = function () {

var editedData = getParentData(control, modifiedData[k].uniqueID);
editedData.taskData[keys[j]] = editedData[keys[j]] = treeData[i][keys[j]] = modifiedData[k][keys[j]];
treeData[i][keys[j]] = modifiedData[k][keys[j]];
if (editedData && editedData.taskData) {
editedData.taskData[keys[j]] = editedData[keys[j]] = treeData[i][keys[j]];
}
}

@@ -77,0 +81,0 @@ }

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

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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

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