tetrons 2.1.9 → 2.2.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 +36 -36
- package/dist/app/layout.d.ts +1 -0
- package/dist/app/layout.jsx +4 -4
- package/dist/app/page.d.ts +1 -0
- package/dist/app/page.jsx +4 -4
- package/dist/components/tetrons/EditorContent.jsx +21 -21
- package/dist/components/tetrons/ResizableImageComponent.jsx +3 -3
- package/dist/components/tetrons/ResizableVideoComponent.jsx +2 -2
- package/dist/components/tetrons/toolbar/ActionGroup.jsx +31 -31
- package/dist/components/tetrons/toolbar/ClipboardGroup.jsx +5 -5
- package/dist/components/tetrons/toolbar/FileGroup.jsx +4 -4
- package/dist/components/tetrons/toolbar/FontStyleGroup.jsx +42 -42
- package/dist/components/tetrons/toolbar/InsertGroup.jsx +26 -26
- package/dist/components/tetrons/toolbar/ListAlignGroup.jsx +9 -9
- package/dist/components/tetrons/toolbar/MiscGroup.jsx +16 -16
- package/dist/components/tetrons/toolbar/TableContextMenu.jsx +19 -19
- package/dist/components/tetrons/toolbar/TetronsToolbar.jsx +17 -17
- package/dist/components/tetrons/toolbar/ToolbarButton.jsx +2 -2
- package/dist/index.d.mts +5 -5
- package/dist/index.mjs +17217 -17214
- package/package.json +77 -77
- package/dist/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tetrons",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "A Next.js project written in TypeScript",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"dev": "next dev --turbo",
|
|
9
|
-
"build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist",
|
|
10
|
-
"start": "next start",
|
|
11
|
-
"lint": "next lint"
|
|
12
|
-
},
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"@emoji-mart/react": "^1.1.1",
|
|
15
|
-
"@tiptap/extension-code-block-lowlight": "^2.14.0",
|
|
16
|
-
"@tiptap/extension-color": "^2.14.0",
|
|
17
|
-
"@tiptap/extension-highlight": "^2.14.0",
|
|
18
|
-
"@tiptap/extension-image": "^2.14.0",
|
|
19
|
-
"@tiptap/extension-link": "^2.14.0",
|
|
20
|
-
"@tiptap/extension-table": "^2.14.0",
|
|
21
|
-
"@tiptap/extension-table-cell": "^2.14.0",
|
|
22
|
-
"@tiptap/extension-table-header": "^2.14.0",
|
|
23
|
-
"@tiptap/extension-table-row": "^2.14.0",
|
|
24
|
-
"@tiptap/extension-text-align": "^2.14.0",
|
|
25
|
-
"@tiptap/extension-underline": "^2.14.0",
|
|
26
|
-
"@tiptap/react": "^2.12.0",
|
|
27
|
-
"@tiptap/starter-kit": "^2.12.0",
|
|
28
|
-
"docx": "^9.5.0",
|
|
29
|
-
"dom-to-pdf": "^0.3.2",
|
|
30
|
-
"html2pdf.js": "^0.10.3",
|
|
31
|
-
"lowlight": "^3.3.0",
|
|
32
|
-
"react-icons": "^5.5.0"
|
|
33
|
-
},
|
|
34
|
-
"peerDependencies": {
|
|
35
|
-
"next": "^15.3.2",
|
|
36
|
-
"react": ">=18.3.1 <20",
|
|
37
|
-
"react-dom": ">=18.3.1 <20"
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@eslint/eslintrc": "^3",
|
|
41
|
-
"@tailwindcss/postcss": "^4",
|
|
42
|
-
"@types/node": "^20",
|
|
43
|
-
"@types/react": "^19",
|
|
44
|
-
"@types/react-dom": "^19",
|
|
45
|
-
"eslint": "^9",
|
|
46
|
-
"eslint-config-next": "^15.3.2",
|
|
47
|
-
"tailwindcss": "^4",
|
|
48
|
-
"tsup": "^8.5.0",
|
|
49
|
-
"typescript": "^5"
|
|
50
|
-
},
|
|
51
|
-
"repository": {
|
|
52
|
-
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/your-repo/tetrons.git"
|
|
54
|
-
},
|
|
55
|
-
"keywords": [
|
|
56
|
-
"nextjs",
|
|
57
|
-
"typescript",
|
|
58
|
-
"react",
|
|
59
|
-
"web"
|
|
60
|
-
],
|
|
61
|
-
"author": "Your Name",
|
|
62
|
-
"license": "MIT",
|
|
63
|
-
"exports": {
|
|
64
|
-
".": {
|
|
65
|
-
"import": "./dist/index.js",
|
|
66
|
-
"require": "./dist/index.js",
|
|
67
|
-
"types": "./dist/index.d.ts"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"files": [
|
|
71
|
-
"dist"
|
|
72
|
-
],
|
|
73
|
-
"bugs": {
|
|
74
|
-
"url": "https://github.com/your-repo/tetrons/issues"
|
|
75
|
-
},
|
|
76
|
-
"homepage": "https://github.com/your-repo/tetrons#readme"
|
|
77
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tetrons",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "A Next.js project written in TypeScript",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "next dev --turbo",
|
|
9
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist",
|
|
10
|
+
"start": "next start",
|
|
11
|
+
"lint": "next lint"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@emoji-mart/react": "^1.1.1",
|
|
15
|
+
"@tiptap/extension-code-block-lowlight": "^2.14.0",
|
|
16
|
+
"@tiptap/extension-color": "^2.14.0",
|
|
17
|
+
"@tiptap/extension-highlight": "^2.14.0",
|
|
18
|
+
"@tiptap/extension-image": "^2.14.0",
|
|
19
|
+
"@tiptap/extension-link": "^2.14.0",
|
|
20
|
+
"@tiptap/extension-table": "^2.14.0",
|
|
21
|
+
"@tiptap/extension-table-cell": "^2.14.0",
|
|
22
|
+
"@tiptap/extension-table-header": "^2.14.0",
|
|
23
|
+
"@tiptap/extension-table-row": "^2.14.0",
|
|
24
|
+
"@tiptap/extension-text-align": "^2.14.0",
|
|
25
|
+
"@tiptap/extension-underline": "^2.14.0",
|
|
26
|
+
"@tiptap/react": "^2.12.0",
|
|
27
|
+
"@tiptap/starter-kit": "^2.12.0",
|
|
28
|
+
"docx": "^9.5.0",
|
|
29
|
+
"dom-to-pdf": "^0.3.2",
|
|
30
|
+
"html2pdf.js": "^0.10.3",
|
|
31
|
+
"lowlight": "^3.3.0",
|
|
32
|
+
"react-icons": "^5.5.0"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"next": "^15.3.2",
|
|
36
|
+
"react": ">=18.3.1 <20",
|
|
37
|
+
"react-dom": ">=18.3.1 <20"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@eslint/eslintrc": "^3",
|
|
41
|
+
"@tailwindcss/postcss": "^4",
|
|
42
|
+
"@types/node": "^20",
|
|
43
|
+
"@types/react": "^19",
|
|
44
|
+
"@types/react-dom": "^19",
|
|
45
|
+
"eslint": "^9",
|
|
46
|
+
"eslint-config-next": "^15.3.2",
|
|
47
|
+
"tailwindcss": "^4",
|
|
48
|
+
"tsup": "^8.5.0",
|
|
49
|
+
"typescript": "^5"
|
|
50
|
+
},
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/your-repo/tetrons.git"
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"nextjs",
|
|
57
|
+
"typescript",
|
|
58
|
+
"react",
|
|
59
|
+
"web"
|
|
60
|
+
],
|
|
61
|
+
"author": "Your Name",
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"exports": {
|
|
64
|
+
".": {
|
|
65
|
+
"import": "./dist/index.js",
|
|
66
|
+
"require": "./dist/index.js",
|
|
67
|
+
"types": "./dist/index.d.ts"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"files": [
|
|
71
|
+
"dist"
|
|
72
|
+
],
|
|
73
|
+
"bugs": {
|
|
74
|
+
"url": "https://github.com/your-repo/tetrons/issues"
|
|
75
|
+
},
|
|
76
|
+
"homepage": "https://github.com/your-repo/tetrons#readme"
|
|
77
|
+
}
|