@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.
@@ -5121,7 +5121,7 @@ let DropDownList = class DropDownList extends DropDownBase {
5121
5121
  && ((this.dataSource instanceof DataManager)
5122
5122
  || (!isNullOrUndefined(this.dataSource) && !isNullOrUndefined(this.dataSource.length) &&
5123
5123
  this.dataSource.length !== 0)))) {
5124
- if (this.itemTemplate && this.element.tagName === 'EJS-COMBOBOX' && this.allowFiltering) {
5124
+ if (this.itemTemplate && (this.element.tagName === 'EJS-COMBOBOX' || this.isReact) && this.allowFiltering) {
5125
5125
  setTimeout(() => {
5126
5126
  this.updateActionCompleteDataValues(ulElement, list);
5127
5127
  }, 0);
@@ -21446,7 +21446,8 @@ let ListBox = ListBox_1 = class ListBox extends DropDownBase {
21446
21446
  }
21447
21447
  const char = String.fromCharCode(e.keyCode);
21448
21448
  const isWordCharacter = char.match(/\w/);
21449
- if (!isNullOrUndefined(isWordCharacter)) {
21449
+ const isWordAccentCharacter = char.match(/[A-Za-z0-9\u00C0-\u024F ]/);
21450
+ if (!isNullOrUndefined(isWordCharacter) || !isNullOrUndefined(isWordAccentCharacter)) {
21450
21451
  this.isValidKey = true;
21451
21452
  }
21452
21453
  this.isBackSpace = e.keyCode === 8;
@@ -23347,8 +23348,7 @@ let Mention = class Mention extends DropDownBase {
23347
23348
  if (lastNode) {
23348
23349
  range = range.cloneRange();
23349
23350
  if (this.isRTE) {
23350
- range.setStart(lastNode, 0);
23351
- range.setEnd(lastNode, lastNode.textContent.length);
23351
+ range.setStart(lastNode, lastNode.textContent.length);
23352
23352
  }
23353
23353
  else {
23354
23354
  range.setStartAfter(lastNode);