@work-rjkashyap/unified-ui 0.3.6 → 0.3.7
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/CHANGELOG.md +56 -0
- package/package.json +124 -32
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
### 🐛 Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **build:** Append .mjs/.cjs extensions to relative imports in post-build (#26) ([#26](https://github.com/imrj05/unified-ui/issues/26)) ([097be6d](https://github.com/imrj05/unified-ui/commit/097be6d1f65ab2a1333f87275a20485f696b3cac))
|
|
14
|
+
|
|
15
|
+
### Other
|
|
16
|
+
|
|
17
|
+
- Bump @work-rjkashyap/unified-ui to v0.3.6 ([cb2d748](https://github.com/imrj05/unified-ui/commit/cb2d748b2225d03c308d5f46afb1bdec6ca6057b))
|
|
18
|
+
- Revert ".github/workflows: Migrate workflows to Blacksmith runners (#24)" (#25)
|
|
19
|
+
|
|
20
|
+
This reverts commit 6a3be7318fe805253461737ab05f7792e97bf3ca. ([#24](https://github.com/imrj05/unified-ui/issues/24), [#25](https://github.com/imrj05/unified-ui/issues/25)) ([28bf45a](https://github.com/imrj05/unified-ui/commit/28bf45a0fb6fe70e0ad8d6252e9beabc931a38fa))
|
|
21
|
+
- Migrate workflows to Blacksmith runners (#24)
|
|
22
|
+
* Migrate workflows to Blacksmith
|
|
23
|
+
|
|
24
|
+
* Migrate workflows to Blacksmith
|
|
25
|
+
|
|
26
|
+
--------- ([#24](https://github.com/imrj05/unified-ui/issues/24)) ([6a3be73](https://github.com/imrj05/unified-ui/commit/6a3be7318fe805253461737ab05f7792e97bf3ca))
|
|
27
|
+
- Bump @work-rjkashyap/unified-ui to v0.3.5 (#23) ([#23](https://github.com/imrj05/unified-ui/issues/23)) ([a2bf227](https://github.com/imrj05/unified-ui/commit/a2bf2272646dd6048ef7c50e035c7271f1a32303))
|
|
28
|
+
- Update package.json repository and issues URLs (#22) ([#22](https://github.com/imrj05/unified-ui/issues/22)) ([c67990b](https://github.com/imrj05/unified-ui/commit/c67990bc8cc6d5902a3baecd9b7db8cff258fcfa))
|
|
29
|
+
## [0.3.5] — 2026-03-15
|
|
30
|
+
|
|
11
31
|
### 🚀 Features
|
|
12
32
|
|
|
13
33
|
- **docs:** Add motion preset previews (#13)
|
|
@@ -20,6 +40,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
20
40
|
* Update content/docs/motion.mdx ([#11](https://github.com/imrj05/unified-ui/issues/11)) ([ceb9fed](https://github.com/imrj05/unified-ui/commit/ceb9fed3307003cbf575b55178f4bd3b5fc941b3))
|
|
21
41
|
- Add new color tokens (indigo, purple, pink, cyan, emerald, yellow, fuchsia, sky, lime) to the design system ([2eafdc1](https://github.com/imrj05/unified-ui/commit/2eafdc1c3a3f29ea8abaaa93c1b4cf5eea74acb4))
|
|
22
42
|
|
|
43
|
+
### 🐛 Bug Fixes
|
|
44
|
+
|
|
45
|
+
- **ci:** Fix test typecheck and changelog workflow failures
|
|
46
|
+
test workflow:
|
|
47
|
+
- Add 'next typegen' step before tsc --noEmit so that
|
|
48
|
+
.next/types/routes.d.ts (PageProps, RouteContext) exists
|
|
49
|
+
at typecheck time — these types are generated by Next.js
|
|
50
|
+
at dev/build time and are not committed to the repo
|
|
51
|
+
|
|
52
|
+
changelog workflow:
|
|
53
|
+
- Branch protection on main blocks direct pushes; push the
|
|
54
|
+
changelog update to ci/changelog-update branch instead
|
|
55
|
+
- Add continue-on-error so a changelog push failure never
|
|
56
|
+
blocks the main CI signal
|
|
57
|
+
- Force-reset ci/changelog-update to origin/main before
|
|
58
|
+
committing so it is always fast-forwardable ([cebf6e1](https://github.com/imrj05/unified-ui/commit/cebf6e11a107b593acb680b65b52aaa544042b1d))
|
|
59
|
+
- **ci:** Commit changelog directly to main instead of opening a PR
|
|
60
|
+
GITHUB_TOKEN cannot create pull requests unless
|
|
61
|
+
'Allow GitHub Actions to create and approve pull requests'
|
|
62
|
+
is explicitly enabled in the repo settings (Settings →
|
|
63
|
+
Actions → General → Workflow permissions).
|
|
64
|
+
|
|
65
|
+
Replacing peter-evans/create-pull-request with a plain
|
|
66
|
+
git commit + push so the changelog workflow succeeds without
|
|
67
|
+
any extra repo permission changes. ([4fb5b9e](https://github.com/imrj05/unified-ui/commit/4fb5b9e21dd975e63d9278fba3afc6702b84214b))
|
|
68
|
+
- **build:** Replace node:fs/promises glob with sync walk for Node 20 compat ([e40525b](https://github.com/imrj05/unified-ui/commit/e40525b89c52bbb617ee5db973309f7cedd9d8bd))
|
|
69
|
+
- **build:** Enable tree-shaking — preserve individual module files in dist/ (#19)
|
|
70
|
+
* fix: enable tree-shaking via preserveModules-style build ([#19](https://github.com/imrj05/unified-ui/issues/19), [#15](https://github.com/imrj05/unified-ui/issues/15)) ([fc857e2](https://github.com/imrj05/unified-ui/commit/fc857e22734ff0982b64ad3d8dd7daa75613241c))
|
|
71
|
+
|
|
23
72
|
### 📖 Documentation
|
|
24
73
|
|
|
25
74
|
- **oss:** Add contribution standards and protected-branch CI fixes (#5)
|
|
@@ -49,6 +98,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
49
98
|
|
|
50
99
|
### 🏗️ Miscellaneous
|
|
51
100
|
|
|
101
|
+
- **changelog:** Auto-update unreleased entries [skip ci] (#14) ([#14](https://github.com/imrj05/unified-ui/issues/14)) ([026b044](https://github.com/imrj05/unified-ui/commit/026b044f256516df4c5daca980c38302bff4561e))
|
|
52
102
|
- **changelog:** Auto-update unreleased entries [skip ci] (#12) ([#12](https://github.com/imrj05/unified-ui/issues/12)) ([77d3670](https://github.com/imrj05/unified-ui/commit/77d36705c83146732171f838f2bcdb52bac409fb))
|
|
53
103
|
- **changelog:** Auto-update unreleased entries [skip ci] (#10) ([#10](https://github.com/imrj05/unified-ui/issues/10)) ([dc691b1](https://github.com/imrj05/unified-ui/commit/dc691b1df0d28dee7961a0cf695a3751e756d8af))
|
|
54
104
|
- **changelog:** Auto-update unreleased entries [skip ci] (#8) ([#8](https://github.com/imrj05/unified-ui/issues/8)) ([59a0b38](https://github.com/imrj05/unified-ui/commit/59a0b3863c9deb7b6914202d7be46707ea83a09b))
|
|
@@ -59,6 +109,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
59
109
|
|
|
60
110
|
### Other
|
|
61
111
|
|
|
112
|
+
- Merge pull request #21 from work-rjkashyap/fix/ci-node20-glob-compat
|
|
113
|
+
|
|
114
|
+
fix(ci): fix test typecheck + changelog workflow ([#21](https://github.com/imrj05/unified-ui/issues/21)) ([40f3ade](https://github.com/imrj05/unified-ui/commit/40f3ade3dd6ef3a11d841360f7f0b12d73d169d4))
|
|
115
|
+
- Merge pull request #20 from work-rjkashyap/fix/ci-node20-glob-compat
|
|
116
|
+
|
|
117
|
+
fix(ci): fix all CI failures — Node 20 glob compat + changelog direct push ([#20](https://github.com/imrj05/unified-ui/issues/20)) ([4ca6b9b](https://github.com/imrj05/unified-ui/commit/4ca6b9b90f9ad8566b79c5a388a36cdc151b4494))
|
|
62
118
|
- Feat/add analytics (#9)
|
|
63
119
|
|
|
64
120
|
* docs(plan): add open-source contribution setup design
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@work-rjkashyap/unified-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "A scalable, token-driven React design system with 75+ components, built with Tailwind CSS v4, Radix UI, and Framer Motion.",
|
|
5
5
|
"author": "Rajeshwar Kashyap",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,62 +41,62 @@
|
|
|
41
41
|
},
|
|
42
42
|
"./tokens": {
|
|
43
43
|
"import": {
|
|
44
|
-
"types": "./dist/tokens.d.ts",
|
|
45
|
-
"default": "./dist/tokens.mjs"
|
|
44
|
+
"types": "./dist/tokens/index.d.ts",
|
|
45
|
+
"default": "./dist/tokens/index.mjs"
|
|
46
46
|
},
|
|
47
47
|
"require": {
|
|
48
|
-
"types": "./dist/tokens.d.cts",
|
|
49
|
-
"default": "./dist/tokens.cjs"
|
|
48
|
+
"types": "./dist/tokens/index.d.cts",
|
|
49
|
+
"default": "./dist/tokens/index.cjs"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"./theme": {
|
|
53
53
|
"import": {
|
|
54
|
-
"types": "./dist/theme.d.ts",
|
|
55
|
-
"default": "./dist/theme.mjs"
|
|
54
|
+
"types": "./dist/theme/index.d.ts",
|
|
55
|
+
"default": "./dist/theme/index.mjs"
|
|
56
56
|
},
|
|
57
57
|
"require": {
|
|
58
|
-
"types": "./dist/theme.d.cts",
|
|
59
|
-
"default": "./dist/theme.cjs"
|
|
58
|
+
"types": "./dist/theme/index.d.cts",
|
|
59
|
+
"default": "./dist/theme/index.cjs"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"./primitives": {
|
|
63
63
|
"import": {
|
|
64
|
-
"types": "./dist/primitives.d.ts",
|
|
65
|
-
"default": "./dist/primitives.mjs"
|
|
64
|
+
"types": "./dist/primitives/index.d.ts",
|
|
65
|
+
"default": "./dist/primitives/index.mjs"
|
|
66
66
|
},
|
|
67
67
|
"require": {
|
|
68
|
-
"types": "./dist/primitives.d.cts",
|
|
69
|
-
"default": "./dist/primitives.cjs"
|
|
68
|
+
"types": "./dist/primitives/index.d.cts",
|
|
69
|
+
"default": "./dist/primitives/index.cjs"
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"./components": {
|
|
73
73
|
"import": {
|
|
74
|
-
"types": "./dist/components.d.ts",
|
|
75
|
-
"default": "./dist/components.mjs"
|
|
74
|
+
"types": "./dist/components/index.d.ts",
|
|
75
|
+
"default": "./dist/components/index.mjs"
|
|
76
76
|
},
|
|
77
77
|
"require": {
|
|
78
|
-
"types": "./dist/components.d.cts",
|
|
79
|
-
"default": "./dist/components.cjs"
|
|
78
|
+
"types": "./dist/components/index.d.cts",
|
|
79
|
+
"default": "./dist/components/index.cjs"
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"./motion": {
|
|
83
83
|
"import": {
|
|
84
|
-
"types": "./dist/motion.d.ts",
|
|
85
|
-
"default": "./dist/motion.mjs"
|
|
84
|
+
"types": "./dist/motion/index.d.ts",
|
|
85
|
+
"default": "./dist/motion/index.mjs"
|
|
86
86
|
},
|
|
87
87
|
"require": {
|
|
88
|
-
"types": "./dist/motion.d.cts",
|
|
89
|
-
"default": "./dist/motion.cjs"
|
|
88
|
+
"types": "./dist/motion/index.d.cts",
|
|
89
|
+
"default": "./dist/motion/index.cjs"
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
"./utils": {
|
|
93
93
|
"import": {
|
|
94
|
-
"types": "./dist/utils.d.ts",
|
|
95
|
-
"default": "./dist/utils.mjs"
|
|
94
|
+
"types": "./dist/utils/index.d.ts",
|
|
95
|
+
"default": "./dist/utils/index.mjs"
|
|
96
96
|
},
|
|
97
97
|
"require": {
|
|
98
|
-
"types": "./dist/utils.d.cts",
|
|
99
|
-
"default": "./dist/utils.cjs"
|
|
98
|
+
"types": "./dist/utils/index.d.cts",
|
|
99
|
+
"default": "./dist/utils/index.cjs"
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"./styles.css": "./styles.css"
|
|
@@ -104,22 +104,22 @@
|
|
|
104
104
|
"typesVersions": {
|
|
105
105
|
"*": {
|
|
106
106
|
"tokens": [
|
|
107
|
-
"./dist/tokens.d.ts"
|
|
107
|
+
"./dist/tokens/index.d.ts"
|
|
108
108
|
],
|
|
109
109
|
"theme": [
|
|
110
|
-
"./dist/theme.d.ts"
|
|
110
|
+
"./dist/theme/index.d.ts"
|
|
111
111
|
],
|
|
112
112
|
"primitives": [
|
|
113
|
-
"./dist/primitives.d.ts"
|
|
113
|
+
"./dist/primitives/index.d.ts"
|
|
114
114
|
],
|
|
115
115
|
"components": [
|
|
116
|
-
"./dist/components.d.ts"
|
|
116
|
+
"./dist/components/index.d.ts"
|
|
117
117
|
],
|
|
118
118
|
"motion": [
|
|
119
|
-
"./dist/motion.d.ts"
|
|
119
|
+
"./dist/motion/index.d.ts"
|
|
120
120
|
],
|
|
121
121
|
"utils": [
|
|
122
|
-
"./dist/utils.d.ts"
|
|
122
|
+
"./dist/utils/index.d.ts"
|
|
123
123
|
]
|
|
124
124
|
}
|
|
125
125
|
},
|
|
@@ -162,11 +162,103 @@
|
|
|
162
162
|
"peerDependencies": {
|
|
163
163
|
"react": ">=19.0.0",
|
|
164
164
|
"react-dom": ">=19.0.0",
|
|
165
|
-
"tailwindcss": ">=4.0.0"
|
|
165
|
+
"tailwindcss": ">=4.0.0",
|
|
166
|
+
"radix-ui": ">=1.0.0",
|
|
167
|
+
"class-variance-authority": ">=0.7.0",
|
|
168
|
+
"clsx": ">=2.0.0",
|
|
169
|
+
"tailwind-merge": ">=3.0.0",
|
|
170
|
+
"sonner": ">=2.0.0",
|
|
171
|
+
"vaul": ">=1.0.0",
|
|
172
|
+
"react-resizable-panels": ">=4.0.0",
|
|
173
|
+
"@radix-ui/primitive": ">=1.0.0",
|
|
174
|
+
"@radix-ui/react-compose-refs": ">=1.0.0",
|
|
175
|
+
"@radix-ui/react-context": ">=1.0.0",
|
|
176
|
+
"@radix-ui/react-dismissable-layer": ">=1.0.0",
|
|
177
|
+
"@radix-ui/react-popper": ">=1.0.0",
|
|
178
|
+
"@radix-ui/react-portal": ">=1.0.0",
|
|
179
|
+
"@radix-ui/react-presence": ">=1.0.0",
|
|
180
|
+
"@radix-ui/react-primitive": ">=1.0.0",
|
|
181
|
+
"@radix-ui/react-slot": ">=1.0.0",
|
|
182
|
+
"@radix-ui/react-tooltip": ">=1.0.0",
|
|
183
|
+
"@radix-ui/react-use-callback-ref": ">=1.0.0",
|
|
184
|
+
"@radix-ui/react-use-controllable-state": ">=1.0.0",
|
|
185
|
+
"@radix-ui/react-use-layout-effect": ">=1.0.0",
|
|
186
|
+
"@radix-ui/react-use-size": ">=1.0.0",
|
|
187
|
+
"@radix-ui/react-use-effect-event": ">=0.0.1",
|
|
188
|
+
"@radix-ui/react-visually-hidden": ">=1.0.0"
|
|
166
189
|
},
|
|
167
190
|
"peerDependenciesMeta": {
|
|
168
191
|
"tailwindcss": {
|
|
169
192
|
"optional": true
|
|
193
|
+
},
|
|
194
|
+
"radix-ui": {
|
|
195
|
+
"optional": false
|
|
196
|
+
},
|
|
197
|
+
"class-variance-authority": {
|
|
198
|
+
"optional": false
|
|
199
|
+
},
|
|
200
|
+
"clsx": {
|
|
201
|
+
"optional": false
|
|
202
|
+
},
|
|
203
|
+
"tailwind-merge": {
|
|
204
|
+
"optional": false
|
|
205
|
+
},
|
|
206
|
+
"sonner": {
|
|
207
|
+
"optional": true
|
|
208
|
+
},
|
|
209
|
+
"vaul": {
|
|
210
|
+
"optional": true
|
|
211
|
+
},
|
|
212
|
+
"react-resizable-panels": {
|
|
213
|
+
"optional": true
|
|
214
|
+
},
|
|
215
|
+
"@radix-ui/primitive": {
|
|
216
|
+
"optional": true
|
|
217
|
+
},
|
|
218
|
+
"@radix-ui/react-compose-refs": {
|
|
219
|
+
"optional": true
|
|
220
|
+
},
|
|
221
|
+
"@radix-ui/react-context": {
|
|
222
|
+
"optional": true
|
|
223
|
+
},
|
|
224
|
+
"@radix-ui/react-dismissable-layer": {
|
|
225
|
+
"optional": true
|
|
226
|
+
},
|
|
227
|
+
"@radix-ui/react-popper": {
|
|
228
|
+
"optional": true
|
|
229
|
+
},
|
|
230
|
+
"@radix-ui/react-portal": {
|
|
231
|
+
"optional": true
|
|
232
|
+
},
|
|
233
|
+
"@radix-ui/react-presence": {
|
|
234
|
+
"optional": true
|
|
235
|
+
},
|
|
236
|
+
"@radix-ui/react-primitive": {
|
|
237
|
+
"optional": true
|
|
238
|
+
},
|
|
239
|
+
"@radix-ui/react-slot": {
|
|
240
|
+
"optional": true
|
|
241
|
+
},
|
|
242
|
+
"@radix-ui/react-tooltip": {
|
|
243
|
+
"optional": true
|
|
244
|
+
},
|
|
245
|
+
"@radix-ui/react-use-callback-ref": {
|
|
246
|
+
"optional": true
|
|
247
|
+
},
|
|
248
|
+
"@radix-ui/react-use-controllable-state": {
|
|
249
|
+
"optional": true
|
|
250
|
+
},
|
|
251
|
+
"@radix-ui/react-use-layout-effect": {
|
|
252
|
+
"optional": true
|
|
253
|
+
},
|
|
254
|
+
"@radix-ui/react-use-size": {
|
|
255
|
+
"optional": true
|
|
256
|
+
},
|
|
257
|
+
"@radix-ui/react-use-effect-event": {
|
|
258
|
+
"optional": true
|
|
259
|
+
},
|
|
260
|
+
"@radix-ui/react-visually-hidden": {
|
|
261
|
+
"optional": true
|
|
170
262
|
}
|
|
171
263
|
},
|
|
172
264
|
"dependencies": {
|