@syncfusion/ej2-base 19.3.43 → 19.3.47

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.
@@ -348,6 +348,12 @@ function throwError(message) {
348
348
  function print(element, printWindow) {
349
349
  const div = document.createElement('div');
350
350
  const links = [].slice.call(document.getElementsByTagName('head')[0].querySelectorAll('base, link, style'));
351
+ const blinks = [].slice.call(document.getElementsByTagName('body')[0].querySelectorAll('link, style'));
352
+ if (blinks.length) {
353
+ for (let l = 0, len = blinks.length; l < len; l++) {
354
+ links.push(blinks[l]);
355
+ }
356
+ }
351
357
  let reference = '';
352
358
  if (isNullOrUndefined(printWindow)) {
353
359
  printWindow = window.open('', 'print', 'height=452,width=1024,tabbar=no');
@@ -4200,6 +4206,12 @@ class Browser {
4200
4206
  if ('undefined' === typeof browserDetails[key]) {
4201
4207
  return browserDetails[key] = regX.test(Browser.userAgent);
4202
4208
  }
4209
+ if (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 && Browser.isTouch === true) {
4210
+ browserDetails['isIos'] = true;
4211
+ browserDetails['isDevice'] = true;
4212
+ browserDetails['isTouch'] = true;
4213
+ browserDetails['isPointer'] = true;
4214
+ }
4203
4215
  return browserDetails[key];
4204
4216
  }
4205
4217
  //Properties