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

@nice-digital/nds-grid

v4.0.15

Published

Grid component for the NICE Design System

Downloads

268

Readme

@nice-digital/nds-grid

Grid component for the NICE Design System

Installation

Install Node, and then:

npm i @nice-digital/nds-grid --save

Usage

React

Import the Grid and GridItem components from the package and use within JSX:

import React from "react";
import { Grid, GridItem } from "@nice-digital/nds-grid";

<Grid>
	<GridItem cols={12} sm={{ cols: 6, push: 2 }}>
		Some grid content
	</GridItem>
</Grid>

Note: The React component automatically imports the SCSS, so there's no need to import the SCSS directly yourself.

Props

Grid
children
  • Type: GridItem | GridItem[] (required)

The grid items to render within the grid

reverse
  • Type: boolean | null
  • Default: false

Reverses the rendered order of grid items from their natural DOM order. Can be useful for rendering a menu first on mobile, but on the right hand side on side devices. Leave blank to default to the natural DOM order.

Use with caution! Be careful not to introduce an illogical, confusing tab order when using a reverse grid.

horizontalAlignment
  • Type: left | center | right | null
  • Default: left

The horizontal alignment of items within the grid, when there are empty columns. Useful for creating interesting layouts. Leave blank to default to left alignment.

verticalAlignment
  • Type: top | middle | bottom | null
  • Default: top

The vertical alignment of items within the grid. Useful for creating interesting layouts. Leave blank to default to top alignment.

gutter
  • Type: standard | none | compact | loose | null
  • Default: standard

The horizontal alignment of items within the grid, when there are empty columns. Useful for creating interesting layouts. Leave blank to default to standard gutters.

debug
  • Type: boolean
  • Default: false

Puts coloured debug outlines round grid and grid items to enable debugging layouts.

className
  • Type: string
  • Default: ""

Additional classes to render on the grid element. Useful for margin classes e.g. mt--d.

elementType
  • Type: React.ElementType
  • Default: div

A custom tag type for the grid. Useful if semantically your grid is a ul or ol. Defaults to a normal HTMLDivElement. Example: <Grid elementType="ul"></Grid>.

GridItem
children
  • Type: React.Node | React.Node[] (required)

The contents of the grid item.

cols
  • Type: Number (required)

The number of columns (1-12) this grid item spans on the smallest screen size.

push
  • Type: Number

The number of columns (1-11) to push this grid item on the smallest screen size.

pull
  • Type: Number

The number of columns (1-11) to pull this grid item on the smallest screen size.

xs, sm, md, lg, xl
  • Type: Number | { cols: Number, push: Number, pull: Number }

The grid definition at the breakpoint. Use a number to span that number of columns, or pass an object to configure cols, push and/or pull.

className
  • Type: string
  • Default: ""

Additional classes to render on the grid item element. Useful for margin classes e.g. mt--d.

elementType
  • Type: React.ElementType
  • Default: div

A custom tag type for the grid item. Useful if semantically your grid is a ul or ol. Defaults to a normal HTMLDivElement. Example: <GridItem elementType="ul"></GridItem>.

SCSS

If you're not using React, then import the SCSS directly into your application by:

@forward '@nice-digital/nds-grid/scss/grid';

HTML

If you're not using React, then include the SCSS as above and use the HTML, for example:

<div class="grid grid-reverse grid--middle">
	<div data-g="12 xs:6 xs:push:2">Some grid item content</div>
	<div data-g="12 xs:6 xs:push:2 sm:12">Some grid item content</div>
</div>