tinymce-inline-comments 0.1.1 → 0.1.2

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.
@@ -0,0 +1,2 @@
1
+ export { registerInlineComments } from './inlineComments';
2
+ export type { InlineCommentEventPayload } from './types';
@@ -0,0 +1,5 @@
1
+ export type InlineCommentEventPayload = {
2
+ annotationId: string;
3
+ selectedText?: string;
4
+ };
5
+ export declare function registerInlineComments(editor: any): void;
@@ -0,0 +1,4 @@
1
+ export type InlineCommentEventPayload = {
2
+ annotationId: string;
3
+ selectedText?: string;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinymce-inline-comments",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Headless inline comments plugin for TinyMCE",
5
5
  "main": "dist/inline-comments.umd.js",
6
6
  "module": "dist/inline-comments.es.js",
@@ -20,6 +20,7 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "tinymce": "^8.3.1",
23
- "vite": "^7.3.0"
23
+ "vite": "^7.3.0",
24
+ "vite-plugin-dts": "^4.5.4"
24
25
  }
25
26
  }