@writergate/quill-image-uploader-nextjs 0.1.13 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,5 +33,5 @@
33
33
  }
34
34
 
35
35
  .ql-wg-comment-wrapper{
36
- display: inline !important
36
+ display: inline !important;
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@writergate/quill-image-uploader-nextjs",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/enlear/quill-image-uploader-nextjs.git"
@@ -1,8 +1,8 @@
1
1
  import Quill from "quill";
2
2
 
3
- const BlockBlot = Quill.import("blots/block");
3
+ const InlineBlot = Quill.import("blots/inline");
4
4
 
5
- class CommentBlot extends BlockBlot {
5
+ class CommentBlot extends InlineBlot {
6
6
  /**
7
7
  * @param {string} commentId The comment ID
8
8
  */