@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.
- package/CHANGELOG.md +16 -0
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +2 -2
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +2 -2
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +2 -2
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +50 -17
- package/src/browser.js +1 -1
- package/src/template.js +1 -1
- package/styles/bootstrap-dark.css +13 -1
- package/styles/bootstrap.css +13 -1
- package/styles/bootstrap4.css +13 -1
- package/styles/bootstrap5-dark.css +13 -1
- package/styles/bootstrap5.css +13 -1
- package/styles/definition/_material.scss +0 -3
- package/styles/fabric-dark.css +13 -1
- package/styles/fabric.css +13 -1
- package/styles/fluent-dark.css +13 -1
- package/styles/fluent.css +13 -1
- package/styles/highcontrast-light.css +13 -1
- package/styles/highcontrast.css +13 -1
- package/styles/material-dark.css +13 -1
- package/styles/material.css +13 -1
- package/styles/offline-theme/material-dark.css +13 -1
- package/styles/offline-theme/material.css +13 -1
- package/styles/offline-theme/tailwind-dark.css +13 -1
- package/styles/offline-theme/tailwind.css +13 -1
- package/styles/tailwind-dark.css +13 -1
- package/styles/tailwind.css +13 -1
package/dist/es6/ej2-base.es5.js
CHANGED
|
@@ -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
|
*
|