am-editor11212/plugins/table
yanmao 9e7baf11fe update(table): redo & undo 2021-12-28 16:15:28 +08:00
..
src update(table): redo & undo 2021-12-28 16:15:28 +08:00
README.md feat 2021-12-16 00:30:58 +08:00
package.json Publish 2021-12-26 23:37:25 +08:00
tsconfig.json init 2021-11-03 19:58:08 +08:00

README.md

@aomao/plugin-table

表格插件

安装

$ yarn add @aomao/plugin-table

添加到引擎

import Engine, { EngineInterface } from '@aomao/engine';
import Table, { TableComponent } from '@aomao/plugin-table';

new Engine(...,{ plugins:[Table] , cards:[TableComponent]})

可选项

快捷键

默认无快捷键

//快捷键key 组合键args执行参数[rows?: string, cols?: string] 行数默认3行列数默认3列
hotkey?:string | {key:string,args:Array<string>};//默认无

//使用配置
new Engine(...,{
    config:{
        "table":{
            //修改快捷键
            hotkey:{
                key:"mod+t",
                args:[5,5]
            }
        }
    }
 })

溢出展示

overflow?: {
    // 相对编辑器左侧最大能展示的宽度
    maxLeftWidth?: () => number;
    // 相对于编辑器右侧最大能展示的宽度
    maxRightWidth?: () => number;
};

命令

//可携带两个参数,行数,列数,都是可选的
engine.command.execute('table', 5, 5);