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

@salesforce-ux/wes-grid

v0.0.1

Published

The WES grid system provides a flexible, mobile-first, device-agnostic layout system. It has features to control alignment, flow, and gaps.

Downloads

84

Readme

@salesforce-ux/wes-grid

npm (custom registry)

About

The WES grid system provides a flexible, mobile-first, device-agnostic layout system. It has features to control alignment, flow, and gaps.

Getting Started

Let's start by installing wes-grid as a dependency of your project with npm.

npm i @salesforce-ux/wes-grid

Distributable

After installation, all the distributables for the WES Grid are found under @salesforce-ux/wes-grid/dist/ folder. |File Name |Description | |- |- | |index.css | The Compiled CSS file for wes-grid package|

wes-grid Integration

There are different ways to include wes-grid to a web application depending on the requirement.It can be used in both light DOM and shadow DOM Below are the styles to include the package -

Add WES Grid in HTML

You can use the HTML <link> to link to WES Grid as an external resource.

<html>
  <head>
    <!-- Dependencies go here -->
    <link rel="stylesheet" href="...">
    
    <link rel="stylesheet" href="/node_modules/@salesforce-ux/wes-grid/dist/index.css">
    <!-- Your application's stylesheets go below -->
    <link rel="stylesheet" href="...">
  </head>
  <body>
    <!-- Your application -->
  </body>
</html>

Add WES Grid in CSS

You can use CSS @imports to pull in WES Grid.

@import "@salesforce-ux/wes-grid/dist/index.css";

Add WES Grid in JS

You can use JS import to pull in WES Grid directly in the JS file.

import "@salesforce-ux/wes-grid/dist/index.css";

Example

Below are a few examples of grid layout which is part of wes-grid.

<div grid axis="row">...</div>
<div grid>
  <div>Grid item</div>
  <div>Grid item</div>
</div>

Interactive Demo

To see more examples with interactive demo, please visit WES Subsytem's Storybook Environment

API

The WES grid features a mobile-first, responsive layout system; built on flexbox.

Table of Contents

Initialize a grid container

To initialize a grid container, set the grid attribute to your element.

<div grid>...</div>

Define the grid axis

By default, a grid flows left-to-right on a horizontal or x-axis. This behavior can be changed to flow right-to-left, top-to-bottom, and bottom-to-top.

Left to right

<div grid axis="row">...</div>

Right to left

<div grid axis="row-reverse">...</div>

Top to bottom

<div grid axis="vertical">...</div>

Bottom to top

<div grid axis="vertical-reverse">...</div>

Grid items

A grid container will have 1 or more grid items to make up your layout. The direct descendants of a grid container are considered grid items. By being a grid item, you can modify its attributes independently or by the container.

<div grid>
  <div>Grid item</div>
  <div>Grid item</div>
</div>

A grid container is required to change the attributes of a grid item.

Defining widths

A benefit of using flexbox for your layout is things will automatically adjust inflow based on its flex properties and the size of its children's content.

There are times (most the time) when you want to explicitly define a width on a grid item. You can accomplish this by adding a size attribute and a value to determines its width.

<div grid>
  <div size="1:2">item</div>
  <!-- 50% -->
  <div size="1:2">item</div>
  <!-- 50% -->
</div>

The size attribute accepts a range of human-friendly values, you may choose to use 6:12 or 1:2, both outcomes are 50%. The second value should be based off the number of grid columns you have set for your parent container.

Available Widths

| Size | Value | | ------- | --------- | | auto | auto | | 1:1 | 100% | | 1:2 | 50% | | 1:3 | 33.333% | | 2:3 | 66.667% | | 1:4 | 25% | | 2:4 | 50% | | 3:4 | 75% | | 1:5 | 20% | | 2:5 | 40% | | 3:5 | 60% | | 4:5 | 80% | | 1:6 | 16.667% | | 2:6 | 33.333% | | 3:6 | 50% | | 4:6 | 66.667% | | 5:6 | 83.333% | | 1:7 | 14.28% | | 2:7 | 28.57% | | 3:7 | 42.85% | | 4:7 | 57.14% | | 5:7 | 71.42% | | 6:7 | 85.71% | | 1:8 | 12.5% | | 2:8 | 25% | | 3:8 | 37.5% | | 4:8 | 50% | | 5:8 | 62.5% | | 6:8 | 75% | | 7:8 | 87.5% | | 1:12 | 8.333% | | 2:12 | 16.667% | | 3:12 | 25% | | 4:12 | 33.333% | | 5:12 | 41.667% | | 6:12 | 50% | | 7:12 | 58.333% | | 8:12 | 66.667% | | 9:12 | 75% | | 10:12 | 83.333% | | 11:12 | 91.667% |

