Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@smui/layout-grid

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smui/layout-grid

Svelte Material UI - Layout Grid

  • 3.0.0-beta.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5.9K
increased by8.03%
Maintainers
1
Weekly downloads
 
Created
Source

Svelte Material UI - Layout Grid

A responsive grid layout component. It has 12 columns on large screens (desktop), 8 columns on medium screens (tablet), and 4 columns on small screens (phone).

Installation

npm install --save-dev @smui/layout-grid

Demo

See it in action.

See the demo code.

Basic Usage

<LayoutGrid>
  <Cell span={3}>I'm the first cell!</Cell>
  <Cell span={3}>I'm the second cell.</Cell>
  <Cell span={3}>Im the third cell</Cell>
  <Cell span={3}>im the 4th cell</Cell>
</LayoutGrid>

<script>
  import LayoutGrid, { Cell } from '@smui/layout-grid';
</script>

Exports

(default)

A layout grid container. It contains an inner grid.

Props / Defaults

  • use: [] - An array of Svelte actions and/or arrays of an action and its options.
  • class: '' - A CSS class string.
  • fixedColumnWidth: false - Give the grid fixed column width.
  • align: null - Specifies the alignment of the entire grid. ('left' or 'right')

Cell

A layout grid cell.

Props / Defaults

  • use: [] - An array of Svelte actions and/or arrays of an action and its options.
  • class: '' - A CSS class string.
  • align: null - Specifies the alignment of the entire grid. ('top', 'middle', or 'bottom')
  • order: null - Specify the display order of the cell. Normally cells are displayed in source order. This may affect accessibility, since screen readers usually follow source order. (integer between 1 and 12)
  • span: null - Makes the cell span the given number of columns. If the number of columns on the viewing device is fewer than this, the cell will span the available number of columns. Cells default to spanning four columns. (integer between 1 and 12)
  • spanDevices: {} - A map of device types to cell span sizes. These will override the span prop on the given device. ({ desktop?: integer; tablet?: integer; phone?: integer; })

Forwarded Props

  • innerGrid$ - Props forwarded to the inner grid.

InnerGrid

An inner layout grid used for nesting. It is meant to be put directly under a cell to create a new nested grid layout.

Props / Defaults

  • use: [] - An array of Svelte actions and/or arrays of an action and its options.
  • class: '' - A CSS class string.

More Information

See Responsive layout grid in the Material design spec.

See Layout Grid in MDC-Web for information about the upstream library's architecture.

Keywords

FAQs

Package last updated on 16 Apr 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc