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
239
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 25.1.39 to 25.1.41

12

CHANGELOG.md

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

- `#I578431` - Last page index issue in virtualization when adding new record after scrolling issue has been fixed.
- `#I570787` - Fixed issue with Excel exporting in remote data with custom datasource.
- `#I575019` - Resolved white space issue on scrolling to the bottom when virtualization enabled with `frozenColumns`.
- `#I575021` - Resolved bottom scrolling issue when virtualization enabled with `frozenColumns` and column template.
- `#I571916` - Resolved exception while showing tooltip when the `treeColumnIndex` greater than overall columns.
## 25.1.39 (2024-04-09)
### Tree Grid
#### Bug Fixes
- `#I558418` - Resolved data re-rendering on scrolling up in virtualization.

@@ -11,0 +23,0 @@ - `#F187000` - Nested parent remains the expanded property when its root parent is collapsed in remote data with loadChildOnDemand.

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 25.1.39
* version : 25.1.41
* Copyright Syncfusion Inc. 2001 - 2023. 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@25.1.37",
"_id": "@syncfusion/ej2-treegrid@25.1.39",
"_inBundle": false,
"_integrity": "sha512-ePeCjuDmiMas23g+HjJ/K6k3Sv5j33AqOcHT+9tMeaX3Ef6d4+5LbdX+UaRmZORO2DVP1CsneN9jzffNDIAawA==",
"_integrity": "sha512-GFkpdP8lfUb4VLMxJctt3XCFdf6fVbCux8qcetuuO58xHzCUmWBw3ZSxH3vpAc5rsgGHAUEz6/CsTCAB6D09Gw==",
"_location": "/@syncfusion/ej2-treegrid",

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

],
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-25.1.37.tgz",
"_shasum": "eb6276ece49cd424c95c59f3ef62a011033271c6",
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-25.1.39.tgz",
"_shasum": "baf7e1d00ca21c99de30b7e0a7ad4425f7c26834",
"_spec": "@syncfusion/ej2-treegrid@*",

@@ -42,4 +42,4 @@ "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",

"@syncfusion/ej2-data": "~25.1.35",
"@syncfusion/ej2-grids": "~25.1.39",
"@syncfusion/ej2-popups": "~25.1.39"
"@syncfusion/ej2-grids": "~25.1.41",
"@syncfusion/ej2-popups": "~25.1.41"
},

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

"typings": "index.d.ts",
"version": "25.1.39",
"version": "25.1.41",
"sideEffects": false
}

@@ -139,3 +139,3 @@ import { getObject, Grid, ExcelExport as GridExcel } from '@syncfusion/ej2-grids';

}
if (property && property.dataSource && this.isLocal()) {
if (property && property.dataSource) {
var flatsData = this.parent.flatData;

@@ -142,0 +142,0 @@ var dataSrc = property.dataSource instanceof DataManager ? property.dataSource.dataSource.json : property.dataSource;

@@ -130,10 +130,10 @@ var __extends = (this && this.__extends) || (function () {

var modifiedStartIndex = counts.startIndex + (counts.count - counts.endIndex);
if (counts.startIndex <= modifiedStartIndex && counts.endIndex <= modifiedStartIndex) {
if (counts.count - counts.startIndex <= this.parent.grid.pageSettings.pageSize) {
startIndex = modifiedStartIndex;
endIndex = counts.count;
}
else {
startIndex = counts.startIndex;
endIndex = counts.endIndex;
}
else {
startIndex = modifiedStartIndex;
endIndex = counts.count;
}
this.parent['isAddedFromGantt'] = false;

@@ -140,0 +140,0 @@ }

@@ -205,3 +205,3 @@ var __extends = (this && this.__extends) || (function () {

var initialRowTop = 'initialRowTop';
if (!isNullOrUndefined(this.parent.getRowByIndex(0)) && this.parent.getRows().length && !this["" + initialRowTop]) {
if (this.parent.getRows().length && !isNullOrUndefined(this.parent.getRowByIndex(0)) && !this["" + initialRowTop]) {
var rowTop = this.parent.getRowByIndex(0).getBoundingClientRect().top;

@@ -485,2 +485,5 @@ var gridTop = this.parent.element.getBoundingClientRect().top;

var page = viewInfo.loadNext && !viewInfo.loadSelf ? viewInfo.nextInfo.page : viewInfo.page;
if (downScroll && this.endIndex === this.totalRecords && viewInfo.loadNext) {
viewInfo.loadNext = false;
}
this.parent.setProperties({ pageSettings: { currentPage: page } }, true);

@@ -487,0 +490,0 @@ this.requestType = 'virtualscroll';

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

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

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