@syncfusion/ej2-dropdowns 25.2.4 → 25.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +56 -21
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +56 -21
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/drop-down-base/drop-down-base.d.ts +1 -1
- package/src/drop-down-base/drop-down-base.js +22 -11
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +31 -8
- package/src/drop-down-tree/drop-down-tree.js +2 -2
- package/src/multi-select/float-label.js +1 -0
- package/styles/material3-dark.css +10 -7
- package/styles/material3.css +10 -7
- package/styles/multi-select/_layout.scss +2 -2
- package/styles/multi-select/icons/_material3.scss +8 -5
- package/styles/multi-select/material3-dark.css +10 -7
- package/styles/multi-select/material3.css +10 -7
|
@@ -1940,10 +1940,14 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
|
|
|
1940
1940
|
}
|
|
1941
1941
|
};
|
|
1942
1942
|
DropDownBase.prototype.updateGroupFixedHeader = function (element, target) {
|
|
1943
|
-
this.fixedHeaderElement
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1943
|
+
if (this.fixedHeaderElement) {
|
|
1944
|
+
if (!isNullOrUndefined(element.innerHTML)) {
|
|
1945
|
+
this.fixedHeaderElement.innerHTML = element.innerHTML;
|
|
1946
|
+
}
|
|
1947
|
+
this.fixedHeaderElement.style.position = 'fixed';
|
|
1948
|
+
this.fixedHeaderElement.style.top = (this.list.parentElement.offsetTop + this.list.offsetTop) - window.scrollY + 'px';
|
|
1949
|
+
this.fixedHeaderElement.style.display = 'block';
|
|
1950
|
+
}
|
|
1947
1951
|
};
|
|
1948
1952
|
DropDownBase.prototype.getValidLi = function () {
|
|
1949
1953
|
if (this.isVirtualizationEnabled) {
|
|
@@ -2134,9 +2138,12 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
|
|
|
2134
2138
|
* @param {string | number | boolean} value - Specifies given value.
|
|
2135
2139
|
* @returns {number} Returns the index of the item.
|
|
2136
2140
|
*/
|
|
2137
|
-
DropDownBase.prototype.getIndexByValueFilter = function (value) {
|
|
2141
|
+
DropDownBase.prototype.getIndexByValueFilter = function (value, ulElement) {
|
|
2138
2142
|
var index;
|
|
2139
|
-
|
|
2143
|
+
if (!ulElement) {
|
|
2144
|
+
return null;
|
|
2145
|
+
}
|
|
2146
|
+
var listItems = ulElement.querySelectorAll('li' + ':not(.e-list-group-item)');
|
|
2140
2147
|
if (listItems) {
|
|
2141
2148
|
for (var i = 0; i < listItems.length; i++) {
|
|
2142
2149
|
if (!isNullOrUndefined(value) && listItems[i].getAttribute('data-value') === value.toString()) {
|
|
@@ -2301,6 +2308,7 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
|
|
|
2301
2308
|
var group = this.element.querySelector('select>optgroup');
|
|
2302
2309
|
if ((this.fields.groupBy || !isNullOrUndefined(group)) && !this.isGroupChecking) {
|
|
2303
2310
|
EventHandler.add(this.list, 'scroll', this.setFloatingHeader, this);
|
|
2311
|
+
EventHandler.add(document, 'scroll', this.updateGroupFixedHeader, this);
|
|
2304
2312
|
}
|
|
2305
2313
|
if (this.getModuleName() === 'dropdownbase') {
|
|
2306
2314
|
if (this.element.getAttribute('tabindex')) {
|
|
@@ -2554,12 +2562,15 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
|
|
|
2554
2562
|
* @returns {void}
|
|
2555
2563
|
*/
|
|
2556
2564
|
DropDownBase.prototype.destroy = function () {
|
|
2557
|
-
if (document
|
|
2558
|
-
EventHandler.remove(
|
|
2559
|
-
if (
|
|
2560
|
-
this.
|
|
2565
|
+
if (document) {
|
|
2566
|
+
EventHandler.remove(document, 'scroll', this.updateGroupFixedHeader);
|
|
2567
|
+
if (document.body.contains(this.list)) {
|
|
2568
|
+
EventHandler.remove(this.list, 'scroll', this.setFloatingHeader);
|
|
2569
|
+
if (!isNullOrUndefined(this.rippleFun)) {
|
|
2570
|
+
this.rippleFun();
|
|
2571
|
+
}
|
|
2572
|
+
detach(this.list);
|
|
2561
2573
|
}
|
|
2562
|
-
detach(this.list);
|
|
2563
2574
|
}
|
|
2564
2575
|
this.liCollections = null;
|
|
2565
2576
|
this.ulElement = null;
|
|
@@ -2723,6 +2734,12 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
2723
2734
|
_this.IsScrollerAtEnd = function () {
|
|
2724
2735
|
return this.list && this.list.scrollTop + this.list.clientHeight >= this.list.scrollHeight;
|
|
2725
2736
|
};
|
|
2737
|
+
_this.removeAllChildren = function (element) {
|
|
2738
|
+
while (element.children[0]) {
|
|
2739
|
+
this.removeAllChildren(element.children[0]);
|
|
2740
|
+
element.removeChild(element.children[0]);
|
|
2741
|
+
}
|
|
2742
|
+
};
|
|
2726
2743
|
return _this;
|
|
2727
2744
|
}
|
|
2728
2745
|
/**
|
|
@@ -3612,7 +3629,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
3612
3629
|
}
|
|
3613
3630
|
if (this.allowFiltering && !this.enableVirtualization && this.getModuleName() !== 'autocomplete') {
|
|
3614
3631
|
var value_4 = this.getItemData().value;
|
|
3615
|
-
var filterIndex = this.getIndexByValueFilter(value_4);
|
|
3632
|
+
var filterIndex = this.getIndexByValueFilter(value_4, this.actionCompleteData.ulElement);
|
|
3616
3633
|
if (!isNullOrUndefined(filterIndex)) {
|
|
3617
3634
|
this.activeIndex = filterIndex;
|
|
3618
3635
|
}
|
|
@@ -3955,7 +3972,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
3955
3972
|
value = 'null';
|
|
3956
3973
|
}
|
|
3957
3974
|
if (this.allowFiltering && !this.enableVirtualization && this.getModuleName() !== 'autocomplete') {
|
|
3958
|
-
var filterIndex = this.getIndexByValueFilter(value);
|
|
3975
|
+
var filterIndex = this.getIndexByValueFilter(value, this.actionCompleteData.ulElement);
|
|
3959
3976
|
if (!isNullOrUndefined(filterIndex)) {
|
|
3960
3977
|
this.activeIndex = filterIndex;
|
|
3961
3978
|
}
|
|
@@ -3997,7 +4014,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
3997
4014
|
this.inputElement.style.display = 'block';
|
|
3998
4015
|
}
|
|
3999
4016
|
if (!isNullOrUndefined(dataItem.value) && !this.enableVirtualization && this.allowFiltering) {
|
|
4000
|
-
this.activeIndex = this.getIndexByValueFilter(dataItem.value);
|
|
4017
|
+
this.activeIndex = this.getIndexByValueFilter(dataItem.value, this.actionCompleteData.ulElement);
|
|
4001
4018
|
}
|
|
4002
4019
|
var clearIcon = dropDownListClasses.clearIcon;
|
|
4003
4020
|
var isFilterElement = this.isFiltering() && this.filterInput && (this.getModuleName() === 'combobox');
|
|
@@ -5465,6 +5482,14 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
5465
5482
|
this.keyboardEvent = null;
|
|
5466
5483
|
EventHandler.remove(document, 'mousedown', this.onDocumentClick);
|
|
5467
5484
|
this.isActive = false;
|
|
5485
|
+
if (this.getModuleName() === 'dropdownlist') {
|
|
5486
|
+
Input.destroy({
|
|
5487
|
+
element: this.filterInput,
|
|
5488
|
+
floatLabelType: this.floatLabelType,
|
|
5489
|
+
properties: { placeholder: this.filterBarPlaceholder },
|
|
5490
|
+
buttons: this.clearIconElement,
|
|
5491
|
+
}, this.clearIconElement);
|
|
5492
|
+
}
|
|
5468
5493
|
this.filterInputObj = null;
|
|
5469
5494
|
this.isDropDownClick = false;
|
|
5470
5495
|
this.preventAutoFill = false;
|
|
@@ -5496,6 +5521,11 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
5496
5521
|
}
|
|
5497
5522
|
if (this.allowFiltering && this.getModuleName() === 'dropdownlist') {
|
|
5498
5523
|
this.filterInput.removeAttribute('aria-activedescendant');
|
|
5524
|
+
this.filterInput.removeAttribute('aria-disabled');
|
|
5525
|
+
this.filterInput.removeAttribute('role');
|
|
5526
|
+
this.filterInput.removeAttribute('autocomplete');
|
|
5527
|
+
this.filterInput.removeAttribute('autocapitalize');
|
|
5528
|
+
this.filterInput.removeAttribute('spellcheck');
|
|
5499
5529
|
}
|
|
5500
5530
|
this.filterInput = null;
|
|
5501
5531
|
}
|
|
@@ -5923,8 +5953,8 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
5923
5953
|
DropDownList.prototype.onPropertyChanged = function (newProp, oldProp) {
|
|
5924
5954
|
var _this = this;
|
|
5925
5955
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
5926
|
-
if (!isNullOrUndefined(newProp.dataSource) && !this.isTouched && (isNullOrUndefined(newProp.value) && isNullOrUndefined(newProp.index)) && !isNullOrUndefined(this.preselectedIndex)) {
|
|
5927
|
-
newProp.index = this.
|
|
5956
|
+
if (!isNullOrUndefined(newProp.dataSource) && !this.isTouched && (isNullOrUndefined(newProp.value) && isNullOrUndefined(newProp.index)) && !isNullOrUndefined(this.preselectedIndex) && !isNullOrUndefined(this.index)) {
|
|
5957
|
+
newProp.index = this.index;
|
|
5928
5958
|
}
|
|
5929
5959
|
if (!isNullOrUndefined(newProp.value) || !isNullOrUndefined(newProp.index)) {
|
|
5930
5960
|
this.isTouched = true;
|
|
@@ -6445,10 +6475,12 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
6445
6475
|
this.inputWrapper.container.parentElement.insertBefore(this.element, this.inputWrapper.container);
|
|
6446
6476
|
detach(this.inputWrapper.container);
|
|
6447
6477
|
}
|
|
6448
|
-
this.hiddenElement
|
|
6478
|
+
delete this.hiddenElement;
|
|
6449
6479
|
this.filterInput = null;
|
|
6450
|
-
this.inputWrapper = null;
|
|
6451
6480
|
this.keyboardModule = null;
|
|
6481
|
+
if (!isNullOrUndefined(this.ulElement)) {
|
|
6482
|
+
this.removeAllChildren(this.ulElement);
|
|
6483
|
+
}
|
|
6452
6484
|
this.ulElement = null;
|
|
6453
6485
|
this.list = null;
|
|
6454
6486
|
this.clearIconElement = null;
|
|
@@ -6472,10 +6504,12 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
|
|
|
6472
6504
|
Input.destroy({
|
|
6473
6505
|
element: this.inputElement,
|
|
6474
6506
|
floatLabelType: this.floatLabelType,
|
|
6475
|
-
properties: this.properties
|
|
6507
|
+
properties: this.properties,
|
|
6508
|
+
buttons: this.inputWrapper.container.querySelectorAll('.e-input-group-icon')[0],
|
|
6476
6509
|
}, this.clearButton);
|
|
6477
6510
|
this.clearButton = null;
|
|
6478
6511
|
this.inputElement = null;
|
|
6512
|
+
this.inputWrapper = null;
|
|
6479
6513
|
_super.prototype.destroy.call(this);
|
|
6480
6514
|
};
|
|
6481
6515
|
/* eslint-disable valid-jsdoc, jsdoc/require-returns-description */
|
|
@@ -8571,6 +8605,8 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
|
|
|
8571
8605
|
if (this.showCheckBox) {
|
|
8572
8606
|
return;
|
|
8573
8607
|
}
|
|
8608
|
+
var eventArgs = this.getEventArgs(args);
|
|
8609
|
+
this.trigger('select', eventArgs);
|
|
8574
8610
|
var selectedText;
|
|
8575
8611
|
if (args.isInteracted) {
|
|
8576
8612
|
var id = getValue('id', args.nodeData).toString();
|
|
@@ -8598,8 +8634,6 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
|
|
|
8598
8634
|
this.setMultiSelect();
|
|
8599
8635
|
}
|
|
8600
8636
|
}
|
|
8601
|
-
var eventArgs = this.getEventArgs(args);
|
|
8602
|
-
this.trigger('select', eventArgs);
|
|
8603
8637
|
if (this.isValueChange && !this.changeOnBlur) {
|
|
8604
8638
|
this.triggerChangeEvent(this.keyEventArgs);
|
|
8605
8639
|
this.isValueChange = false;
|
|
@@ -11474,6 +11508,7 @@ function createFloatLabel(overAllWrapper, searchWrapper, element, inputElement,
|
|
|
11474
11508
|
element.id = id;
|
|
11475
11509
|
if (!isNullOrUndefined(element.id) && element.id !== '') {
|
|
11476
11510
|
floatLabelElement.id = 'label_' + element.id.replace(/ /g, '_');
|
|
11511
|
+
floatLabelElement.setAttribute('for', element.id);
|
|
11477
11512
|
attributes(inputElement, { 'aria-labelledby': floatLabelElement.id });
|
|
11478
11513
|
}
|
|
11479
11514
|
if (!isNullOrUndefined(inputElement.placeholder) && inputElement.placeholder !== '') {
|