eddyter 1.3.60 → 1.3.62

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 (37) hide show
  1. package/dist/api/ai/index.d.ts +12 -12
  2. package/dist/assets/index.css +1 -0
  3. package/dist/{babel-44680aef.js → babel-B9hn44Wo.js} +2107 -2683
  4. package/dist/components/FileUpload/InsertFileDialog.d.ts +0 -1
  5. package/dist/components/LinkPreviewHover/index.d.ts +0 -1
  6. package/dist/components/ScopedEditor.d.ts +0 -1
  7. package/dist/components/ui/dropdown-menu.d.ts +3 -3
  8. package/dist/components/ui/skeleton.d.ts +0 -1
  9. package/dist/context/ToolbarContext.d.ts +6 -2
  10. package/dist/{estree-a7dc9ac5.js → estree-CocPn_Md.js} +1830 -2226
  11. package/dist/hooks/useModal.d.ts +0 -1
  12. package/dist/{html-f2fcab26.js → html-CxCicOef.js} +979 -1223
  13. package/dist/html2pdf.bundle-DNyY_rJA.js +32961 -0
  14. package/dist/html2pdf.bundle.min-GfQzEXnM.js +20244 -0
  15. package/dist/{index-98d915c4.js → index-BoOSmKss.js} +347 -378
  16. package/dist/{index-e3302f38.js → index-CIBuU2Zv.js} +14448 -15269
  17. package/dist/{index-8889e1ba.js → index-YHNm3bIK.js} +8 -39
  18. package/dist/index.js +13 -47
  19. package/dist/{markdown-48d2f5f1.js → markdown-BUjgWFLu.js} +1466 -1908
  20. package/dist/plugins/AutocompletePlugin.d.ts +0 -1
  21. package/dist/plugins/CustomHorizontalRulePlugin/CustomHorizontalRulePlugin.d.ts +0 -1
  22. package/dist/plugins/HtmlSyncPlugin.d.ts +0 -1
  23. package/dist/plugins/LinkPreviewPlugin/index.d.ts +0 -1
  24. package/dist/plugins/PasteOptionsPlugin/index.d.ts +0 -1
  25. package/dist/plugins/SignatureCanvasPlugin/SignatureCanvasPlugin.d.ts +0 -1
  26. package/dist/plugins/SlashCommandPlugin/index.d.ts +0 -1
  27. package/dist/plugins/UsageTrackingPlugin.d.ts +0 -1
  28. package/dist/plugins/VoiceTranscriptPlugin.d.ts +1 -1
  29. package/dist/postcss-CGIcwj_g.js +4717 -0
  30. package/dist/{standalone-2029bc8b.js → standalone-C0qguT38.js} +988 -1244
  31. package/dist/typescript-BM7wk6k-.js +12922 -0
  32. package/package.json +6 -6
  33. package/dist/assets/style.css +0 -1
  34. package/dist/html2pdf.bundle-519d30c0.js +0 -34001
  35. package/dist/html2pdf.bundle.min-8451fd59.js +0 -21964
  36. package/dist/postcss-9ac167c3.js +0 -5172
  37. package/dist/typescript-bd1bb88f.js +0 -13632
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export interface AutocompleteOption {
3
2
  displayText: string;
4
3
  key: string;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  declare const CustomHorizontalRulePlugin: React.FC;
3
2
  export default CustomHorizontalRulePlugin;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  declare const HtmlSyncPlugin: React.FC;
3
2
  export default HtmlSyncPlugin;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export default function LinkPreviewPlugin({ apiKey }: {
3
2
  apiKey?: string;
4
3
  }): JSX.Element | null;
@@ -13,5 +13,4 @@
13
13
  * - Pressing Escape
14
14
  * - Starting to type
15
15
  */
16
- /// <reference types="react" />
17
16
  export default function PasteOptionsPlugin(): JSX.Element | null;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type SignaturePayload = {
3
2
  src: string;
4
3
  userName?: string;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export default function SlashCommandPlugin(): JSX.Element | null;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface UsageTrackingPluginProps {
3
2
  licenseKey?: string;
4
3
  syncIntervalMs?: number;
@@ -19,7 +19,7 @@ export declare const useVoiceRecording: (apiKey?: string, language?: string) =>
19
19
  };
20
20
  export declare const VoiceTranscriptButton: ({ editor, apiKey }: {
21
21
  editor: any;
22
- apiKey?: string | undefined;
22
+ apiKey?: string;
23
23
  }) => import("react/jsx-runtime").JSX.Element;
24
24
  declare const VoiceTranscriptPlugin: () => import("react/jsx-runtime").JSX.Element;
25
25
  export default VoiceTranscriptPlugin;