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

@redu/react-native-component-layout

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@redu/react-native-component-layout - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

4

package.json

@@ -31,3 +31,3 @@ {

"description": "Layout components",
"gitHead": "a4d77dfb876b117e791b9d406dfb4694587e4bf1",
"gitHead": "269c18cd60c0a7c882259b049a7354c75a36b371",
"license": "ISC",

@@ -39,3 +39,3 @@ "main": "index.js",

},
"version": "1.2.2"
"version": "1.2.3"
}

@@ -24,2 +24,3 @@ /**

* @param url
* @param disabled
* @param style

@@ -41,2 +42,3 @@ * @param props

url,
disabled,
style,

@@ -57,3 +59,3 @@ ...props

const optionalLink = url ? { onPress: () => Linking.openURL(url) } : null;
const optionalLink = (url && !disabled) ? { onPress: () => Linking.openURL(url) } : null;

@@ -97,2 +99,4 @@ return (

lineHeight: PropTypes.number,
disabled: PropTypes.bool,
url: PropTypes.string,
style: PropTypes.any

@@ -99,0 +103,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