@syncfusion/ej2-dropdowns 18.2.44-4568 → 18.2.44-4570
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/.eslintrc.json +244 -0
- package/CHANGELOG.md +1524 -1524
- package/README.md +118 -118
- package/dist/ej2-dropdowns.umd.min.js +1 -1
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +99 -60
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +191 -151
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -1
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/ts/auto-complete/auto-complete.ts +527 -0
- package/dist/ts/combo-box/combo-box.ts +957 -0
- package/dist/ts/common/highlight-search.ts +47 -0
- package/dist/ts/common/incremental-search.ts +81 -0
- package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
- package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
- package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
- package/dist/ts/list-box/list-box.ts +2317 -0
- package/dist/ts/multi-select/checkbox-selection.ts +528 -0
- package/dist/ts/multi-select/float-label.ts +155 -0
- package/dist/ts/multi-select/interface.ts +66 -0
- package/dist/ts/multi-select/multi-select.ts +4216 -0
- package/helpers/e2e/index.js +3 -3
- package/license +2 -2
- package/package.json +63 -77
- package/src/auto-complete/auto-complete-model.d.ts +179 -179
- package/src/auto-complete/auto-complete.js +19 -19
- package/src/combo-box/combo-box-model.d.ts +212 -212
- package/src/combo-box/combo-box.js +19 -19
- package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
- package/src/drop-down-base/drop-down-base.js +19 -19
- package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
- package/src/drop-down-list/drop-down-list.js +19 -19
- package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
- package/src/drop-down-tree/drop-down-tree.js +19 -19
- package/src/list-box/list-box-model.d.ts +156 -156
- package/src/list-box/list-box.js +19 -19
- package/src/multi-select/checkbox-selection.js +3 -1
- package/src/multi-select/multi-select-model.d.ts +452 -452
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +58 -19
- package/styles/_all.scss +3 -3
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/bootstrap-dark.css +13 -16
- package/styles/bootstrap.css +12 -15
- package/styles/bootstrap4.css +6 -10
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
- package/styles/drop-down-base/_fabric-definition.scss +66 -66
- package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
- package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-base/_layout.scss +108 -108
- package/styles/drop-down-base/_material-dark-definition.scss +67 -67
- package/styles/drop-down-base/_material-definition.scss +65 -65
- package/styles/drop-down-base/_theme.scss +242 -242
- package/styles/drop-down-list/_all.scss +2 -2
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
- package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
- package/styles/drop-down-list/_fabric-definition.scss +122 -122
- package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
- package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
- package/styles/drop-down-list/_layout.scss +218 -218
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +166 -166
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/material.css +9 -0
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +61 -61
- package/styles/drop-down-tree/_bootstrap-definition.scss +61 -61
- package/styles/drop-down-tree/_bootstrap4-definition.scss +62 -62
- package/styles/drop-down-tree/_fabric-dark-definition.scss +62 -62
- package/styles/drop-down-tree/_fabric-definition.scss +62 -62
- package/styles/drop-down-tree/_highcontrast-definition.scss +62 -62
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +62 -62
- package/styles/drop-down-tree/_layout.scss +437 -437
- package/styles/drop-down-tree/_material-dark-definition.scss +60 -60
- package/styles/drop-down-tree/_material-definition.scss +60 -60
- package/styles/drop-down-tree/_theme.scss +68 -68
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/material.css +9 -0
- package/styles/fabric-dark.css +2 -5
- package/styles/fabric.css +1 -4
- package/styles/highcontrast-light.css +2 -5
- package/styles/highcontrast.css +2 -7
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
- package/styles/list-box/_bootstrap-definition.scss +112 -112
- package/styles/list-box/_bootstrap4-definition.scss +118 -118
- package/styles/list-box/_fabric-dark-definition.scss +118 -118
- package/styles/list-box/_fabric-definition.scss +112 -112
- package/styles/list-box/_highcontrast-definition.scss +112 -112
- package/styles/list-box/_highcontrast-light-definition.scss +118 -118
- package/styles/list-box/_layout.scss +458 -458
- package/styles/list-box/_material-dark-definition.scss +118 -118
- package/styles/list-box/_material-definition.scss +112 -112
- package/styles/list-box/_theme.scss +273 -273
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/material-dark.css +8 -11
- package/styles/material.css +34 -10
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
- package/styles/multi-select/_bootstrap-definition.scss +166 -166
- package/styles/multi-select/_bootstrap4-definition.scss +233 -233
- package/styles/multi-select/_fabric-dark-definition.scss +170 -170
- package/styles/multi-select/_fabric-definition.scss +167 -167
- package/styles/multi-select/_highcontrast-definition.scss +257 -259
- package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
- package/styles/multi-select/_layout.scss +1153 -1153
- package/styles/multi-select/_material-dark-definition.scss +186 -186
- package/styles/multi-select/_material-definition.scss +191 -191
- package/styles/multi-select/_theme.scss +384 -389
- package/styles/multi-select/bootstrap-dark.css +13 -16
- package/styles/multi-select/bootstrap.css +12 -15
- package/styles/multi-select/bootstrap4.css +6 -10
- package/styles/multi-select/fabric-dark.css +2 -5
- package/styles/multi-select/fabric.css +1 -4
- package/styles/multi-select/highcontrast-light.css +2 -5
- package/styles/multi-select/highcontrast.css +2 -7
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +26 -26
- package/styles/multi-select/icons/_material.scss +324 -324
- package/styles/multi-select/material-dark.css +8 -11
- package/styles/multi-select/material.css +16 -10
|
@@ -729,6 +729,8 @@ export declare class MultiSelect extends DropDownBase implements IInput {
|
|
|
729
729
|
*/
|
|
730
730
|
onPropertyChanged(newProp: MultiSelectModel, oldProp: MultiSelectModel): void;
|
|
731
731
|
private reInitializePoup;
|
|
732
|
+
private presentItemValue;
|
|
733
|
+
private addNonPresentItems;
|
|
732
734
|
private updateVal;
|
|
733
735
|
/**
|
|
734
736
|
* Adds a new item to the multiselect popup list. By default, new item appends to the list as the last item,
|
|
@@ -4,7 +4,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
4
4
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
5
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
6
|
return extendStatics(d, b);
|
|
7
|
-
}
|
|
7
|
+
};
|
|
8
8
|
return function (d, b) {
|
|
9
9
|
extendStatics(d, b);
|
|
10
10
|
function __() { this.constructor = d; }
|
|
@@ -433,7 +433,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
433
433
|
this.mainData = list;
|
|
434
434
|
this.mainListCollection = this.liCollections;
|
|
435
435
|
}
|
|
436
|
-
else if (
|
|
436
|
+
else if (isNullOrUndefined(this.mainData) || this.mainData.length === 0) {
|
|
437
437
|
this.mainData = list;
|
|
438
438
|
}
|
|
439
439
|
if ((this.remoteCustomValue || list.length <= 0) && this.allowCustomValue && this.inputFocus && this.allowFiltering) {
|
|
@@ -748,7 +748,9 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
748
748
|
}
|
|
749
749
|
}
|
|
750
750
|
}
|
|
751
|
-
|
|
751
|
+
if (!(this.targetElement() && this.targetElement() !== '')) {
|
|
752
|
+
e.preventDefault();
|
|
753
|
+
}
|
|
752
754
|
};
|
|
753
755
|
MultiSelect.prototype.enable = function (state) {
|
|
754
756
|
if (state) {
|
|
@@ -2365,7 +2367,9 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
2365
2367
|
MultiSelect.prototype.updateActionCompleteData = function (li, item) {
|
|
2366
2368
|
if (this.value && this.value.indexOf(li.getAttribute('data-value')) > -1) {
|
|
2367
2369
|
this.mainList = this.ulElement;
|
|
2368
|
-
|
|
2370
|
+
if (this.hideSelectedItem) {
|
|
2371
|
+
addClass([li], HIDE_LIST);
|
|
2372
|
+
}
|
|
2369
2373
|
}
|
|
2370
2374
|
};
|
|
2371
2375
|
MultiSelect.prototype.updateAddItemList = function (list, itemCount) {
|
|
@@ -3294,28 +3298,63 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
3294
3298
|
}
|
|
3295
3299
|
this.renderPopup();
|
|
3296
3300
|
};
|
|
3301
|
+
MultiSelect.prototype.presentItemValue = function (ulElement) {
|
|
3302
|
+
var valuecheck = [];
|
|
3303
|
+
for (var i = 0; i < this.value.length; i++) {
|
|
3304
|
+
var checkEle = this.findListElement(((this.allowFiltering && !isNullOrUndefined(this.mainList)) ? this.mainList : ulElement), 'li', 'data-value', this.value[i]);
|
|
3305
|
+
if (!checkEle) {
|
|
3306
|
+
valuecheck.push(this.value[i]);
|
|
3307
|
+
}
|
|
3308
|
+
}
|
|
3309
|
+
return valuecheck;
|
|
3310
|
+
};
|
|
3311
|
+
;
|
|
3312
|
+
MultiSelect.prototype.addNonPresentItems = function (valuecheck, ulElement, list, event) {
|
|
3313
|
+
var _this = this;
|
|
3314
|
+
this.showSpinner();
|
|
3315
|
+
this.dataSource.executeQuery(this.getForQuery(valuecheck)).then(function (e) {
|
|
3316
|
+
_this.hideSpinner();
|
|
3317
|
+
_this.addItem(e.result, list.length);
|
|
3318
|
+
_this.updateActionList(ulElement, list, event);
|
|
3319
|
+
});
|
|
3320
|
+
};
|
|
3321
|
+
;
|
|
3297
3322
|
MultiSelect.prototype.updateVal = function (newProp, oldProp, prop) {
|
|
3298
3323
|
if (!this.list) {
|
|
3299
3324
|
this.onLoadSelect();
|
|
3300
3325
|
}
|
|
3301
|
-
else
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3326
|
+
else {
|
|
3327
|
+
var valuecheck = [];
|
|
3328
|
+
if (!isNullOrUndefined(this.value) && !this.allowCustomValue) {
|
|
3329
|
+
valuecheck = this.presentItemValue(this.ulElement);
|
|
3305
3330
|
}
|
|
3306
|
-
if (
|
|
3307
|
-
this.
|
|
3331
|
+
if (prop == 'value' && valuecheck.length > 0 && this.dataSource instanceof DataManager && !isNullOrUndefined(this.value)
|
|
3332
|
+
&& this.listData != null) {
|
|
3333
|
+
this.mainData = null;
|
|
3334
|
+
this.setDynValue = true;
|
|
3335
|
+
this.addNonPresentItems(valuecheck, this.ulElement, this.listData);
|
|
3308
3336
|
}
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3337
|
+
else {
|
|
3338
|
+
if (prop === 'text') {
|
|
3339
|
+
this.initialTextUpdate();
|
|
3340
|
+
newProp = this.value;
|
|
3341
|
+
}
|
|
3342
|
+
if (isNullOrUndefined(this.value) || this.value.length === 0) {
|
|
3343
|
+
this.tempValues = oldProp;
|
|
3344
|
+
}
|
|
3345
|
+
this.initialValueUpdate();
|
|
3346
|
+
if (this.mode !== 'Box' && !this.inputFocus) {
|
|
3347
|
+
this.updateDelimView();
|
|
3348
|
+
}
|
|
3349
|
+
if (!this.inputFocus) {
|
|
3350
|
+
this.refreshInputHight();
|
|
3351
|
+
}
|
|
3352
|
+
this.refreshPlaceHolder();
|
|
3353
|
+
if (this.mode !== 'CheckBox' && this.changeOnBlur) {
|
|
3354
|
+
this.updateValueState(null, newProp, oldProp);
|
|
3355
|
+
}
|
|
3356
|
+
this.checkPlaceholderSize();
|
|
3317
3357
|
}
|
|
3318
|
-
this.checkPlaceholderSize();
|
|
3319
3358
|
}
|
|
3320
3359
|
if (!this.changeOnBlur) {
|
|
3321
3360
|
this.updateValueState(null, newProp, oldProp);
|
package/styles/_all.scss
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
@import 'drop-down-base/all.scss';
|
|
2
|
-
@import 'drop-down-list/all.scss';
|
|
3
|
-
@import 'drop-down-tree/all.scss';
|
|
1
|
+
@import 'drop-down-base/all.scss';
|
|
2
|
+
@import 'drop-down-list/all.scss';
|
|
3
|
+
@import 'drop-down-tree/all.scss';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
//default
|
|
2
|
-
|
|
3
|
-
.e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
|
|
4
|
-
font-size: 8px;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.e-bigger .e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
|
|
8
|
-
font-size: 10px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
|
|
3
|
+
.e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
|
|
4
|
+
font-size: 8px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-bigger .e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
|
|
8
|
+
font-size: 10px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//enddefault
|
|
@@ -1177,7 +1177,7 @@ ejs-dropdownlist {
|
|
|
1177
1177
|
box-sizing: border-box;
|
|
1178
1178
|
cursor: text;
|
|
1179
1179
|
line-height: normal;
|
|
1180
|
-
min-height:
|
|
1180
|
+
min-height: 34px;
|
|
1181
1181
|
padding: 0 32px 0 2px;
|
|
1182
1182
|
position: relative;
|
|
1183
1183
|
-webkit-user-select: none;
|
|
@@ -1398,7 +1398,7 @@ ejs-dropdownlist {
|
|
|
1398
1398
|
.e-multi-select-wrapper .e-delim-values {
|
|
1399
1399
|
font-family: inherit;
|
|
1400
1400
|
font-size: 14px;
|
|
1401
|
-
line-height:
|
|
1401
|
+
line-height: 35px;
|
|
1402
1402
|
max-width: 100%;
|
|
1403
1403
|
padding-left: 6px;
|
|
1404
1404
|
padding-right: 6px;
|
|
@@ -1406,7 +1406,7 @@ ejs-dropdownlist {
|
|
|
1406
1406
|
}
|
|
1407
1407
|
|
|
1408
1408
|
.e-bigger .e-multi-select-wrapper .e-delim-values {
|
|
1409
|
-
line-height:
|
|
1409
|
+
line-height: 39px;
|
|
1410
1410
|
}
|
|
1411
1411
|
|
|
1412
1412
|
.e-multi-select-list-wrapper .e-hide-listitem {
|
|
@@ -1670,7 +1670,7 @@ ejs-dropdownlist {
|
|
|
1670
1670
|
}
|
|
1671
1671
|
|
|
1672
1672
|
.e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
|
|
1673
|
-
line-height:
|
|
1673
|
+
line-height: 39px;
|
|
1674
1674
|
}
|
|
1675
1675
|
|
|
1676
1676
|
.e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
|
|
@@ -1714,13 +1714,13 @@ ejs-multiselect {
|
|
|
1714
1714
|
}
|
|
1715
1715
|
|
|
1716
1716
|
.e-small .e-multi-select-wrapper input[type='text'] {
|
|
1717
|
-
height:
|
|
1718
|
-
min-height:
|
|
1717
|
+
height: 28px;
|
|
1718
|
+
min-height: 28px;
|
|
1719
1719
|
}
|
|
1720
1720
|
|
|
1721
1721
|
.e-small .e-multi-select-wrapper .e-delim-values {
|
|
1722
1722
|
font-size: 13px;
|
|
1723
|
-
line-height:
|
|
1723
|
+
line-height: 28px;
|
|
1724
1724
|
}
|
|
1725
1725
|
|
|
1726
1726
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1741,13 +1741,13 @@ ejs-multiselect {
|
|
|
1741
1741
|
}
|
|
1742
1742
|
|
|
1743
1743
|
.e-bigger.e-small .e-multi-select-wrapper input[type='text'] {
|
|
1744
|
-
height:
|
|
1745
|
-
min-height:
|
|
1744
|
+
height: 35px;
|
|
1745
|
+
min-height: 35px;
|
|
1746
1746
|
}
|
|
1747
1747
|
|
|
1748
1748
|
.e-small.e-bigger .e-multi-select-wrapper .e-delim-values {
|
|
1749
1749
|
font-size: 14px;
|
|
1750
|
-
line-height:
|
|
1750
|
+
line-height: 35px;
|
|
1751
1751
|
}
|
|
1752
1752
|
|
|
1753
1753
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1793,7 +1793,6 @@ ejs-multiselect {
|
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
1795
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1796
|
-
-webkit-text-fill-color: #f0f0f0;
|
|
1797
1796
|
color: #f0f0f0;
|
|
1798
1797
|
font-family: inherit;
|
|
1799
1798
|
font-size: 15px;
|
|
@@ -1810,7 +1809,7 @@ ejs-multiselect {
|
|
|
1810
1809
|
.e-multi-select-wrapper .e-chips {
|
|
1811
1810
|
background-color: #414141;
|
|
1812
1811
|
border-radius: 4px;
|
|
1813
|
-
height:
|
|
1812
|
+
height: 30px;
|
|
1814
1813
|
}
|
|
1815
1814
|
|
|
1816
1815
|
.e-multi-select-wrapper .e-chips:hover {
|
|
@@ -1822,7 +1821,6 @@ ejs-multiselect {
|
|
|
1822
1821
|
}
|
|
1823
1822
|
|
|
1824
1823
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1825
|
-
-webkit-text-fill-color: #f0f0f0;
|
|
1826
1824
|
color: #f0f0f0;
|
|
1827
1825
|
font-size: 10px;
|
|
1828
1826
|
}
|
|
@@ -1945,7 +1943,6 @@ ejs-multiselect {
|
|
|
1945
1943
|
}
|
|
1946
1944
|
|
|
1947
1945
|
.e-multi-select-wrapper .e-delim-values {
|
|
1948
|
-
-webkit-text-fill-color: #f0f0f0;
|
|
1949
1946
|
color: #f0f0f0;
|
|
1950
1947
|
}
|
|
1951
1948
|
|
|
@@ -1954,7 +1951,7 @@ ejs-multiselect {
|
|
|
1954
1951
|
}
|
|
1955
1952
|
|
|
1956
1953
|
.e-small .e-multi-select-wrapper .e-chips {
|
|
1957
|
-
height:
|
|
1954
|
+
height: 24px;
|
|
1958
1955
|
}
|
|
1959
1956
|
|
|
1960
1957
|
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
@@ -1970,7 +1967,7 @@ ejs-multiselect {
|
|
|
1970
1967
|
}
|
|
1971
1968
|
|
|
1972
1969
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1973
|
-
height:
|
|
1970
|
+
height: 30px;
|
|
1974
1971
|
}
|
|
1975
1972
|
|
|
1976
1973
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
package/styles/bootstrap.css
CHANGED
|
@@ -1397,7 +1397,7 @@ ejs-dropdownlist {
|
|
|
1397
1397
|
.e-multi-select-wrapper .e-delim-values {
|
|
1398
1398
|
font-family: inherit;
|
|
1399
1399
|
font-size: 14px;
|
|
1400
|
-
line-height:
|
|
1400
|
+
line-height: 35px;
|
|
1401
1401
|
max-width: 100%;
|
|
1402
1402
|
padding-left: 6px;
|
|
1403
1403
|
padding-right: 6px;
|
|
@@ -1405,7 +1405,7 @@ ejs-dropdownlist {
|
|
|
1405
1405
|
}
|
|
1406
1406
|
|
|
1407
1407
|
.e-bigger .e-multi-select-wrapper .e-delim-values {
|
|
1408
|
-
line-height:
|
|
1408
|
+
line-height: 39px;
|
|
1409
1409
|
}
|
|
1410
1410
|
|
|
1411
1411
|
.e-multi-select-list-wrapper .e-hide-listitem {
|
|
@@ -1669,7 +1669,7 @@ ejs-dropdownlist {
|
|
|
1669
1669
|
}
|
|
1670
1670
|
|
|
1671
1671
|
.e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
|
|
1672
|
-
line-height:
|
|
1672
|
+
line-height: 39px;
|
|
1673
1673
|
}
|
|
1674
1674
|
|
|
1675
1675
|
.e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
|
|
@@ -1713,13 +1713,13 @@ ejs-multiselect {
|
|
|
1713
1713
|
}
|
|
1714
1714
|
|
|
1715
1715
|
.e-small .e-multi-select-wrapper input[type='text'] {
|
|
1716
|
-
height:
|
|
1717
|
-
min-height:
|
|
1716
|
+
height: 28px;
|
|
1717
|
+
min-height: 28px;
|
|
1718
1718
|
}
|
|
1719
1719
|
|
|
1720
1720
|
.e-small .e-multi-select-wrapper .e-delim-values {
|
|
1721
1721
|
font-size: 13px;
|
|
1722
|
-
line-height:
|
|
1722
|
+
line-height: 28px;
|
|
1723
1723
|
}
|
|
1724
1724
|
|
|
1725
1725
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1740,13 +1740,13 @@ ejs-multiselect {
|
|
|
1740
1740
|
}
|
|
1741
1741
|
|
|
1742
1742
|
.e-bigger.e-small .e-multi-select-wrapper input[type='text'] {
|
|
1743
|
-
height:
|
|
1744
|
-
min-height:
|
|
1743
|
+
height: 35px;
|
|
1744
|
+
min-height: 35px;
|
|
1745
1745
|
}
|
|
1746
1746
|
|
|
1747
1747
|
.e-small.e-bigger .e-multi-select-wrapper .e-delim-values {
|
|
1748
1748
|
font-size: 14px;
|
|
1749
|
-
line-height:
|
|
1749
|
+
line-height: 35px;
|
|
1750
1750
|
}
|
|
1751
1751
|
|
|
1752
1752
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1792,7 +1792,6 @@ ejs-multiselect {
|
|
|
1792
1792
|
}
|
|
1793
1793
|
|
|
1794
1794
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1795
|
-
-webkit-text-fill-color: #333;
|
|
1796
1795
|
color: #333;
|
|
1797
1796
|
font-family: inherit;
|
|
1798
1797
|
font-size: 15px;
|
|
@@ -1809,7 +1808,7 @@ ejs-multiselect {
|
|
|
1809
1808
|
.e-multi-select-wrapper .e-chips {
|
|
1810
1809
|
background-color: #e6e6e6;
|
|
1811
1810
|
border-radius: 4px;
|
|
1812
|
-
height:
|
|
1811
|
+
height: 30px;
|
|
1813
1812
|
}
|
|
1814
1813
|
|
|
1815
1814
|
.e-multi-select-wrapper .e-chips:hover {
|
|
@@ -1821,7 +1820,6 @@ ejs-multiselect {
|
|
|
1821
1820
|
}
|
|
1822
1821
|
|
|
1823
1822
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1824
|
-
-webkit-text-fill-color: #333;
|
|
1825
1823
|
color: #333;
|
|
1826
1824
|
font-size: 10px;
|
|
1827
1825
|
}
|
|
@@ -1944,7 +1942,6 @@ ejs-multiselect {
|
|
|
1944
1942
|
}
|
|
1945
1943
|
|
|
1946
1944
|
.e-multi-select-wrapper .e-delim-values {
|
|
1947
|
-
-webkit-text-fill-color: #333;
|
|
1948
1945
|
color: #333;
|
|
1949
1946
|
}
|
|
1950
1947
|
|
|
@@ -1953,7 +1950,7 @@ ejs-multiselect {
|
|
|
1953
1950
|
}
|
|
1954
1951
|
|
|
1955
1952
|
.e-small .e-multi-select-wrapper .e-chips {
|
|
1956
|
-
height:
|
|
1953
|
+
height: 24px;
|
|
1957
1954
|
}
|
|
1958
1955
|
|
|
1959
1956
|
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
@@ -1969,7 +1966,7 @@ ejs-multiselect {
|
|
|
1969
1966
|
}
|
|
1970
1967
|
|
|
1971
1968
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1972
|
-
height:
|
|
1969
|
+
height: 30px;
|
|
1973
1970
|
}
|
|
1974
1971
|
|
|
1975
1972
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1825,7 +1825,7 @@ ejs-dropdownlist {
|
|
|
1825
1825
|
}
|
|
1826
1826
|
|
|
1827
1827
|
.e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
|
|
1828
|
-
line-height:
|
|
1828
|
+
line-height: 39px;
|
|
1829
1829
|
}
|
|
1830
1830
|
|
|
1831
1831
|
.e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
|
|
@@ -1865,17 +1865,17 @@ ejs-multiselect {
|
|
|
1865
1865
|
}
|
|
1866
1866
|
|
|
1867
1867
|
.e-small .e-multi-select-wrapper {
|
|
1868
|
-
min-height:
|
|
1868
|
+
min-height: 24px;
|
|
1869
1869
|
}
|
|
1870
1870
|
|
|
1871
1871
|
.e-small .e-multi-select-wrapper input[type='text'] {
|
|
1872
|
-
height:
|
|
1873
|
-
min-height:
|
|
1872
|
+
height: 24px;
|
|
1873
|
+
min-height: 24px;
|
|
1874
1874
|
}
|
|
1875
1875
|
|
|
1876
1876
|
.e-small .e-multi-select-wrapper .e-delim-values {
|
|
1877
1877
|
font-size: 12px;
|
|
1878
|
-
line-height:
|
|
1878
|
+
line-height: 24px;
|
|
1879
1879
|
}
|
|
1880
1880
|
|
|
1881
1881
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1956,7 +1956,6 @@ ejs-multiselect {
|
|
|
1956
1956
|
}
|
|
1957
1957
|
|
|
1958
1958
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1959
|
-
-webkit-text-fill-color: #fff;
|
|
1960
1959
|
color: #fff;
|
|
1961
1960
|
font-family: inherit;
|
|
1962
1961
|
font-size: 14px;
|
|
@@ -1985,7 +1984,6 @@ ejs-multiselect {
|
|
|
1985
1984
|
}
|
|
1986
1985
|
|
|
1987
1986
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1988
|
-
-webkit-text-fill-color: #fff;
|
|
1989
1987
|
color: #fff;
|
|
1990
1988
|
font-size: 8px;
|
|
1991
1989
|
}
|
|
@@ -2124,9 +2122,7 @@ ejs-multiselect {
|
|
|
2124
2122
|
}
|
|
2125
2123
|
|
|
2126
2124
|
.e-multi-select-wrapper .e-delim-values {
|
|
2127
|
-
-webkit-text-fill-color: #fff;
|
|
2128
2125
|
color: #fff;
|
|
2129
|
-
-webkit-text-fill-color: #212529;
|
|
2130
2126
|
color: #212529;
|
|
2131
2127
|
}
|
|
2132
2128
|
|
|
@@ -2135,7 +2131,7 @@ ejs-multiselect {
|
|
|
2135
2131
|
}
|
|
2136
2132
|
|
|
2137
2133
|
.e-small .e-multi-select-wrapper .e-chips {
|
|
2138
|
-
height:
|
|
2134
|
+
height: 22px;
|
|
2139
2135
|
}
|
|
2140
2136
|
|
|
2141
2137
|
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//enddefault
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
//default
|
|
2
|
-
|
|
3
|
-
.e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
|
|
4
|
-
font-size: 8px;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.e-bigger .e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
|
|
8
|
-
font-size: 10px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
|
|
3
|
+
.e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
|
|
4
|
+
font-size: 8px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-bigger .e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
|
|
8
|
+
font-size: 10px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//enddefault
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//undefined
|
|
3
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//undefined
|
|
3
|
+
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
//default
|
|
2
|
-
//enddefault
|
|
1
|
+
//default
|
|
2
|
+
//enddefault
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'layout.scss';
|
|
2
|
-
@import 'theme.scss';
|
|
1
|
+
@import 'layout.scss';
|
|
2
|
+
@import 'theme.scss';
|
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
//default
|
|
2
|
-
$ddl-last-child-bottom-border: 0 !default;
|
|
3
|
-
$ddl-default-font-family: inherit !default;
|
|
4
|
-
$ddl-list-border-size: 1px !default;
|
|
5
|
-
$ddl-default-header-font-color: $default-font-color !default;
|
|
6
|
-
$ddl-list-bottom-border: $ddl-list-border-size !default;
|
|
7
|
-
|
|
8
|
-
$ddl-list-border-color: $grey-44 !default;
|
|
9
|
-
$ddl-list-font-family: inherit !default;
|
|
10
|
-
$ddl-list-gradient-color: $grey-white !default;
|
|
11
|
-
$ddl-list-bg-color: $grey-dark !default;
|
|
12
|
-
$ddl-list-header-bg-color: $grey-white !default;
|
|
13
|
-
$ddl-list-header-border-color: 1px $grey-base !default;
|
|
14
|
-
$ddl-list-default-font-color: $grey-dark-font !default;
|
|
15
|
-
$ddl-list-active-border-color: $grey-white !default;
|
|
16
|
-
$ddl-list-active-font-color: $brand-primary-font !default;
|
|
17
|
-
$ddl-list-active-bg-color: $brand-primary !default;
|
|
18
|
-
$ddl-list-hover-bg-color: $grey-44 !default;
|
|
19
|
-
$ddl-list-hover-border-color: $grey-white !default;
|
|
20
|
-
$ddl-list-hover-font-color: $grey-dark-font !default;
|
|
21
|
-
$ddl-nodata-font-color: $grey-d4 !default;
|
|
22
|
-
$ddl-group-list-padding-left: 30px !default;
|
|
23
|
-
$ddl-header-font-weight: normal !default;
|
|
24
|
-
$ddl-list-header-padding-left: 20px !default;
|
|
25
|
-
$ddl-list-font-size: 14px !default;
|
|
26
|
-
$ddl-group-list-font-size: 12px !default;
|
|
27
|
-
$ddl-list-header-font-color: lighten($brand-primary, 15%) !default;
|
|
28
|
-
$ddl-list-text-indent: 20px !default;
|
|
29
|
-
$ddl-list-rtl-padding-right: 0 !default;
|
|
30
|
-
$ddl-list-line-height: 26px !default;
|
|
31
|
-
$ddl-list-padding-right: 20px !default;
|
|
32
|
-
$ddl-list-rtl-padding-left: 20px !default;
|
|
33
|
-
$ddl-bigger-list-header-font-size: $ddl-list-font-size !default;
|
|
34
|
-
$ddl-multi-column-border-width: 0 0 1px 0 !default;
|
|
35
|
-
$ddl-multi-column-border-color: $grey-88 !default;
|
|
36
|
-
|
|
37
|
-
// small size
|
|
38
|
-
$ddl-small-icon-font-size: 14px !default;
|
|
39
|
-
$ddl-small-line-height: 22px !default;
|
|
40
|
-
$ddl-small-list-font-color: $grey-dark-font !default;
|
|
41
|
-
$ddl-small-list-text-indent: 12px !default;
|
|
42
|
-
|
|
43
|
-
// Touch Small
|
|
44
|
-
|
|
45
|
-
$ddl-bigger-small-icon-font-size: 18px !default;
|
|
46
|
-
$ddl-bigger-small-line-height: 34px !default;
|
|
47
|
-
$ddl-bigger-small-list-font-color: $grey-dark-font !default;
|
|
48
|
-
$ddl-bigger-small-list-text-indent: 16px !default;
|
|
49
|
-
$ddl-bigger-small-list-header-font-size: 14px !default;
|
|
50
|
-
|
|
51
|
-
@include export-module('dropdownbase-bootstrap-dark') {
|
|
52
|
-
.e-dropdownbase .e-list-item .e-list-icon {
|
|
53
|
-
padding: 0 10px 0 0;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.e-bigger .e-dropdownbase .e-list-item .e-list-icon,
|
|
57
|
-
.e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
58
|
-
padding: 0 12px 0 0;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
62
|
-
padding: 0 8px 0 0;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
//default
|
|
2
|
+
$ddl-last-child-bottom-border: 0 !default;
|
|
3
|
+
$ddl-default-font-family: inherit !default;
|
|
4
|
+
$ddl-list-border-size: 1px !default;
|
|
5
|
+
$ddl-default-header-font-color: $default-font-color !default;
|
|
6
|
+
$ddl-list-bottom-border: $ddl-list-border-size !default;
|
|
7
|
+
|
|
8
|
+
$ddl-list-border-color: $grey-44 !default;
|
|
9
|
+
$ddl-list-font-family: inherit !default;
|
|
10
|
+
$ddl-list-gradient-color: $grey-white !default;
|
|
11
|
+
$ddl-list-bg-color: $grey-dark !default;
|
|
12
|
+
$ddl-list-header-bg-color: $grey-white !default;
|
|
13
|
+
$ddl-list-header-border-color: 1px $grey-base !default;
|
|
14
|
+
$ddl-list-default-font-color: $grey-dark-font !default;
|
|
15
|
+
$ddl-list-active-border-color: $grey-white !default;
|
|
16
|
+
$ddl-list-active-font-color: $brand-primary-font !default;
|
|
17
|
+
$ddl-list-active-bg-color: $brand-primary !default;
|
|
18
|
+
$ddl-list-hover-bg-color: $grey-44 !default;
|
|
19
|
+
$ddl-list-hover-border-color: $grey-white !default;
|
|
20
|
+
$ddl-list-hover-font-color: $grey-dark-font !default;
|
|
21
|
+
$ddl-nodata-font-color: $grey-d4 !default;
|
|
22
|
+
$ddl-group-list-padding-left: 30px !default;
|
|
23
|
+
$ddl-header-font-weight: normal !default;
|
|
24
|
+
$ddl-list-header-padding-left: 20px !default;
|
|
25
|
+
$ddl-list-font-size: 14px !default;
|
|
26
|
+
$ddl-group-list-font-size: 12px !default;
|
|
27
|
+
$ddl-list-header-font-color: lighten($brand-primary, 15%) !default;
|
|
28
|
+
$ddl-list-text-indent: 20px !default;
|
|
29
|
+
$ddl-list-rtl-padding-right: 0 !default;
|
|
30
|
+
$ddl-list-line-height: 26px !default;
|
|
31
|
+
$ddl-list-padding-right: 20px !default;
|
|
32
|
+
$ddl-list-rtl-padding-left: 20px !default;
|
|
33
|
+
$ddl-bigger-list-header-font-size: $ddl-list-font-size !default;
|
|
34
|
+
$ddl-multi-column-border-width: 0 0 1px 0 !default;
|
|
35
|
+
$ddl-multi-column-border-color: $grey-88 !default;
|
|
36
|
+
|
|
37
|
+
// small size
|
|
38
|
+
$ddl-small-icon-font-size: 14px !default;
|
|
39
|
+
$ddl-small-line-height: 22px !default;
|
|
40
|
+
$ddl-small-list-font-color: $grey-dark-font !default;
|
|
41
|
+
$ddl-small-list-text-indent: 12px !default;
|
|
42
|
+
|
|
43
|
+
// Touch Small
|
|
44
|
+
|
|
45
|
+
$ddl-bigger-small-icon-font-size: 18px !default;
|
|
46
|
+
$ddl-bigger-small-line-height: 34px !default;
|
|
47
|
+
$ddl-bigger-small-list-font-color: $grey-dark-font !default;
|
|
48
|
+
$ddl-bigger-small-list-text-indent: 16px !default;
|
|
49
|
+
$ddl-bigger-small-list-header-font-size: 14px !default;
|
|
50
|
+
|
|
51
|
+
@include export-module('dropdownbase-bootstrap-dark') {
|
|
52
|
+
.e-dropdownbase .e-list-item .e-list-icon {
|
|
53
|
+
padding: 0 10px 0 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-bigger .e-dropdownbase .e-list-item .e-list-icon,
|
|
57
|
+
.e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
58
|
+
padding: 0 12px 0 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-small .e-dropdownbase .e-list-item .e-list-icon {
|
|
62
|
+
padding: 0 8px 0 0;
|
|
63
|
+
}
|
|
64
|
+
}
|