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

react-flexr

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-flexr - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

lib/cell.component.js

@@ -55,3 +55,3 @@ 'use strict';

var styles = {
flex: size ? '0 0 ' + 100 / denom * numer + '%' : '' + growStyle + ' 1',
flex: size ? '0 0 ' + 100 / denom * numer + '%' : grow !== undefined ? '' + growStyle + ' 1 auto' : 1,
padding: gutter ? gutter : '0 1em',

@@ -58,0 +58,0 @@ display: flex ? 'flex' : null,

{
"name": "react-flexr",
"version": "1.1.0",
"version": "1.1.1",
"description": "React flexbox grid made simple.",

@@ -5,0 +5,0 @@ "main": "lib",

@@ -18,3 +18,6 @@ import React from 'react';

const styles = {
flex: size ? `0 0 ${ ( 100 / denom ) * numer }%` : `${ growStyle } 1`,
flex: size ?
`0 0 ${ ( 100 / denom ) * numer }%` :
grow !== undefined ? `${ growStyle } 1 auto` :
1,
padding: gutter ? gutter : '0 1em',

@@ -21,0 +24,0 @@ display: flex ? 'flex' : null,

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