UNPKG

@wangeditor-kai/yjs-for-react

Version:

React specific components/utils for wangeditor-next-yjs.

67 lines (66 loc) 1.67 kB
/** * @description table menu * @author wangfupeng */ import CellProperty from './CellProperty'; import DeleteCol from './DeleteCol'; import DeleteRow from './DeleteRow'; import DeleteTable from './DeleteTable'; import FullWidth from './FullWidth'; import InsertCol from './InsertCol'; import InsertRow from './InsertRow'; import InsertTable from './InsertTable'; import MergeCell from './MergeCell'; import SplitCell from './SplitCell'; import TableHander from './TableHeader'; import TableProperty from './TableProperty'; export declare const insertTableMenuConf: { key: string; factory(): InsertTable; }; export declare const deleteTableMenuConf: { key: string; factory(): DeleteTable; }; export declare const insertTableRowConf: { key: string; factory(): InsertRow; }; export declare const deleteTableRowConf: { key: string; factory(): DeleteRow; }; export declare const insertTableColConf: { key: string; factory(): InsertCol; }; export declare const deleteTableColConf: { key: string; factory(): DeleteCol; }; export declare const tableHeaderMenuConf: { key: string; factory(): TableHander; }; export declare const tableFullWidthMenuConf: { key: string; factory(): FullWidth; }; /** Meger / Split conf */ export declare const mergeTableCellConf: { key: string; factory(): MergeCell; }; export declare const splitTableCellConf: { key: string; factory(): SplitCell; }; /** set property conf */ export declare const setTablePropertyConf: { key: string; factory(): TableProperty; }; export declare const setTableCellPropertyConf: { key: string; factory(): CellProperty; };