@godxjp/ui 0.1.1 → 0.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/dist/index.d.ts +84 -4
- package/dist/index.js +391 -2
- package/dist/index.js.map +1 -1
- package/package.json +27 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@godxjp/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "TempoFast Design System — React UI components with i18n, translatable fields, and metadata-driven forms/tables.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -45,10 +45,15 @@
|
|
|
45
45
|
"dev": "tsup --watch",
|
|
46
46
|
"type-check": "tsc --noEmit",
|
|
47
47
|
"test": "vitest run",
|
|
48
|
-
"test:watch": "vitest"
|
|
48
|
+
"test:watch": "vitest",
|
|
49
|
+
"storybook": "storybook dev -p 6006",
|
|
50
|
+
"build-storybook": "storybook build"
|
|
49
51
|
},
|
|
50
52
|
"peerDependencies": {
|
|
51
53
|
"@tanstack/react-table": ">=8",
|
|
54
|
+
"@tiptap/pm": ">=3",
|
|
55
|
+
"@tiptap/react": ">=3",
|
|
56
|
+
"@tiptap/starter-kit": ">=3",
|
|
52
57
|
"date-fns": ">=3",
|
|
53
58
|
"react": ">=19",
|
|
54
59
|
"react-dom": ">=19"
|
|
@@ -57,6 +62,15 @@
|
|
|
57
62
|
"@tanstack/react-table": {
|
|
58
63
|
"optional": true
|
|
59
64
|
},
|
|
65
|
+
"@tiptap/pm": {
|
|
66
|
+
"optional": true
|
|
67
|
+
},
|
|
68
|
+
"@tiptap/react": {
|
|
69
|
+
"optional": true
|
|
70
|
+
},
|
|
71
|
+
"@tiptap/starter-kit": {
|
|
72
|
+
"optional": true
|
|
73
|
+
},
|
|
60
74
|
"date-fns": {
|
|
61
75
|
"optional": true
|
|
62
76
|
},
|
|
@@ -104,16 +118,27 @@
|
|
|
104
118
|
"vaul": "1.1.2"
|
|
105
119
|
},
|
|
106
120
|
"devDependencies": {
|
|
121
|
+
"@storybook/addon-a11y": "^10.3.5",
|
|
122
|
+
"@storybook/addon-docs": "^10.3.5",
|
|
123
|
+
"@storybook/react-vite": "^10.3.5",
|
|
124
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
107
125
|
"@tanstack/react-table": "^8.21.3",
|
|
108
126
|
"@testing-library/jest-dom": "^6.9.1",
|
|
109
127
|
"@testing-library/react": "^16.3.2",
|
|
110
128
|
"@testing-library/user-event": "^14.6.1",
|
|
129
|
+
"@tiptap/pm": "^3.22.3",
|
|
130
|
+
"@tiptap/react": "^3.22.3",
|
|
131
|
+
"@tiptap/starter-kit": "^3.22.3",
|
|
111
132
|
"@types/node": "^25.6.0",
|
|
112
133
|
"@types/react": "^19.2.13",
|
|
113
134
|
"@types/react-dom": "^19.2.3",
|
|
135
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
114
136
|
"jsdom": "^28.1.0",
|
|
137
|
+
"storybook": "^10.3.5",
|
|
138
|
+
"tailwindcss": "^4.2.2",
|
|
115
139
|
"tsup": "^8.0.0",
|
|
116
140
|
"typescript": "^5.9.3",
|
|
141
|
+
"vite": "^8.0.8",
|
|
117
142
|
"vitest": "^4.0.18"
|
|
118
143
|
},
|
|
119
144
|
"optionalDependencies": {
|