@syncfusion/ej2-base 27.2.2 → 27.2.5

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.
@@ -4313,6 +4313,8 @@ class Browser {
4313
4313
  browserDetails['isDevice'] = true;
4314
4314
  browserDetails['isTouch'] = true;
4315
4315
  browserDetails['isPointer'] = true;
4316
+ // Set 'isPointer' for pointer-enabled devices (e.g., iPad on Safari)
4317
+ browserDetails['isPointer'] = ('pointerEnabled' in window.navigator);
4316
4318
  }
4317
4319
  if (typeof window !== 'undefined' && window.Capacitor && window.Capacitor.getPlatform() === 'ios') {
4318
4320
  browserDetails['isPointer'] = false;