UNPKG

742 BJavaScriptView 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/tablecaption
7 */
8import { Plugin } from 'ckeditor5/src/core';
9import TableCaptionEditing from './tablecaption/tablecaptionediting';
10import TableCaptionUI from './tablecaption/tablecaptionui';
11import '../theme/tablecaption.css';
12/**
13 * The table caption plugin.
14 */
15export default class TableCaption extends Plugin {
16 /**
17 * @inheritDoc
18 */
19 static get pluginName() {
20 return 'TableCaption';
21 }
22 /**
23 * @inheritDoc
24 */
25 static get requires() {
26 return [TableCaptionEditing, TableCaptionUI];
27 }
28}