@ckeditor/ckeditor5-ckfinder 38.2.0-alpha.0 → 38.2.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-ckfinder",
3
- "version": "38.2.0-alpha.0",
3
+ "version": "38.2.0-alpha.1",
4
4
  "description": "CKFinder integration for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,7 +13,7 @@
13
13
  "main": "src/index.js",
14
14
  "type": "module",
15
15
  "dependencies": {
16
- "ckeditor5": "38.2.0-alpha.0"
16
+ "ckeditor5": "38.2.0-alpha.1"
17
17
  },
18
18
  "engines": {
19
19
  "node": ">=16.0.0",
@@ -2,7 +2,7 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import type { CKFinder, CKFinderCommand, CKFinderConfig, CKFinderEditing } from './index';
5
+ import type { CKFinder, CKFinderCommand, CKFinderConfig, CKFinderEditing } from './index.js';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface EditorConfig {
8
8
  /**
package/src/ckfinder.d.ts CHANGED
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module ckfinder/ckfinder
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import CKFinderUI from './ckfinderui';
10
- import CKFinderEditing from './ckfinderediting';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import CKFinderUI from './ckfinderui.js';
10
+ import CKFinderEditing from './ckfinderediting.js';
11
11
  /**
12
12
  * The CKFinder feature, a bridge between the CKEditor 5 WYSIWYG editor and the
13
13
  * [CKFinder](https://ckeditor.com/ckfinder) file manager and uploader.
package/src/ckfinder.js CHANGED
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module ckfinder/ckfinder
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import CKFinderUI from './ckfinderui';
10
- import CKFinderEditing from './ckfinderediting';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import CKFinderUI from './ckfinderui.js';
10
+ import CKFinderEditing from './ckfinderediting.js';
11
11
  /**
12
12
  * The CKFinder feature, a bridge between the CKEditor 5 WYSIWYG editor and the
13
13
  * [CKFinder](https://ckeditor.com/ckfinder) file manager and uploader.
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module ckfinder/ckfindercommand
7
7
  */
8
- import { Command, type Editor } from 'ckeditor5/src/core';
8
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
9
9
  /**
10
10
  * The CKFinder command. It is used by the {@link module:ckfinder/ckfinderediting~CKFinderEditing CKFinder editing feature}
11
11
  * to open the CKFinder file manager to insert an image or a link to a file into the editor content.
@@ -6,8 +6,8 @@
6
6
  /**
7
7
  * @module ckfinder/ckfindercommand
8
8
  */
9
- import { Command } from 'ckeditor5/src/core';
10
- import { CKEditorError } from 'ckeditor5/src/utils';
9
+ import { Command } from 'ckeditor5/src/core.js';
10
+ import { CKEditorError } from 'ckeditor5/src/utils.js';
11
11
  /**
12
12
  * The CKFinder command. It is used by the {@link module:ckfinder/ckfinderediting~CKFinderEditing CKFinder editing feature}
13
13
  * to open the CKFinder file manager to insert an image or a link to a file into the editor content.
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module ckfinder/ckfinderediting
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import { Notification } from 'ckeditor5/src/ui';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { Notification } from 'ckeditor5/src/ui.js';
10
10
  /**
11
11
  * The CKFinder editing feature. It introduces the {@link module:ckfinder/ckfindercommand~CKFinderCommand CKFinder command}.
12
12
  */
@@ -5,10 +5,10 @@
5
5
  /**
6
6
  * @module ckfinder/ckfinderediting
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import { Notification } from 'ckeditor5/src/ui';
10
- import { CKEditorError } from 'ckeditor5/src/utils';
11
- import CKFinderCommand from './ckfindercommand';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { Notification } from 'ckeditor5/src/ui.js';
10
+ import { CKEditorError } from 'ckeditor5/src/utils.js';
11
+ import CKFinderCommand from './ckfindercommand.js';
12
12
  /**
13
13
  * The CKFinder editing feature. It introduces the {@link module:ckfinder/ckfindercommand~CKFinderCommand CKFinder command}.
14
14
  */
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module ckfinder/ckfinderui
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
9
  /**
10
10
  * The CKFinder UI plugin. It introduces the `'ckfinder'` toolbar button.
11
11
  */
package/src/ckfinderui.js CHANGED
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module ckfinder/ckfinderui
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import { ButtonView } from 'ckeditor5/src/ui';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { ButtonView } from 'ckeditor5/src/ui.js';
10
10
  import browseFilesIcon from '../theme/icons/browse-files.svg';
11
11
  /**
12
12
  * The CKFinder UI plugin. It introduces the `'ckfinder'` toolbar button.
package/src/index.d.ts CHANGED
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module ckfinder
7
7
  */
8
- export { default as CKFinder } from './ckfinder';
9
- export { default as CKFinderEditing } from './ckfinderediting';
10
- export { default as CKFinderUI } from './ckfinderui';
11
- export type { CKFinderConfig } from './ckfinderconfig';
12
- export type { default as CKFinderCommand } from './ckfindercommand';
13
- import './augmentation';
8
+ export { default as CKFinder } from './ckfinder.js';
9
+ export { default as CKFinderEditing } from './ckfinderediting.js';
10
+ export { default as CKFinderUI } from './ckfinderui.js';
11
+ export type { CKFinderConfig } from './ckfinderconfig.js';
12
+ export type { default as CKFinderCommand } from './ckfindercommand.js';
13
+ import './augmentation.js';
package/src/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module ckfinder
7
7
  */
8
- export { default as CKFinder } from './ckfinder';
9
- export { default as CKFinderEditing } from './ckfinderediting';
10
- export { default as CKFinderUI } from './ckfinderui';
11
- import './augmentation';
8
+ export { default as CKFinder } from './ckfinder.js';
9
+ export { default as CKFinderEditing } from './ckfinderediting.js';
10
+ export { default as CKFinderUI } from './ckfinderui.js';
11
+ import './augmentation.js';