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 basic-styles/italic
|
7 | */
|
8 | import { Plugin } from 'ckeditor5/src/core.js';
|
9 | import ItalicEditing from './italic/italicediting.js';
|
10 | import ItalicUI from './italic/italicui.js';
|
11 | /**
|
12 | * The italic feature.
|
13 | *
|
14 | * For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
|
15 | * and the {@glink api/basic-styles package page}.
|
16 | *
|
17 | * This is a "glue" plugin which loads the {@link module:basic-styles/italic/italicediting~ItalicEditing} and
|
18 | * {@link module:basic-styles/italic/italicui~ItalicUI} plugins.
|
19 | */
|
20 | export default class Italic extends Plugin {
|
21 | /**
|
22 | * @inheritDoc
|
23 | */
|
24 | static get requires(): readonly [typeof ItalicEditing, typeof ItalicUI];
|
25 | /**
|
26 | * @inheritDoc
|
27 | */
|
28 | static get pluginName(): "Italic";
|
29 | }
|