@ckeditor/ckeditor5-image
Version:
Image feature for CKEditor 5.
62 lines (61 loc) • 1.74 kB
TypeScript
/**
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module image/imageresize/imagecustomresizeui
*/
import { Plugin } from 'ckeditor5/src/core.js';
import { ContextualBalloon } from 'ckeditor5/src/ui.js';
/**
* The custom resize image UI plugin.
*
* The plugin uses the {@link module:ui/panel/balloon/contextualballoon~ContextualBalloon}.
*/
export default class ImageCustomResizeUI extends Plugin {
/**
* The contextual balloon plugin instance.
*/
private _balloon?;
/**
* A form containing a textarea and buttons, used to change the `alt` text value.
*/
private _form?;
/**
* @inheritDoc
*/
static get requires(): readonly [typeof ContextualBalloon];
/**
* @inheritDoc
*/
static get pluginName(): "ImageCustomResizeUI";
/**
* @inheritDoc
*/
destroy(): void;
/**
* Creates the {@link module:image/imageresize/ui/imagecustomresizeformview~ImageCustomResizeFormView}
* form.
*/
private _createForm;
/**
* Shows the {@link #_form} in the {@link #_balloon}.
*
* @internal
*/
_showForm(unit: string): void;
/**
* Removes the {@link #_form} from the {@link #_balloon}.
*
* @param focusEditable Controls whether the editing view is focused afterwards.
*/
private _hideForm;
/**
* Returns `true` when the {@link #_form} is the visible view in the {@link #_balloon}.
*/
private get _isVisible();
/**
* Returns `true` when the {@link #_form} is in the {@link #_balloon}.
*/
private get _isInBalloon();
}