reactjs-tiptap-editor 1.0.13 → 1.0.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.
Files changed (1) hide show
  1. package/package.json +14 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "reactjs-tiptap-editor",
3
3
  "type": "module",
4
- "version": "1.0.13",
4
+ "version": "1.0.14",
5
5
  "packageManager": "pnpm@8.15.9",
6
6
  "description": "A modern WYSIWYG rich text editor based on tiptap and shadcn ui for React",
7
7
  "license": "MIT",
@@ -527,6 +527,16 @@
527
527
  "types": "./lib/extensions/Video/index.d.ts",
528
528
  "default": "./lib/Video.js"
529
529
  }
530
+ },
531
+ "./callout": {
532
+ "require": {
533
+ "types": "./lib/extensions/Callout/index.d.ts",
534
+ "default": "./lib/Callout.cjs"
535
+ },
536
+ "import": {
537
+ "types": "./lib/extensions/Callout/index.d.ts",
538
+ "default": "./lib/Callout.js"
539
+ }
530
540
  }
531
541
  },
532
542
  "typesVersions": {
@@ -675,6 +685,9 @@
675
685
  ],
676
686
  "./video": [
677
687
  "./lib/extensions/Video/index.d.ts"
688
+ ],
689
+ "./callout": [
690
+ "./lib/extensions/Callout/index.d.ts"
678
691
  ]
679
692
  }
680
693
  },