@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.
- package/ReadME.md +12 -13
- 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
|
[](https://www.npmjs.com/package/@meenainwal/rich-text-editor)
|
|
4
4
|
[](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
|
|
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
|

|
|
9
9
|
|
|
10
|
-
## ✨ Why Choose This Editor?
|
|
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**
|
|
15
|
-
- **Framework Agnostic**:
|
|
16
|
-
- **Auto-Formatting Magic**: Intelligently parses pasted HTML strings
|
|
17
|
-
- **
|
|
18
|
-
- **Table Support**: Natively insert and style interactive HTML tables
|
|
19
|
-
- **
|
|
20
|
-
- **
|
|
21
|
-
- **
|
|
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
|
|
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"
|