UNPKG

@ckeditor/ckeditor5-table

Version:

Table feature for CKEditor 5.

31 lines (30 loc) 1.79 kB
/** * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module table */ export { default as PlainTableOutput } from './plaintableoutput'; export { default as Table } from './table'; export { default as TableEditing } from './tableediting'; export { default as TableUI } from './tableui'; export { default as TableToolbar } from './tabletoolbar'; export { default as TableCellProperties } from './tablecellproperties'; export { default as TableCellPropertiesEditing } from './tablecellproperties/tablecellpropertiesediting'; export { default as TableCellPropertiesUI } from './tablecellproperties/tablecellpropertiesui'; export { default as TableCellWidthEditing } from './tablecellwidth/tablecellwidthediting'; export { default as TableProperties } from './tableproperties'; export { default as TablePropertiesEditing } from './tableproperties/tablepropertiesediting'; export { default as TablePropertiesUI } from './tableproperties/tablepropertiesui'; export { default as TableCaption } from './tablecaption'; export { default as TableCaptionEditing } from './tablecaption/tablecaptionediting'; export { default as TableCaptionUI } from './tablecaption/tablecaptionui'; export { default as TableClipboard } from './tableclipboard'; export { default as TableMouse } from './tablemouse'; export { default as TableKeyboard } from './tablekeyboard'; export { default as TableSelection } from './tableselection'; export { default as TableUtils } from './tableutils'; export { default as TableColumnResize } from './tablecolumnresize'; export { default as TableColumnResizeEditing } from './tablecolumnresize/tablecolumnresizeediting'; import './augmentation';