@underverse-ui/underverse 1.0.37 → 1.0.38
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 +7 -7
- package/api-reference.json +339 -194
- package/dist/index.cjs +17271 -16948
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1009 -26
- package/dist/index.d.ts +1009 -26
- package/dist/index.js +17293 -16972
- package/dist/index.js.map +1 -1
- package/package.json +33 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@underverse-ui/underverse",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Underverse UI – reusable React/Next.js UI components",
|
|
6
6
|
"type": "module",
|
|
@@ -36,28 +36,32 @@
|
|
|
36
36
|
"sideEffects": false,
|
|
37
37
|
"scripts": {
|
|
38
38
|
"dev": "tsup --config tsup.config.ts --watch",
|
|
39
|
+
"typecheck": "tsc -p tsconfig.tsup.json --noEmit --incremental false",
|
|
39
40
|
"generate:api": "node ./scripts/generate-api-reference.mjs",
|
|
40
41
|
"verify:agent-metadata": "npm run generate:api && node ./scripts/verify-agent-metadata.mjs",
|
|
41
42
|
"test:overlay-scrollbar": "node --test --experimental-strip-types ./tests/overlay-scrollbar-provider.test.mjs",
|
|
42
|
-
"
|
|
43
|
+
"test:data-table": "node --test --experimental-strip-types ./tests/data-table-sticky.test.mjs",
|
|
44
|
+
"test:data-table-deep": "node --test --experimental-strip-types ./tests/data-table-headers-validation.test.mjs",
|
|
45
|
+
"test:data-table-ui": "node --test ./tests/data-table.interaction.test.mjs",
|
|
46
|
+
"test:calendar-timeline": "node --test --experimental-strip-types ./tests/calendar-timeline-model.test.mjs",
|
|
47
|
+
"test:calendar-timeline-deep": "node --test --experimental-strip-types ./tests/calendar-timeline-date-layout.test.mjs",
|
|
48
|
+
"test:calendar-timeline-ui": "node --test ./tests/calendar-timeline.interaction.test.mjs",
|
|
49
|
+
"test:ueditor-deep": "node --test --experimental-strip-types ./tests/ueditor-prepare-content.test.mjs",
|
|
50
|
+
"test:ueditor-ui": "node --test ./tests/ueditor.interaction.test.mjs",
|
|
51
|
+
"test:public-api": "node --test ./tests/public-api-smoke.test.mjs",
|
|
52
|
+
"test:components-smoke": "node --test ./tests/components-smoke.test.mjs",
|
|
53
|
+
"test:smoke": "npm run test:public-api && npm run test:components-smoke",
|
|
54
|
+
"build": "npm run typecheck && npm run check:boundaries && npm run generate:api && tsup --config tsup.config.ts",
|
|
43
55
|
"clean": "rimraf dist",
|
|
44
56
|
"prepublishOnly": "npm run clean && npm run build",
|
|
45
57
|
"release": "node ./scripts/release.mjs",
|
|
46
58
|
"release:patch": "node ./scripts/release.mjs patch",
|
|
47
59
|
"release:minor": "node ./scripts/release.mjs minor",
|
|
48
|
-
"release:major": "node ./scripts/release.mjs major"
|
|
60
|
+
"release:major": "node ./scripts/release.mjs major",
|
|
61
|
+
"check:boundaries": "node ../../scripts/check-package-boundaries.mjs"
|
|
49
62
|
},
|
|
50
63
|
"peerDependencies": {
|
|
51
|
-
"react": ">=18",
|
|
52
|
-
"react-dom": ">=18",
|
|
53
|
-
"next": ">=13",
|
|
54
|
-
"next-intl": ">=4",
|
|
55
|
-
"overlayscrollbars": ">=2",
|
|
56
|
-
"lucide-react": ">=0.400.0",
|
|
57
|
-
"class-variance-authority": ">=0.7.0",
|
|
58
|
-
"react-hook-form": ">=7.0.0",
|
|
59
64
|
"@hookform/resolvers": ">=3.0.0",
|
|
60
|
-
"zod": ">=3.0.0",
|
|
61
65
|
"@tiptap/core": "^2.0.0 || ^3.0.0",
|
|
62
66
|
"@tiptap/extension-blockquote": "^2.0.0 || ^3.0.0",
|
|
63
67
|
"@tiptap/extension-bold": "^2.0.0 || ^3.0.0",
|
|
@@ -103,17 +107,25 @@
|
|
|
103
107
|
"@tiptap/react": "^2.0.0 || ^3.0.0",
|
|
104
108
|
"@tiptap/suggestion": "^2.0.0 || ^3.0.0",
|
|
105
109
|
"@types/tippy.js": "^6.3.0",
|
|
110
|
+
"class-variance-authority": ">=0.7.0",
|
|
106
111
|
"lowlight": "^3.0.0 || ^4.0.0",
|
|
107
|
-
"
|
|
112
|
+
"lucide-react": ">=0.400.0",
|
|
113
|
+
"next": ">=13",
|
|
114
|
+
"next-intl": ">=4",
|
|
115
|
+
"overlayscrollbars": ">=2",
|
|
116
|
+
"react": ">=18",
|
|
117
|
+
"react-dom": ">=18",
|
|
118
|
+
"react-hook-form": ">=7.0.0",
|
|
119
|
+
"tippy.js": "^6.3.7",
|
|
120
|
+
"zod": ">=3.0.0"
|
|
108
121
|
},
|
|
109
122
|
"dependencies": {
|
|
110
123
|
"clsx": "^2.1.1",
|
|
111
124
|
"tailwind-merge": "^3.3.0"
|
|
112
125
|
},
|
|
113
126
|
"devDependencies": {
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"rimraf": "^6.0.1",
|
|
127
|
+
"@testing-library/react": "^16.3.2",
|
|
128
|
+
"@testing-library/user-event": "^14.6.1",
|
|
117
129
|
"@tiptap/core": "^3.16.0",
|
|
118
130
|
"@tiptap/extension-blockquote": "^3.16.0",
|
|
119
131
|
"@tiptap/extension-bold": "^3.16.0",
|
|
@@ -159,8 +171,12 @@
|
|
|
159
171
|
"@tiptap/react": "^3.16.0",
|
|
160
172
|
"@tiptap/suggestion": "^3.17.0",
|
|
161
173
|
"@types/tippy.js": "^6.3.0",
|
|
174
|
+
"jsdom": "^28.1.0",
|
|
162
175
|
"lowlight": "^3.3.0",
|
|
163
|
-
"
|
|
176
|
+
"rimraf": "^6.0.1",
|
|
177
|
+
"tippy.js": "^6.3.7",
|
|
178
|
+
"tsup": "^8.3.0",
|
|
179
|
+
"typescript": "^5.6.3"
|
|
164
180
|
},
|
|
165
181
|
"engines": {
|
|
166
182
|
"node": ">=18"
|