Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-grids

Package Overview
Dependencies
14
Maintainers
2
Versions
357
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 16.1.34 to 16.1.35

components.d.ts

11

CHANGELOG.md

@@ -6,3 +6,14 @@ # Changelog

### Grid
#### Bug Fixes
- Maximum call stack issue while filtering date column with `disablePageWiseAggregates` is resolved.
- Provided locale support for custom filter labels and column chooser.
- Between operator provides incorrect result in Excel filter issue fixed.
- Content rendering delayed while using virtual scrolling with grouping when scrolling horizontally is resolved.
#### Breaking Changes
- The Locale properties such as `OK`, `Filter`, `Clear` are removed instead use `OKButton`, `FilterButton`, `ClearButton`.
## 16.1.34 (2018-04-10)
### Grid
#### Bug Fixes

@@ -9,0 +20,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 16.1.34
* version : 16.1.35
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.

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

{
"name": "@syncfusion/ej2-grids",
"version": "16.1.34",
"version": "16.1.35",
"description": "Essential JS 2 Grid Component",

@@ -11,15 +11,16 @@ "author": "Syncfusion Inc.",

"dependencies": {
"@syncfusion/ej2-base": "~16.1.33",
"@syncfusion/ej2-base": "~16.1.35",
"@syncfusion/ej2-buttons": "~16.1.35",
"@syncfusion/ej2-calendars": "~16.1.35",
"@syncfusion/ej2-compression": "~16.1.32",
"@syncfusion/ej2-data": "~16.1.32",
"@syncfusion/ej2-navigations": "~16.1.34",
"@syncfusion/ej2-inputs": "~16.1.34",
"@syncfusion/ej2-calendars": "~16.1.34",
"@syncfusion/ej2-dropdowns": "~16.1.34",
"@syncfusion/ej2-popups": "~16.1.32",
"@syncfusion/ej2-buttons": "~16.1.32",
"@syncfusion/ej2-lists": "~16.1.34",
"@syncfusion/ej2-dropdowns": "~16.1.35",
"@syncfusion/ej2-excel-export": "~16.1.32",
"@syncfusion/ej2-file-utils": "~16.1.32",
"@syncfusion/ej2-inputs": "~16.1.35",
"@syncfusion/ej2-lists": "~16.1.35",
"@syncfusion/ej2-navigations": "~16.1.35",
"@syncfusion/ej2-pdf-export": "~16.1.32",
"@syncfusion/ej2-file-utils": "~16.1.32",
"@syncfusion/ej2-compression": "~16.1.32"
"@syncfusion/ej2-popups": "~16.1.32",
"gulp": "^3.9.1"
},

@@ -26,0 +27,0 @@ "devDependencies": {

@@ -106,3 +106,3 @@ define(["require", "exports", "@syncfusion/ej2-base", "../base/util", "@syncfusion/ej2-base", "@syncfusion/ej2-data", "@syncfusion/ej2-buttons", "../base/constant", "../services/value-formatter", "../base/util", "@syncfusion/ej2-popups", "@syncfusion/ej2-inputs", "@syncfusion/ej2-popups", "../base/util"], function (require, exports, ej2_base_1, util_1, ej2_base_2, ej2_data_1, ej2_buttons_1, events, value_formatter_1, util_2, ej2_popups_1, ej2_inputs_1, ej2_popups_2, util_3) {

className: 'e-searchclear e-search-icon e-icons e-input-group-icon', attrs: {
type: 'text', placeholder: this.getLocalizedLabel('Search')
type: 'text', title: this.getLocalizedLabel('Search')
}

@@ -146,7 +146,8 @@ });

click: this.btnClick.bind(this),
buttonModel: { content: this.getLocalizedLabel(this.isExcel ? 'OK' : 'Filter'), cssClass: 'e-primary', isPrimary: true }
buttonModel: { content: this.getLocalizedLabel(this.isExcel ? 'OKButton' : 'FilterButton'),
cssClass: 'e-primary', isPrimary: true }
},
{
click: this.btnClick.bind(this),
buttonModel: { cssClass: 'e-flat', content: this.getLocalizedLabel(this.isExcel ? 'Cancel' : 'Clear') }
buttonModel: { cssClass: 'e-flat', content: this.getLocalizedLabel(this.isExcel ? 'CancelButton' : 'ClearButton') }
}],

