Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-hammerjs

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-hammerjs - npm Package Compare versions

Comparing version 0.4.3 to 0.4.5

2

bower.json
{
"name": "react-hammerjs",
"main": "dist/react-hammerjs.min.js",
"version": "0.4.3",
"version": "0.4.5",
"homepage": "https://github.com/JedWatson/react-hammerjs",

@@ -6,0 +6,0 @@ "authors": [

{
"name": "react-hammerjs",
"version": "0.4.3",
"version": "0.4.5",
"description": "ReactJS / HammerJS integration. Support touch events in your React app.",

@@ -16,20 +16,20 @@ "main": "src/Hammer.js",

"devDependencies": {
"browserify": "^11.2.0",
"browserify-shim": "^3.8.10",
"browserify": "^12.0.1",
"browserify-shim": "^3.8.11",
"chalk": "^1.1.1",
"del": "^2.0.2",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-bump": "^1.0.0",
"gulp-git": "^1.5.0",
"gulp-git": "^1.6.0",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.4.2",
"gulp-util": "^3.0.6",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"merge-stream": "^1.0.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"vinyl-source-stream": "^1.1.0"
},
"peerDependencies": {
"react": "^0.14.0"
"react": "^0.14.3"
},

@@ -36,0 +36,0 @@ "browserify-shim": {

@@ -16,2 +16,3 @@ var React = require('react');

onPanEnd: true,
onPanCancel: true,
onSwipe: true,

@@ -23,2 +24,5 @@ onPress: true,

onPinchOut: true,
onPinchStart: true,
onPinchEnd: true,
onPinchCancel: true,
onRotate: true

@@ -39,2 +43,3 @@ };

onPanEnd: 'panend',
onPanCancel: 'pancancel',
onSwipe: 'swipe',

@@ -46,2 +51,4 @@ onPress: 'press',

onPinchOut: 'pinchout',
onPinchStart: 'pinchstart',
onPinchEnd: 'pinchend',
onRotate: 'rotate'

@@ -73,2 +80,9 @@ };

}
if (props.recognizeWith) {
Object.keys(props.recognizeWith).forEach(function (gesture) {
var recognizer = hammer.get(gesture);
recognizer.recognizeWith(props.recognizeWith[gesture]);
}, this);
}

@@ -75,0 +89,0 @@ Object.keys(props).forEach(function (p) {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc