@work-rjkashyap/unified-ui 0.3.0 → 0.3.1
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 +17 -0
- package/bin/cli.mjs +12 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,8 +8,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
### 🏗️ Miscellaneous
|
|
12
|
+
|
|
13
|
+
- Update version to 0.3.0 in package.json ([0da22c2](https://github.com/imrj05/unified-ui/commit/0da22c2c96ce3303fd619df4a2daed3b50eb5a76))
|
|
14
|
+
- **changelog:** Auto-update unreleased entries [skip ci] ([bc71407](https://github.com/imrj05/unified-ui/commit/bc71407c37fad8ceaba9552f588ed3a5d464c630))
|
|
15
|
+
## [0.3.0] — 2026-03-07
|
|
16
|
+
|
|
11
17
|
### 🚀 Features
|
|
12
18
|
|
|
19
|
+
- Add initial UI components for Laravel, Next.js, React, and Vue.js starters
|
|
20
|
+
- Implemented input and text components in Laravel Blade.
|
|
21
|
+
- Created layout and welcome views for Laravel Blade starter.
|
|
22
|
+
- Added Vite configuration for Laravel Blade.
|
|
23
|
+
- Established global styles for Next.js and Vue.js starters.
|
|
24
|
+
- Developed layout and page components for Next.js starter.
|
|
25
|
+
- Introduced main application structure for Vite React starter.
|
|
26
|
+
- Built UI components including buttons, badges, cards, alerts, and text in Vue.js.
|
|
27
|
+
- Integrated theme toggle functionality across Vue.js components.
|
|
28
|
+
- Added utility functions for class name merging. ([4e217c9](https://github.com/imrj05/unified-ui/commit/4e217c90730757929335804f5bab456e4e2a18ab))
|
|
13
29
|
- Add postpublish script for automatic tagging and changelog regeneration ([f07fbd7](https://github.com/imrj05/unified-ui/commit/f07fbd7e8ad0583d891a623c89db1ef952d90b8e))
|
|
14
30
|
- Add Separator component with customizable styles and accessibility features ([a8320ae](https://github.com/imrj05/unified-ui/commit/a8320aea8c105b954b28e5c7d0ab73f22dfea085))
|
|
15
31
|
- Add loading skeleton for themes page and enhance sidebar functionality
|
|
@@ -54,6 +70,7 @@ fix: correct site name in route handler for Open Graph image generation ([f92e1f
|
|
|
54
70
|
|
|
55
71
|
### 🏗️ Miscellaneous
|
|
56
72
|
|
|
73
|
+
- **changelog:** Auto-update unreleased entries [skip ci] ([993c692](https://github.com/imrj05/unified-ui/commit/993c6923cc7df910cce064d95cbf399e880dbf0c))
|
|
57
74
|
- **changelog:** Auto-update unreleased entries [skip ci] ([4dc43b0](https://github.com/imrj05/unified-ui/commit/4dc43b053de38b769c2c407bb4de375e2d1bb110))
|
|
58
75
|
- **changelog:** Auto-update unreleased entries [skip ci] ([bf93189](https://github.com/imrj05/unified-ui/commit/bf931896586457223f5e2a60cbbae2955ecb202d))
|
|
59
76
|
- **changelog:** Auto-update unreleased entries [skip ci] ([2c133db](https://github.com/imrj05/unified-ui/commit/2c133dbc6225bde8a5e95320b6e3c857afa7038c))
|
package/bin/cli.mjs
CHANGED
|
@@ -434,7 +434,8 @@ createRoot(document.getElementById("root")!).render(
|
|
|
434
434
|
</StrictMode>,
|
|
435
435
|
);
|
|
436
436
|
`,
|
|
437
|
-
"src/App.tsx": `import { Button
|
|
437
|
+
"src/App.tsx": `import { Button } from "@work-rjkashyap/unified-ui/components";
|
|
438
|
+
import { Heading, Body } from "@work-rjkashyap/unified-ui/primitives";
|
|
438
439
|
import { useDSTheme } from "@work-rjkashyap/unified-ui/theme";
|
|
439
440
|
|
|
440
441
|
function App() {
|
|
@@ -445,15 +446,15 @@ function App() {
|
|
|
445
446
|
<div className="w-full max-w-md space-y-6 rounded-lg border border-border bg-card p-8">
|
|
446
447
|
<div className="space-y-2 text-center">
|
|
447
448
|
<Heading level={1}>Unified UI</Heading>
|
|
448
|
-
<
|
|
449
|
+
<Body color="muted">
|
|
449
450
|
Your starter project is ready. Start building!
|
|
450
|
-
</
|
|
451
|
+
</Body>
|
|
451
452
|
</div>
|
|
452
453
|
|
|
453
454
|
<div className="flex items-center justify-center gap-3">
|
|
454
|
-
<Button variant="
|
|
455
|
+
<Button variant="primary">Get Started</Button>
|
|
455
456
|
<Button
|
|
456
|
-
variant="
|
|
457
|
+
variant="secondary"
|
|
457
458
|
onClick={() => setTheme(theme === "dark" ? "light" : "dark")}
|
|
458
459
|
>
|
|
459
460
|
Toggle Theme
|
|
@@ -511,7 +512,8 @@ export default function RootLayout({
|
|
|
511
512
|
`,
|
|
512
513
|
"src/app/page.tsx": `"use client";
|
|
513
514
|
|
|
514
|
-
import { Button
|
|
515
|
+
import { Button } from "@work-rjkashyap/unified-ui/components";
|
|
516
|
+
import { Heading, Body } from "@work-rjkashyap/unified-ui/primitives";
|
|
515
517
|
import { useDSTheme } from "@work-rjkashyap/unified-ui/theme";
|
|
516
518
|
|
|
517
519
|
export default function Home() {
|
|
@@ -522,15 +524,15 @@ export default function Home() {
|
|
|
522
524
|
<div className="w-full max-w-md space-y-6 rounded-lg border border-border bg-card p-8">
|
|
523
525
|
<div className="space-y-2 text-center">
|
|
524
526
|
<Heading level={1}>Unified UI</Heading>
|
|
525
|
-
<
|
|
527
|
+
<Body color="muted">
|
|
526
528
|
Your Next.js project is ready. Start building!
|
|
527
|
-
</
|
|
529
|
+
</Body>
|
|
528
530
|
</div>
|
|
529
531
|
|
|
530
532
|
<div className="flex items-center justify-center gap-3">
|
|
531
|
-
<Button variant="
|
|
533
|
+
<Button variant="primary">Get Started</Button>
|
|
532
534
|
<Button
|
|
533
|
-
variant="
|
|
535
|
+
variant="secondary"
|
|
534
536
|
onClick={() => setTheme(theme === "dark" ? "light" : "dark")}
|
|
535
537
|
>
|
|
536
538
|
Toggle Theme
|
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.1",
|
|
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",
|