Socket
Socket
Sign inDemoInstall

react-native-modal

Package Overview
Dependencies
Maintainers
2
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-modal - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

12

package.json
{
"name": "react-native-modal",
"version": "5.0.0",
"version": "5.0.1",
"description": "An enhanced React-Native modal",

@@ -37,8 +37,8 @@ "main": "src/index.js",

"devDependencies": {
"babel-eslint": "^8.1.2",
"eslint": "4.14.0",
"eslint-plugin-react-app": "^1.0.2",
"babel-eslint": "^8.2.1",
"eslint": "^4.18.0",
"eslint-plugin-react-app": "^3.0.0",
"husky": "0.14.3",
"lint-staged": "6.0.0",
"prettier": "1.9.2",
"lint-staged": "^6.1.1",
"prettier": "^1.10.2",
"react": ">=15.0.0",

@@ -45,0 +45,0 @@ "react-native": ">=0.24.0"

@@ -244,9 +244,11 @@ import React, { Component } from "react";

if (isObject(animationIn)) {
makeAnimation("animationIn", animationIn);
animationIn = "animationIn";
const animationName = JSON.stringify(animationIn);
makeAnimation(animationName, animationIn);
animationIn = animationName;
}
if (isObject(animationOut)) {
makeAnimation("animationOut", animationOut);
animationOut = "animationOut";
const animationName = JSON.stringify(animationOut);
makeAnimation(animationName, animationOut);
animationOut = animationName;
}

@@ -253,0 +255,0 @@

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