@graphysdk/react-renderer 0.0.1-alpha.20260714170734 → 0.0.1-alpha.6
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/dist/index.cjs +2 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +6 -95
- package/dist/index.mjs +2492 -2976
- package/package.json +17 -32
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphysdk/react-renderer",
|
|
3
3
|
"author": "Graphy",
|
|
4
|
-
"version": "0.0.1-alpha.
|
|
4
|
+
"version": "0.0.1-alpha.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.css.ts",
|
|
@@ -24,19 +24,6 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@base-ui/react": "^1.3.0",
|
|
26
26
|
"@floating-ui/react-dom": "^2.0.8",
|
|
27
|
-
"@vanilla-extract/css": "^1.17.0",
|
|
28
|
-
"@vanilla-extract/dynamic": "^2.1.2",
|
|
29
|
-
"clsx": "^2.1.1",
|
|
30
|
-
"color2k": "^2.0.3",
|
|
31
|
-
"d3-interpolate-path": "^2.3.0",
|
|
32
|
-
"motion": "^12.23.12",
|
|
33
|
-
"react-colorful": "^5.6.1",
|
|
34
|
-
"react-intl": "^8.1.3",
|
|
35
|
-
"zustand": "^5.0.12",
|
|
36
|
-
"@graphysdk/i18n": "1.7.1",
|
|
37
|
-
"@graphysdk/viz-engine": "0.0.1-alpha.20260714170734"
|
|
38
|
-
},
|
|
39
|
-
"peerDependencies": {
|
|
40
27
|
"@tiptap/core": "^3.0.0",
|
|
41
28
|
"@tiptap/extension-bold": "^3.0.0",
|
|
42
29
|
"@tiptap/extension-document": "^3.0.0",
|
|
@@ -52,6 +39,19 @@
|
|
|
52
39
|
"@tiptap/extensions": "^3.0.0",
|
|
53
40
|
"@tiptap/pm": "^3.0.0",
|
|
54
41
|
"@tiptap/react": "^3.0.0",
|
|
42
|
+
"@vanilla-extract/css": "^1.17.0",
|
|
43
|
+
"@vanilla-extract/dynamic": "^2.1.2",
|
|
44
|
+
"clsx": "^2.1.1",
|
|
45
|
+
"color2k": "^2.0.3",
|
|
46
|
+
"d3-interpolate-path": "^2.3.0",
|
|
47
|
+
"motion": "^12.23.12",
|
|
48
|
+
"react-colorful": "^5.6.1",
|
|
49
|
+
"react-intl": "^8.1.3",
|
|
50
|
+
"zustand": "^5.0.12",
|
|
51
|
+
"@graphysdk/i18n": "1.7.1",
|
|
52
|
+
"@graphysdk/viz-engine": "0.0.1-alpha.6"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
55
|
"react": "^19.0.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
@@ -59,21 +59,6 @@
|
|
|
59
59
|
"@testing-library/jest-dom": "^6.5.0",
|
|
60
60
|
"@testing-library/react": "^16.3.1",
|
|
61
61
|
"@testing-library/user-event": "^13.5.0",
|
|
62
|
-
"@tiptap/core": "^3.0.0",
|
|
63
|
-
"@tiptap/extension-bold": "^3.0.0",
|
|
64
|
-
"@tiptap/extension-document": "^3.0.0",
|
|
65
|
-
"@tiptap/extension-hard-break": "^3.0.0",
|
|
66
|
-
"@tiptap/extension-heading": "^3.0.0",
|
|
67
|
-
"@tiptap/extension-italic": "^3.0.0",
|
|
68
|
-
"@tiptap/extension-link": "^3.0.0",
|
|
69
|
-
"@tiptap/extension-paragraph": "^3.0.0",
|
|
70
|
-
"@tiptap/extension-text": "^3.0.0",
|
|
71
|
-
"@tiptap/extension-text-align": "^3.0.0",
|
|
72
|
-
"@tiptap/extension-text-style": "^3.0.0",
|
|
73
|
-
"@tiptap/extension-underline": "^3.0.0",
|
|
74
|
-
"@tiptap/extensions": "^3.0.0",
|
|
75
|
-
"@tiptap/pm": "^3.0.0",
|
|
76
|
-
"@tiptap/react": "^3.0.0",
|
|
77
62
|
"@types/d3-interpolate-path": "^2.0.3",
|
|
78
63
|
"@types/react": "^19.2.14",
|
|
79
64
|
"@types/react-dom": "^19.2.3",
|
|
@@ -85,10 +70,10 @@
|
|
|
85
70
|
"vite": "^6.4.3",
|
|
86
71
|
"vite-plugin-dts": "^4.5.4",
|
|
87
72
|
"vitest": "^4.1.0",
|
|
88
|
-
"@graphytools/eslint-plugin-graphy": "1.0.0",
|
|
89
73
|
"@graphytools/eslint-config": "0.0.1",
|
|
90
|
-
"@graphytools/
|
|
91
|
-
"@graphytools/
|
|
74
|
+
"@graphytools/typescript-config": "0.0.1",
|
|
75
|
+
"@graphytools/eslint-plugin-graphy": "1.0.0",
|
|
76
|
+
"@graphytools/vitest-config": "1.0.0"
|
|
92
77
|
},
|
|
93
78
|
"lint-staged": {
|
|
94
79
|
"*.{ts,tsx,js,jsx,json,css,md}": [
|