Skip to content
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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

feat: added doc for scroll-area #1249

wants to merge 4 commits into from

Conversation

harish-viswa
Copy link
Contributor

closes #1229

@harish-viswa harish-viswa requested a review from knagurski as a code owner March 13, 2025 15:25
Copy link

netlify bot commented Mar 13, 2025

Deploy Preview for harness-xd-review ready!

Name Link
🔨 Latest commit 508ac15
🔍 Latest deploy log https://app.netlify.com/sites/harness-xd-review/deploys/67e54c3e7abfe200084ec125
😎 Deploy Preview https://deploy-preview-1249--harness-xd-review.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Mar 13, 2025

Deploy Preview for harness-design ready!

Name Link
🔨 Latest commit 508ac15
🔍 Latest deploy log https://app.netlify.com/sites/harness-design/deploys/67e54c3e3e97fb000801699b
😎 Deploy Preview https://deploy-preview-1249--harness-design.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Comment on lines +46 to +60
## 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>
```
Copy link
Collaborator

@knagurski knagurski Apr 2, 2025

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.

Suggested change
## 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
Copy link
Collaborator

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.

Suggested change
### ScrollArea

Comment on lines +70 to +76
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
Copy link
Collaborator

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]

Copy link
Collaborator

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?

Copy link
Collaborator

@knagurski knagurski left a 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 👍🏻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Document ScrollArea component
2 participants