drag.mjs 463 B

1234567891011121314151617
  1. import { DragGesture } from '../../gestures/drag/index.mjs';
  2. import { PanGesture } from '../../gestures/pan/index.mjs';
  3. import { MeasureLayout } from './layout/MeasureLayout.mjs';
  4. import { HTMLProjectionNode } from '../../projection/node/HTMLProjectionNode.mjs';
  5. const drag = {
  6. pan: {
  7. Feature: PanGesture,
  8. },
  9. drag: {
  10. Feature: DragGesture,
  11. ProjectionNode: HTMLProjectionNode,
  12. MeasureLayout,
  13. },
  14. };
  15. export { drag };