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/tablecolumnresize
|
7 | */
|
8 | import { Plugin } from 'ckeditor5/src/core';
|
9 | import TableColumnResizeEditing from './tablecolumnresize/tablecolumnresizeediting';
|
10 | import TableCellWidthEditing from './tablecellwidth/tablecellwidthediting';
|
11 | import '../theme/tablecolumnresize.css';
|
12 | /**
|
13 | * The table column resize feature.
|
14 | *
|
15 | * It provides the possibility to set the width of each column in a table using a resize handler.
|
16 | */
|
17 | export default class TableColumnResize extends Plugin {
|
18 | /**
|
19 | * @inheritDoc
|
20 | */
|
21 | static get requires(): readonly [typeof TableColumnResizeEditing, typeof TableCellWidthEditing];
|
22 | /**
|
23 | * @inheritDoc
|
24 | */
|
25 | static get pluginName(): 'TableColumnResize';
|
26 | }
|