@ckeditor/ckeditor5-image
Version:
Image feature for CKEditor 5.
45 lines (44 loc) • 1.54 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/image/imagetypecommand
*/
import type { Element } from 'ckeditor5/src/engine.js';
import { Command, type Editor } from 'ckeditor5/src/core.js';
/**
* The image type command. It changes the type of a selected image, depending on the configuration.
*/
export default class ImageTypeCommand extends Command {
/**
* Model element name the command converts to.
*/
private readonly _modelElementName;
/**
* @inheritDoc
*
* @param modelElementName Model element name the command converts to.
*/
constructor(editor: Editor, modelElementName: 'imageBlock' | 'imageInline');
/**
* @inheritDoc
*/
refresh(): void;
/**
* Executes the command and changes the type of a selected image.
*
* @fires execute
* @param options.setImageSizes Specifies whether the image `width` and `height` attributes should be set automatically.
* The default is `true`.
* @returns An object containing references to old and new model image elements
* (for before and after the change) so external integrations can hook into the decorated
* `execute` event and handle this change. `null` if the type change failed.
*/
execute(options?: {
setImageSizes?: boolean;
}): {
oldElement: Element;
newElement: Element;
} | null;
}