@meenainwal/rich-text-editor 1.0.9 → 1.1.0

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 (2) hide show
  1. package/ReadME.md +12 -13
  2. package/package.json +11 -4
package/ReadME.md CHANGED
@@ -1,25 +1,24 @@
1
- # @meenainwal/rich-text-editor 🚀
1
+ # @meenainwal/rich-text-editor 🚀 | Premium WYSIWYG Editor
2
2
 
3
3
  [![NPM Downloads](https://img.shields.io/npm/dw/@meenainwal/rich-text-editor.svg)](https://www.npmjs.com/package/@meenainwal/rich-text-editor)
4
4
  [![NPM Version](https://img.shields.io/npm/v/@meenainwal/rich-text-editor.svg)](https://www.npmjs.com/package/@meenainwal/rich-text-editor)
5
5
 
6
- A premium, ultra-lightweight, framework-agnostic rich text editor built entirely with Vanilla TypeScript. Featuring a sophisticated **Slate & Indigo** design system, it provides a flawless writing experience out-of-the-box.
6
+ A premium, ultra-lightweight, and framework-agnostic **WYSIWYG rich text editor** built entirely with Vanilla TypeScript. Featuring a sophisticated **Slate & Indigo** design system, it provides a flawless writing experience for React, Next.js, and modern web applications.
7
7
 
8
8
  ![Editor Preview](./images/editor-preview.png)
9
9
 
10
- ## ✨ Why Choose This Editor? (Pros & Cons)
10
+ ## ✨ Premium Features & Why Choose This Editor?
11
11
 
12
- ### 👍 Pros
12
+ ### 👍 Key Pros & Capabilities
13
13
  - **Zero Dependencies**: Pure Vanilla JS/TypeScript. No bloated third-party libraries.
14
- - **Microscopic Footprint**: Only **~25kB** compressed (Gzipped), meaning zero impact on your site's load time.
15
- - **Framework Agnostic**: Drop it into React, Vue, Angular, Svelte, or plain HTML projects seamlessly.
16
- - **Auto-Formatting Magic**: Intelligently parses pasted HTML strings automatically into perfectly formatted rich text.
17
- - **Beautiful UI**: Modern aesthetics curated with a polished Slate & Indigo color palette, smooth transitions, and dynamic SVG icons.
18
- - **Table Support**: Natively insert and style interactive HTML tables with ease.
19
- - **Micro-Animations**: Subtle, premium transitions for tooltips, pickers, and status updates.
20
- - **Local Image Uploads**: Natively integrates with the OS file picker for rapid inline base64 image insertions.
21
- - **Flexible Styling**: Full control over font families, complex line heights, text colors, and highlighting.
22
- - **Customizable Toolbar**: Full control over which tools are visible to the user.
14
+ - **Microscopic Footprint**: Only **~25kB** gzipped, making it one of the most lightweight editors available.
15
+ - **Framework Agnostic**: Native support for **React**, **Next.js**, **Vue**, **Angular**, and **Svelte**.
16
+ - **Auto-Formatting Magic**: Intelligently parses pasted HTML strings into clean, formatted rich text.
17
+ - **Professional UI/UX**: Modern aesthetics curated with a polished Slate & Indigo color palette.
18
+ - **Table Support**: Natively insert and style interactive HTML tables.
19
+ - **Emoji Picker**: Integrated searchable emoji library for expressive content.
20
+ - **Dark Mode**: Sophisticated dark theme for premium developer experiences.
21
+ - **Customizable Toolbar**: Granular control over tool visibility and layout.
23
22
 
24
23
  ### 👎 Cons (Current Limitations)
25
24
  - Base64 image storage can increase the raw output string size for very large images (Backend S3 uploading adapter coming soon).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meenainwal/rich-text-editor",
3
- "version": "1.0.9",
4
- "description": "A premium, lightweight, and framework-agnostic rich text editor with a sophisticated Slate & Indigo design.",
3
+ "version": "1.1.0",
4
+ "description": "A premium, lightweight, and framework-agnostic WYSIWYG rich text editor with a sophisticated Slate & Indigo design. Highly customizable and optimized for React, Next.js, and Vanilla TypeScript.",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -43,13 +43,20 @@
43
43
  "vanilla-js",
44
44
  "typescript",
45
45
  "premium-ui",
46
- "contenteditable"
46
+ "contenteditable",
47
+ "react-editor",
48
+ "nextjs-editor",
49
+ "customizable-toolbar",
50
+ "table-editor",
51
+ "emoji-picker",
52
+ "dark-mode",
53
+ "lightweight-editor"
47
54
  ],
48
55
  "author": "Anuj Nainwal",
49
56
  "license": "MIT",
50
57
  "repository": {
51
58
  "type": "git",
52
- "url": "https://github.com/anujnainwal/rich-text-editor.git"
59
+ "url": "git+https://github.com/anujnainwal/rich-text-editor.git"
53
60
  },
54
61
  "bugs": {
55
62
  "url": "https://github.com/anujnainwal/rich-text-editor/issues"