@@ -205,6 +206,6 @@ created: this.dialogCreated.bind(this),

var text = e.target.firstChild.textContent.toLowerCase();
if (this.getLocalizedLabel(this.isExcel ? 'OK' : 'Filter').toLowerCase() === text) {
if (this.getLocalizedLabel(this.isExcel ? 'OKButton' : 'FilterButton').toLowerCase() === text) {
this.fltrBtnHandler();
}
else if (this.getLocalizedLabel('Clear').toLowerCase() === text) {
else if (this.getLocalizedLabel('ClearButton').toLowerCase() === text) {
this.clearFilter();

@@ -211,0 +212,0 @@ }

@@ -240,3 +240,4 @@ define(["require", "exports", "@syncfusion/ej2-base", "@syncfusion/ej2-data", "@syncfusion/ej2-base", "../base/constant", "@syncfusion/ej2-popups", "../base/util", "@syncfusion/ej2-buttons", "../services/focus-strategy"], function (require, exports, ej2_base_1, ej2_data_1, ej2_base_2, events, ej2_popups_1, util_1, ej2_buttons_1, focus_strategy_1) {

});
var ccsearchicon = ej2_base_1.createElement('span', { className: 'e-ccsearch-icon e-icons e-cc e-input-group-icon' });
var ccsearchicon = ej2_base_1.createElement('span', { className: 'e-ccsearch-icon e-icons e-cc e-input-group-icon',
attrs: { title: this.l10n.getConstant('Search') } });
var conDiv = ej2_base_1.createElement('div', { className: 'e-cc-contentdiv' });

@@ -243,0 +244,0 @@ this.innerDiv = ej2_base_1.createElement('div', { className: 'e-innerdiv e-cc' });

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

this.dlgObj = new ej2_popups_1.Dialog({
header: 'Custom Filter',
header: this.getLocalizedLabel('CustomFilter'),
isModal: true,

@@ -245,3 +245,3 @@ overlayClick: this.removeDialog.bind(this),

buttonModel: {
content: this.getLocalizedLabel('OK'), isPrimary: true, cssClass: 'e-xlfl-okbtn'
content: this.getLocalizedLabel('OKButton'), isPrimary: true, cssClass: 'e-xlfl-okbtn'
}

@@ -251,3 +251,3 @@ },

click: this.removeDialog.bind(this),
buttonModel: { content: this.getLocalizedLabel('Cancel'), cssClass: 'e-xlfl-cancelbtn' }
buttonModel: { content: this.getLocalizedLabel('CancelButton'), cssClass: 'e-xlfl-cancelbtn' }
}],

@@ -502,3 +502,4 @@ content: mainDiv,

false;
var checkbox = new ej2_buttons_1.CheckBox({ label: 'Match Case', enableRtl: this.parent.enableRtl, checked: flValue });
var checkbox = new ej2_buttons_1.CheckBox({ label: this.getLocalizedLabel('MatchCase'),
enableRtl: this.parent.enableRtl, checked: flValue });
checkbox.appendTo(matchCaseInput);

@@ -505,0 +506,0 @@ };

