@ckeditor/ckeditor5-essentials 41.0.0 → 41.2.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.
@@ -1,4 +1,4 @@
1
1
  /*!
2
2
  * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
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})();
4
+ */(()=>{var e={331:(e,r,t)=>{e.exports=t(237)("./src/clipboard.js")},782:(e,r,t)=>{e.exports=t(237)("./src/core.js")},507:(e,r,t)=>{e.exports=t(237)("./src/enter.js")},727:(e,r,t)=>{e.exports=t(237)("./src/select-all.js")},834:(e,r,t)=>{e.exports=t(237)("./src/typing.js")},311:(e,r,t)=>{e.exports=t(237)("./src/ui.js")},251:(e,r,t)=>{e.exports=t(237)("./src/undo.js")},237:e=>{"use strict";e.exports=CKEditor5.dll}},r={};function t(s){var o=r[s];if(void 0!==o)return o.exports;var i=r[s]={exports:{}};return e[s](i,i.exports,t),i.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:()=>c});var e=t(782),r=t(331),o=t(507),i=t(727),n=t(834),l=t(251),p=t(311);class c extends e.Plugin{static get requires(){return[p.AccessibilityHelp,r.Clipboard,o.Enter,i.SelectAll,o.ShiftEnter,n.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": "41.0.0",
3
+ "version": "41.2.0",
4
4
  "description": "Essential editing features for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,7 +13,7 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "ckeditor5": "41.0.0"
16
+ "ckeditor5": "41.2.0"
17
17
  },
18
18
  "author": "CKSource (http://cksource.com/)",
19
19
  "license": "GPL-2.0-or-later",
@@ -11,6 +11,7 @@ import { Enter, ShiftEnter } from 'ckeditor5/src/enter.js';
11
11
  import { SelectAll } from 'ckeditor5/src/select-all.js';
12
12
  import { Typing } from 'ckeditor5/src/typing.js';
13
13
  import { Undo } from 'ckeditor5/src/undo.js';
14
+ import { AccessibilityHelp } from 'ckeditor5/src/ui.js';
14
15
  /**
15
16
  * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
16
17
  * to a `<textarea>` element.
@@ -31,7 +32,7 @@ export default class Essentials extends Plugin {
31
32
  /**
32
33
  * @inheritDoc
33
34
  */
34
- static get requires(): readonly [typeof Clipboard, typeof Enter, typeof SelectAll, typeof ShiftEnter, typeof Typing, typeof Undo];
35
+ static get requires(): readonly [typeof AccessibilityHelp, typeof Clipboard, typeof Enter, typeof SelectAll, typeof ShiftEnter, typeof Typing, typeof Undo];
35
36
  /**
36
37
  * @inheritDoc
37
38
  */
package/src/essentials.js CHANGED
@@ -11,6 +11,7 @@ import { Enter, ShiftEnter } from 'ckeditor5/src/enter.js';
11
11
  import { SelectAll } from 'ckeditor5/src/select-all.js';
12
12
  import { Typing } from 'ckeditor5/src/typing.js';
13
13
  import { Undo } from 'ckeditor5/src/undo.js';
14
+ import { AccessibilityHelp } from 'ckeditor5/src/ui.js';
14
15
  /**
15
16
  * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
16
17
  * to a `<textarea>` element.
@@ -32,7 +33,7 @@ export default class Essentials extends Plugin {
32
33
  * @inheritDoc
33
34
  */
34
35
  static get requires() {
35
- return [Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo];
36
+ return [AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo];
36
37
  }
37
38
  /**
38
39
  * @inheritDoc