@syncfusion/ej2-dropdowns 20.1.61 → 20.2.36
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 +0 -82
- 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 +88 -89
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +51 -52
- 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/helpers/e2e/autocomplete.js +59 -43
- package/helpers/e2e/combobox.js +62 -46
- package/helpers/e2e/dropdownlist.js +71 -55
- package/helpers/e2e/index.js +11 -9
- package/helpers/e2e/listboxHelper.js +55 -38
- package/helpers/e2e/multiselect.js +104 -88
- package/package.json +11 -11
- package/src/common/incremental-search.js +1 -1
- package/src/drop-down-base/drop-down-base-model.d.ts +1 -1
- package/src/drop-down-base/drop-down-base.d.ts +5 -1
- package/src/drop-down-base/drop-down-base.js +3 -5
- package/src/drop-down-list/drop-down-list.js +7 -7
- package/src/drop-down-tree/drop-down-tree-model.d.ts +2 -2
- package/src/drop-down-tree/drop-down-tree.js +5 -5
- package/src/list-box/list-box.js +10 -11
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +2 -1
- package/src/multi-select/multi-select.js +25 -23
- package/styles/auto-complete/_fusionnew-definition.scss +2 -0
- package/styles/auto-complete/_material3-definition.scss +2 -0
- package/styles/bootstrap-dark.css +38 -2
- package/styles/bootstrap.css +38 -2
- package/styles/bootstrap4.css +38 -2
- package/styles/bootstrap5-dark.css +38 -2
- package/styles/bootstrap5.css +38 -2
- package/styles/combo-box/_fusionnew-definition.scss +2 -0
- package/styles/combo-box/_material3-definition.scss +2 -0
- package/styles/drop-down-base/_fusionnew-definition.scss +111 -0
- package/styles/drop-down-base/_material3-definition.scss +111 -0
- package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
- package/styles/drop-down-list/_material3-definition.scss +201 -0
- package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
- package/styles/drop-down-list/icons/_material3.scss +14 -0
- package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
- package/styles/drop-down-tree/_material3-definition.scss +60 -0
- package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
- package/styles/drop-down-tree/icons/_material3.scss +11 -0
- package/styles/fabric-dark.css +38 -2
- package/styles/fabric.css +38 -2
- package/styles/fluent-dark.css +38 -2
- package/styles/fluent.css +38 -2
- package/styles/highcontrast-light.css +38 -2
- package/styles/highcontrast.css +38 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +5 -1
- package/styles/list-box/_bootstrap-definition.scss +5 -1
- package/styles/list-box/_bootstrap4-definition.scss +5 -1
- package/styles/list-box/_bootstrap5-definition.scss +7 -0
- package/styles/list-box/_fabric-dark-definition.scss +5 -1
- package/styles/list-box/_fabric-definition.scss +5 -1
- package/styles/list-box/_fluent-definition.scss +7 -0
- package/styles/list-box/_fusionnew-definition.scss +113 -0
- package/styles/list-box/_highcontrast-definition.scss +5 -1
- package/styles/list-box/_highcontrast-light-definition.scss +5 -1
- package/styles/list-box/_layout.scss +36 -1
- package/styles/list-box/_material-dark-definition.scss +6 -2
- package/styles/list-box/_material-definition.scss +6 -2
- package/styles/list-box/_material3-definition.scss +119 -0
- package/styles/list-box/_tailwind-definition.scss +6 -0
- package/styles/list-box/_theme.scss +19 -0
- package/styles/list-box/bootstrap-dark.css +28 -2
- package/styles/list-box/bootstrap.css +38 -2
- package/styles/list-box/bootstrap4.css +38 -2
- package/styles/list-box/bootstrap5-dark.css +38 -2
- package/styles/list-box/bootstrap5.css +38 -2
- package/styles/list-box/fabric-dark.css +28 -2
- package/styles/list-box/fabric.css +38 -2
- package/styles/list-box/fluent-dark.css +38 -2
- package/styles/list-box/fluent.css +38 -2
- package/styles/list-box/highcontrast-light.css +28 -2
- package/styles/list-box/highcontrast.css +38 -2
- package/styles/list-box/icons/_fusionnew.scss +25 -0
- package/styles/list-box/icons/_material3.scss +25 -0
- package/styles/list-box/material-dark.css +30 -4
- package/styles/list-box/material.css +40 -4
- package/styles/list-box/tailwind-dark.css +38 -2
- package/styles/list-box/tailwind.css +38 -2
- package/styles/material-dark.css +40 -4
- package/styles/material.css +40 -4
- package/styles/multi-select/_fusionnew-definition.scss +219 -0
- package/styles/multi-select/_material3-definition.scss +219 -0
- package/styles/multi-select/icons/_fusionnew.scss +27 -0
- package/styles/multi-select/icons/_material3.scss +27 -0
- package/styles/tailwind-dark.css +38 -2
- package/styles/tailwind.css +38 -2
|
@@ -97,6 +97,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
97
97
|
function MultiSelect(option, element) {
|
|
98
98
|
var _this = _super.call(this, option, element) || this;
|
|
99
99
|
_this.clearIconWidth = 0;
|
|
100
|
+
_this.previousFilterText = '';
|
|
100
101
|
_this.isValidKey = false;
|
|
101
102
|
_this.selectAllEventData = [];
|
|
102
103
|
_this.selectAllEventEle = [];
|
|
@@ -594,7 +595,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
594
595
|
this.showPopup();
|
|
595
596
|
}
|
|
596
597
|
else {
|
|
597
|
-
this.hidePopup();
|
|
598
|
+
this.hidePopup(e);
|
|
598
599
|
}
|
|
599
600
|
}
|
|
600
601
|
else if (!this.openOnClick && this.mode === 'CheckBox' && !this.isPopupOpen()) {
|
|
@@ -663,7 +664,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
663
664
|
var list = this.mainList.cloneNode ? this.mainList.cloneNode(true) : this.mainList;
|
|
664
665
|
if (this.backCommand) {
|
|
665
666
|
this.remoteCustomValue = false;
|
|
666
|
-
if (this.allowCustomValue && list.querySelectorAll('li').length
|
|
667
|
+
if (this.allowCustomValue && list.querySelectorAll('li').length == 0 && this.mainData.length > 0) {
|
|
667
668
|
this.mainData = [];
|
|
668
669
|
}
|
|
669
670
|
this.onActionComplete(list, this.mainData);
|
|
@@ -754,7 +755,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
754
755
|
this.showPopup();
|
|
755
756
|
}
|
|
756
757
|
else {
|
|
757
|
-
this.hidePopup();
|
|
758
|
+
this.hidePopup(e);
|
|
758
759
|
if (this.mode === 'CheckBox') {
|
|
759
760
|
this.showOverAllClear();
|
|
760
761
|
this.inputFocus = true;
|
|
@@ -832,6 +833,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
832
833
|
}
|
|
833
834
|
}
|
|
834
835
|
}
|
|
836
|
+
this.updateDataList();
|
|
835
837
|
this.refreshListItems(null);
|
|
836
838
|
if (this.mode !== 'Box' && this.mode !== 'CheckBox') {
|
|
837
839
|
this.updateDelimView();
|
|
@@ -842,7 +844,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
842
844
|
}
|
|
843
845
|
this.overAllClear.style.display = 'none';
|
|
844
846
|
if (this.isPopupOpen()) {
|
|
845
|
-
this.hidePopup();
|
|
847
|
+
this.hidePopup(eve);
|
|
846
848
|
}
|
|
847
849
|
this.makeTextBoxEmpty();
|
|
848
850
|
this.trigger('blur');
|
|
@@ -1036,7 +1038,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1036
1038
|
MultiSelect.prototype.popupKeyActions = function (e) {
|
|
1037
1039
|
switch (e.keyCode) {
|
|
1038
1040
|
case 38:
|
|
1039
|
-
this.hidePopup();
|
|
1041
|
+
this.hidePopup(e);
|
|
1040
1042
|
if (this.mode === 'CheckBox') {
|
|
1041
1043
|
this.inputElement.focus();
|
|
1042
1044
|
}
|
|
@@ -1058,7 +1060,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1058
1060
|
var filterInput = this.popupWrapper.querySelector('.' + FILTERINPUT);
|
|
1059
1061
|
filterInput && filterInput.setAttribute('aria-activedescendant', focusedItem.id);
|
|
1060
1062
|
}
|
|
1061
|
-
else if (this.mode
|
|
1063
|
+
else if (this.mode == "CheckBox") {
|
|
1062
1064
|
this.overAllWrapper.setAttribute('aria-activedescendant', focusedItem.id);
|
|
1063
1065
|
}
|
|
1064
1066
|
}
|
|
@@ -1118,7 +1120,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1118
1120
|
break;
|
|
1119
1121
|
case 27:
|
|
1120
1122
|
e.preventDefault();
|
|
1121
|
-
this.hidePopup();
|
|
1123
|
+
this.hidePopup(e);
|
|
1122
1124
|
if (this.mode === 'CheckBox') {
|
|
1123
1125
|
this.inputElement.focus();
|
|
1124
1126
|
}
|
|
@@ -1135,7 +1137,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1135
1137
|
return;
|
|
1136
1138
|
case 9:
|
|
1137
1139
|
e.preventDefault();
|
|
1138
|
-
this.hidePopup();
|
|
1140
|
+
this.hidePopup(e);
|
|
1139
1141
|
this.inputElement.focus();
|
|
1140
1142
|
this.overAllWrapper.classList.add(FOCUS);
|
|
1141
1143
|
}
|
|
@@ -1163,6 +1165,9 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1163
1165
|
this.keyNavigation(e);
|
|
1164
1166
|
}
|
|
1165
1167
|
if (this.mode === 'CheckBox' && this.enableSelectionOrder) {
|
|
1168
|
+
if (this.allowFiltering) {
|
|
1169
|
+
this.previousFilterText = this.targetElement();
|
|
1170
|
+
}
|
|
1166
1171
|
this.checkBackCommand(e);
|
|
1167
1172
|
}
|
|
1168
1173
|
this.expandTextbox();
|
|
@@ -1211,7 +1216,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1211
1216
|
this.checkPlaceholderSize();
|
|
1212
1217
|
};
|
|
1213
1218
|
MultiSelect.prototype.checkBackCommand = function (e) {
|
|
1214
|
-
if (e.keyCode === 8 && this.targetElement() === '') {
|
|
1219
|
+
if (e.keyCode === 8 && this.allowFiltering ? this.targetElement() !== this.previousFilterText : this.targetElement() === '') {
|
|
1215
1220
|
this.backCommand = false;
|
|
1216
1221
|
}
|
|
1217
1222
|
else {
|
|
@@ -1357,7 +1362,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1357
1362
|
}
|
|
1358
1363
|
this.refreshSelection();
|
|
1359
1364
|
if (this.closePopupOnSelect) {
|
|
1360
|
-
this.hidePopup();
|
|
1365
|
+
this.hidePopup(e);
|
|
1361
1366
|
}
|
|
1362
1367
|
}
|
|
1363
1368
|
this.refreshPlaceHolder();
|
|
@@ -1389,7 +1394,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1389
1394
|
this.makeTextBoxEmpty();
|
|
1390
1395
|
}
|
|
1391
1396
|
if (this.closePopupOnSelect) {
|
|
1392
|
-
this.hidePopup();
|
|
1397
|
+
this.hidePopup(e);
|
|
1393
1398
|
}
|
|
1394
1399
|
this.checkPlaceholderSize();
|
|
1395
1400
|
};
|
|
@@ -1509,7 +1514,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1509
1514
|
value = customVal;
|
|
1510
1515
|
}
|
|
1511
1516
|
if (this.isPopupOpen() && this.mode !== 'CheckBox') {
|
|
1512
|
-
this.hidePopup();
|
|
1517
|
+
this.hidePopup(e);
|
|
1513
1518
|
}
|
|
1514
1519
|
if (!this.inputFocus) {
|
|
1515
1520
|
this.inputElement.focus();
|
|
@@ -2469,13 +2474,8 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
2469
2474
|
MultiSelect.prototype.updateDataList = function () {
|
|
2470
2475
|
if (this.mainList && this.ulElement) {
|
|
2471
2476
|
var isDynamicGroupItemUpdate = this.mainList.childElementCount < this.ulElement.childElementCount;
|
|
2472
|
-
var isReactTemplateUpdate = ((this.ulElement.childElementCount > 0 &&
|
|
2473
|
-
|
|
2474
|
-
(this.mainList.children[0].childElementCount < this.ulElement.children[0].childElementCount));
|
|
2475
|
-
var isAngularTemplateUpdate = this.itemTemplate && this.ulElement.childElementCount > 0
|
|
2476
|
-
&& !(this.ulElement.childElementCount < this.mainList.childElementCount)
|
|
2477
|
-
&& (this.ulElement.children[0].childElementCount > 0
|
|
2478
|
-
|| (this.fields.groupBy && this.ulElement.children[1] && this.ulElement.children[1].childElementCount > 0));
|
|
2477
|
+
var isReactTemplateUpdate = ((this.ulElement.childElementCount > 0 && this.ulElement.children[0].childElementCount > 0) && (this.mainList.children[0].childElementCount < this.ulElement.children[0].childElementCount));
|
|
2478
|
+
var isAngularTemplateUpdate = this.itemTemplate && this.ulElement.childElementCount > 0 && !(this.ulElement.childElementCount < this.mainList.childElementCount) && (this.ulElement.children[0].childElementCount > 0 || (this.fields.groupBy && this.ulElement.children[1] && this.ulElement.children[1].childElementCount > 0));
|
|
2479
2479
|
if (isDynamicGroupItemUpdate || isReactTemplateUpdate || isAngularTemplateUpdate) {
|
|
2480
2480
|
//EJ2-57748 - for this task, we prevent the ul element cloning ( this.mainList = this.ulElement.cloneNode ? <HTMLElement>this.ulElement.cloneNode(true) : this.ulElement;)
|
|
2481
2481
|
this.mainList = this.ulElement;
|
|
@@ -2694,7 +2694,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
2694
2694
|
this.focusAtFirstListItem();
|
|
2695
2695
|
}
|
|
2696
2696
|
if (this.closePopupOnSelect) {
|
|
2697
|
-
this.hidePopup();
|
|
2697
|
+
this.hidePopup(e);
|
|
2698
2698
|
}
|
|
2699
2699
|
else {
|
|
2700
2700
|
e.preventDefault();
|
|
@@ -3547,6 +3547,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
3547
3547
|
}
|
|
3548
3548
|
return valuecheck;
|
|
3549
3549
|
};
|
|
3550
|
+
;
|
|
3550
3551
|
MultiSelect.prototype.addNonPresentItems = function (valuecheck, ulElement, list, event) {
|
|
3551
3552
|
var _this = this;
|
|
3552
3553
|
this.dataSource.executeQuery(this.getForQuery(valuecheck)).then(function (e) {
|
|
@@ -3554,6 +3555,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
3554
3555
|
_this.updateActionList(ulElement, list, event);
|
|
3555
3556
|
});
|
|
3556
3557
|
};
|
|
3558
|
+
;
|
|
3557
3559
|
MultiSelect.prototype.updateVal = function (newProp, oldProp, prop) {
|
|
3558
3560
|
if (!this.list) {
|
|
3559
3561
|
this.onLoadSelect();
|
|
@@ -3566,7 +3568,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
3566
3568
|
if (!isNullOrUndefined(this.value) && !this.allowCustomValue) {
|
|
3567
3569
|
valuecheck = this.presentItemValue(this.ulElement);
|
|
3568
3570
|
}
|
|
3569
|
-
if (prop
|
|
3571
|
+
if (prop == 'value' && valuecheck.length > 0 && this.dataSource instanceof DataManager && !isNullOrUndefined(this.value)
|
|
3570
3572
|
&& this.listData != null) {
|
|
3571
3573
|
this.mainData = null;
|
|
3572
3574
|
this.setDynValue = true;
|
|
@@ -3620,7 +3622,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
3620
3622
|
*
|
|
3621
3623
|
* @returns {void}
|
|
3622
3624
|
*/
|
|
3623
|
-
MultiSelect.prototype.hidePopup = function () {
|
|
3625
|
+
MultiSelect.prototype.hidePopup = function (e) {
|
|
3624
3626
|
var _this = this;
|
|
3625
3627
|
var delay = 100;
|
|
3626
3628
|
if (this.isPopupOpen()) {
|
|
@@ -3629,7 +3631,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
3629
3631
|
duration: 100,
|
|
3630
3632
|
delay: delay ? delay : 0
|
|
3631
3633
|
};
|
|
3632
|
-
var eventArgs = { popup: this.popupObj, cancel: false, animation: animModel };
|
|
3634
|
+
var eventArgs = { popup: this.popupObj, cancel: false, animation: animModel, event: e || null };
|
|
3633
3635
|
this.trigger('close', eventArgs, function (eventArgs) {
|
|
3634
3636
|
if (!eventArgs.cancel) {
|
|
3635
3637
|
if (_this.fields.groupBy && _this.mode !== 'CheckBox' && _this.fixedHeaderElement) {
|
|
@@ -2376,6 +2376,10 @@ ejs-multiselect {
|
|
|
2376
2376
|
.e-listbox-container * {
|
|
2377
2377
|
box-sizing: border-box;
|
|
2378
2378
|
}
|
|
2379
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2380
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2381
|
+
width: 86% !important;
|
|
2382
|
+
}
|
|
2379
2383
|
.e-listbox-wrapper:focus,
|
|
2380
2384
|
.e-listbox-container:focus {
|
|
2381
2385
|
outline: none;
|
|
@@ -2606,8 +2610,8 @@ ejs-multiselect {
|
|
|
2606
2610
|
text-indent: 0;
|
|
2607
2611
|
vertical-align: middle;
|
|
2608
2612
|
}
|
|
2609
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
2610
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
2613
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2614
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2611
2615
|
position: absolute;
|
|
2612
2616
|
right: 0;
|
|
2613
2617
|
top: 30%;
|
|
@@ -2726,6 +2730,12 @@ ejs-listbox {
|
|
|
2726
2730
|
list-style-type: none;
|
|
2727
2731
|
margin-bottom: 10px;
|
|
2728
2732
|
}
|
|
2733
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2734
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2735
|
+
position: absolute;
|
|
2736
|
+
right: 0;
|
|
2737
|
+
top: 30%;
|
|
2738
|
+
}
|
|
2729
2739
|
|
|
2730
2740
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2731
2741
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -2736,6 +2746,12 @@ ejs-listbox {
|
|
|
2736
2746
|
margin-left: 15px;
|
|
2737
2747
|
}
|
|
2738
2748
|
|
|
2749
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2750
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2751
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2752
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2753
|
+
width: 85% !important;
|
|
2754
|
+
}
|
|
2739
2755
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2740
2756
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
2741
2757
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -2833,6 +2849,16 @@ ejs-listbox {
|
|
|
2833
2849
|
height: calc(100% - 58px);
|
|
2834
2850
|
}
|
|
2835
2851
|
|
|
2852
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2853
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2854
|
+
height: calc(100% - 106px);
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
2858
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
2859
|
+
height: calc(100% - 48px);
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2836
2862
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2837
2863
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2838
2864
|
height: calc(100% - 54px);
|
|
@@ -2862,6 +2888,16 @@ ejs-listbox {
|
|
|
2862
2888
|
height: calc(100% - 52px);
|
|
2863
2889
|
}
|
|
2864
2890
|
|
|
2891
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2892
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2893
|
+
height: calc(100% - 92px);
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
2897
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
2898
|
+
height: calc(100% - 40px);
|
|
2899
|
+
}
|
|
2900
|
+
|
|
2865
2901
|
.e-listbox-wrapper .e-icons,
|
|
2866
2902
|
.e-listbox-container .e-icons {
|
|
2867
2903
|
color: #f0f0f0;
|
package/styles/bootstrap.css
CHANGED
|
@@ -2375,6 +2375,10 @@ ejs-multiselect {
|
|
|
2375
2375
|
.e-listbox-container * {
|
|
2376
2376
|
box-sizing: border-box;
|
|
2377
2377
|
}
|
|
2378
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2379
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2380
|
+
width: 86% !important;
|
|
2381
|
+
}
|
|
2378
2382
|
.e-listbox-wrapper:focus,
|
|
2379
2383
|
.e-listbox-container:focus {
|
|
2380
2384
|
outline: none;
|
|
@@ -2605,8 +2609,8 @@ ejs-multiselect {
|
|
|
2605
2609
|
text-indent: 0;
|
|
2606
2610
|
vertical-align: middle;
|
|
2607
2611
|
}
|
|
2608
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
2609
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
2612
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2613
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2610
2614
|
position: absolute;
|
|
2611
2615
|
right: 0;
|
|
2612
2616
|
top: 30%;
|
|
@@ -2725,6 +2729,12 @@ ejs-listbox {
|
|
|
2725
2729
|
list-style-type: none;
|
|
2726
2730
|
margin-bottom: 10px;
|
|
2727
2731
|
}
|
|
2732
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2733
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2734
|
+
position: absolute;
|
|
2735
|
+
right: 0;
|
|
2736
|
+
top: 30%;
|
|
2737
|
+
}
|
|
2728
2738
|
|
|
2729
2739
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2730
2740
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -2735,6 +2745,12 @@ ejs-listbox {
|
|
|
2735
2745
|
margin-left: 15px;
|
|
2736
2746
|
}
|
|
2737
2747
|
|
|
2748
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2749
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2750
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2751
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2752
|
+
width: 85% !important;
|
|
2753
|
+
}
|
|
2738
2754
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2739
2755
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
2740
2756
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -2832,6 +2848,16 @@ ejs-listbox {
|
|
|
2832
2848
|
height: calc(100% - 58px);
|
|
2833
2849
|
}
|
|
2834
2850
|
|
|
2851
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2852
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2853
|
+
height: calc(100% - 106px);
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
2857
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
2858
|
+
height: calc(100% - 48px);
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2835
2861
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2836
2862
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
2837
2863
|
height: calc(100% - 54px);
|
|
@@ -2861,6 +2887,16 @@ ejs-listbox {
|
|
|
2861
2887
|
height: calc(100% - 52px);
|
|
2862
2888
|
}
|
|
2863
2889
|
|
|
2890
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
2891
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
2892
|
+
height: calc(100% - 92px);
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
2896
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
2897
|
+
height: calc(100% - 40px);
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2864
2900
|
.e-listbox-wrapper .e-icons,
|
|
2865
2901
|
.e-listbox-container .e-icons {
|
|
2866
2902
|
color: rgba(0, 0, 0, 0.75);
|
package/styles/bootstrap4.css
CHANGED
|
@@ -2558,6 +2558,10 @@ ejs-multiselect {
|
|
|
2558
2558
|
.e-listbox-container * {
|
|
2559
2559
|
box-sizing: border-box;
|
|
2560
2560
|
}
|
|
2561
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2562
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2563
|
+
width: 86% !important;
|
|
2564
|
+
}
|
|
2561
2565
|
.e-listbox-wrapper:focus,
|
|
2562
2566
|
.e-listbox-container:focus {
|
|
2563
2567
|
outline: none;
|
|
@@ -2788,8 +2792,8 @@ ejs-multiselect {
|
|
|
2788
2792
|
text-indent: 0;
|
|
2789
2793
|
vertical-align: middle;
|
|
2790
2794
|
}
|
|
2791
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
2792
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
2795
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2796
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2793
2797
|
position: absolute;
|
|
2794
2798
|
right: 0;
|
|
2795
2799
|
top: 30%;
|
|
@@ -2908,6 +2912,12 @@ ejs-listbox {
|
|
|
2908
2912
|
list-style-type: none;
|
|
2909
2913
|
margin-bottom: 10px;
|
|
2910
2914
|
}
|
|
2915
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2916
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2917
|
+
position: absolute;
|
|
2918
|
+
right: 0;
|
|
2919
|
+
top: 30%;
|
|
2920
|
+
}
|
|
2911
2921
|
|
|
2912
2922
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2913
2923
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -2924,6 +2934,12 @@ ejs-listbox {
|
|
|
2924
2934
|
.e-listbox-container.e-bigger {
|
|
2925
2935
|
font-size: 16px;
|
|
2926
2936
|
}
|
|
2937
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2938
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2939
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2940
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2941
|
+
width: 85% !important;
|
|
2942
|
+
}
|
|
2927
2943
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2928
2944
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
2929
2945
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -3059,6 +3075,16 @@ ejs-listbox {
|
|
|
3059
3075
|
height: calc(100% - 46px);
|
|
3060
3076
|
}
|
|
3061
3077
|
|
|
3078
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3079
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3080
|
+
height: calc(100% - 96px);
|
|
3081
|
+
}
|
|
3082
|
+
|
|
3083
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3084
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3085
|
+
height: calc(100% - 50px);
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3062
3088
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
3063
3089
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3064
3090
|
height: calc(100% - 44px);
|
|
@@ -3088,6 +3114,16 @@ ejs-listbox {
|
|
|
3088
3114
|
height: calc(100% - 39px);
|
|
3089
3115
|
}
|
|
3090
3116
|
|
|
3117
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3118
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3119
|
+
height: calc(100% - 79px);
|
|
3120
|
+
}
|
|
3121
|
+
|
|
3122
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3123
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3124
|
+
height: calc(100% - 40px);
|
|
3125
|
+
}
|
|
3126
|
+
|
|
3091
3127
|
.e-listbox-wrapper .e-icons,
|
|
3092
3128
|
.e-listbox-container .e-icons {
|
|
3093
3129
|
color: #212529;
|
|
@@ -2538,6 +2538,10 @@ ejs-multiselect {
|
|
|
2538
2538
|
.e-listbox-container * {
|
|
2539
2539
|
box-sizing: border-box;
|
|
2540
2540
|
}
|
|
2541
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2542
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2543
|
+
width: 84% !important;
|
|
2544
|
+
}
|
|
2541
2545
|
.e-listbox-wrapper:focus,
|
|
2542
2546
|
.e-listbox-container:focus {
|
|
2543
2547
|
outline: none;
|
|
@@ -2768,8 +2772,8 @@ ejs-multiselect {
|
|
|
2768
2772
|
text-indent: 0;
|
|
2769
2773
|
vertical-align: middle;
|
|
2770
2774
|
}
|
|
2771
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
2772
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
2775
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2776
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2773
2777
|
position: absolute;
|
|
2774
2778
|
right: 0;
|
|
2775
2779
|
top: 30%;
|
|
@@ -2888,6 +2892,12 @@ ejs-listbox {
|
|
|
2888
2892
|
list-style-type: none;
|
|
2889
2893
|
margin-bottom: 10px;
|
|
2890
2894
|
}
|
|
2895
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2896
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2897
|
+
position: absolute;
|
|
2898
|
+
right: 0;
|
|
2899
|
+
top: 30%;
|
|
2900
|
+
}
|
|
2891
2901
|
|
|
2892
2902
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2893
2903
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -2898,6 +2908,12 @@ ejs-listbox {
|
|
|
2898
2908
|
margin-left: 15px;
|
|
2899
2909
|
}
|
|
2900
2910
|
|
|
2911
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2912
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2913
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2914
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2915
|
+
width: 80% !important;
|
|
2916
|
+
}
|
|
2901
2917
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2902
2918
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
2903
2919
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -2995,6 +3011,16 @@ ejs-listbox {
|
|
|
2995
3011
|
height: calc(100% - 55px);
|
|
2996
3012
|
}
|
|
2997
3013
|
|
|
3014
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3015
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3016
|
+
height: calc(100% - 96px);
|
|
3017
|
+
}
|
|
3018
|
+
|
|
3019
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3020
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3021
|
+
height: calc(100% - 40px);
|
|
3022
|
+
}
|
|
3023
|
+
|
|
2998
3024
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2999
3025
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3000
3026
|
height: calc(100% - 45px);
|
|
@@ -3024,6 +3050,16 @@ ejs-listbox {
|
|
|
3024
3050
|
height: calc(100% - 47px);
|
|
3025
3051
|
}
|
|
3026
3052
|
|
|
3053
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3054
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3055
|
+
height: calc(100% - 86px);
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3059
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3060
|
+
height: calc(100% - 36px);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3027
3063
|
.e-listbox-wrapper .e-list-item,
|
|
3028
3064
|
.e-listbox-container .e-list-item {
|
|
3029
3065
|
background-color: transparent;
|
package/styles/bootstrap5.css
CHANGED
|
@@ -2538,6 +2538,10 @@ ejs-multiselect {
|
|
|
2538
2538
|
.e-listbox-container * {
|
|
2539
2539
|
box-sizing: border-box;
|
|
2540
2540
|
}
|
|
2541
|
+
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2542
|
+
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
2543
|
+
width: 84% !important;
|
|
2544
|
+
}
|
|
2541
2545
|
.e-listbox-wrapper:focus,
|
|
2542
2546
|
.e-listbox-container:focus {
|
|
2543
2547
|
outline: none;
|
|
@@ -2768,8 +2772,8 @@ ejs-multiselect {
|
|
|
2768
2772
|
text-indent: 0;
|
|
2769
2773
|
vertical-align: middle;
|
|
2770
2774
|
}
|
|
2771
|
-
.e-listbox-wrapper.e-right .e-checkbox-wrapper,
|
|
2772
|
-
.e-listbox-container.e-right .e-checkbox-wrapper {
|
|
2775
|
+
.e-listbox-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2776
|
+
.e-listbox-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2773
2777
|
position: absolute;
|
|
2774
2778
|
right: 0;
|
|
2775
2779
|
top: 30%;
|
|
@@ -2888,6 +2892,12 @@ ejs-listbox {
|
|
|
2888
2892
|
list-style-type: none;
|
|
2889
2893
|
margin-bottom: 10px;
|
|
2890
2894
|
}
|
|
2895
|
+
.e-listboxtool-wrapper.e-checkbox-right .e-checkbox-wrapper,
|
|
2896
|
+
.e-listboxtool-container.e-checkbox-right .e-checkbox-wrapper {
|
|
2897
|
+
position: absolute;
|
|
2898
|
+
right: 0;
|
|
2899
|
+
top: 30%;
|
|
2900
|
+
}
|
|
2891
2901
|
|
|
2892
2902
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
2893
2903
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
@@ -2898,6 +2908,12 @@ ejs-listbox {
|
|
|
2898
2908
|
margin-left: 15px;
|
|
2899
2909
|
}
|
|
2900
2910
|
|
|
2911
|
+
.e-bigger .e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
2912
|
+
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
2913
|
+
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
2914
|
+
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
2915
|
+
width: 80% !important;
|
|
2916
|
+
}
|
|
2901
2917
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
2902
2918
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
2903
2919
|
.e-bigger .e-listbox-container .e-list-item,
|
|
@@ -2995,6 +3011,16 @@ ejs-listbox {
|
|
|
2995
3011
|
height: calc(100% - 55px);
|
|
2996
3012
|
}
|
|
2997
3013
|
|
|
3014
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3015
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3016
|
+
height: calc(100% - 96px);
|
|
3017
|
+
}
|
|
3018
|
+
|
|
3019
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3020
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3021
|
+
height: calc(100% - 40px);
|
|
3022
|
+
}
|
|
3023
|
+
|
|
2998
3024
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
2999
3025
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
3000
3026
|
height: calc(100% - 45px);
|
|
@@ -3024,6 +3050,16 @@ ejs-listbox {
|
|
|
3024
3050
|
height: calc(100% - 47px);
|
|
3025
3051
|
}
|
|
3026
3052
|
|
|
3053
|
+
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
3054
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
3055
|
+
height: calc(100% - 86px);
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3059
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
3060
|
+
height: calc(100% - 36px);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3027
3063
|
.e-listbox-wrapper .e-list-item,
|
|
3028
3064
|
.e-listbox-container .e-list-item {
|
|
3029
3065
|
background-color: transparent;
|