mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-04 17:04:32 +08:00
Lexical: Added base table support and started resize handling
This commit is contained in:
@ -6,6 +6,7 @@ import {LinkNode} from "@lexical/link";
|
||||
import {ImageNode} from "./image";
|
||||
import {DetailsNode, SummaryNode} from "./details";
|
||||
import {ListItemNode, ListNode} from "@lexical/list";
|
||||
import {TableCellNode, TableNode, TableRowNode} from "@lexical/table";
|
||||
|
||||
/**
|
||||
* Load the nodes for lexical.
|
||||
@ -17,6 +18,9 @@ export function getNodesForPageEditor(): (KlassConstructor<typeof LexicalNode> |
|
||||
QuoteNode, // Todo - Create custom
|
||||
ListNode, // Todo - Create custom
|
||||
ListItemNode,
|
||||
TableNode, // Todo - Create custom,
|
||||
TableRowNode,
|
||||
TableCellNode,
|
||||
ImageNode,
|
||||
DetailsNode, SummaryNode,
|
||||
CustomParagraphNode,
|
||||
|
Reference in New Issue
Block a user