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 CHANGED
@@ -1,6 +1,18 @@
1
1
  # Eddyter
2
2
 
3
- A powerful, configurable rich text editor built on [Lexical](https://lexical.dev/) with AI capabilities, dark mode support, and API key authentication.
3
+ [![npm version](https://img.shields.io/npm/v/eddyter.svg)](https://www.npmjs.com/package/eddyter)
4
+ [![npm downloads](https://img.shields.io/npm/dw/eddyter.svg)](https://www.npmjs.com/package/eddyter)
5
+ [![Bundle Size](https://img.shields.io/bundlephobia/minzip/eddyter)](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
+ ![Eddyter Editor](https://dsckj64r0usqg.cloudfront.net/assets/seo-screen.png)
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;
@@ -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;