tiptap-editor-codeveda 0.1.2 → 0.1.4
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 +22 -0
- package/package.json +23 -1
package/README.md
CHANGED
|
@@ -13,6 +13,28 @@ A powerful, feature-rich rich text editor built with Tiptap and React. This pack
|
|
|
13
13
|
- **TypeScript**: Full TypeScript support with type definitions
|
|
14
14
|
- **Read-only Mode**: Viewer component for displaying content
|
|
15
15
|
|
|
16
|
+
# 📸 Screenshots
|
|
17
|
+
|
|
18
|
+
**If you are checking it on npm page and images not showing please check on github**
|
|
19
|
+
|
|
20
|
+
### Main Toolbar, Debug Panel and Action Buttons
|
|
21
|
+
|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
### Titles, Lists and Table
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
### Code, Accordion and Iframe
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
|
|
32
|
+
_Image and video upload functionality with Firebase integration_
|
|
33
|
+
|
|
34
|
+
### Block, Tabs and Images
|
|
35
|
+
|
|
36
|
+

|
|
37
|
+
|
|
16
38
|
## 📦 Installation
|
|
17
39
|
|
|
18
40
|
```bash
|
package/package.json
CHANGED
|
@@ -1,8 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tiptap-editor-codeveda",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.4",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"description": "A powerful, feature-rich WYSIWYG editor built with Tiptap, React, and TypeScript",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"tiptap",
|
|
9
|
+
"editor",
|
|
10
|
+
"wysiwyg",
|
|
11
|
+
"react",
|
|
12
|
+
"typescript",
|
|
13
|
+
"rich-text",
|
|
14
|
+
"firebase",
|
|
15
|
+
"table",
|
|
16
|
+
"media-upload"
|
|
17
|
+
],
|
|
18
|
+
"author": "Codeveda Team",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/bhaskardas090/tiptap-editor-codeveda"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/bhaskardas090/tiptap-editor-codeveda",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/bhaskardas090/tiptap-editor-codeveda/issues"
|
|
27
|
+
},
|
|
6
28
|
"scripts": {
|
|
7
29
|
"dev": "vite",
|
|
8
30
|
"build": "tsc -b && vite build",
|