eddyter 1.3.59 → 1.3.61

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 (44) hide show
  1. package/dist/api/ai/aiAgentService.d.ts +44 -0
  2. package/dist/api/ai/index.d.ts +12 -12
  3. package/dist/assets/index.css +1 -0
  4. package/dist/babel-19rkKi7e.js +7157 -0
  5. package/dist/components/FileUpload/InsertFileDialog.d.ts +0 -1
  6. package/dist/components/LinkPreviewHover/index.d.ts +0 -1
  7. package/dist/components/ScopedEditor.d.ts +0 -1
  8. package/dist/components/TextEnhanceDialog/index.d.ts +1 -1
  9. package/dist/components/ui/dropdown-menu.d.ts +3 -3
  10. package/dist/components/ui/skeleton.d.ts +0 -1
  11. package/dist/context/ToolbarContext.d.ts +6 -2
  12. package/dist/editorConfig.d.ts +1 -0
  13. package/dist/estree-DmlwiAu4.js +4453 -0
  14. package/dist/hooks/useModal.d.ts +0 -1
  15. package/dist/{html-3f297a3a.js → html-DtcgJGeD.js} +1097 -1358
  16. package/dist/html2pdf.bundle-BP8K5ERw.js +32961 -0
  17. package/dist/html2pdf.bundle.min-BrDn1HSi.js +20244 -0
  18. package/dist/{index-25fd6b76.js → index-CFq39nnT.js} +17746 -18306
  19. package/dist/{index-940faa12.js → index-CnBHpreC.js} +347 -377
  20. package/dist/{index-1da728d1.js → index-DnHnFalw.js} +8 -38
  21. package/dist/index.js +13 -46
  22. package/dist/{markdown-08edd93b.js → markdown-C2JcxpgA.js} +1374 -1836
  23. package/dist/plugins/AIChatPlugin.d.ts +1 -2
  24. package/dist/plugins/AutocompletePlugin.d.ts +0 -1
  25. package/dist/plugins/CustomHorizontalRulePlugin/CustomHorizontalRulePlugin.d.ts +0 -1
  26. package/dist/plugins/HtmlSyncPlugin.d.ts +0 -1
  27. package/dist/plugins/LinkPreviewPlugin/index.d.ts +0 -1
  28. package/dist/plugins/PasteOptionsPlugin/index.d.ts +0 -1
  29. package/dist/plugins/SignatureCanvasPlugin/SignatureCanvasPlugin.d.ts +0 -1
  30. package/dist/plugins/SlashCommandPlugin/index.d.ts +0 -1
  31. package/dist/plugins/UsageTrackingPlugin.d.ts +0 -1
  32. package/dist/plugins/VoiceTranscriptPlugin.d.ts +1 -1
  33. package/dist/postcss-Banlrd6S.js +4703 -0
  34. package/dist/{standalone-83d5947a.js → standalone-JqHlnZSs.js} +975 -1274
  35. package/dist/types.d.ts +2 -0
  36. package/dist/typescript-D_phonMq.js +12929 -0
  37. package/package.json +7 -5
  38. package/dist/assets/style.css +0 -1
  39. package/dist/babel-2d5b260f.js +0 -7770
  40. package/dist/estree-28f5912a.js +0 -4920
  41. package/dist/html2pdf.bundle-eacf777f.js +0 -34001
  42. package/dist/html2pdf.bundle.min-d9ce156b.js +0 -21964
  43. package/dist/postcss-0e22bc25.js +0 -5187
  44. package/dist/typescript-0559ee85.js +0 -13660
@@ -1,5 +1,5 @@
1
+ import { AIProvider } from '../api/ai/aiAgentService';
1
2
  import { LexicalCommand } from '../../node_modules/lexical';
2
- type AIProvider = 'chatgpt' | 'claude' | 'grok' | 'gemini';
3
3
  export declare const TOGGLE_AI_CHAT_COMMAND: LexicalCommand<string | undefined>;
4
4
  export declare const SHOW_INLINE_AI_PROMPT_COMMAND: LexicalCommand<{
5
5
  provider?: AIProvider;
@@ -8,4 +8,3 @@ export declare const SHOW_INLINE_AI_PROMPT_COMMAND: LexicalCommand<{
8
8
  export default function AIChatPlugin({ apiKey, }: {
9
9
  apiKey?: string;
10
10
  }): JSX.Element | null;
11
- export {};
@@ -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;