Kamil Piechaczek
Kamil Piechaczek
The latest version of the CKEditor 5 Angular component supports [Angular 9.1+](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/angular.html#supported-angular-versions). If it is possible, I would suggest upgrading Angular. In the beginning, you can create a new, simple...
In the React component, we handle all properties except the `#data` one. See: https://github.com/ckeditor/ckeditor5-react/blob/929d4e26bd261bd90d60f2fb0798d0e18e0cf89a/tests/ckeditor.jsx#L335-L357.
Please, share a minimal setup that allows reproducing the problem.
Hi @alirezarayani, could you describe your use case?
> It's impossible to utilize tag in HTML file. The CKEditor 5 Angular component requires the `editor` property. Hence, the provided code is invalid. Not sure it resolves anything, though.
The following change helps: ```diff diff --git a/packages/ckeditor5-table/src/tablewalker.js b/packages/ckeditor5-table/src/tablewalker.js index 4cc18029c6..2b06695f6d 100644 --- a/packages/ckeditor5-table/src/tablewalker.js +++ b/packages/ckeditor5-table/src/tablewalker.js @@ -7,7 +7,8 @@ * @module table/tablewalker */ -// @if CK_DEBUG // import {...
> Check whether tree-shaking would remove such dev utils from a package if they are imported but not used. It works. I followed the steps below: - Update `packages/ckeditor5-table/src/tablewalker.js` with...
☝️ The same scenario happens when I import an external module: ```js import { setData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view'; ```
### Scope * The `Module parse failed: 'import' and 'export' may only appear at the top level` error will not occur if we use `require()` instead of `import`. * We...
Could you describe your problem in more detail? Please include the steps you have already done and the results that have been produced. Also please share your configuration that allows...