@syncfusion/ej2-dropdowns 29.2.7 → 29.2.8
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/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 +2 -2
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +2 -2
- 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 +10 -55
- package/src/drop-down-list/drop-down-list.js +2 -2
|
@@ -3175,10 +3175,10 @@ let DropDownList = class DropDownList extends DropDownBase {
|
|
|
3175
3175
|
this.hiddenElement.setAttribute(htmlAttr, this.htmlAttributes[`${htmlAttr}`]);
|
|
3176
3176
|
}
|
|
3177
3177
|
else if (defaultAttr.indexOf(htmlAttr) > -1) {
|
|
3178
|
-
if (htmlAttr === 'placeholder') {
|
|
3178
|
+
if (htmlAttr === 'placeholder' && this.element.getAttribute('placeholder') !== this.htmlAttributes[`${htmlAttr}`]) {
|
|
3179
3179
|
Input.setPlaceholder(this.htmlAttributes[`${htmlAttr}`], this.inputElement);
|
|
3180
3180
|
}
|
|
3181
|
-
else {
|
|
3181
|
+
else if (htmlAttr !== 'placeholder') {
|
|
3182
3182
|
this.inputElement.setAttribute(htmlAttr, this.htmlAttributes[`${htmlAttr}`]);
|
|
3183
3183
|
}
|
|
3184
3184
|
}
|