@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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 28.2.7
3
+ * version : 28.2.9
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-dropdowns@*",
3
- "_id": "@syncfusion/ej2-dropdowns@28.2.6",
3
+ "_id": "@syncfusion/ej2-dropdowns@28.2.7",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-uQKSk32QXmelpo0QLO6+UsNx7Yj7Tk46Vx54YMsdNAX3hpLdsbEMH9XWfQ2z5MXDKiaWkBl1ajla5tNyWhO6bw==",
5
+ "_integrity": "sha512-Ew/dlXc+nbDcLpV6Em2DsyfzozVI6pHhayqjDZ4AzhbPU3RtZpwE7tPIm8xaF42NiC2Ry7GL5nUxZndGhmgJyg==",
6
6
  "_location": "/@syncfusion/ej2-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -36,8 +36,8 @@
36
36
  "/@syncfusion/ej2-spreadsheet",
37
37
  "/@syncfusion/ej2-vue-dropdowns"
38
38
  ],
39
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-28.2.6.tgz",
40
- "_shasum": "f672e6edcd41527eec728f607fdb583708c8b567",
39
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-28.2.7.tgz",
40
+ "_shasum": "5f705d29d985d77200b2901750fae10804621267",
41
41
  "_spec": "@syncfusion/ej2-dropdowns@*",
42
42
  "_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
43
43
  "author": {
@@ -45,13 +45,13 @@
45
45
  },
46
46
  "bundleDependencies": false,
47
47
  "dependencies": {
48
- "@syncfusion/ej2-base": "~28.2.5",
48
+ "@syncfusion/ej2-base": "~28.2.9",
49
49
  "@syncfusion/ej2-data": "~28.2.3",
50
- "@syncfusion/ej2-inputs": "~28.2.3",
50
+ "@syncfusion/ej2-inputs": "~28.2.9",
51
51
  "@syncfusion/ej2-lists": "~28.2.3",
52
52
  "@syncfusion/ej2-navigations": "~28.2.6",
53
53
  "@syncfusion/ej2-notifications": "~28.2.3",
54
- "@syncfusion/ej2-popups": "~28.2.6"
54
+ "@syncfusion/ej2-popups": "~28.2.9"
55
55
  },
56
56
  "deprecated": false,
57
57
  "description": "Essential JS 2 DropDown Components",
@@ -76,7 +76,7 @@
76
76
  "module": "./index.js",
77
77
  "name": "@syncfusion/ej2-dropdowns",
78
78
  "typings": "index.d.ts",
79
- "version": "28.2.7",
79
+ "version": "28.2.9",
80
80
  "sideEffects": false,
81
81
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
82
82
  }
@@ -2382,7 +2382,7 @@ var DropDownList = /** @class */ (function (_super) {
2382
2382
  && ((this.dataSource instanceof DataManager)
2383
2383
  || (!isNullOrUndefined(this.dataSource) && !isNullOrUndefined(this.dataSource.length) &&
2384
2384
  this.dataSource.length !== 0)))) {
2385
- if (this.itemTemplate && this.element.tagName === 'EJS-COMBOBOX' && this.allowFiltering) {
2385
+ if (this.itemTemplate && (this.element.tagName === 'EJS-COMBOBOX' || this.isReact) && this.allowFiltering) {
2386
2386
  setTimeout(function () {
2387
2387
  _this.updateActionCompleteDataValues(ulElement, list);
2388
2388
  }, 0);
@@ -2049,7 +2049,8 @@ var ListBox = /** @class */ (function (_super) {
2049
2049
  }
2050
2050
  var char = String.fromCharCode(e.keyCode);
2051
2051
  var isWordCharacter = char.match(/\w/);
2052
- if (!isNullOrUndefined(isWordCharacter)) {
2052
+ var isWordAccentCharacter = char.match(/[A-Za-z0-9\u00C0-\u024F ]/);
2053
+ if (!isNullOrUndefined(isWordCharacter) || !isNullOrUndefined(isWordAccentCharacter)) {
2053
2054
  this.isValidKey = true;
2054
2055
  }
2055
2056
  this.isBackSpace = e.keyCode === 8;
@@ -1306,8 +1306,7 @@ var Mention = /** @class */ (function (_super) {
1306
1306
  if (lastNode) {
1307
1307
  range = range.cloneRange();
1308
1308
  if (this.isRTE) {
1309
- range.setStart(lastNode, 0);
1310
- range.setEnd(lastNode, lastNode.textContent.length);
1309
+ range.setStart(lastNode, lastNode.textContent.length);
1311
1310
  }
1312
1311
  else {
1313
1312
  range.setStartAfter(lastNode);