@syncfusion/ej2-dropdowns
Advanced tools
Comparing version
/*! | ||
* filename: index.d.ts | ||
* version : 29.1.38 | ||
* version : 29.1.40 | ||
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-dropdowns@*", | ||
"_id": "@syncfusion/ej2-dropdowns@29.1.37", | ||
"_id": "@syncfusion/ej2-dropdowns@29.1.38", | ||
"_inBundle": false, | ||
"_integrity": "sha512-r3gn2gBwg1IhYpoXFJqLpove3dfsTVIrIiPGXdtx7BWWu4LbUXAzkSUJZalDk7/MRAHZjRkIjTTpgryniucNaw==", | ||
"_integrity": "sha512-gpwV4cYn4VY9b7JRqcRU0RSqHNaFKKf0+NpBSHbvOwtISLqIGyehQR7atEDT+1g0z0mdGZ7+l2WuaqyvuLNvDA==", | ||
"_location": "/@syncfusion/ej2-dropdowns", | ||
@@ -39,4 +39,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-29.1.37.tgz", | ||
"_shasum": "c901533d29dddd25627db065fccdef5ff80af126", | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-29.1.38.tgz", | ||
"_shasum": "db56179d8beddcc910e61558b906e2ce82c31ce6", | ||
"_spec": "@syncfusion/ej2-dropdowns@*", | ||
@@ -51,5 +51,5 @@ "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included", | ||
"@syncfusion/ej2-data": "~29.1.33", | ||
"@syncfusion/ej2-inputs": "~29.1.38", | ||
"@syncfusion/ej2-lists": "~29.1.34", | ||
"@syncfusion/ej2-navigations": "~29.1.38", | ||
"@syncfusion/ej2-inputs": "~29.1.39", | ||
"@syncfusion/ej2-lists": "~29.1.40", | ||
"@syncfusion/ej2-navigations": "~29.1.40", | ||
"@syncfusion/ej2-notifications": "~29.1.33", | ||
@@ -81,5 +81,5 @@ "@syncfusion/ej2-popups": "~29.1.37" | ||
"typings": "index.d.ts", | ||
"version": "29.1.38", | ||
"version": "29.1.40", | ||
"sideEffects": false, | ||
"homepage": "https://www.syncfusion.com/javascript-ui-controls" | ||
} |
@@ -143,3 +143,3 @@ /** | ||
/* eslint-disable security/detect-object-injection */ | ||
if ((type === 'object' && !data.isHeader && checkField_1.textContent.toString().indexOf(data[value]) !== -1 && checkField_1.getAttribute('data-value') === data[fields.value].toString()) || | ||
if ((type === 'object' && !data.isHeader && checkField_1.textContent.toString().indexOf(data[value]) !== -1 && data[fields.value] != null && checkField_1.getAttribute('data-value') === data[fields.value].toString()) || | ||
(type === 'string' && checkField_1.textContent.toString().indexOf(data) !== -1)) { | ||
@@ -146,0 +146,0 @@ filterValue = type === 'object' ? data[value] : data; |
@@ -192,7 +192,11 @@ var __assign = (this && this.__assign) || function () { | ||
if (this.parent.viewPortInfo.startIndex === 0) { | ||
var oldUlElement = this.parent.list.querySelector('.e-list-parent' + ':not(.e-reorder)'); | ||
if (oldUlElement) { | ||
this.parent.list.querySelector('.e-virtual-ddl-content').removeChild(oldUlElement); | ||
} | ||
this.parent.updateVirtualReOrderList(true); | ||
if (this.parent.value.length < this.parent.itemCount && this.parent.value.length !== this.parent.totalItemCount) { | ||
var oldUlElement = this.parent.list.querySelector('.e-list-parent' + ':not(.e-reorder)'); | ||
if (oldUlElement) { | ||
this.parent.list.querySelector('.e-virtual-ddl-content').removeChild(oldUlElement); | ||
var oldUlElement_1 = this.parent.list.querySelector('.e-list-parent' + ':not(.e-reorder)'); | ||
if (oldUlElement_1) { | ||
this.parent.list.querySelector('.e-virtual-ddl-content').removeChild(oldUlElement_1); | ||
} | ||
@@ -211,5 +215,5 @@ var query = this.parent.getForQuery(this.parent.value).clone(); | ||
else { | ||
var oldUlElement = this.parent.list.querySelector('.e-list-parent' + ':not(.e-reorder)'); | ||
if (oldUlElement) { | ||
this.parent.list.querySelector('.e-virtual-ddl-content').removeChild(oldUlElement); | ||
var oldUlElement_2 = this.parent.list.querySelector('.e-list-parent' + ':not(.e-reorder)'); | ||
if (oldUlElement_2) { | ||
this.parent.list.querySelector('.e-virtual-ddl-content').removeChild(oldUlElement_2); | ||
} | ||
@@ -234,2 +238,6 @@ } | ||
this.parent.setCurrentView = false; | ||
var oldUlElement = this.parent.list.querySelector('.e-list-parent' + ':not(.e-reorder)'); | ||
if (oldUlElement) { | ||
this.parent.list.querySelector('.e-virtual-ddl-content').removeChild(oldUlElement); | ||
} | ||
this.parent.resetList(this.parent.dataSource, this.parent.fields, query); | ||
@@ -236,0 +244,0 @@ isListUpdated = false; |
@@ -278,2 +278,3 @@ import { Component, KeyboardEvents, EmitType, L10n, KeyboardEventArgs } from '@syncfusion/ej2-base'; | ||
protected virtualSelectAll: boolean; | ||
protected isVirtualReorder: boolean; | ||
protected incrementalQueryString: string; | ||
@@ -726,2 +727,3 @@ protected incrementalEndIndex: number; | ||
render(e?: MouseEvent | KeyboardEventArgs | TouchEvent, isEmptyData?: boolean): void; | ||
private getScrollableParent; | ||
protected removeScrollEvent(): void; | ||
@@ -728,0 +730,0 @@ /** |
@@ -77,3 +77,2 @@ /// <reference path="../drop-down-base/drop-down-base-model.d.ts" /> | ||
private isFilteringAction; | ||
private isVirtualReorder; | ||
/** | ||
@@ -80,0 +79,0 @@ * The `fields` property maps the columns of the data table and binds the data to the component. |
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
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 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
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
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
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
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
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
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
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
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
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
22578590
0.21%299760
0.18%