Skip to content
On this page

Properties

Types

LayoutItemRequired

ts
interface LayoutItemRequired {
  w: number,
  h: number,
  x: number,
  y: number,
  i: number | string
}

LayoutItem

ts
interface LayoutItem extends LayoutItemRequired {
  minW?: number,
  minH?: number,
  maxW?: number,
  maxH?: number,
  moved?: boolean,
  static?: boolean,
  isDraggable?: boolean,
  isResizable?: boolean
}

Layout

ts
type Layout = Array<LayoutItem>

Breakpoint

ts
type Breakpoint = 'xxs' | 'xs' | 'sm' | 'md' | 'lg'

Breakpoints

ts
type Breakpoints = Record<Breakpoint, number>

ResponsiveLayout

ts
type ResponsiveLayout = Record<Breakpoint, Layout>

GridLayout

layout

  • type: Layout
  • required

This is the initial layout of the grid.

The value must be an array. Each item must have i, x, y, w and h properties. Please refer to the documentation for GridItem below for more information.

responsive-layouts

  • type: Partial<ResponsiveLayout>
  • default: {}

This is the initial layouts of the grid per breakpoint if responsive is set to true.

The keys of the object are breakpoint names and each value is an array as defined by layout prop, e.g. { lg: [layout items], md: [layout items] }.

Setting the prop after the creation of the GridLayout has no effect.

See also responsive, breakpoints and cols.

col-num

  • type: number
  • default: 12

Says how many columns the grid has. The value should be a natural number.

row-height

  • type: number
  • default: 150

Says what is a height of a single row in pixels.

max-rows

  • type: number
  • default: Infinity

Says what is a maximal number of rows in the grid.

margin

  • type: number[]
  • default: [10, 10]

Says what are the margins of elements inside the grid.

The value must be a number array with size two. Each value is expressed in pixels. The first value is horizontal margin, the second value is vertical margin.

is-draggable

  • type: boolean
  • default: true

Says if the grids items are draggable.

is-resizable

  • type: boolean
  • default: true

Says if the grids items are resizable.

is-mirrored

  • type: boolean
  • default: false

Says if the RTL/LTR should be reversed.

is-bounded

  • type: boolean
  • default: false

Says if the grid items are bounded to the container when dragging.

auto-size

  • type: boolean
  • default: true

Says if the container height should swells and contracts to fit contents.

vertical-compact

  • type: boolean
  • default: true

Says if the layout should be compact vertically.

restore-on-drag

  • type: boolean
  • default: false

Says if the moved grid items should be restored after an item has been dragged over.

prevent-collision

  • type: boolean
  • default: false

Says whether to prevent items collision. When true, the items can only be dropped to the blank space.

use-css-transforms

  • type: boolean
  • default: true

Says if the CSS transition-property: transform; should be used.

responsive

  • type: boolean
  • default: false

Says if the layout should be responsive to window width.

See also responsiveLayouts, breakpoints and cols.

breakpoints

  • type: Breakpoints
  • default: { lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0 }

Breakpoints defined for responsive layout.

See also responsiveLayouts and cols

cols

  • type: Breakpoints
  • default: { lg: 12, md: 10, sm: 6, xs: 4, xxs: 2 }

Defines number of columns for each breakpoint.

use-style-cursor

  • type: boolean
  • default: true

Says if set the cursor style dynamically. When dragging freezes, setting this value to false may alleviate problems.

This property is not reactive.

transform-scale

  • type: number
  • default: 1

Sets a scaling factor to the size of the grid items, 1 means 100%.

GridItem

i

  • type: number | string
  • required

This is the unique identifier of the item.

x

  • type: number
  • required

Says what is a initial horizontal position of the item (in which column it should be placed). The value must be a whole number.

y

  • type: number
  • required

Says what is a initial vertical position of the item (in which row it should be placed). The value must be a whole number.

w

  • type: number
  • required

Says what is a initial width of the item (how many columns should span). The value must be a whole number.

h

  • type: number
  • required

Says what is a initial height of the item (how many rows should span). The value must be a whole number.

min-w

  • type: number
  • default: 1

Says what is a minimal width of the item. If w is smaller then min-w, then w will be set to min-w.

min-h

  • type: number
  • default: 1

Says what is a minimal hieght of the item. If h is smaller then min-h, then h will be set to min-h.

max-w

  • type: number
  • default: Infinity

Says what is a maximal width of the item. If w is bigger then max-w, then w will be set to max-w.

max-h

  • type: number
  • default: Infinity

Says what is a maximal height of the item. If h is bigger then max-h, then h will be set to max-h.

is-draggable

  • type: boolean
  • default: null

Says if item is draggable. If null then it's inherited from parent.

is-resizable

  • type: boolean
  • default: null

Says if item is resizable. If null then it's inherited from parent.

is-bounded

  • type: boolean
  • default: null

Says if the item is bounded to the container when dragging. If null then it's inherited from parent.

static

  • type: boolean
  • default: false

Says if item is static (won't be draggable, resizable or moved by other items).

drag-ignore-from

  • type: string
  • default: 'a, button'

Says which elements of the item shouldn't trigger drag event of the item. The value is css-like selector string.

For more info please refer to ignoreFrom in interact.js docs.

drag-allow-from

  • type: string
  • default: null

Says which elements of the item should trigger drag event of the item. The value is css-like selector string.

If null, can trigger drag by any element of the item (excluding drag-ignore-from).

For more info please refer to allowFrom in interact.js docs.

resize-ignore-from

  • type: string
  • default: 'a, button'

Says which elements of the item shouldn't trigger resize event of the item. The value is css-like selector string.

For more info please refer to ignoreFrom in interact.js docs.

preserve-aspect-ratio

  • type: boolean
  • default: false

If true, forces the GridItem to preserve its aspect ratio when resizing.

drag-option

  • type: Record<string, any>
  • default: {}

Passthrough object for the grid item interact.js draggable configuration.

resize-option

  • type: Record<string, any>
  • default: {}

Passthrough object for the grid item interact.js resizable configuration.

Released under the MIT License.