Skip to content

Commit 86d9b00

Browse files
authored
chore: update deps (#9022)
* feat: init * fix * fix * fix * feat * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: implement icons * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: update init command * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: dialog * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add registry:base item type * feat: rename frame to canva * fix * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fi * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add all colors * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add outfit font * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix
1 parent 672f845 commit 86d9b00

2,395 files changed

Lines changed: 148481 additions & 6507 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/fast-games-open.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"shadcn": minor
3+
---
4+
5+
add registry:base item type

.changeset/spotty-rivers-kneel.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"shadcn": minor
3+
---
4+
5+
add npx shadcn create

.claude/settings.local.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
"permissions": {
33
"allow": [
44
"Bash(npm test:*)",
5-
"Bash(npm run typecheck:*)"
5+
"Bash(npm run typecheck:*)",
6+
"Bash(ls:*)",
7+
"Bash(cat:*)",
8+
"WebSearch",
9+
"WebFetch(domain:github.com)"
610
],
711
"deny": []
812
}
9-
}
13+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ tsconfig.tsbuildinfo
3939
.idea
4040
.fleet
4141
.vscode
42+
43+
.notes

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,10 @@
1111
],
1212
"files.exclude": {
1313
"deprecated": true
14+
},
15+
"search.exclude": {
16+
"apps/v4/registry/radix-*": true,
17+
"apps/v4/public/r/*": true,
18+
"packages/shadcn/test/fixtures/*": true
1419
}
1520
}

apps/v4/app/(app)/(root)/components/button-group-demo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
ArrowLeftIcon,
77
CalendarPlusIcon,
88
ClockIcon,
9-
ListFilterPlusIcon,
9+
ListFilterIcon,
1010
MailCheckIcon,
1111
MoreHorizontalIcon,
1212
TagIcon,
@@ -79,7 +79,7 @@ export function ButtonGroupDemo() {
7979
Add to Calendar
8080
</DropdownMenuItem>
8181
<DropdownMenuItem>
82-
<ListFilterPlusIcon />
82+
<ListFilterIcon />
8383
Add to List
8484
</DropdownMenuItem>
8585
<DropdownMenuSub>

apps/v4/app/(app)/(root)/page.tsx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
import { Metadata } from "next"
1+
import { type Metadata } from "next"
22
import Image from "next/image"
33
import Link from "next/link"
4+
import { PlusSignIcon } from "@hugeicons/core-free-icons"
5+
import { HugeiconsIcon } from "@hugeicons/react"
46

57
import { Announcement } from "@/components/announcement"
68
import { ExamplesNav } from "@/components/examples-nav"
@@ -55,10 +57,13 @@ export default function IndexPage() {
5557
<PageHeaderHeading className="max-w-4xl">{title}</PageHeaderHeading>
5658
<PageHeaderDescription>{description}</PageHeaderDescription>
5759
<PageActions>
58-
<Button asChild size="sm">
59-
<Link href="/docs/installation">Get Started</Link>
60+
<Button asChild size="sm" className="h-[31px] rounded-lg">
61+
<Link href="/create">
62+
<HugeiconsIcon icon={PlusSignIcon} />
63+
New Project
64+
</Link>
6065
</Button>
61-
<Button asChild size="sm" variant="ghost">
66+
<Button asChild size="sm" variant="ghost" className="rounded-lg">
6267
<Link href="/docs/components">View Components</Link>
6368
</Button>
6469
</PageActions>

apps/v4/app/(app)/blocks/[...categories]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { getAllBlockIds } from "@/lib/blocks"
22
import { registryCategories } from "@/lib/categories"
33
import { BlockDisplay } from "@/components/block-display"
4-
import { getActiveStyle } from "@/registry/styles"
4+
import { getActiveStyle } from "@/registry/_legacy-styles"
55

66
export const revalidate = false
77
export const dynamic = "force-static"

apps/v4/app/(app)/blocks/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Metadata } from "next"
1+
import { type Metadata } from "next"
22
import Link from "next/link"
33

44
import { Announcement } from "@/components/announcement"

apps/v4/app/(app)/blocks/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import Link from "next/link"
22

33
import { BlockDisplay } from "@/components/block-display"
4+
import { getActiveStyle } from "@/registry/_legacy-styles"
45
import { Button } from "@/registry/new-york-v4/ui/button"
5-
import { getActiveStyle } from "@/registry/styles"
66

77
export const dynamic = "force-static"
88
export const revalidate = false

0 commit comments

Comments
 (0)