@ckeditor/ckeditor5-table
Version:
Table feature for CKEditor 5.
32 lines (31 loc) • 1.03 kB
TypeScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module table/tablelayout
*/
import { Plugin } from 'ckeditor5/src/core.js';
import TableLayoutUI from './tablelayout/tablelayoutui.js';
import TableLayoutEditing from './tablelayout/tablelayoutediting.js';
import PlainTableOutput from './plaintableoutput.js';
import TableColumnResize from './tablecolumnresize.js';
/**
* The table plugin.
*
* For a detailed overview, check the {@glink features/tables/layout-tables Layout table feature documentation}.
*/
export default class TableLayout extends Plugin {
/**
* @inheritDoc
*/
static get pluginName(): "TableLayout";
/**
* @inheritDoc
*/
static get isOfficialPlugin(): true;
/**
* @inheritDoc
*/
static get requires(): readonly [typeof PlainTableOutput, typeof TableColumnResize, typeof TableLayoutEditing, typeof TableLayoutUI];
}