@syncfusion/ej2-base 21.2.3 → 21.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.
@@ -4260,7 +4260,7 @@ class Browser {
4260
4260
  */
4261
4261
  static getValue(key, regX) {
4262
4262
  const browserDetails = typeof window !== 'undefined' ? window.browserDetails : {};
4263
- if (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 && Browser.isTouch === true) {
4263
+ if (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 && Browser.isTouch === true && !REGX_BROWSER.CHROME.test(navigator.userAgent)) {
4264
4264
  browserDetails['isIos'] = true;
4265
4265
  browserDetails['isDevice'] = true;
4266
4266
  browserDetails['isTouch'] = true;
@@ -9320,7 +9320,7 @@ function evalExp(str, nameSpace, helper, ignorePrefix) {
9320
9320
  * @returns {string} ?
9321
9321
  */
9322
9322
  function addNameSpace(str, addNS, nameSpace, ignoreList, ignorePrefix) {
9323
- return ((addNS && !(NOT_NUMBER.test(str)) && ignoreList.indexOf(str.split('.')[0]) === -1 && !ignorePrefix) ? nameSpace + '.' + str : str);
9323
+ return ((addNS && !(NOT_NUMBER.test(str)) && ignoreList.indexOf(str.split('.')[0]) === -1 && !ignorePrefix && str !== "true" && str !== "false") ? nameSpace + '.' + str : str);
9324
9324
  }
9325
9325
  /**
9326
9326
  *