@syncfusion/ej2-dropdowns 27.1.57 → 27.1.58
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 +261 -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 +3 -1
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +3 -1
- 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 +8 -8
- package/src/combo-box/combo-box.js +1 -0
- package/src/drop-down-list/drop-down-list.js +1 -0
- package/src/drop-down-tree/drop-down-tree.js +1 -1
- package/styles/material3-dark-lite.css +10 -10
- package/styles/material3-dark.css +13 -22
- package/styles/material3-lite.css +10 -10
- package/styles/material3.css +13 -22
- package/styles/multi-select/_bigger.scss +4 -4
- package/styles/multi-select/_material3-definition.scss +2 -2
- package/styles/multi-select/icons/_material3.scss +8 -8
- package/styles/multi-select/material3-dark.css +13 -22
- package/styles/multi-select/material3.css +13 -22
- package/tslint.json +111 -0
|
@@ -4937,6 +4937,7 @@ let DropDownList = class DropDownList extends DropDownBase {
|
|
|
4937
4937
|
const currentValue = this.allowObjectBinding && !isNullOrUndefined(this.value) ?
|
|
4938
4938
|
getValue((this.fields.value) ? this.fields.value : '', this.value) : this.value;
|
|
4939
4939
|
this.itemData = this.getDataByValue(currentValue);
|
|
4940
|
+
this.selectedLI = this.getElementByValue(currentValue);
|
|
4940
4941
|
this.isDynamicData = false;
|
|
4941
4942
|
}
|
|
4942
4943
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
@@ -10125,7 +10126,7 @@ let DropDownTree = class DropDownTree extends Component {
|
|
|
10125
10126
|
this.isPopupOpen = false;
|
|
10126
10127
|
if (this.isReact) {
|
|
10127
10128
|
this.clearTemplate(['headerTemplate', 'footerTemplate', 'itemTemplate', 'actionFailureTemplate',
|
|
10128
|
-
'noRecordsTemplate'
|
|
10129
|
+
'noRecordsTemplate']);
|
|
10129
10130
|
}
|
|
10130
10131
|
if (this.popupObj) {
|
|
10131
10132
|
this.popupObj.destroy();
|
|
@@ -10472,6 +10473,7 @@ let ComboBox = class ComboBox extends DropDownList {
|
|
|
10472
10473
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
10473
10474
|
setOldValue(value) {
|
|
10474
10475
|
if (this.allowCustom) {
|
|
10476
|
+
this.selectedLI = this.getElementByValue(this.value);
|
|
10475
10477
|
this.valueMuteChange(this.value);
|
|
10476
10478
|
}
|
|
10477
10479
|
else {
|