UNPKG

@ckeditor/ckeditor5-table

Version:

Table feature for CKEditor 5.

35 lines (34 loc) 1.35 kB
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module table/tableproperties */ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { TablePropertiesEditing } from "./tableproperties/tablepropertiesediting.js"; import { TablePropertiesUI } from "./tableproperties/tablepropertiesui.js"; /** * The table properties feature. Enables support for setting properties of tables (size, border, background, etc.). * * Read more in the {@glink features/tables/tables-styling Table and cell styling tools} section. * See also the {@link module:table/tablecellproperties~TableCellProperties} plugin. * * This is a "glue" plugin that loads the * {@link module:table/tableproperties/tablepropertiesediting~TablePropertiesEditing table properties editing feature} and * the {@link module:table/tableproperties/tablepropertiesui~TablePropertiesUI table properties UI feature}. */ export declare class TableProperties extends Plugin { /** * @inheritDoc */ static get pluginName(): "TableProperties"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; /** * @inheritDoc */ static get requires(): PluginDependenciesOf<[TablePropertiesEditing, TablePropertiesUI]>; }