@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.
@@ -3282,10 +3282,10 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
3282
3282
  this.hiddenElement.setAttribute(htmlAttr, this.htmlAttributes["" + htmlAttr]);
3283
3283
  }
3284
3284
  else if (defaultAttr.indexOf(htmlAttr) > -1) {
3285
- if (htmlAttr === 'placeholder') {
3285
+ if (htmlAttr === 'placeholder' && this.element.getAttribute('placeholder') !== this.htmlAttributes["" + htmlAttr]) {
3286
3286
  Input.setPlaceholder(this.htmlAttributes["" + htmlAttr], this.inputElement);
3287
3287
  }
3288
- else {
3288
+ else if (htmlAttr !== 'placeholder') {
3289
3289
  this.inputElement.setAttribute(htmlAttr, this.htmlAttributes["" + htmlAttr]);
3290
3290
  }
3291
3291
  }