Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-media-embed

Package Overview
Dependencies
Maintainers
1
Versions
631
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-media-embed - npm Package Compare versions

Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3

36

package.json
{
"name": "@ckeditor/ckeditor5-media-embed",
"version": "37.0.0-alpha.2",
"version": "37.0.0-alpha.3",
"description": "Media embed feature for CKEditor 5.",

@@ -15,22 +15,22 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2",
"ckeditor5": "^37.0.0-alpha.2"
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
"ckeditor5": "^37.0.0-alpha.3"
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
"@ckeditor/ckeditor5-editor-balloon": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-editor-balloon": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.3",
"typescript": "^4.8.4",

@@ -37,0 +37,0 @@ "webpack": "^5.58.1",

@@ -8,3 +8,6 @@ /**

*/
import { type Editor, Plugin, type PluginDependencies } from 'ckeditor5/src/core';
import { type Editor, Plugin } from 'ckeditor5/src/core';
import { Clipboard } from 'ckeditor5/src/clipboard';
import { Delete } from 'ckeditor5/src/typing';
import { Undo } from 'ckeditor5/src/undo';
/**

@@ -18,3 +21,3 @@ * The auto-media embed plugin. It recognizes media links in the pasted content and embeds

*/
static get requires(): PluginDependencies;
static get requires(): readonly [typeof Clipboard, typeof Delete, typeof Undo];
/**

@@ -21,0 +24,0 @@ * @inheritDoc

@@ -8,3 +8,7 @@ /**

*/
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
import { Plugin } from 'ckeditor5/src/core';
import { Widget } from 'ckeditor5/src/widget';
import MediaEmbedEditing from './mediaembedediting';
import AutoMediaEmbed from './automediaembed';
import MediaEmbedUI from './mediaembedui';
import '../theme/mediaembed.css';

@@ -26,3 +30,3 @@ /**

*/
static get requires(): PluginDependencies;
static get requires(): readonly [typeof MediaEmbedEditing, typeof MediaEmbedUI, typeof AutoMediaEmbed, typeof Widget];
/**

@@ -29,0 +33,0 @@ * @inheritDoc

@@ -8,3 +8,4 @@ /**

*/
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
import { Plugin } from 'ckeditor5/src/core';
import { WidgetToolbarRepository } from 'ckeditor5/src/widget';
import './mediaembedconfig';

@@ -21,3 +22,3 @@ /**

*/
static get requires(): PluginDependencies;
static get requires(): readonly [typeof WidgetToolbarRepository];
/**

@@ -24,0 +25,0 @@ * @inheritDoc

@@ -8,3 +8,4 @@ /**

*/
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
import { Plugin } from 'ckeditor5/src/core';
import MediaEmbedEditing from './mediaembedediting';
/**

@@ -17,3 +18,3 @@ * The media embed UI plugin.

*/
static get requires(): PluginDependencies;
static get requires(): readonly [typeof MediaEmbedEditing];
/**

@@ -20,0 +21,0 @@ * @inheritDoc

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc