
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
flex-react
Advanced tools
Flex React is a grid-based set of components for React. It offers the following features:
As of v1.2.6, there is no padding prop in any component.
In a later version I may add a method to create a wrapper around these components to specify padding, but I could not resolve a specific style bug where an overflow of
Col
inside aRow
would cause issues.
As a result,
Grid
has no actual purpose as of v1.2.6.
In the meantime, this package will have no supported way of creating 'gutters'/padding between components. Thanks
npm install --save flex-react
If you don't see any styling appear, import this file somewhere high-level in your app:
import 'flex-react/dist/style.css';
import React, { Component } from 'react';
import { Grid, Row, Col } from 'flex-react';
class Example extends Component {
render() {
return (
<Grid className="example">
<Row>
<Col sm={6}>
<p>Apart from on mobile, this will take up 50% of the row!</p>
</Col>
<Col sm={6}>
<p>And this will take up the other 50%!</p>
</Col>
</Row>
<Row center>
<Col xs={4}>
<p>This will be centered!</p>
</Col>
</Row>
<Row>
<Col xs={4} xsOffset={4}>
<p>This is another way to make something centered!</p>
</Col>
</Row>
<Row spaceBetween>
<Col sm={3}>
<p>This will be aligned on the left,</p>
</Col>
<Col sm={3}>
<p>and this will be aligned on the right!</p>
</Col>
</Row>
</Grid>
);
}
}
Abbreviation | Meaning | Screen Size | Pixels |
---|---|---|---|
xs | Extra Small | Mobile | 0 to 767px |
sm | Small | Tablet | 768px to 991px |
md | Medium | Laptop Monitor | 992px to 1199px |
lg | Large | Desktop Monitor | 1200px and up |
Property | Type | Default | Description |
---|---|---|---|
children | Any | The content to wrap inside the column. | |
className | String | Empty string | A class name to give custom styling to the column. |
xs | Number | 12 | The number of units to set as the column width. (0-12) |
sm | Number | [xs] | The number of units to set as the column width. (0-12) |
md | Number | [sm] | The number of units to set as the column width. (0-12) |
lg | Number | [md] | The number of units to set as the column width. (0-12) |
xsOffset | Number | 0 | The number of units to pad the left to the left of the column. (0-12) |
smOffset | Number | [xsOffset] | The number of units to pad the left to the left of the column. (0-12) |
mdOffset | Number | [smOffset] | The number of units to pad the left to the left of the column. (0-12) |
lgOffset | Number | [mdOffset] | The number of units to pad the left to the left of the column. (0-12) |
...restProps | Use this to add any additional props to the component. |
Property | Type | Default | Description |
---|---|---|---|
children | Any | The content to wrap inside the row. | |
className | String | Empty string | A class name to give custom styling to the row. |
xs | Number | 12 | The number of units to set as the row width. (0-12) |
sm | Number | [xs] | The number of units to set as the row width. (0-12) |
md | Number | [sm] | The number of units to set as the row width. (0-12) |
lg | Number | [md] | The number of units to set as the row width. (0-12) |
vAlign | Boolean | false | Whether the children should be centered vertically within the row. |
center | Boolean | false | Whether the children should be centered horizontally within the row. |
left | Boolean | false | Whether the children should be left aligned within the row. |
right | Boolean | false | Whether the children should be right aligned within the row. |
spaceAround | Boolean | false | Whether each children should have equal spacing to the left and right within the row. |
spaceBetween | Boolean | false | Whether the children should have maximal spacing between each other within the row. |
...restProps | Use this to add any additional props to the component. |
Property | Type | Default | Description |
---|---|---|---|
children | Any | The content to wrap inside the cgrid. | |
className | String | Empty string | A class name to give custom styling to the grid. |
...restProps | Use this to add any additional props to the component. |
To begin development, run the following:
npm start
This will host a webpack dev server
at localhost:3000
where you can play around with the components.
The main file/'test harness' is located under /dev
and webpack will serve them from /dev-build
.
To modify the components themselves, simply edit them under the /src
directory.
To build the files, simply run:
npm run build
File an issue for any bugs found, or if you want any features added. I'm happy to always keep improving this package, let me know if you run into any errors.
Thanks!
FAQs
A lightweight React component library to build flex-based grids.
The npm package flex-react receives a total of 8 weekly downloads. As such, flex-react popularity was classified as not popular.
We found that flex-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.