@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.
@@ -4312,7 +4312,7 @@ var Browser = /** @__PURE__ @class */ (function () {
4312
4312
  */
4313
4313
  Browser.getValue = function (key, regX) {
4314
4314
  var browserDetails = typeof window !== 'undefined' ? window.browserDetails : {};
4315
- if (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 && Browser.isTouch === true) {
4315
+ if (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 && Browser.isTouch === true && !REGX_BROWSER.CHROME.test(navigator.userAgent)) {
4316
4316
  browserDetails['isIos'] = true;
4317
4317
  browserDetails['isDevice'] = true;
4318
4318
  browserDetails['isTouch'] = true;
@@ -9440,7 +9440,7 @@ function evalExp(str, nameSpace, helper, ignorePrefix) {
9440
9440
  * @returns {string} ?
9441
9441
  */
9442
9442
  function addNameSpace(str, addNS, nameSpace, ignoreList, ignorePrefix) {
9443
- return ((addNS && !(NOT_NUMBER.test(str)) && ignoreList.indexOf(str.split('.')[0]) === -1 && !ignorePrefix) ? nameSpace + '.' + str : str);
9443
+ return ((addNS && !(NOT_NUMBER.test(str)) && ignoreList.indexOf(str.split('.')[0]) === -1 && !ignorePrefix && str !== "true" && str !== "false") ? nameSpace + '.' + str : str);
9444
9444
  }
9445
9445
  /**
9446
9446
  *