mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
* feat: add field.tsx and update blocks * feat: add input group * feat: implement button group * fix * fix * wip * fix: button group * feat: update field * fix * feat * feat: cooked * fix * chore: build registry * feat: add kbd component * chore: update input group demo * feat: update kbd component * feat: add empty * feat: add spinner * refactor: input group * feat: blocks * fix * fix: app sidebar * feat: add label to app sidebar * fix * fix * fix * fix * fix * feat * feat * fix * docs: button group * feat: add docs * docs: kbd * docs: empty * fix * docs * docs * feat: add sink link * fix * fix * docs * feat: add new page * fix * fix * fix * fix * fix * fix * feat: add registration form * fix: chat settings * fix * fix preview * fix examples * feat: add changelog * fix * fix * fix * fix * fix * feat(www): add t3 versions * chore: build registry * fix * fix * fix * feat: inline code examples for llm * fix * feat: home * fix * fix * fix * fix * fix * chore: changelog * fix * fix * fix * fix: callout * fix
118 lines
3.1 KiB
TypeScript
118 lines
3.1 KiB
TypeScript
"use client"
|
|
|
|
import {
|
|
Avatar,
|
|
AvatarFallback,
|
|
AvatarImage,
|
|
} from "@/registry/new-york-v4/ui/avatar"
|
|
import { Button } from "@/registry/new-york-v4/ui/button"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/registry/new-york-v4/ui/card"
|
|
import { Input } from "@/registry/new-york-v4/ui/input"
|
|
import {
|
|
Item,
|
|
ItemActions,
|
|
ItemContent,
|
|
ItemDescription,
|
|
ItemGroup,
|
|
ItemTitle,
|
|
} from "@/registry/new-york-v4/ui/item"
|
|
import { Label } from "@/registry/new-york-v4/ui/label"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/registry/new-york-v4/ui/select"
|
|
import { Separator } from "@/registry/new-york-v4/ui/separator"
|
|
|
|
const people = [
|
|
{
|
|
name: "Olivia Martin",
|
|
email: "m@example.com",
|
|
avatar: "/avatars/03.png",
|
|
},
|
|
{
|
|
name: "Isabella Nguyen",
|
|
email: "b@example.com",
|
|
avatar: "/avatars/04.png",
|
|
},
|
|
{
|
|
name: "Sofia Davis",
|
|
email: "p@example.com",
|
|
avatar: "/avatars/05.png",
|
|
},
|
|
{
|
|
name: "Ethan Thompson",
|
|
email: "e@example.com",
|
|
avatar: "/avatars/01.png",
|
|
},
|
|
]
|
|
export function CardsShare() {
|
|
return (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Share this document</CardTitle>
|
|
<CardDescription>
|
|
Anyone with the link can view this document.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex items-center gap-2">
|
|
<Label htmlFor="link" className="sr-only">
|
|
Link
|
|
</Label>
|
|
<Input
|
|
id="link"
|
|
value="http://example.com/link/to/document"
|
|
className="h-8"
|
|
readOnly
|
|
/>
|
|
<Button size="sm" variant="outline" className="shadow-none">
|
|
Copy Link
|
|
</Button>
|
|
</div>
|
|
<Separator className="my-4" />
|
|
<div className="flex flex-col gap-4">
|
|
<div className="text-sm font-medium">People with access</div>
|
|
<ItemGroup>
|
|
{people.map((person) => (
|
|
<Item key={person.email} className="px-0 py-2">
|
|
<Avatar>
|
|
<AvatarImage src={person.avatar} alt="Image" />
|
|
<AvatarFallback>{person.name.charAt(0)}</AvatarFallback>
|
|
</Avatar>
|
|
<ItemContent>
|
|
<ItemTitle>{person.name}</ItemTitle>
|
|
<ItemDescription>{person.email}</ItemDescription>
|
|
</ItemContent>
|
|
<ItemActions>
|
|
<Select defaultValue="edit">
|
|
<SelectTrigger
|
|
className="ml-auto pr-2"
|
|
aria-label="Edit"
|
|
size="sm"
|
|
>
|
|
<SelectValue placeholder="Select" />
|
|
</SelectTrigger>
|
|
<SelectContent align="end">
|
|
<SelectItem value="edit">Can edit</SelectItem>
|
|
<SelectItem value="view">Can view</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</ItemActions>
|
|
</Item>
|
|
))}
|
|
</ItemGroup>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|