Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-clipboard

Package Overview
Dependencies
Maintainers
1
Versions
800
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-clipboard - npm Package Compare versions

Comparing version 36.0.1 to 37.0.0-alpha.0

src/clipboard.d.ts

49

package.json
{
"name": "@ckeditor/ckeditor5-clipboard",
"version": "36.0.1",
"version": "37.0.0-alpha.0",
"description": "Clipboard integration feature for CKEditor 5.",

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

"dependencies": {
"@ckeditor/ckeditor5-core": "^36.0.1",
"@ckeditor/ckeditor5-engine": "^36.0.1",
"@ckeditor/ckeditor5-utils": "^36.0.1",
"@ckeditor/ckeditor5-widget": "^36.0.1",
"lodash-es": "^4.17.11"
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-widget": "^37.0.0-alpha.0",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@ckeditor/ckeditor5-alignment": "^36.0.1",
"@ckeditor/ckeditor5-basic-styles": "^36.0.1",
"@ckeditor/ckeditor5-block-quote": "^36.0.1",
"@ckeditor/ckeditor5-cloud-services": "^36.0.1",
"@ckeditor/ckeditor5-code-block": "^36.0.1",
"@ckeditor/ckeditor5-easy-image": "^36.0.1",
"@ckeditor/ckeditor5-editor-classic": "^36.0.1",
"@ckeditor/ckeditor5-enter": "^36.0.1",
"@ckeditor/ckeditor5-horizontal-line": "^36.0.1",
"@ckeditor/ckeditor5-image": "^36.0.1",
"@ckeditor/ckeditor5-link": "^36.0.1",
"@ckeditor/ckeditor5-page-break": "^36.0.1",
"@ckeditor/ckeditor5-paragraph": "^36.0.1",
"@ckeditor/ckeditor5-paste-from-office": "^36.0.1",
"@ckeditor/ckeditor5-remove-format": "^36.0.1",
"@ckeditor/ckeditor5-table": "^36.0.1",
"@ckeditor/ckeditor5-typing": "^36.0.1",
"@ckeditor/ckeditor5-alignment": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-code-block": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-horizontal-line": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-page-break": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-paste-from-office": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-remove-format": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0",
"typescript": "^4.8.4",

@@ -68,3 +68,4 @@ "webpack": "^5.58.1",

"postversion": "npm run build"
}
},
"types": "src/index.d.ts"
}

@@ -15,3 +15,3 @@ /**

*
* Read more about the clipboard integration in the {@glink framework/guides/deep-dive/clipboard clipboard deep-dive guide}.
* Read more about the clipboard integration in the {@glink framework/deep-dive/clipboard clipboard deep-dive} guide.
*

@@ -18,0 +18,0 @@ * This is a "glue" plugin which loads the following plugins:

@@ -35,4 +35,6 @@ /**

super(view);
this.domEventType = [
'paste', 'copy', 'cut', 'drop', 'dragover', 'dragstart', 'dragend', 'dragenter', 'dragleave'
];
const viewDocument = this.document;
this.domEventType = ['paste', 'copy', 'cut', 'drop', 'dragover', 'dragstart', 'dragend', 'dragenter', 'dragleave'];
this.listenTo(viewDocument, 'paste', handleInput('clipboardInput'), { priority: 'low' });

@@ -39,0 +41,0 @@ this.listenTo(viewDocument, 'drop', handleInput('clipboardInput'), { priority: 'low' });

@@ -112,3 +112,3 @@ /**

*
* Read more about the clipboard integration in the {@glink framework/guides/deep-dive/clipboard clipboard deep-dive guide}.
* Read more about the clipboard integration in the {@glink framework/deep-dive/clipboard clipboard deep-dive} guide.
*/

@@ -115,0 +115,0 @@ export default class ClipboardPipeline extends Plugin {

@@ -97,3 +97,3 @@ /**

*
* Read more about the clipboard integration in the {@glink framework/guides/deep-dive/clipboard clipboard deep-dive guide}.
* Read more about the clipboard integration in the {@glink framework/deep-dive/clipboard clipboard deep-dive} guide.
*/

@@ -189,3 +189,4 @@ export default class DragDrop extends Plugin {

if (editor.plugins.has('WidgetToolbarRepository')) {
editor.plugins.get('WidgetToolbarRepository').forceDisabled('dragDrop');
const widgetToolbarRepository = editor.plugins.get('WidgetToolbarRepository');
widgetToolbarRepository.forceDisabled('dragDrop');
}

@@ -469,3 +470,4 @@ }

if (editor.plugins.has('WidgetToolbarRepository')) {
editor.plugins.get('WidgetToolbarRepository').clearForceDisabled('dragDrop');
const widgetToolbarRepository = editor.plugins.get('WidgetToolbarRepository');
widgetToolbarRepository.clearForceDisabled('dragDrop');
}

@@ -472,0 +474,0 @@ this._draggingUid = '';

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