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

@ckeditor/ckeditor5-upload

Package Overview
Dependencies
Maintainers
1
Versions
702
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-upload - npm Package Compare versions

Comparing version 22.0.0 to 23.0.0

8

package.json
{
"name": "@ckeditor/ckeditor5-upload",
"version": "22.0.0",
"version": "23.0.0",
"description": "Upload Feature for CKEditor 5.",

@@ -12,5 +12,5 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-core": "^22.0.0",
"@ckeditor/ckeditor5-ui": "^22.0.0",
"@ckeditor/ckeditor5-utils": "^22.0.0"
"@ckeditor/ckeditor5-core": "^23.0.0",
"@ckeditor/ckeditor5-ui": "^23.0.0",
"@ckeditor/ckeditor5-utils": "^23.0.0"
},

@@ -17,0 +17,0 @@ "engines": {

@@ -72,7 +72,5 @@ /**

*
* @error simple-upload-adapter-missing-uploadUrl
* @error simple-upload-adapter-missing-uploadurl
*/
console.warn( attachLinkToDocumentation(
'simple-upload-adapter-missing-uploadUrl: Missing the "uploadUrl" property in the "simpleUpload" editor configuration.'
) );
console.warn( attachLinkToDocumentation( 'simple-upload-adapter-missing-uploadurl' ) );

@@ -79,0 +77,0 @@ return;

@@ -175,5 +175,3 @@ /**

*/
console.warn( attachLinkToDocumentation(
'filerepository-no-upload-adapter: Upload adapter is not defined.'
) );
console.warn( attachLinkToDocumentation( 'filerepository-no-upload-adapter' ) );

@@ -436,3 +434,8 @@ return null;

if ( this.status != 'idle' ) {
throw new CKEditorError( 'filerepository-read-wrong-status: You cannot call read if the status is different than idle.', this );
/**
* You cannot call read if the status is different than idle.
*
* @error filerepository-read-wrong-status
*/
throw new CKEditorError( 'filerepository-read-wrong-status', this );
}

@@ -488,6 +491,8 @@

if ( this.status != 'idle' ) {
throw new CKEditorError(
'filerepository-upload-wrong-status: You cannot call upload if the status is different than idle.',
this
);
/**
* You cannot call upload if the status is different than idle.
*
* @error filerepository-upload-wrong-status
*/
throw new CKEditorError( 'filerepository-upload-wrong-status', this );
}

@@ -494,0 +499,0 @@

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