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 image/imagetextalternative
|
7 | */
|
8 | import { Plugin } from 'ckeditor5/src/core';
|
9 | import ImageTextAlternativeEditing from './imagetextalternative/imagetextalternativeediting';
|
10 | import ImageTextAlternativeUI from './imagetextalternative/imagetextalternativeui';
|
11 | /**
|
12 | * The image text alternative plugin.
|
13 | *
|
14 | * For a detailed overview, check the {@glink features/images/images-styles image styles} documentation.
|
15 | *
|
16 | * This is a "glue" plugin which loads the
|
17 | * {@link module:image/imagetextalternative/imagetextalternativeediting~ImageTextAlternativeEditing}
|
18 | * and {@link module:image/imagetextalternative/imagetextalternativeui~ImageTextAlternativeUI} plugins.
|
19 | */
|
20 | export default class ImageTextAlternative extends Plugin {
|
21 | /**
|
22 | * @inheritDoc
|
23 | */
|
24 | static get requires(): readonly [typeof ImageTextAlternativeEditing, typeof ImageTextAlternativeUI];
|
25 | /**
|
26 | * @inheritDoc
|
27 | */
|
28 | static get pluginName(): "ImageTextAlternative";
|
29 | }
|