UNPKG

ckeditor5-image-upload-base64

Version:

The development environment of CKEditor 5 – the best browser-based rich text editor.

39 lines (34 loc) 971 B
/** * @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 select-all/selectall */ import Plugin from '@ckeditor/ckeditor5-core/src/plugin'; import SelectAllEditing from './selectallediting'; import SelectAllUI from './selectallui'; /** * The select all feature. * * This is a "glue" plugin which loads the {@link module:select-all/selectallediting~SelectAllEditing select all editing feature} * and the {@link module:select-all/selectallui~SelectAllUI select all UI feature}. * * Please refer to the documentation of individual features to learn more. * * @extends module:core/plugin~Plugin */ export default class SelectAll extends Plugin { /** * @inheritDoc */ static get requires() { return [ SelectAllEditing, SelectAllUI ]; } /** * @inheritDoc */ static get pluginName() { return 'SelectAll'; } }