@syncfusion/ej2-base 32.1.24 → 32.2.3

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 : 32.1.24
3
+ * version : 32.2.3
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. 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,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-base",
3
- "version": "32.1.24",
3
+ "version": "32.2.3",
4
4
  "description": "A common package of Essential JS 2 base libraries, methods and class definitions",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -42,7 +42,7 @@
42
42
  "syncfusion-license": "bin/syncfusion-license.js"
43
43
  },
44
44
  "dependencies": {
45
- "@syncfusion/ej2-icons": "~32.1.24"
45
+ "@syncfusion/ej2-icons": "~32.2.3"
46
46
  },
47
47
  "devDependencies": {},
48
48
  "typings": "index.d.ts",
package/src/dom.js CHANGED
@@ -325,6 +325,9 @@ export function selectAll(selector, context, needsVDOM) {
325
325
  * @private
326
326
  */
327
327
  function querySelectId(selector) {
328
+ if (selector.indexOf('\\#') !== -1) {
329
+ return selector;
330
+ }
328
331
  var charRegex = /(!|"|\$|%|&|'|\(|\)|\*|\/|:|;|<|=|\?|@|\]|\^|`|{|}|\||\+|~)/g;
329
332
  if (selector.match(/#[0-9]/g) || selector.match(charRegex)) {
330
333
  var idList = selector.split(',');