@@ -515,3 +515,3 @@ define(["require", "exports", "@syncfusion/ej2-base", "../base/util", "@syncfusion/ej2-base", "@syncfusion/ej2-data", "../base/constant", "../base/enum", "../renderer/row-renderer", "../models/cell", "../models/row", "../renderer/filter-cell-renderer", "../base/util", "../renderer/filter-menu-renderer", "../actions/checkbox-filter", "../actions/excel-filter"], function (require, exports, ej2_base_1, util_1, ej2_base_2, ej2_data_1, events, enum_1, row_renderer_1, cell_1, row_1, filter_cell_renderer_1, util_2, filter_menu_renderer_1, checkbox_filter_1, excel_filter_1) {

}
if (this.value === '') {
if (ej2_base_1.isNullOrUndefined(this.value) || this.value === '') {
this.removeFilteredColsByField(this.column.field);

@@ -518,0 +518,0 @@ return;

@@ -33,9 +33,9 @@ define(["require", "exports", "@syncfusion/ej2-base", "@syncfusion/ej2-base", "@syncfusion/ej2-navigations", "../base/constant", "../base/util", "../services/focus-strategy"], function (require, exports, ej2_base_1, ej2_base_2, ej2_navigations_1, events, util_1, focus_strategy_1) {

<span id="' + this.gridID + '_searchbutton" class="e-input-group-icon e-search-icon e-icons" \
tabindex="-1" title="Search In" aria-label= "search"></span> \
tabindex="-1" title="' + this.l10n.getConstant('Search') + '" aria-label= "search"></span> \
</div>',
tooltipText: this.l10n.getConstant('Search'), align: 'right', cssClass: 'e-search-wrapper'
tooltipText: this.l10n.getConstant('Search'), align: 'Right', cssClass: 'e-search-wrapper'
};
this.predefinedItems.ColumnChooser = {
id: this.gridID + '_' + 'columnchooser', cssClass: 'e-cc e-ccdiv e-cc-toolbar', suffixIcon: 'e-' + 'columnchooser-btn',
text: 'Columns', tooltipText: 'columns', align: 'right',
text: this.l10n.getConstant('Columnchooser'), tooltipText: this.l10n.getConstant('Columnchooser'), align: 'Right',
};

@@ -42,0 +42,0 @@ this.createToolbar();

@@ -492,3 +492,8 @@ define(["require", "exports", "@syncfusion/ej2-base", "@syncfusion/ej2-base", "@syncfusion/ej2-base", "@syncfusion/ej2-data", "../models/column", "@syncfusion/ej2-popups"], function (require, exports, ej2_base_1, ej2_base_2, ej2_base_3, ej2_data_1, column_1, ej2_popups_1) {

}
filterObject.ejpredicate = datePredicate;
if (filterObject.setProperties) {
filterObject.setProperties({ ejpredicate: datePredicate }, true);
}
else {
filterObject.ejpredicate = datePredicate;
}
return datePredicate;

@@ -495,0 +500,0 @@ }

@@ -35,3 +35,5 @@ define(["require", "exports", "../base/util", "@syncfusion/ej2-data", "@syncfusion/ej2-dropdowns", "@syncfusion/ej2-base"], function (require, exports, util_1, ej2_data_1, ej2_dropdowns_1, ej2_base_1) {

var drpuiObj = document.querySelector('#bool-ui-' + args.column.uid).ej2_instances[0];
drpuiObj.text = !ej2_base_1.isNullOrUndefined(args.filteredValue) ? args.filteredValue : '';
if (!ej2_base_1.isNullOrUndefined(args.filteredValue)) {
drpuiObj.text = args.filteredValue;
}
};

@@ -38,0 +40,0 @@ BooleanFilterUI.prototype.read = function (element, column, filterOptr, filterObj) {

@@ -51,3 +51,3 @@ define(["require", "exports", "@syncfusion/ej2-popups", "@syncfusion/ej2-base", "../base/constant", "../base/util"], function (require, exports, ej2_popups_1, ej2_base_1, events, util_1) {

DialogEditRender.prototype.btnClick = function (e) {
if (this.l10n.getConstant('CancelButton').toLowerCase() === e.target.innerText.toLowerCase()) {
if (this.l10n.getConstant('CancelButton').toLowerCase() === e.target.innerText.trim().toLowerCase()) {
this.dialogClose();

@@ -54,0 +54,0 @@ }

@@ -48,3 +48,3 @@ define(["require", "exports", "@syncfusion/ej2-dropdowns", "@syncfusion/ej2-data", "@syncfusion/ej2-base", "../base/util"], function (require, exports, ej2_dropdowns_1, ej2_data_1, ej2_base_1, util_1) {

var columns = this.filterSettings.columns;
if (args.filteredValue !== '') {
if (args.filteredValue !== '' && !ej2_base_1.isNullOrUndefined(args.filteredValue)) {
var struiObj = document.querySelector('#strui-' + args.column.uid).ej2_instances[0];

@@ -51,0 +51,0 @@ struiObj.value = args.filteredValue;

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc