Blame view

天文台pc/tianwentai-ui/node_modules/framer-motion/dist/es/motion/features/drag.mjs 463 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  import { DragGesture } from '../../gestures/drag/index.mjs';
  import { PanGesture } from '../../gestures/pan/index.mjs';
  import { MeasureLayout } from './layout/MeasureLayout.mjs';
  import { HTMLProjectionNode } from 'motion-dom';
  
  const drag = {
      pan: {
          Feature: PanGesture,
      },
      drag: {
          Feature: DragGesture,
          ProjectionNode: HTMLProjectionNode,
          MeasureLayout,
      },
  };
  
  export { drag };
  //# sourceMappingURL=drag.mjs.map