UNPKG

1.27 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/tableproperties
7 */
8import { Plugin } from 'ckeditor5/src/core';
9import TablePropertiesEditing from './tableproperties/tablepropertiesediting';
10import TablePropertiesUI from './tableproperties/tablepropertiesui';
11/**
12 * The table properties feature. Enables support for setting properties of tables (size, border, background, etc.).
13 *
14 * Read more in the {@glink features/tables/tables-styling Table and cell styling tools} section.
15 * See also the {@link module:table/tablecellproperties~TableCellProperties} plugin.
16 *
17 * This is a "glue" plugin that loads the
18 * {@link module:table/tableproperties/tablepropertiesediting~TablePropertiesEditing table properties editing feature} and
19 * the {@link module:table/tableproperties/tablepropertiesui~TablePropertiesUI table properties UI feature}.
20 */
21export default class TableProperties extends Plugin {
22 /**
23 * @inheritDoc
24 */
25 static get pluginName(): 'TableProperties';
26 /**
27 * @inheritDoc
28 */
29 static get requires(): readonly [typeof TablePropertiesEditing, typeof TablePropertiesUI];
30}