| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module basic-styles/bold
- */
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import BoldEditing from './bold/boldediting';
- import BoldUI from './bold/boldui';
- /**
- * The bold feature.
- *
- * For a detailed overview check the {@glink features/basic-styles Basic styles feature documentation}
- * and the {@glink api/basic-styles package page}.
- *
- * This is a "glue" plugin which loads the {@link module:basic-styles/bold/boldediting~BoldEditing bold editing feature}
- * and {@link module:basic-styles/bold/boldui~BoldUI bold UI feature}.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class Bold extends Plugin {
- /**
- * @inheritDoc
- */
- static get requires() {
- return [ BoldEditing, BoldUI ];
- }
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'Bold';
- }
- }
|