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-simple-css-grid

v1.1.2

Published

This library provides a flexible, responsive grid component for ReactJS. It is written in TypeScript and uses CSS properties to define the grid layout.

Downloads

428

Readme

Grid Component Library

Introduction

This library provides a flexible, responsive grid component for ReactJS. It is written in TypeScript and uses CSS properties to define the grid layout.

Installation

Using npm
npm install --save react-simple-css-grid
Using yarn
yarn add react-simple-css-grid

Usage

Import the Grid component in your file:

import Grid from 'react-css-grid';

You can then use it in your component:

<Grid columns="1fr 2fr">
  <div>Element 1</div>
  <div>Element 2</div>
  <div>Element 3</div>
  <div>Element 4</div>
</Grid>

Grid Context

You can add some configuration globally for your grids using GridContextProvider :

import { GridContextProvider } from "react-simple-css-grid";

<GridContextProvider
      configuration={{
        minWidth: 400,
        gaps: [
          { xs: "0.25rem" },
          { s: "0.5rem" },
          { m: "0.75rem" },
          { l: "6rem" },
          { xl: "1.5rem" },
          { xxl: "1.75rem" },
          { xxxl: "2rem" },
        ],
      }}
    >
      {children}
    </GridContextProvider>
  • minWidth : The minimum width where the grid displays on 1 column (if no smallScreenColumns is defined)
  • gaps : Override the original gaps of <Grid> component

Props

The Grid component accepts the following props:

  • children: The child elements to display in the grid.
  • style: Additional CSS styles to apply to the grid.
  • columns: The number of columns or the ‘grid-template-columns’ - CSS property value.
  • smallScreenColumns: The number of columns or the ‘grid-template-columns’ CSS property value for small screens.
  • rows: The number of rows or the ‘grid-template-rows’ CSS property value.
  • rowGap: The gap between rows.
  • columnGap: The gap between columns.
  • className: An additional CSS class to apply to the grid.
  • uniqueClass: A unique CSS class to apply to the grid. (see #Optimize section)
  • alignCenter: If true, grid items are vertically centered.
  • alignStart: If true, grid items are aligned to the start.
  • height: The height of the grid.

Optimize

RCG works by defining CSS styles in <head> with a unique class, instead of setting inline styles.

Sometimes, you may need to set a grid layout in a .map() function. In this case, you should set the uniqueClass prop.

If your .map() returns 10 elements using RCG, it will create 10 different classes with the same properties. By using uniqueClass, only one class will be defined for your 10 elements.

License

MIT