Implementation Note

Be sure to stick within the available widths based on the grid columns you choose to use. For example, if you have established a 12 column grid, the grid items that are direct descendants should refer to the size associated to 12.

Good

<!-- 12 column grid -->
<div grid>
  <div size="8:12"></div>
  <div size="4:12"></div>
</div>

Bad

<!-- unknown column grid -->
<div grid>
  <div size="2:3"></div>
  <div size="4:12"></div>
</div>

Responsive widths

Additionally, you can easily modify the width of an item at a defined breakpoint depending on the width of the viewport.

This can be done by appending @ then the breakpoint definition of x-small, small, medium, large, or x-large. For example, 1:2@medium would cause the grid item to take up 50% of its available width when the browsers viewport is larger than 768px.

Breakpoints

| T-shirt size name | Breakpoint width | | ----------------- | ---------------- | | x-small | 320px | | small | 480px | | medium | 768px | | large | 1024px | | x-large | 1280px |

Add gaps between grid items

To add space between your grid items, you can add a gap attribute to your grid container. The gap attribute takes a t-shirt size name:

Implementation Note

For a child grid item to pick up the gap size set on the parent, the element is required to have a size attribute set. If you don't need an explicit width, i.e., 50%, you can add size="auto".

Gap Sizes

| T-shirt size name | Value | | ----------------- | ------ | | xxx-small | 2px | | xx-small | 4px | | x-small | 8px | | small | 12px | | medium | 16px | | large | 24px | | x-large | 32px | | xx-large | 48px |

Force multiple rows

When setting widths to your grid items, once a row of items exceed a total width of 100% you can force them to wrap to multiple rows by adding flow="wrap" to your grid container.

By default, the grid items will not wrap.

<div grid flow="wrap">
  <!-- Row 1 - 66.667% | 33.333% -->
  <div size="8:12"></div>
  <div size="4:12"></div>
  <!-- Row 2 - 50% | 50% -->
  <div size="6:12"></div>
  <div size="6:12"></div>
</div>

Defining grid container alignment

Since the grids are built on flexbox, they allow us to do some interesting things with alignment on both a horizontal axis and vertical axis. You can add an alignment value to the grid attribute.

Start of axis

<div grid="align-start">...</div>
|-----------------|
|[ ][ ][ ]        |
|-----------------|

Center of axis

<div grid="align-center">...</div>
|-----------------|
|    [ ][ ][ ]    |
|-----------------|

End of axis

<div grid="align-end">...</div>
|-----------------|
|        [ ][ ][ ]|
|-----------------|

Evenly spaced along axis

<div grid="align-spread">...</div>
|-----------------|
|[ ]    [ ]    [ ]|
|-----------------|

Equally spaced along axis

<div grid="align-space">...</div>
|-----------------|
|  [ ]  [ ]  [ ]  |
|-----------------|

Vertical alignment

Implementation Note

To vertically align elements on a cross-axis of a grid container, the elements need available vertical white space. This is usually achieved by having a height applied to the grid container.

Start of vertical axis

<div grid="align-space" axis="vertical">...</div>
|-----------------|
|  [ ]  [ ]  [ ]  |
|                 |
|                 |
|-----------------|

Center of vertical axis

<div grid="align-center" axis="vertical">...</div>
|-----------------|
|                 |
|  [ ]  [ ]  [ ]  |
|                 |
|-----------------|

End of vertical axis

<div grid="align-end" axis="vertical">...</div>
|-----------------|
|                 |
|                 |
|  [ ]  [ ]  [ ]  |
|-----------------|

Defining grid item alignment

Implementation Note

To vertically align elements on a cross-axis of a grid container, the elements need available vertical white space. This is usually achieved by having a height applied to the grid container.

To specify the vertical placement of grid items on the cross axis, add the value of align-start, align-center, and align-end to the grid-item attribute.

<div grid>
  <div grid-item="align-start"></div>
  <div grid-item="align-center"></div>
  <div grid-item="align-end"></div>
</div>
|-----------------|
|[ ]              |
|       [ ]       |
|              [ ]|
|-----------------|