@ckeditor/ckeditor5-ckfinder
Advanced tools
Comparing version 0.0.0-nightly-20241016.0 to 0.0.0-nightly-20241017.0
@@ -5,2 +5,2 @@ !function(e){const t=e.en=e.en||{};t.dictionary=Object.assign(t.dictionary||{},{"Could not insert image at the current position.":"Could not insert image at the current position.","Could not obtain resized image URL.":"Could not obtain resized image URL.","Insert image or file":"Insert image or file","Inserting image failed":"Inserting image failed","Selecting resized image failed":"Selecting resized image failed"})}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})), | ||
* For licensing, see LICENSE.md. | ||
*/(()=>{var e={782:(e,t,i)=>{e.exports=i(237)("./src/core.js")},311:(e,t,i)=>{e.exports=i(237)("./src/ui.js")},584:(e,t,i)=>{e.exports=i(237)("./src/utils.js")},237:e=>{"use strict";e.exports=CKEditor5.dll}},t={};function i(n){var o=t[n];if(void 0!==o)return o.exports;var r=t[n]={exports:{}};return e[n](r,r.exports,i),r.exports}i.d=(e,t)=>{for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};(()=>{"use strict";i.r(n),i.d(n,{CKFinder:()=>l,CKFinderEditing:()=>c,CKFinderUI:()=>o});var e=i(782),t=i(311);class o extends e.Plugin{static get pluginName(){return"CKFinderUI"}init(){const e=this.editor;e.ui.componentFactory.add("ckfinder",(()=>this._createFileToolbarButton())),e.ui.componentFactory.add("menuBar:ckfinder",(()=>this._createFileMenuBarButton())),e.plugins.has("ImageInsertUI")&&e.plugins.get("ImageInsertUI").registerIntegration({name:"assetManager",observable:()=>e.commands.get("ckfinder"),buttonViewCreator:()=>this._createImageToolbarButton(),formViewCreator:()=>this._createImageDropdownButton(),menuBarButtonViewCreator:e=>this._createImageMenuBarButton(e?"insertOnly":"insertNested")})}_createButton(e){const t=this.editor,i=new e(t.locale),n=t.commands.get("ckfinder");return i.bind("isEnabled").to(n),i.on("execute",(()=>{t.execute("ckfinder"),t.editing.view.focus()})),i}_createFileToolbarButton(){const i=this.editor.locale.t,n=this._createButton(t.ButtonView);return n.icon=e.icons.browseFiles,n.label=i("Insert image or file"),n.tooltip=!0,n}_createImageToolbarButton(){const i=this.editor.locale.t,n=this.editor.plugins.get("ImageInsertUI"),o=this._createButton(t.ButtonView);return o.icon=e.icons.imageAssetManager,o.bind("label").to(n,"isImageSelected",(e=>i(e?"Replace image with file manager":"Insert image with file manager"))),o.tooltip=!0,o}_createImageDropdownButton(){const i=this.editor.locale.t,n=this.editor.plugins.get("ImageInsertUI"),o=this._createButton(t.ButtonView);return o.icon=e.icons.imageAssetManager,o.withText=!0,o.bind("label").to(n,"isImageSelected",(e=>i(e?"Replace with file manager":"Insert with file manager"))),o.on("execute",(()=>{n.dropdownView.isOpen=!1})),o}_createFileMenuBarButton(){const i=this.editor.locale.t,n=this._createButton(t.MenuBarMenuListItemButtonView);return n.icon=e.icons.browseFiles,n.withText=!0,n.label=i("File"),n}_createImageMenuBarButton(i){const n=this.editor.locale.t,o=this._createButton(t.MenuBarMenuListItemButtonView);switch(o.icon=e.icons.imageAssetManager,o.withText=!0,i){case"insertOnly":o.label=n("Image");break;case"insertNested":o.label=n("With file manager")}return o}}var r=i(584);class s extends e.Command{constructor(e){super(e),this.affectsData=!1,this.stopListening(this.editor.model.document,"change"),this.listenTo(this.editor.model.document,"change",(()=>this.refresh()),{priority:"low"})}refresh(){const e=this.editor.commands.get("insertImage"),t=this.editor.commands.get("link");this.isEnabled=e.isEnabled||t.isEnabled}execute(){const e=this.editor,t=this.editor.config.get("ckfinder.openerMethod")||"modal";if("popup"!=t&&"modal"!=t)throw new r.CKEditorError("ckfinder-unknown-openermethod",e);const i=this.editor.config.get("ckfinder.options")||{};i.chooseFiles=!0;const n=i.onInit;i.language||(i.language=e.locale.uiLanguage),i.onInit=t=>{n&&n(t),t.on("files:choose",(i=>{const n=i.data.files.toArray(),o=n.filter((e=>!e.isImage())),r=n.filter((e=>e.isImage()));for(const t of o)e.execute("link",t.getUrl());const s=[];for(const e of r){const i=e.getUrl();s.push(i||t.request("file:getProxyUrl",{file:e}))}s.length&&a(e,s)})),t.on("file:choose:resizedImage",(t=>{const i=t.data.resizedUrl;if(i)a(e,[i]);else{const t=e.plugins.get("Notification"),i=e.locale.t;t.showWarning(i("Could not obtain resized image URL."),{title:i("Selecting resized image failed"),namespace:"ckfinder"})}}))},window.CKFinder[t](i)}}function a(e,t){if(e.commands.get("insertImage").isEnabled)e.execute("insertImage",{source:t});else{const t=e.plugins.get("Notification"),i=e.locale.t;t.showWarning(i("Could not insert image at the current position."),{title:i("Inserting image failed"),namespace:"ckfinder"})}}class c extends e.Plugin{static get pluginName(){return"CKFinderEditing"}static get requires(){return[t.Notification,"LinkEditing"]}init(){const e=this.editor;if(!e.plugins.has("ImageBlockEditing")&&!e.plugins.has("ImageInlineEditing"))throw new r.CKEditorError("ckfinder-missing-image-plugin",e);e.commands.add("ckfinder",new s(e))}}class l extends e.Plugin{static get pluginName(){return"CKFinder"}static get requires(){return["Link","CKFinderUploadAdapter",c,o]}}})(),(window.CKEditor5=window.CKEditor5||{}).ckfinder=n})(); | ||
*/(()=>{var e={782:(e,t,i)=>{e.exports=i(237)("./src/core.js")},311:(e,t,i)=>{e.exports=i(237)("./src/ui.js")},584:(e,t,i)=>{e.exports=i(237)("./src/utils.js")},237:e=>{"use strict";e.exports=CKEditor5.dll}},t={};function i(n){var r=t[n];if(void 0!==r)return r.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,i),o.exports}i.d=(e,t)=>{for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};(()=>{"use strict";i.r(n),i.d(n,{CKFinder:()=>l,CKFinderEditing:()=>c,CKFinderUI:()=>r});var e=i(782),t=i(311);class r extends e.Plugin{static get pluginName(){return"CKFinderUI"}static get isOfficialPlugin(){return!0}init(){const e=this.editor;e.ui.componentFactory.add("ckfinder",(()=>this._createFileToolbarButton())),e.ui.componentFactory.add("menuBar:ckfinder",(()=>this._createFileMenuBarButton())),e.plugins.has("ImageInsertUI")&&e.plugins.get("ImageInsertUI").registerIntegration({name:"assetManager",observable:()=>e.commands.get("ckfinder"),buttonViewCreator:()=>this._createImageToolbarButton(),formViewCreator:()=>this._createImageDropdownButton(),menuBarButtonViewCreator:e=>this._createImageMenuBarButton(e?"insertOnly":"insertNested")})}_createButton(e){const t=this.editor,i=new e(t.locale),n=t.commands.get("ckfinder");return i.bind("isEnabled").to(n),i.on("execute",(()=>{t.execute("ckfinder"),t.editing.view.focus()})),i}_createFileToolbarButton(){const i=this.editor.locale.t,n=this._createButton(t.ButtonView);return n.icon=e.icons.browseFiles,n.label=i("Insert image or file"),n.tooltip=!0,n}_createImageToolbarButton(){const i=this.editor.locale.t,n=this.editor.plugins.get("ImageInsertUI"),r=this._createButton(t.ButtonView);return r.icon=e.icons.imageAssetManager,r.bind("label").to(n,"isImageSelected",(e=>i(e?"Replace image with file manager":"Insert image with file manager"))),r.tooltip=!0,r}_createImageDropdownButton(){const i=this.editor.locale.t,n=this.editor.plugins.get("ImageInsertUI"),r=this._createButton(t.ButtonView);return r.icon=e.icons.imageAssetManager,r.withText=!0,r.bind("label").to(n,"isImageSelected",(e=>i(e?"Replace with file manager":"Insert with file manager"))),r.on("execute",(()=>{n.dropdownView.isOpen=!1})),r}_createFileMenuBarButton(){const i=this.editor.locale.t,n=this._createButton(t.MenuBarMenuListItemButtonView);return n.icon=e.icons.browseFiles,n.withText=!0,n.label=i("File"),n}_createImageMenuBarButton(i){const n=this.editor.locale.t,r=this._createButton(t.MenuBarMenuListItemButtonView);switch(r.icon=e.icons.imageAssetManager,r.withText=!0,i){case"insertOnly":r.label=n("Image");break;case"insertNested":r.label=n("With file manager")}return r}}var o=i(584);class s extends e.Command{constructor(e){super(e),this.affectsData=!1,this.stopListening(this.editor.model.document,"change"),this.listenTo(this.editor.model.document,"change",(()=>this.refresh()),{priority:"low"})}refresh(){const e=this.editor.commands.get("insertImage"),t=this.editor.commands.get("link");this.isEnabled=e.isEnabled||t.isEnabled}execute(){const e=this.editor,t=this.editor.config.get("ckfinder.openerMethod")||"modal";if("popup"!=t&&"modal"!=t)throw new o.CKEditorError("ckfinder-unknown-openermethod",e);const i=this.editor.config.get("ckfinder.options")||{};i.chooseFiles=!0;const n=i.onInit;i.language||(i.language=e.locale.uiLanguage),i.onInit=t=>{n&&n(t),t.on("files:choose",(i=>{const n=i.data.files.toArray(),r=n.filter((e=>!e.isImage())),o=n.filter((e=>e.isImage()));for(const t of r)e.execute("link",t.getUrl());const s=[];for(const e of o){const i=e.getUrl();s.push(i||t.request("file:getProxyUrl",{file:e}))}s.length&&a(e,s)})),t.on("file:choose:resizedImage",(t=>{const i=t.data.resizedUrl;if(i)a(e,[i]);else{const t=e.plugins.get("Notification"),i=e.locale.t;t.showWarning(i("Could not obtain resized image URL."),{title:i("Selecting resized image failed"),namespace:"ckfinder"})}}))},window.CKFinder[t](i)}}function a(e,t){if(e.commands.get("insertImage").isEnabled)e.execute("insertImage",{source:t});else{const t=e.plugins.get("Notification"),i=e.locale.t;t.showWarning(i("Could not insert image at the current position."),{title:i("Inserting image failed"),namespace:"ckfinder"})}}class c extends e.Plugin{static get pluginName(){return"CKFinderEditing"}static get isOfficialPlugin(){return!0}static get requires(){return[t.Notification,"LinkEditing"]}init(){const e=this.editor;if(!e.plugins.has("ImageBlockEditing")&&!e.plugins.has("ImageInlineEditing"))throw new o.CKEditorError("ckfinder-missing-image-plugin",e);e.commands.add("ckfinder",new s(e))}}class l extends e.Plugin{static get pluginName(){return"CKFinder"}static get isOfficialPlugin(){return!0}static get requires(){return["Link","CKFinderUploadAdapter",c,r]}}})(),(window.CKEditor5=window.CKEditor5||{}).ckfinder=n})(); |
@@ -39,3 +39,7 @@ /** | ||
*/ | ||
static get isOfficialPlugin(): true; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
static get requires(): readonly ["Link", "CKFinderUploadAdapter", typeof CKFinderEditing, typeof CKFinderUI]; | ||
} |
@@ -25,2 +25,6 @@ /** | ||
*/ | ||
static get isOfficialPlugin(): true; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
static get requires(): readonly [typeof Notification, "LinkEditing"]; | ||
@@ -27,0 +31,0 @@ /** |
@@ -31,2 +31,6 @@ /** | ||
*/ | ||
static get isOfficialPlugin(): true; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
init(): void; | ||
@@ -33,0 +37,0 @@ /** |
@@ -26,2 +26,7 @@ /** | ||
* @inheritDoc | ||
*/ static get isOfficialPlugin() { | ||
return true; | ||
} | ||
/** | ||
* @inheritDoc | ||
*/ init() { | ||
@@ -245,2 +250,7 @@ const editor = this.editor; | ||
* @inheritDoc | ||
*/ static get isOfficialPlugin() { | ||
return true; | ||
} | ||
/** | ||
* @inheritDoc | ||
*/ static get requires() { | ||
@@ -297,2 +307,7 @@ return [ | ||
* @inheritDoc | ||
*/ static get isOfficialPlugin() { | ||
return true; | ||
} | ||
/** | ||
* @inheritDoc | ||
*/ static get requires() { | ||
@@ -299,0 +314,0 @@ return [ |
{ | ||
"name": "@ckeditor/ckeditor5-ckfinder", | ||
"version": "0.0.0-nightly-20241016.0", | ||
"version": "0.0.0-nightly-20241017.0", | ||
"description": "CKFinder integration for CKEditor 5.", | ||
@@ -16,6 +16,6 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20241016.0", | ||
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20241016.0", | ||
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20241016.0", | ||
"ckeditor5": "0.0.0-nightly-20241016.0" | ||
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20241017.0", | ||
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20241017.0", | ||
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20241017.0", | ||
"ckeditor5": "0.0.0-nightly-20241017.0" | ||
}, | ||
@@ -22,0 +22,0 @@ "author": "CKSource (http://cksource.com/)", |
@@ -35,3 +35,7 @@ /** | ||
*/ | ||
static get isOfficialPlugin(): true; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
static get requires(): readonly ["Link", "CKFinderUploadAdapter", typeof CKFinderEditing, typeof CKFinderUI]; | ||
} |
@@ -37,2 +37,8 @@ /** | ||
*/ | ||
static get isOfficialPlugin() { | ||
return true; | ||
} | ||
/** | ||
* @inheritDoc | ||
*/ | ||
static get requires() { | ||
@@ -39,0 +45,0 @@ return ['Link', 'CKFinderUploadAdapter', CKFinderEditing, CKFinderUI]; |
@@ -21,2 +21,6 @@ /** | ||
*/ | ||
static get isOfficialPlugin(): true; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
static get requires(): readonly [typeof Notification, "LinkEditing"]; | ||
@@ -23,0 +27,0 @@ /** |
@@ -25,2 +25,8 @@ /** | ||
*/ | ||
static get isOfficialPlugin() { | ||
return true; | ||
} | ||
/** | ||
* @inheritDoc | ||
*/ | ||
static get requires() { | ||
@@ -27,0 +33,0 @@ return [Notification, 'LinkEditing']; |
@@ -27,2 +27,6 @@ /** | ||
*/ | ||
static get isOfficialPlugin(): true; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
init(): void; | ||
@@ -29,0 +33,0 @@ /** |
@@ -30,2 +30,8 @@ /** | ||
*/ | ||
static get isOfficialPlugin() { | ||
return true; | ||
} | ||
/** | ||
* @inheritDoc | ||
*/ | ||
init() { | ||
@@ -32,0 +38,0 @@ const editor = this.editor; |
Sorry, the diff of this file is not supported yet
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
368943
2623
+ Added@ckeditor/ckeditor5-adapter-ckfinder@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-alignment@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-autoformat@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-autosave@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-basic-styles@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-block-quote@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-ckbox@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-clipboard@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-cloud-services@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-code-block@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-core@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-easy-image@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-editor-balloon@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-editor-classic@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-editor-decoupled@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-editor-inline@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-editor-multi-root@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-engine@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-enter@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-essentials@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-find-and-replace@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-font@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-heading@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-highlight@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-horizontal-line@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-html-embed@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-html-support@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-image@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-indent@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-language@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-link@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-list@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-markdown-gfm@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-media-embed@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-mention@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-minimap@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-page-break@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-paragraph@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-paste-from-office@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-remove-format@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-restricted-editing@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-select-all@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-show-blocks@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-source-editing@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-special-characters@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-style@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-table@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-theme-lark@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-typing@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-ui@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-undo@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-upload@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-utils@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-watchdog@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-widget@0.0.0-nightly-20241017.0(transitive)
+ Added@ckeditor/ckeditor5-word-count@0.0.0-nightly-20241017.0(transitive)
+ Addedckeditor5@0.0.0-nightly-20241017.0(transitive)
- Removed@ckeditor/ckeditor5-adapter-ckfinder@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-alignment@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-autoformat@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-autosave@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-basic-styles@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-block-quote@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-ckbox@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-clipboard@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-cloud-services@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-code-block@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-core@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-easy-image@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-editor-balloon@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-editor-classic@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-editor-decoupled@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-editor-inline@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-editor-multi-root@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-engine@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-enter@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-essentials@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-find-and-replace@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-font@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-heading@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-highlight@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-horizontal-line@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-html-embed@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-html-support@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-image@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-indent@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-language@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-link@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-list@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-markdown-gfm@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-media-embed@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-mention@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-minimap@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-page-break@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-paragraph@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-paste-from-office@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-remove-format@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-restricted-editing@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-select-all@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-show-blocks@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-source-editing@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-special-characters@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-style@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-table@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-theme-lark@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-typing@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-ui@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-undo@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-upload@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-utils@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-watchdog@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-widget@0.0.0-nightly-20241016.0(transitive)
- Removed@ckeditor/ckeditor5-word-count@0.0.0-nightly-20241016.0(transitive)
- Removedckeditor5@0.0.0-nightly-20241016.0(transitive)