├── .gitignore ├── .npmignore ├── FUNDING.yml ├── LICENSE ├── README.md ├── RELEASES.md ├── bun.lockb ├── images ├── anim-all.gif ├── anim-drag.gif ├── anim-tap.gif ├── gestures0001.png ├── gestures0002.png ├── gestures0003.png ├── gestures0004.png ├── gestures0005.png ├── gestures0006.png ├── gestures0007.png ├── gestures0008.png └── swipe-cone.png ├── package.json ├── src └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | test/ 4 | playground* 5 | dist/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | test 3 | images -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: robinrodricks 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/RELEASES.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/bun.lockb -------------------------------------------------------------------------------- /images/anim-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/anim-all.gif -------------------------------------------------------------------------------- /images/anim-drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/anim-drag.gif -------------------------------------------------------------------------------- /images/anim-tap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/anim-tap.gif -------------------------------------------------------------------------------- /images/gestures0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0001.png -------------------------------------------------------------------------------- /images/gestures0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0002.png -------------------------------------------------------------------------------- /images/gestures0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0003.png -------------------------------------------------------------------------------- /images/gestures0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0004.png -------------------------------------------------------------------------------- /images/gestures0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0005.png -------------------------------------------------------------------------------- /images/gestures0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0006.png -------------------------------------------------------------------------------- /images/gestures0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0007.png -------------------------------------------------------------------------------- /images/gestures0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/gestures0008.png -------------------------------------------------------------------------------- /images/swipe-cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/images/swipe-cone.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinrodricks/vue3-touch-events/HEAD/tsconfig.json --------------------------------------------------------------------------------