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

@lalomts/flexgrid-js

v1.0.0

Published

A customizable 12 column flexbox grid, built with jss

Downloads

4

Readme

flexgrid-js

flexgrid-js is customizable implementation of flexboxgrid.css built using the features of jss, providing the functionality of the 12 column grid with a simple API.

Install

flexgrid-js is available as an npm package

npm

npm install @lalomts/flexgrid-js

yarn

yarn add @lalomts/flexgrid-js

Usage

Configure the grid

The grid uses the flexboxgrid.css attributes by default. In order to override them, you need to pass an object as argument to the .grid() method.


const gridConfig = { 
  gutterWidth: 16, 
  outerMargin:8 
}

<div className={ FlexGrid.grid(gridConfig)}>  </div> 

Adding rows

Rows can also have several attributes that can be customized in relation to the viewport's width. To configure a row, you pass an object to the .col() method.


const rowConfig = {
  align: { 
    xs: ['bottom'], 
    lg: ['center']
  }
}

<div className={ FlexGrid.row(rowConfig)}> </div>

Adding columns

Just as with rows, columns' attributes need to be configured with an object value passed to the .col()method. There's no need to specify a value for each viewport size, just add the needed viewport values to the desired attribure keys.

const colConfig = { 
  size: {
    xs: 9, 
    md: 3, 
    lg: 6
   }, 
  reverse: {
    xs: true
  }, 
  hidden: {
    lg: true
  }
}

<div className={ FlexGrid.col(colConfig)}> </div>

A complete example

import FlexGrid from '@lalomts/flexgrid-js'

class Home extends Component {
  render() {

  const columnConfig = { 
    size: { 
      xs: 9,
      md: 3, 
      lg: 6}, 
    offset: {
      xs: 4, 
      xl: 2
    }
  }
  
  return (
    <div className={ FlexGrid.grid({ gutterWidth: 8, xl: 1400 })}> 
      <div className={FlexGrid.row({ reverse: true })}>
          <div className={FlexGrid.col( columnConfig )}>
              //Your content 
          </div>
      </div>
    </div>
  )
 }
}

Attributes

The attributes and possible values for each element of the grid:

Grid

| Attribute | Description | Values | Example | | --- | --- | --- | --- | | gutterWidth | The space between each of the grid's columns | Number | gutterWidth: 16| | outerMargin | The margin (left and right) of the container | Number | outerMargin: 32| | xs | The min screen width the x small viewport size | Number | xs: 0 | | sm | The min screen width the small viewport size | Number | sm: 578 | | md | The min screen width the medium viewport size | Number | xs: 768 | | lg | The min screen width the large viewport size | Number | lg: 992 | | xl | The min screen width the x large viewport size | Number | xl: 1250 |

Row

| Attribute | Description | Values | Example | | --- | --- | --- | --- | | align | How the elements should be aligned inside a row for a specific viewport size | Array: start, center, end, top, bottom, middle | align: {xs: ['bottom', 'center', xl: ['start']}| | dist | How the elements should be distributed inside a row for a specific viewport size | around, between| dist: { xs: 'around' }| | reverse | Reverse the order of the elements inside a row | Bool | reverse: true |

Column

| Attribute | Description | Values | Example | | --- | --- | --- | --- | | size | How many of the grid columns should be used at a specific viewport size| Number: 1-12 | size: {sm: 6, xl: 8} | | offset | The offset of a column at a specific viewport size| Number: 1-11 | offset: {sm: 2, xl: 4} | | reorder | Forces a column to appear at a different order for a specific viewport size| first, last, initialOrder | reorder: {sm: 'first', xl: 'initialOrder' } | | hidden | Hides a column at a specific viewport size | Bool | hidden: true | | reverse | Reverse the order of the elements inside a column | Bool | reverse: true |

Licence

MIT