@syncfusion/ej2-treegrid
Advanced tools
Comparing version 16.4.48 to 16.4.52
@@ -7,6 +7,25 @@ # Changelog | ||
#### Breaking Changes | ||
- Default value of `editSettings.mode` has been changed to `Cell`. | ||
#### Bug Fixes | ||
- Expanding and Collapsing records is working fine when `pageSizeMode` is set as `All`. | ||
- `expandAtLevel`, `collapseAtLevel`, `expandAll` and `collapseAll` methods are working fine when `pageSizeMode` is set as `All`. | ||
- Added events for the column menu feature and added `columnMenuItems` API to modify the column menu items in column menu. | ||
- Added `sortComparer` API to perform custom sorting in TreeGrid. | ||
- Property change support for `height` property has been provided. | ||
- Expand icon is prevented from displaying for the root/zeroth level record which has `hasChildMapping` field as false. | ||
- Child records of third level or its successor displays properly based on their hierarchy relation in self reference data binding. | ||
- `Query` maintenance support provided for `refresh` method after expanding any child rows. | ||
## 16.4.48 (2019-01-22) | ||
### TreeGrid | ||
#### Bug Fixes | ||
- `Query` maintenance support provided for `refresh` method after expanding any child rows. | ||
## 16.4.46 (2019-01-08) | ||
@@ -13,0 +32,0 @@ |
@@ -0,1 +1,10 @@ | ||
/*! | ||
* filename: index.d.ts | ||
* version : 16.4.52 | ||
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
* A copy of the current license can be obtained at any time by e-mailing | ||
* licensing@syncfusion.com. Any infringement will be prosecuted under | ||
* applicable laws. | ||
*/ | ||
import * as _treegrid from '@syncfusion/ej2-treegrid'; | ||
@@ -2,0 +11,0 @@ |
{ | ||
"name": "@syncfusion/ej2-treegrid", | ||
"version": "16.4.48", | ||
"version": "16.4.52", | ||
"description": "Essential JS 2 TreeGrid Component", | ||
@@ -11,6 +11,6 @@ "author": "Syncfusion Inc.", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~16.4.47", | ||
"@syncfusion/ej2-data": "~16.4.48", | ||
"@syncfusion/ej2-popups": "~16.4.47", | ||
"@syncfusion/ej2-grids": "~16.4.48" | ||
"@syncfusion/ej2-base": "~16.4.52", | ||
"@syncfusion/ej2-data": "~16.4.52", | ||
"@syncfusion/ej2-popups": "~16.4.52", | ||
"@syncfusion/ej2-grids": "~16.4.52" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
@@ -147,1 +147,14 @@ /** | ||
'Child'; | ||
/** | ||
* Defines types of Filter | ||
* * Menu - Specifies the filter type as menu. | ||
* * Excel - Specifies the filter type as excel. | ||
* * FilterBar - Specifies the filter type as filter bar. | ||
*/ | ||
export declare type FilterType = | ||
/** Defines FilterType as filterbar */ | ||
'FilterBar' | | ||
/** Defines FilterType as excel */ | ||
'Excel' | | ||
/** Defines FilterType as menu */ | ||
'Menu'; |
@@ -19,5 +19,2 @@ import { Collection, Property, ChildProperty } from '@syncfusion/ej2-base';import { ICustomOptr, FilterBarMode, FilterType, PredicateModel, Predicate } from '@syncfusion/ej2-grids';import { FilterHierarchyMode } from '../enum'; | ||
* @default FilterBar | ||
* @aspDefaultValueIgnore | ||
* @isEnumeration true | ||
* @aspType Syncfusion.EJ2.Grids.FilterType | ||
*/ | ||
@@ -24,0 +21,0 @@ type?: FilterType; |
@@ -18,5 +18,2 @@ import { ChildProperty } from '@syncfusion/ej2-base'; | ||
* @default FilterBar | ||
* @aspDefaultValueIgnore | ||
* @isEnumeration true | ||
* @aspType Syncfusion.EJ2.Grids.FilterType | ||
*/ | ||
@@ -23,0 +20,0 @@ type: FilterType; |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2431400
22477