forked from shadcn-ui/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(scroll-area): add example for horizontal scroll area (shadcn-ui#…
…1515) Adds documentation to the `<ScrollArea>` component for creating a scroll area with a horizontal scrollbar. There is also a commit to fix the improper sizing of a horizontal scroll bars. Before: https://github.com/shadcn-ui/ui/assets/9381099/a8b512f1-37f7-4107-a9fa-42a26e124696 After: https://github.com/shadcn-ui/ui/assets/9381099/480f881c-b0fe-4b1b-9472-c533135e6769
- Loading branch information
1 parent
701a0f9
commit 89a3834
Showing
7 changed files
with
134 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import * as React from "react" | ||
import Image from "next/image" | ||
|
||
import { ScrollArea, ScrollBar } from "@/registry/default/ui/scroll-area" | ||
|
||
export interface Artwork { | ||
artist: string | ||
art: string | ||
} | ||
|
||
export const works: Artwork[] = [ | ||
{ | ||
artist: "Ornella Binni", | ||
art: "https://images.unsplash.com/photo-1465869185982-5a1a7522cbcb?auto=format&fit=crop&w=300&q=80", | ||
}, | ||
{ | ||
artist: "Tom Byrom", | ||
art: "https://images.unsplash.com/photo-1548516173-3cabfa4607e9?auto=format&fit=crop&w=300&q=80", | ||
}, | ||
{ | ||
artist: "Vladimir Malyavko", | ||
art: "https://images.unsplash.com/photo-1494337480532-3725c85fd2ab?auto=format&fit=crop&w=300&q=80", | ||
}, | ||
] | ||
|
||
export default function ScrollAreaHorizontalDemo() { | ||
return ( | ||
<ScrollArea className="w-96 whitespace-nowrap rounded-md border"> | ||
<div className="flex w-max space-x-4 p-4"> | ||
{works.map((artwork) => ( | ||
<figure key={artwork.artist} className="shrink-0"> | ||
<div className="overflow-hidden rounded-md"> | ||
<Image | ||
src={artwork.art} | ||
alt={`Photo by ${artwork.artist}`} | ||
className="aspect-[3/4] h-fit w-fit object-cover" | ||
width={300} | ||
height={400} | ||
/> | ||
</div> | ||
<figcaption className="pt-2 text-xs text-muted-foreground"> | ||
Photo by{" "} | ||
<span className="font-semibold text-foreground"> | ||
{artwork.artist} | ||
</span> | ||
</figcaption> | ||
</figure> | ||
))} | ||
</div> | ||
<ScrollBar orientation="horizontal" /> | ||
</ScrollArea> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import * as React from "react" | ||
import Image from "next/image" | ||
|
||
import { ScrollArea, ScrollBar } from "@/registry/new-york/ui/scroll-area" | ||
|
||
export interface Artwork { | ||
artist: string | ||
art: string | ||
} | ||
|
||
export const works: Artwork[] = [ | ||
{ | ||
artist: "Ornella Binni", | ||
art: "https://images.unsplash.com/photo-1465869185982-5a1a7522cbcb?auto=format&fit=crop&w=300&q=80", | ||
}, | ||
{ | ||
artist: "Tom Byrom", | ||
art: "https://images.unsplash.com/photo-1548516173-3cabfa4607e9?auto=format&fit=crop&w=300&q=80", | ||
}, | ||
{ | ||
artist: "Vladimir Malyavko", | ||
art: "https://images.unsplash.com/photo-1494337480532-3725c85fd2ab?auto=format&fit=crop&w=300&q=80", | ||
}, | ||
] | ||
|
||
export default function ScrollAreaHorizontalDemo() { | ||
return ( | ||
<ScrollArea className="w-96 whitespace-nowrap rounded-md border"> | ||
<div className="flex w-max space-x-4 p-4"> | ||
{works.map((artwork) => ( | ||
<figure key={artwork.artist} className="shrink-0"> | ||
<div className="overflow-hidden rounded-md"> | ||
<Image | ||
src={artwork.art} | ||
alt={`Photo by ${artwork.artist}`} | ||
className="aspect-[3/4] h-fit w-fit object-cover" | ||
width={300} | ||
height={400} | ||
/> | ||
</div> | ||
<figcaption className="pt-2 text-xs text-muted-foreground"> | ||
Photo by{" "} | ||
<span className="font-semibold text-foreground"> | ||
{artwork.artist} | ||
</span> | ||
</figcaption> | ||
</figure> | ||
))} | ||
</div> | ||
<ScrollBar orientation="horizontal" /> | ||
</ScrollArea> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters