| 123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * @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 list/liststyle
- */
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import ListStyleEditing from './liststyleediting';
- import ListStyleUI from './liststyleui';
- /**
- * The list styles feature.
- *
- * This is a "glue" plugin that loads the {@link module:list/liststyleediting~ListStyleEditing list styles editing feature}
- * and the {@link module:list/liststyleui~ListStyleUI list styles UI feature}.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class ListStyle extends Plugin {
- /**
- * @inheritDoc
- */
- static get requires() {
- return [ ListStyleEditing, ListStyleUI ];
- }
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'ListStyle';
- }
- }
|