@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.
@@ -3088,6 +3088,9 @@ function selectAll(selector, context = document, needsVDOM) {
3088
3088
  * @private
3089
3089
  */
3090
3090
  function querySelectId(selector) {
3091
+ if (selector.indexOf('\\#') !== -1) {
3092
+ return selector;
3093
+ }
3091
3094
  const charRegex = /(!|"|\$|%|&|'|\(|\)|\*|\/|:|;|<|=|\?|@|\]|\^|`|{|}|\||\+|~)/g;
3092
3095
  if (selector.match(/#[0-9]/g) || selector.match(charRegex)) {
3093
3096
  const idList = selector.split(',');