@ckeditor/ckeditor5-upload
Advanced tools
Comparing version 23.0.0 to 23.1.0
{ | ||
"name": "@ckeditor/ckeditor5-upload", | ||
"version": "23.0.0", | ||
"version": "23.1.0", | ||
"description": "Upload Feature for CKEditor 5.", | ||
@@ -12,5 +12,5 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^23.0.0", | ||
"@ckeditor/ckeditor5-ui": "^23.0.0", | ||
"@ckeditor/ckeditor5-utils": "^23.0.0" | ||
"@ckeditor/ckeditor5-core": "^23.1.0", | ||
"@ckeditor/ckeditor5-ui": "^23.1.0", | ||
"@ckeditor/ckeditor5-utils": "^23.1.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "engines": { |
@@ -10,7 +10,7 @@ /** | ||
/* globals XMLHttpRequest, FormData, console */ | ||
/* globals XMLHttpRequest, FormData */ | ||
import Plugin from '@ckeditor/ckeditor5-core/src/plugin'; | ||
import FileRepository from '../filerepository'; | ||
import { attachLinkToDocumentation } from '@ckeditor/ckeditor5-utils/src/ckeditorerror'; | ||
import { logWarning } from '@ckeditor/ckeditor5-utils/src/ckeditorerror'; | ||
@@ -75,3 +75,3 @@ /** | ||
*/ | ||
console.warn( attachLinkToDocumentation( 'simple-upload-adapter-missing-uploadurl' ) ); | ||
logWarning( 'simple-upload-adapter-missing-uploadurl' ); | ||
@@ -78,0 +78,0 @@ return; |
@@ -10,8 +10,6 @@ /** | ||
/* globals console */ | ||
import Plugin from '@ckeditor/ckeditor5-core/src/plugin'; | ||
import PendingActions from '@ckeditor/ckeditor5-core/src/pendingactions'; | ||
import CKEditorError, { attachLinkToDocumentation } from '@ckeditor/ckeditor5-utils/src/ckeditorerror'; | ||
import CKEditorError, { logWarning } from '@ckeditor/ckeditor5-utils/src/ckeditorerror'; | ||
import ObservableMixin from '@ckeditor/ckeditor5-utils/src/observablemixin'; | ||
@@ -176,3 +174,3 @@ import Collection from '@ckeditor/ckeditor5-utils/src/collection'; | ||
*/ | ||
console.warn( attachLinkToDocumentation( 'filerepository-no-upload-adapter' ) ); | ||
logWarning( 'filerepository-no-upload-adapter' ); | ||
@@ -179,0 +177,0 @@ return null; |
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
95343
56
1198