fix: Touch gestures should count as card interactions (#2265)

- Closes: #2245
This commit is contained in:
Dermot Duffy
2025-12-08 18:43:28 -08:00
committed by GitHub
parent bbdf96474e
commit a241e02594
2 changed files with 32 additions and 0 deletions
@@ -96,6 +96,14 @@ export class CardElementManager {
'wheel',
this._api.getInteractionManager().reportInteraction,
);
this._element.addEventListener(
'touchstart',
this._api.getInteractionManager().reportInteraction,
);
this._element.addEventListener(
'touchmove',
this._api.getInteractionManager().reportInteraction,
);
this._element.addEventListener(
'll-custom',
this._api.getActionsManager().handleCustomActionEvent,
@@ -166,6 +174,14 @@ export class CardElementManager {
'wheel',
this._api.getInteractionManager().reportInteraction,
);
this._element.removeEventListener(
'touchstart',
this._api.getInteractionManager().reportInteraction,
);
this._element.removeEventListener(
'touchmove',
this._api.getInteractionManager().reportInteraction,
);
this._element.removeEventListener(
'll-custom',
this._api.getActionsManager().handleCustomActionEvent,