@ckeditor/ckeditor5-essentials 40.2.0 → 41.0.0

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/CHANGELOG.md CHANGED
@@ -122,7 +122,7 @@ Internal changes only (updated dependencies, documentation, etc.).
122
122
 
123
123
  ### Other changes
124
124
 
125
- * The `Article` plugin became a `@ckeditor/ckeditor5-core`'s test util. See [#1](https://github.com/ckeditor/ckeditor5-essentials/issues/1). ([c0bbd28](https://github.com/ckeditor/ckeditor5-essentials/commit/c0bbd28))
125
+ * The `Article` plugin became a `@ckeditor/ckeditor5-core`'s test utility. See [#1](https://github.com/ckeditor/ckeditor5-essentials/issues/1). ([c0bbd28](https://github.com/ckeditor/ckeditor5-essentials/commit/c0bbd28))
126
126
  * This package was renamed from `@ckeditor/ckeditor-presets` to `@ckeditor/ckeditor5-essentials`. The `Article` preset was removed. Closes [#1](https://github.com/ckeditor/ckeditor5-essentials/issues/1). ([7e5e82b](https://github.com/ckeditor/ckeditor5-essentials/commit/7e5e82b))
127
127
 
128
128
  ### BREAKING CHANGES
package/LICENSE.md CHANGED
@@ -2,7 +2,7 @@ Software License Agreement
2
2
  ==========================
3
3
 
4
4
  **CKEditor&nbsp;5 essentials plugin** – https://github.com/ckeditor/ckeditor5-essentials <br>
5
- Copyright (c) 2003–2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
5
+ Copyright (c) 2003–2024, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
6
6
 
7
7
  Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
8
8
 
@@ -1,4 +1,4 @@
1
1
  /*!
2
- * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */(()=>{var e={945:(e,r,t)=>{e.exports=t(79)("./src/clipboard.js")},704:(e,r,t)=>{e.exports=t(79)("./src/core.js")},331:(e,r,t)=>{e.exports=t(79)("./src/enter.js")},468:(e,r,t)=>{e.exports=t(79)("./src/select-all.js")},181:(e,r,t)=>{e.exports=t(79)("./src/typing.js")},254:(e,r,t)=>{e.exports=t(79)("./src/undo.js")},79:e=>{"use strict";e.exports=CKEditor5.dll}},r={};function t(s){var o=r[s];if(void 0!==o)return o.exports;var n=r[s]={exports:{}};return e[s](n,n.exports,t),n.exports}t.d=(e,r)=>{for(var s in r)t.o(r,s)&&!t.o(e,s)&&Object.defineProperty(e,s,{enumerable:!0,get:r[s]})},t.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var s={};(()=>{"use strict";t.r(s),t.d(s,{Essentials:()=>a});var e=t(704),r=t(945),o=t(331),n=t(468),i=t(181),l=t(254);class a extends e.Plugin{static get requires(){return[r.Clipboard,o.Enter,n.SelectAll,o.ShiftEnter,i.Typing,l.Undo]}static get pluginName(){return"Essentials"}}})(),(window.CKEditor5=window.CKEditor5||{}).essentials=s})();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-essentials",
3
- "version": "40.2.0",
3
+ "version": "41.0.0",
4
4
  "description": "Essential editing features for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -10,9 +10,10 @@
10
10
  "ckeditor5-plugin",
11
11
  "ckeditor5-dll"
12
12
  ],
13
+ "type": "module",
13
14
  "main": "src/index.js",
14
15
  "dependencies": {
15
- "ckeditor5": "40.2.0"
16
+ "ckeditor5": "41.0.0"
16
17
  },
17
18
  "author": "CKSource (http://cksource.com/)",
18
19
  "license": "GPL-2.0-or-later",
@@ -1,8 +1,8 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2024, 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 { Essentials } from './index';
5
+ import type { Essentials } from './index.js';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface PluginsMap {
8
8
  [Essentials.pluginName]: Essentials;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2024, 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
5
  export {};
@@ -1,16 +1,16 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2024, 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
5
  /**
6
6
  * @module essentials/essentials
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import { Clipboard } from 'ckeditor5/src/clipboard';
10
- import { Enter, ShiftEnter } from 'ckeditor5/src/enter';
11
- import { SelectAll } from 'ckeditor5/src/select-all';
12
- import { Typing } from 'ckeditor5/src/typing';
13
- import { Undo } from 'ckeditor5/src/undo';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { Clipboard } from 'ckeditor5/src/clipboard.js';
10
+ import { Enter, ShiftEnter } from 'ckeditor5/src/enter.js';
11
+ import { SelectAll } from 'ckeditor5/src/select-all.js';
12
+ import { Typing } from 'ckeditor5/src/typing.js';
13
+ import { Undo } from 'ckeditor5/src/undo.js';
14
14
  /**
15
15
  * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
16
16
  * to a `<textarea>` element.
package/src/essentials.js CHANGED
@@ -1,16 +1,16 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2024, 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
5
  /**
6
6
  * @module essentials/essentials
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import { Clipboard } from 'ckeditor5/src/clipboard';
10
- import { Enter, ShiftEnter } from 'ckeditor5/src/enter';
11
- import { SelectAll } from 'ckeditor5/src/select-all';
12
- import { Typing } from 'ckeditor5/src/typing';
13
- import { Undo } from 'ckeditor5/src/undo';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { Clipboard } from 'ckeditor5/src/clipboard.js';
10
+ import { Enter, ShiftEnter } from 'ckeditor5/src/enter.js';
11
+ import { SelectAll } from 'ckeditor5/src/select-all.js';
12
+ import { Typing } from 'ckeditor5/src/typing.js';
13
+ import { Undo } from 'ckeditor5/src/undo.js';
14
14
  /**
15
15
  * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
16
16
  * to a `<textarea>` element.
package/src/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2024, 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
5
  /**
6
6
  * @module essentials
7
7
  */
8
- export { default as Essentials } from './essentials';
9
- import './augmentation';
8
+ export { default as Essentials } from './essentials.js';
9
+ import './augmentation.js';
package/src/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2024, 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
5
  /**
6
6
  * @module essentials
7
7
  */
8
- export { default as Essentials } from './essentials';
9
- import './augmentation';
8
+ export { default as Essentials } from './essentials.js';
9
+ import './augmentation.js';