Skip to content

Commit

Permalink
v16.1.24 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
essentialjs2 committed Feb 22, 2018
1 parent db12e06 commit 804e465
Show file tree
Hide file tree
Showing 148 changed files with 7,273 additions and 4,457 deletions.
53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,59 @@

## [Unreleased]

### Grid

#### New Features

- New Excel like column filtering option is added.
- Added Look-up table or foreign key data binding to grid column.
- Row height adjustment feature added.

#### Breaking Changes

- All grid enum property values are changed from camel casing to pascal casing. Please refer the below link for complete API changes from `v15.4.23` to `v16.1.24`.
[Migration](http://ej2.syncfusion.com/documentation/grid/migration.html).

## 15.4.30-preview (2018-02-14)

### Grid

#### Bug Fixes

- Exporting is working fine with template column.
- Aggregate with frozen columns scroller is working fine

## 15.4.29-preview (2018-02-07)

### Grid

#### Bug Fixes

- Renamed event `dataSourceChange` to `dataSourceChanged`.

## 15.4.28-preview (2018-01-30)

### Grid

#### Bug Fixes

- Child Grid editing dialog closes when clicking on edit element.
- Printing window is blocking by browser and column hiding.
- `getSelectedRecords` method returns selected records properly with checkbox persist selection fixed.
- Aggregate with frozen columns scroller is working fine.

## 15.4.27-preview (2018-01-30)

### Grid

#### Bug Fixes

- Disable edit, delete button when Grid is empty.
- `ShowConfirmDialog` is not showing in Command Column.
- Grid Validation message is not shown in EJ2 compatibility theme.
- Checkbox selection fixes with virtual scrolling.
- Provide support to add row with rowindex in AddRecord method.

## 15.4.26-preview (2018-01-23)

### Grid
Expand Down
1 change: 0 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ gulp.task('styles', function() {
}))
.pipe(gulp.dest('.'));
});

/* jshint strict: false */
/* jshint undef: false */

Expand Down
12 changes: 6 additions & 6 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ module.exports = function (config) {
files: [
"test-main.js",
"styles/grid/material.css",
{ pattern: "src/**/*.js", included: false },
{ pattern: "src/**/*.js", included: false },
{ pattern: "spec/**/datasource.spec.js", included: false },
{ pattern: "spec/**/specutil.spec.js", included: false },
{ pattern: "spec/**/*.spec.js", included: false },
{ pattern: "spec/**/*.spec.js", included: false },
{ pattern: "node_modules/@syncfusion/ej2-base/**/*.js", included: false },
{ pattern: "node_modules/@syncfusion/ej2-data/**/*.js", included: false },
{ pattern: "node_modules/@syncfusion/ej2-inputs/**/*.js", included: false },
Expand Down Expand Up @@ -96,10 +96,10 @@ module.exports = function (config) {
type: "html",
check: {
each: {
statements: 90,
branches: 90,
functions: 100,
lines: 90
statements: 90,
branches: 90,
functions: 100,
lines: 90
}
}
}
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "@syncfusion/ej2-grids",
"version": "15.4.26",
"version": "16.1.24",
"description": "Essential JS 2 Grid Component",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
"main": "./dist/ej2-grids.umd.min.js",
"module": "./dist/es6/ej2-grids.es5.js",
"es2015": "./dist/es6/ej2-grids.es2015.js",
"dependencies": {
"@syncfusion/ej2-base": "*",
"@syncfusion/ej2-data": "*",
"@syncfusion/ej2-navigations": "*",
"@syncfusion/ej2-inputs": "*",
"@syncfusion/ej2-calendars": "*",
"@syncfusion/ej2-dropdowns": "*",
"@syncfusion/ej2-popups": "*",
"@syncfusion/ej2-buttons": "*",
"@syncfusion/ej2-lists": "*",
"@syncfusion/ej2-excel-export": "*",
"@syncfusion/ej2-pdf-export": "*",
"@syncfusion/ej2-file-utils": "*",
"@syncfusion/ej2-compression": "*"
"@syncfusion/ej2-base": "16.1.24",
"@syncfusion/ej2-data": "16.1.24",
"@syncfusion/ej2-navigations": "16.1.24",
"@syncfusion/ej2-inputs": "16.1.24",
"@syncfusion/ej2-calendars": "16.1.24",
"@syncfusion/ej2-dropdowns": "16.1.24",
"@syncfusion/ej2-popups": "16.1.24",
"@syncfusion/ej2-buttons": "16.1.24",
"@syncfusion/ej2-lists": "16.1.24",
"@syncfusion/ej2-excel-export": "16.1.24",
"@syncfusion/ej2-pdf-export": "16.1.24",
"@syncfusion/ej2-file-utils": "16.1.24",
"@syncfusion/ej2-compression": "16.1.24"
},
"devDependencies": {
"@types/chai": "^3.4.28",
Expand Down
Loading

0 comments on commit 804e465

Please sign in to comment.