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.0.8 to 1.0.9

4

package.json

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

"description": "Layout components",
"gitHead": "62c0bbea34b2a911348b73c68299910c437b89d5",
"gitHead": "c50537353417790b17d48921726aed1ee265c928",
"license": "ISC",

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

},
"version": "1.0.8"
"version": "1.0.9"
}

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

import PropTypes from "prop-types";
import Break from "./Break";

@@ -44,6 +45,12 @@ /**

// Build text decoration with multiple options
let textDecorationLine = underline ? "underline " : "";
textDecorationLine = strikethrough
? `${textDecorationLine} line-through`
: textDecorationLine;
let textDecorationLine = "none";
if (underline || strikethrough) {
textDecorationLine = "";
textDecorationLine = underline ? "underline" : textDecorationLine;
textDecorationLine = strikethrough
? `${textDecorationLine} line-through`
: textDecorationLine;
}
const optionalLink = url ? { onPress: () => Linking.openURL(url) } : null;

@@ -50,0 +57,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