@ckeditor/ckeditor5-ckfinder
Advanced tools
Comparing version 38.2.0-alpha.0 to 38.2.0-alpha.1
{ | ||
"name": "@ckeditor/ckeditor5-ckfinder", | ||
"version": "38.2.0-alpha.0", | ||
"version": "38.2.0-alpha.1", | ||
"description": "CKFinder integration for CKEditor 5.", | ||
@@ -16,3 +16,3 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "38.2.0-alpha.0" | ||
"ckeditor5": "38.2.0-alpha.1" | ||
}, | ||
@@ -19,0 +19,0 @@ "engines": { |
@@ -5,3 +5,3 @@ /** | ||
*/ | ||
import type { CKFinder, CKFinderCommand, CKFinderConfig, CKFinderEditing } from './index'; | ||
import type { CKFinder, CKFinderCommand, CKFinderConfig, CKFinderEditing } from './index.js'; | ||
declare module '@ckeditor/ckeditor5-core' { | ||
@@ -8,0 +8,0 @@ interface EditorConfig { |
@@ -8,5 +8,5 @@ /** | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import CKFinderUI from './ckfinderui'; | ||
import CKFinderEditing from './ckfinderediting'; | ||
import { Plugin } from 'ckeditor5/src/core.js'; | ||
import CKFinderUI from './ckfinderui.js'; | ||
import CKFinderEditing from './ckfinderediting.js'; | ||
/** | ||
@@ -13,0 +13,0 @@ * The CKFinder feature, a bridge between the CKEditor 5 WYSIWYG editor and the |
@@ -8,5 +8,5 @@ /** | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import CKFinderUI from './ckfinderui'; | ||
import CKFinderEditing from './ckfinderediting'; | ||
import { Plugin } from 'ckeditor5/src/core.js'; | ||
import CKFinderUI from './ckfinderui.js'; | ||
import CKFinderEditing from './ckfinderediting.js'; | ||
/** | ||
@@ -13,0 +13,0 @@ * The CKFinder feature, a bridge between the CKEditor 5 WYSIWYG editor and the |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import { Command, type Editor } from 'ckeditor5/src/core'; | ||
import { Command, type Editor } from 'ckeditor5/src/core.js'; | ||
/** | ||
@@ -11,0 +11,0 @@ * The CKFinder command. It is used by the {@link module:ckfinder/ckfinderediting~CKFinderEditing CKFinder editing feature} |
@@ -9,4 +9,4 @@ /** | ||
*/ | ||
import { Command } from 'ckeditor5/src/core'; | ||
import { CKEditorError } from 'ckeditor5/src/utils'; | ||
import { Command } from 'ckeditor5/src/core.js'; | ||
import { CKEditorError } from 'ckeditor5/src/utils.js'; | ||
/** | ||
@@ -13,0 +13,0 @@ * The CKFinder command. It is used by the {@link module:ckfinder/ckfinderediting~CKFinderEditing CKFinder editing feature} |
@@ -8,4 +8,4 @@ /** | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { Notification } from 'ckeditor5/src/ui'; | ||
import { Plugin } from 'ckeditor5/src/core.js'; | ||
import { Notification } from 'ckeditor5/src/ui.js'; | ||
/** | ||
@@ -12,0 +12,0 @@ * The CKFinder editing feature. It introduces the {@link module:ckfinder/ckfindercommand~CKFinderCommand CKFinder command}. |
@@ -8,6 +8,6 @@ /** | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { Notification } from 'ckeditor5/src/ui'; | ||
import { CKEditorError } from 'ckeditor5/src/utils'; | ||
import CKFinderCommand from './ckfindercommand'; | ||
import { Plugin } from 'ckeditor5/src/core.js'; | ||
import { Notification } from 'ckeditor5/src/ui.js'; | ||
import { CKEditorError } from 'ckeditor5/src/utils.js'; | ||
import CKFinderCommand from './ckfindercommand.js'; | ||
/** | ||
@@ -14,0 +14,0 @@ * The CKFinder editing feature. It introduces the {@link module:ckfinder/ckfindercommand~CKFinderCommand CKFinder command}. |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core.js'; | ||
/** | ||
@@ -11,0 +11,0 @@ * The CKFinder UI plugin. It introduces the `'ckfinder'` toolbar button. |
@@ -8,4 +8,4 @@ /** | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { ButtonView } from 'ckeditor5/src/ui'; | ||
import { Plugin } from 'ckeditor5/src/core.js'; | ||
import { ButtonView } from 'ckeditor5/src/ui.js'; | ||
import browseFilesIcon from '../theme/icons/browse-files.svg'; | ||
@@ -12,0 +12,0 @@ /** |
@@ -8,7 +8,7 @@ /** | ||
*/ | ||
export { default as CKFinder } from './ckfinder'; | ||
export { default as CKFinderEditing } from './ckfinderediting'; | ||
export { default as CKFinderUI } from './ckfinderui'; | ||
export type { CKFinderConfig } from './ckfinderconfig'; | ||
export type { default as CKFinderCommand } from './ckfindercommand'; | ||
import './augmentation'; | ||
export { default as CKFinder } from './ckfinder.js'; | ||
export { default as CKFinderEditing } from './ckfinderediting.js'; | ||
export { default as CKFinderUI } from './ckfinderui.js'; | ||
export type { CKFinderConfig } from './ckfinderconfig.js'; | ||
export type { default as CKFinderCommand } from './ckfindercommand.js'; | ||
import './augmentation.js'; |
@@ -8,5 +8,5 @@ /** | ||
*/ | ||
export { default as CKFinder } from './ckfinder'; | ||
export { default as CKFinderEditing } from './ckfinderediting'; | ||
export { default as CKFinderUI } from './ckfinderui'; | ||
import './augmentation'; | ||
export { default as CKFinder } from './ckfinder.js'; | ||
export { default as CKFinderEditing } from './ckfinderediting.js'; | ||
export { default as CKFinderUI } from './ckfinderui.js'; | ||
import './augmentation.js'; |
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
164385
+ Added@ckeditor/ckeditor5-clipboard@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-core@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-engine@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-enter@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-paragraph@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-select-all@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-typing@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-ui@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-undo@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-upload@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-utils@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-watchdog@38.2.0-alpha.1(transitive)
+ Added@ckeditor/ckeditor5-widget@38.2.0-alpha.1(transitive)
+ Addedckeditor5@38.2.0-alpha.1(transitive)
- Removed@ckeditor/ckeditor5-clipboard@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-core@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-engine@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-enter@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-paragraph@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-select-all@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-typing@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-ui@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-undo@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-upload@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-utils@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-watchdog@38.2.0-alpha.0(transitive)
- Removed@ckeditor/ckeditor5-widget@38.2.0-alpha.0(transitive)
- Removedckeditor5@38.2.0-alpha.0(transitive)
Updatedckeditor5@38.2.0-alpha.1