UNPKG

@ckeditor/ckeditor5-media-embed

Version:

Media embed feature for CKEditor 5.

35 lines (34 loc) 1.23 kB
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module media-embed/mediaembedstyle */ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { MediaEmbedStyleEditing } from "./mediaembedstyle/mediaembedstyleediting.js"; import { MediaEmbedStyleUI } from "./mediaembedstyle/mediaembedstyleui.js"; import "../theme/mediaembedstyle.css"; /** * The media embed style plugin. * * This is a "glue" plugin which loads the following plugins: * * {@link module:media-embed/mediaembedstyle/mediaembedstyleediting~MediaEmbedStyleEditing}, * * {@link module:media-embed/mediaembedstyle/mediaembedstyleui~MediaEmbedStyleUI} * * For a detailed overview, check the {@glink features/media-embed/media-embed-styles Media embed styles feature documentation}. */ export declare class MediaEmbedStyle extends Plugin { /** * @inheritDoc */ static get requires(): PluginDependenciesOf<[MediaEmbedStyleEditing, MediaEmbedStyleUI]>; /** * @inheritDoc */ static get pluginName(): "MediaEmbedStyle"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; }