Currently, everything in kbn-grid-layout is driven by mouse events - onmousedown, onmouseup, onmousemove, etc. react-grid-layout responds to touch events (i.e. touchstart, touchend, touchmove, etc), and so we should also add support for these events in kbn-grid-layout.
Describe the feature:
Currently, everything in
kbn-grid-layout
is driven by mouse events -onmousedown
,onmouseup
,onmousemove
, etc.react-grid-layout
responds to touch events (i.e.touchstart
,touchend
,touchmove
, etc), and so we should also add support for these events inkbn-grid-layout
.