Dawid Urbański

Results 9 comments of Dawid Urbański

Since Angular is not mentioned in the title of this issue, I'm not going to open another one. I've just tried a basic, pristine installation of storybook for HTML and...

@shilman Yes, I'll play around with it and share my thoughts and eventually raise a PR with POC. No promises though.

@victorward @shilman I made a simple POC to add this feature but it's not ideal. First of all, it allows now to set `iframeHeight` to `auto` in storybook `preview.js` parameters....

@shamin Well, using any api related events would be very difficult in this case I think (but I might be wrong). First of all I don't think `STORY_RENDERED` is aware...

Hi @jechazelle, The issue stems from the fact that you are **initializing** the editor in your `app.js` file, whereas in `ckeditor-react` you should leave initialization to the `CKEditor` component. In...

Hard to say, regarding your webpack config, but CKEditor comes with the `CKEditorWebpackPlugin`. Assuming you have such a structure: ``` project-folder -- package.json -- webpack.config.js -- index.js ``` (where index.js...

Also, I just tested your webpack config and it built just fine. ``` ➜ ckeditor node -v v18.12.1 ➜ ckeditor npm -v 8.19.2 ➜ ckeditor yarn -v 1.22.19 ``` index.js...

Hard to say, but from the error message, it looks like the editor class you pass into the `editor` prop does not have the `create` method, which makes me think...

So now you have to debug this on your own. The editor builds, and the exported class should be passed to `editor` prop in `CKEditor` component. You have to make...