npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-flexybox

v2.5.1

Published

React Flexbox Components

Downloads

104

Readme

React Flexy Box

React flexy box is a simple to use flexbox system for your React project based on the original flexybox library

If you've used the bootstrap layout system, then react-flexybox should be relatively familiar.

  • Straight forward and familiar API for controlling your layout
  • built with styled-components - no css/scss means no need to add special loaders/config
  • based off actual uses cases in production apps

Live Demo

https://react-flexybox-demo.netlify.com/

Browser Support

"Chrome >= 48",
"Firefox >= 44",
"Firefox ESR",
"Safari >= 9.1",
"Edge >= 12",
"ios_saf >= 9.3",
"ie 11"

Installation

dependencies: react 15+, styled-components 3+

npm install react-flexybox styled-components

or

yarn add react-flexy-box styled-components

API

<Container />

Optional wrapper

| prop | type | values | default | description | |---------- |:------------------: |-------- |--------- | --------------------------------------------------------------------------------- | | fluid | boolean | | false | true: sets content to 100% of page width | false: sets a max-width for content | | className | string | | | set the className on the Container Element | | style | object | | | set the style on the Container Element | | component | function | string | | div | The component to render the Container as |

<Row>

Row wraps Cols

| prop | type | values | default | description | |---------------- |:-------: |------------------------------------------------------------------------------------ |------------ | ----------- | | gutter | number | | 0 | | columnDivision | integer | | 12 | allows columns divisions to be overidden (i.e. 24 = smaller columns than 12) | minColWidths | number | | | override the minWidth for all Cols within the Row | wrap | string | nowrap \| wrap \| wrap-reverse | wrap | whether flex items should wrap when the window is resized | direction | string | row \| row-reverse \| column \| column-reverse | row | | justifyContent | string | flex-start \| flex-end \| center \| space-between \| space-around \| space-evenly | flex-start | justityContent aligns the items inside a flex container along the x axis | alignContent | string | flex-start \| flex-end \| center \| baseline \| stretch | stretch | alignContent aligns the whole structure according to its value and has no effect when items are in a single line | alignItems | string | flex-start \| flex-end \| center \| space-between \| space-around \| stretch \| baseline | stretch | alignItems aligns the items inside a flex container along the y axis just like justifyContent does along the x axis | className | string | | | set the className on the Row Element | | style | object | | | set the style on the Row Element | | debug | boolean | | false | adds bounding boxes to help debug layout issues | | height | string | | | allows setting the Row height e.g. height="100px" | | component | function | string | | div | The component to render the Row as | | center | boolean | | false | shortcut to center child Col items horizontally and vertically | | fill | boolean | | false | shortcut that sets Row to height: 100% - (overrides 'height') | | padding | string | | 0 | sets padding on Row | | paddingTop | string | | 0 | sets padding-top on Row | | paddingLeft | string | | 0 | sets padding-left on Row | | paddingBottom | string | | 0 | sets padding-bottom Row | | paddingRight | string | | 0 | sets padding-right on Row |

  • <Row gutter={4} minColWidth={100}> sets child Col flex items to margin of 4px and all min-widths to 100px within Row
  • <Row justifyContext="center"> center justifies child Col flex items horizontally within the Row
  • <Row justifyContext="center" alignItems="center" > center justifies child Col flex items horizontally and vertically within the Row

<Col>

Flex Items

| prop | type | values | default | description | |---------- |:------------------: |-------------------------------------------------------------------- |---------------------- |-------------------------------------------- | | order | integer | | 0 | set the order of flex items | | alignSelf | string | auto \| flex-start \| flex-end \| center \| baseline \| stretch | auto | center the alignments for one of the items inside a flexible element | | flex | boolean | number | | false \| 1-12 | sets the default flex size | | xs | number | | 1-12 | 0 - 599px | | sm | number | | 1-12 | 600 - 959px | | md | number | | 1-12 | 960px - 1280px | | lg | number | | 1-12 | 1280px or greater | | className | string | | | set the className on the Col Element | | style | object | | | set the style on the Col Element | | component | function | string | | div | The component to render the Col as |

  • <Col flex={6}> sets the default flex size
  • <Col flex> sets the item to auto stretch
  • <Col flex={6} xs={12}> xs (xs, sm, md, or lg) used togther with flex - you can easily set a default flex size for any size other than the xs breakpoint
  • <Col flex={6} order={2}> ... <Col flex={6} order={1}> The last Col will be ordered as first
  • values for flex ranges are dependent on columnDivisions

Basic Usage

import { Container, Row, Col } from 'react-flexybox';

UMD Usage

...
<head>
  <link rel="stylesheet" href="https://react-flexybox.netlify.com/react-flexybox.min.js">
</head>
...

// ES6
const {
  Container,
  Row,
  Col,
} = ReactFlexyBox;

//ES Old School
var Container = ReactFlexyBox.Container;
var Row = ReactFlexyBox.Row;
var Col = ReactFlexyBox.Col;

Supported Browsers

react-flexybox is supports on browsers that support flex. It will be up to you to set your autoprefixing appropriatly especially if you use IE 11

Supported Browsers

Contributing

  • npm install yarn jest -g
  • yarn build-all to generate dist
  • yarn build-demo to generate/update demo

Scripts

  • yarn build - produces production version of your library under the dist folder
  • yarn build-all - produces production & dev version of your library under the dist folder
  • yarn dev - produces development version of react-flexybox and runs a watcher
  • yarn test - runs the tests
  • yarn test:watch - same as above but in a watch mode
  • yarn demo:build - builds the demo

Built with react-flexybox

Inspiration

  • https://css-tricks.com/snippets/css/a-guide-to-flexbox/
  • https://v4-alpha.getbootstrap.com/