@syncfusion/ej2-dropdowns 19.3.53 → 19.3.55

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.
@@ -2129,7 +2129,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
2129
2129
  if (this.isSelectFocusItem(focusEle)) {
2130
2130
  this.setSelection(focusEle, e);
2131
2131
  }
2132
- else {
2132
+ else if (!isNullOrUndefined(this.liCollections)) {
2133
2133
  var index = e.action === 'down' ? this.activeIndex + 1 : this.activeIndex - 1;
2134
2134
  var startIndex = 0;
2135
2135
  if (this.getModuleName() === 'autocomplete') {