UNPKG

@steroidsjs/ckeditor5

Version:

The development environment of CKEditor 5 – the best browser-based rich text editor.

43 lines (39 loc) 1.32 kB
/** * @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module table */ import Table from './table'; import TableEditing from './tableediting'; import TableUI from './tableui'; import TableToolbar from './tabletoolbar'; import TableCellProperties from './tablecellproperties'; import TableCellPropertiesEditing from './tablecellproperties/tablecellpropertiesediting'; import TableCellPropertiesUI from './tablecellproperties/tablecellpropertiesui'; import TableProperties from './tableproperties'; import TablePropertiesEditing from './tableproperties/tablepropertiesediting'; import TablePropertiesUI from './tableproperties/tablepropertiesui'; import TableClipboard from './tableclipboard'; import TableMouse from './tablemouse'; import TableKeyboard from './tablekeyboard'; import TableSelection from './tableselection'; import TableUtils from './tableutils'; export default { Table, TableEditing, TableUI, TableToolbar, TableCellProperties, TableCellPropertiesEditing, TableCellPropertiesUI, TableProperties, TablePropertiesEditing, TablePropertiesUI, TableMouse, TableClipboard, TableKeyboard, TableSelection, TableUtils };