I am new to Ckeditor5 with React and created sample application where I am trying to create custom comment view where user can view/ edit the comment. (refer below screenshot)
Description - We have a editor with comments. As per our requirement we are trying to customize the Comment view, where user can edit the comment in TextArea (later we will going to add few more controls like Input, Input as File) in comment popup as shown below(View and edit mode). We are using vite.config for bundling.
package.json
"devDependencies": {
"@ckeditor/ckeditor5-react": "^9.2.0",
"@vitejs/plugin-react": "^4.0.0",
"ckeditor5": "44.3.0",
"ckeditor5-premium-features": "44.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"vite": "^5.0.0"
},
"dependencies": {
"html-to-text": "^9.0.5"
}
}