Column
Add Columns to your document.
🌻 Column
Installation
npm install @udecode/plate-layout
Usage
import { ColumnPlugin, ColumnItemPlugin } from '@udecode/plate-layout/react';
const plugins = [
// ...otherPlugins,
ColumnPlugin,
];
Plugins
ColumnPlugin
Add Column Plugin to your document.
ColumnItemPlugin
Add Column Item Plugin to your document.
API
TColumnGroupElement
Attributes
Extends TElement
.
Set the width of its children Column
TColumnElement
Attributes
Extends TElement
.
The Column
's width end with %
insertColumnGroup
Insert a columnGroup with two empty columns.
Parameters
The editor instance.
insertEmptyColumn
Insert an empty column. You can set the width by options.width default is "33%"
Parameters
The editor instance.
InsertNodesOptions and width to set the insert behavior.
moveMiddleColumn
Move the middle column to the left or right by options.direction. If the middle node is empty, return false and remove it.
Parameters
The editor instance.
The node entry of column
element
Control the direction the middle column moves to
setColumnWidth
Set the width of ColumnGroup
's children. In general, you don't need to use this function, since we will call this function automatically when the property of layout
changes.
If you want to set the layout
use setNodes.
Parameters
The editor instance.
The path ref of ColumnGroup
The element property of layout
API Components
useColumnState
Returns
Call this function to make the ColumnGroup
's children, column bisects the
parent element space. This sets the layout
property of
ColumnGroup
to [50,50]
Set the layout
property of ColumnGroup
to [33, 33, 33]
Set the layout
property of ColumnGroup
to [70,30]
Set the layout
property of ColumnGroup
to [30,70]
Set the layout
property of ColumnGroup
to [25, 50, 25]
useDebouncePopoverOpen
Returns
popover
is open or not