UNPKG

4.79 kBTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module table
7 */
8export { default as PlainTableOutput } from './plaintableoutput';
9export { default as Table } from './table';
10export { default as TableEditing } from './tableediting';
11export { default as TableUI } from './tableui';
12export { default as TableToolbar } from './tabletoolbar';
13export { default as TableCellProperties } from './tablecellproperties';
14export { default as TableCellPropertiesEditing } from './tablecellproperties/tablecellpropertiesediting';
15export { default as TableCellPropertiesUI } from './tablecellproperties/tablecellpropertiesui';
16export { default as TableCellWidthEditing } from './tablecellwidth/tablecellwidthediting';
17export { default as TableProperties } from './tableproperties';
18export { default as TablePropertiesEditing } from './tableproperties/tablepropertiesediting';
19export { default as TablePropertiesUI } from './tableproperties/tablepropertiesui';
20export { default as TableCaption } from './tablecaption';
21export { default as TableCaptionEditing } from './tablecaption/tablecaptionediting';
22export { default as TableCaptionUI } from './tablecaption/tablecaptionui';
23export { default as TableClipboard } from './tableclipboard';
24export { default as TableMouse } from './tablemouse';
25export { default as TableKeyboard } from './tablekeyboard';
26export { default as TableSelection } from './tableselection';
27export { default as TableUtils } from './tableutils';
28export { default as TableColumnResize } from './tablecolumnresize';
29export { default as TableColumnResizeEditing } from './tablecolumnresize/tablecolumnresizeediting';
30export type { TableConfig } from './tableconfig';
31export type { default as InsertColumnCommand } from './commands/insertcolumncommand';
32export type { default as InsertRowCommand } from './commands/insertrowcommand';
33export type { default as InsertTableCommand } from './commands/inserttablecommand';
34export type { default as MergeCellCommand } from './commands/mergecellcommand';
35export type { default as MergeCellsCommand } from './commands/mergecellscommand';
36export type { default as RemoveColumnCommand } from './commands/removecolumncommand';
37export type { default as RemoveRowCommand } from './commands/removerowcommand';
38export type { default as SelectColumnCommand } from './commands/selectcolumncommand';
39export type { default as SelectRowCommand } from './commands/selectrowcommand';
40export type { default as SetHeaderColumnCommand } from './commands/setheadercolumncommand';
41export type { default as SetHeaderRowCommand } from './commands/setheaderrowcommand';
42export type { default as SplitCellCommand } from './commands/splitcellcommand';
43export type { default as ToggleTableCaptionCommand } from './tablecaption/toggletablecaptioncommand';
44export type { default as TableCellBackgroundColorCommand } from './tablecellproperties/commands/tablecellbackgroundcolorcommand';
45export type { default as TableCellBorderColorCommand } from './tablecellproperties/commands/tablecellbordercolorcommand';
46export type { default as TableCellBorderStyleCommand } from './tablecellproperties/commands/tablecellborderstylecommand';
47export type { default as TableCellBorderWidthCommand } from './tablecellproperties/commands/tablecellborderwidthcommand';
48export type { default as TableCellHeightCommand } from './tablecellproperties/commands/tablecellheightcommand';
49export type { default as TableCellHorizontalAlignmentCommand } from './tablecellproperties/commands/tablecellhorizontalalignmentcommand';
50export type { default as TableCellPaddingCommand } from './tablecellproperties/commands/tablecellpaddingcommand';
51export type { default as TableCellVerticalAlignmentCommand } from './tablecellproperties/commands/tablecellverticalalignmentcommand';
52export type { default as TableCellWidthCommand } from './tablecellwidth/commands/tablecellwidthcommand';
53export type { default as TableAlignmentCommand } from './tableproperties/commands/tablealignmentcommand';
54export type { default as TableBackgroundColorCommand } from './tableproperties/commands/tablebackgroundcolorcommand';
55export type { default as TableBorderColorCommand } from './tableproperties/commands/tablebordercolorcommand';
56export type { default as TableBorderStyleCommand } from './tableproperties/commands/tableborderstylecommand';
57export type { default as TableBorderWidthCommand } from './tableproperties/commands/tableborderwidthcommand';
58export type { default as TableHeightCommand } from './tableproperties/commands/tableheightcommand';
59export type { default as TableWidthCommand } from './tableproperties/commands/tablewidthcommand';
60import './augmentation';