@syncfusion/ej2-dropdowns 28.2.7 → 28.2.9

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.
@@ -5239,7 +5239,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5239
5239
  && ((this.dataSource instanceof DataManager)
5240
5240
  || (!isNullOrUndefined(this.dataSource) && !isNullOrUndefined(this.dataSource.length) &&
5241
5241
  this.dataSource.length !== 0)))) {
5242
- if (this.itemTemplate && this.element.tagName === 'EJS-COMBOBOX' && this.allowFiltering) {
5242
+ if (this.itemTemplate && (this.element.tagName === 'EJS-COMBOBOX' || this.isReact) && this.allowFiltering) {
5243
5243
  setTimeout(function () {
5244
5244
  _this.updateActionCompleteDataValues(ulElement, list);
5245
5245
  }, 0);
@@ -21796,7 +21796,8 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
21796
21796
  }
21797
21797
  var char = String.fromCharCode(e.keyCode);
21798
21798
  var isWordCharacter = char.match(/\w/);
21799
- if (!isNullOrUndefined(isWordCharacter)) {
21799
+ var isWordAccentCharacter = char.match(/[A-Za-z0-9\u00C0-\u024F ]/);
21800
+ if (!isNullOrUndefined(isWordCharacter) || !isNullOrUndefined(isWordAccentCharacter)) {
21800
21801
  this.isValidKey = true;
21801
21802
  }
21802
21803
  this.isBackSpace = e.keyCode === 8;
@@ -23730,8 +23731,7 @@ var Mention = /** @__PURE__ @class */ (function (_super) {
23730
23731
  if (lastNode) {
23731
23732
  range = range.cloneRange();
23732
23733
  if (this.isRTE) {
23733
- range.setStart(lastNode, 0);
23734
- range.setEnd(lastNode, lastNode.textContent.length);
23734
+ range.setStart(lastNode, lastNode.textContent.length);
23735
23735
  }
23736
23736
  else {
23737
23737
  range.setStartAfter(lastNode);