eddyter 1.4.9 → 1.4.11
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.
- package/README.md +13 -1
- package/dist/Provider/EditorProvider.d.ts +2 -0
- package/dist/api/auth.d.ts +2 -0
- package/dist/assets/style.css +1 -1
- package/dist/{generateDocxThumbnail-C-ncaF7K.js → generateDocxThumbnail-sE1G5G6C.js} +1 -1
- package/dist/{generatePdfThumbnail-3ltsGn6c.js → generatePdfThumbnail-BcT_cjxm.js} +1 -1
- package/dist/{generateXlsxThumbnail-D7WwiJyR.js → generateXlsxThumbnail-nCbKlvf2.js} +1 -1
- package/dist/{html2pdf.bundle.min-clbInSdL.js → html2pdf.bundle.min-D4m3s3b2.js} +1 -1
- package/dist/{index-oIJfc57t.js → index-CkMNlf2-.js} +14487 -14370
- package/dist/{index-DvjIQ7q3.js → index-Ct4lYZ_n.js} +746 -731
- package/dist/{index-BoaegKBH.js → index-DpFqIrjJ.js} +1 -1
- package/dist/{index-C2wTHo-G.js → index-DwmEaul2.js} +4 -4
- package/dist/index.js +1 -1
- package/dist/ui/Icons.d.ts +4 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Eddyter
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/eddyter)
|
|
4
|
+
[](https://www.npmjs.com/package/eddyter)
|
|
5
|
+
[](https://bundlephobia.com/package/eddyter)
|
|
6
|
+
|
|
7
|
+
Plug and Play AI Rich Text Editor for any website, blog, CRM, ERP, or web app — built on [Lexical](https://lexical.dev/) with dark mode support and API key authentication.
|
|
8
|
+
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
## Resources
|
|
12
|
+
|
|
13
|
+
- [Docs](https://eddyter.com/docs) — Full API reference and integration guides
|
|
14
|
+
- [What is Eddyter? Why Developers Are Switching to This AI Editor (2026)](https://youtu.be/oNHBa-DImZc) — YouTube
|
|
15
|
+
- [Integrate Eddyter in 30 Minutes Using AI Tools Cursor, Claude, Lovable](https://youtu.be/5lTjRFjUWgs) — YouTube
|
|
4
16
|
|
|
5
17
|
## Installation
|
|
6
18
|
|
|
@@ -36,6 +36,8 @@ interface EditorContextType {
|
|
|
36
36
|
isByokPlan: boolean;
|
|
37
37
|
/** When isByokPlan, which provider keys the user has (used to restrict AI/voice features) */
|
|
38
38
|
byokApiKeys: ByokApiKeys | null;
|
|
39
|
+
/** When true, editor hides Eddyter branding/logo (admin toggle per-plan). */
|
|
40
|
+
hideBranding: boolean;
|
|
39
41
|
}
|
|
40
42
|
export declare const useEditor: () => EditorContextType;
|
|
41
43
|
export declare const useEditorOptional: () => EditorContextType | undefined;
|
package/dist/api/auth.d.ts
CHANGED
|
@@ -117,6 +117,8 @@ export interface ProjectData {
|
|
|
117
117
|
hasAssemblyaiKey: boolean;
|
|
118
118
|
hasGeminiKey: boolean;
|
|
119
119
|
};
|
|
120
|
+
/** When true, editor hides Eddyter branding/logo for users on this plan (admin toggle per-plan). */
|
|
121
|
+
hideBranding?: boolean;
|
|
120
122
|
}
|
|
121
123
|
export interface ApiResponse {
|
|
122
124
|
success: boolean;
|