@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.
@@ -3205,6 +3205,9 @@ function selectAll(selector, context, needsVDOM) {
3205
3205
  * @private
3206
3206
  */
3207
3207
  function querySelectId(selector) {
3208
+ if (selector.indexOf('\\#') !== -1) {
3209
+ return selector;
3210
+ }
3208
3211
  var charRegex = /(!|"|\$|%|&|'|\(|\)|\*|\/|:|;|<|=|\?|@|\]|\^|`|{|}|\||\+|~)/g;
3209
3212
  if (selector.match(/#[0-9]/g) || selector.match(charRegex)) {
3210
3213
  var idList = selector.split(',');