@ckeditor/ckeditor5-link
Version:
Link feature for CKEditor 5.
32 lines (31 loc) • 1.04 kB
TypeScript
/**
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module link/unlinkcommand
*/
import { Command } from 'ckeditor5/src/core';
/**
* The unlink command. It is used by the {@link module:link/link~Link link plugin}.
*/
export default class UnlinkCommand extends Command {
/**
* @inheritDoc
*/
refresh(): void;
/**
* Executes the command.
*
* When the selection is collapsed, it removes the `linkHref` attribute from each node with the same `linkHref` attribute value.
* When the selection is non-collapsed, it removes the `linkHref` attribute from each node in selected ranges.
*
* # Decorators
*
* If {@link module:link/linkconfig~LinkConfig#decorators `config.link.decorators`} is specified,
* all configured decorators are removed together with the `linkHref` attribute.
*
* @fires execute
*/
execute(): void;
}