UNPKG

1.18 kBTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, 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/imagestyle
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import ImageStyleEditing from './imagestyle/imagestyleediting.js';
10import ImageStyleUI from './imagestyle/imagestyleui.js';
11/**
12 * The image style plugin.
13 *
14 * For a detailed overview of the image styles feature, check the {@glink features/images/images-styles documentation}.
15 *
16 * This is a "glue" plugin which loads the following plugins:
17 * * {@link module:image/imagestyle/imagestyleediting~ImageStyleEditing},
18 * * {@link module:image/imagestyle/imagestyleui~ImageStyleUI}
19 *
20 * It provides a default configuration, which can be extended or overwritten.
21 * Read more about the {@link module:image/imageconfig~ImageConfig#styles image styles configuration}.
22 */
23export default class ImageStyle extends Plugin {
24 /**
25 * @inheritDoc
26 */
27 static get requires(): readonly [typeof ImageStyleEditing, typeof ImageStyleUI];
28 /**
29 * @inheritDoc
30 */
31 static get pluginName(): "ImageStyle";
32}