-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added doc for scroll-area #1249
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for harness-xd-review ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for harness-design ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
932fe85
to
a12603a
Compare
9002828
to
6874734
Compare
## Anatomy | ||
|
||
The ScrollArea component can be used to create scrollable areas. | ||
|
||
```typescript jsx | ||
<ScrollArea className="h-64 w-64"> | ||
<div className="p-4"> | ||
<p>Scrollable content goes here.</p> | ||
<p>Scrollable content goes here.</p> | ||
<p>Scrollable content goes here.</p> | ||
<p>Scrollable content goes here.</p> | ||
<p>Scrollable content goes here.</p> | ||
</div> | ||
</ScrollArea> | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need for an Anatomy
section for single part components.
## Anatomy | |
The ScrollArea component can be used to create scrollable areas. | |
```typescript jsx | |
<ScrollArea className="h-64 w-64"> | |
<div className="p-4"> | |
<p>Scrollable content goes here.</p> | |
<p>Scrollable content goes here.</p> | |
<p>Scrollable content goes here.</p> | |
<p>Scrollable content goes here.</p> | |
<p>Scrollable content goes here.</p> | |
</div> | |
</ScrollArea> | |
``` |
|
||
## API Reference | ||
|
||
### ScrollArea |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can drop the name from here for single-part components.
### ScrollArea |
type="hover" // [Optional] Scrollbar visibility behavior ('auto' | 'always' | 'scroll' | 'hover') | ||
dir="ltr" // [Optional] Reading direction ('ltr' | 'rtl') | ||
scrollHideDelay={600} // [Optional] Delay before hiding scrollbar (in ms) | ||
className="h-[300px] w-[400px]" // [Optional] Container dimensions and styles | ||
viewportClassName="p-4" // [Optional] Viewport styles | ||
scrollThumbClassName="bg-gray-400" // [Optional] Scroll thumb styles | ||
asChild={false} // [Optional] Change the rendered element |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use [OPTIONAL]
instead of [Optional]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While we're editing this file, can we remove ScrollBar
from the exports in this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few small changes and we're good to go 👍🏻
closes #1229