@ckeditor/ckeditor5-upload
Advanced tools
Comparing version 22.0.0 to 23.0.0
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94613
1199
+ Added@ckeditor/ckeditor5-core@23.1.0(transitive)
+ Added@ckeditor/ckeditor5-engine@23.1.0(transitive)
+ Added@ckeditor/ckeditor5-ui@23.1.0(transitive)
+ Added@ckeditor/ckeditor5-utils@23.1.0(transitive)
- Removed@ckeditor/ckeditor5-core@22.0.0(transitive)
- Removed@ckeditor/ckeditor5-engine@22.0.0(transitive)
- Removed@ckeditor/ckeditor5-ui@22.0.0(transitive)
- Removed@ckeditor/ckeditor5-utils@22.0.0(transitive)