Issue #3314483 by el7cosmos, o_tymoshchuk, bkosborne: Add support for CKEditor 5
parent
0051df0d
No related branches found
Tags 3.0.0-alpha1
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- ckeditor_iframe.ckeditor5.yml 15 additions, 0 deletionsckeditor_iframe.ckeditor5.yml
- ckeditor_iframe.info.yml 4 additions, 4 deletionsckeditor_iframe.info.yml
- ckeditor_iframe.install 18 additions, 16 deletionsckeditor_iframe.install
- ckeditor_iframe.libraries.yml 10 additions, 0 deletionsckeditor_iframe.libraries.yml
- config/schema/ckeditor_iframe.schema.yml 11 additions, 0 deletionsconfig/schema/ckeditor_iframe.schema.yml
- css/iframe.admin.css 3 additions, 0 deletionscss/iframe.admin.css
- icons/iframe.svg 1 addition, 0 deletionsicons/iframe.svg
- js/build/iframeembed.js 1 addition, 0 deletionsjs/build/iframeembed.js
- js/ckeditor5_plugins/iframeembed/src/iframeEmbed.js 11 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/iframeEmbed.js
- js/ckeditor5_plugins/iframeembed/src/iframeEmbedEditing.js 57 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/iframeEmbedEditing.js
- js/ckeditor5_plugins/iframeembed/src/iframeEmbedFormView.js 172 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/iframeEmbedFormView.js
- js/ckeditor5_plugins/iframeembed/src/iframeEmbedToolbar.js 210 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/iframeEmbedToolbar.js
- js/ckeditor5_plugins/iframeembed/src/iframeEmbedUI.js 130 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/iframeEmbedUI.js
- js/ckeditor5_plugins/iframeembed/src/iframeEmbedUtils.js 78 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/iframeEmbedUtils.js
- js/ckeditor5_plugins/iframeembed/src/index.js 5 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/index.js
- js/ckeditor5_plugins/iframeembed/src/theme/iframe.css 9 additions, 0 deletionsjs/ckeditor5_plugins/iframeembed/src/theme/iframe.css
- package-lock.json 4684 additions, 0 deletionspackage-lock.json
- package.json 21 additions, 0 deletionspackage.json
- src/Plugin/CKEditor5Plugin/Iframe.php 129 additions, 0 deletionssrc/Plugin/CKEditor5Plugin/Iframe.php
.gitignore
0 → 100644
ckeditor_iframe.ckeditor5.yml
0 → 100644
ckeditor_iframe.libraries.yml
0 → 100644
config/schema/ckeditor_iframe.schema.yml
0 → 100644
css/iframe.admin.css
0 → 100644
icons/iframe.svg
0 → 100644
js/build/iframeembed.js
0 → 100644
This diff is collapsed.
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "drupal-ckeditor5-iframe", | ||
"version": "1.0.0", | ||
"description": "Drupal CKEditor 5 iFrame plugin", | ||
"author": "", | ||
"license": "GPL-2.0-or-later", | ||
"scripts": { | ||
"watch": "webpack --mode development --watch", | ||
"build": "webpack" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-dev-utils": "^30.0.0", | ||
"ckeditor5": "~34.1.0", | ||
"raw-loader": "^4.0.2", | ||
"terser-webpack-plugin": "^5.2.0", | ||
"webpack": "^5.51.1", | ||
"webpack-cli": "^4.4.0", | ||
"css-loader": "5", | ||
"style-loader": "2" | ||
} | ||
} |
src/Plugin/CKEditor5Plugin/Iframe.php
0 → 100644
Please register or sign in to comment