-
Notifications
You must be signed in to change notification settings - Fork 120
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(HTL-109459): multiroom drawer) #1523
Conversation
export const DrawerWrapper = styled(Absolute)` | ||
${({ placement }) => | ||
export const DrawerWrapper = styled(Box)` | ||
position: fixed; |
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.
making the drawer fixed instead of absolute
isMobile?: boolean | ||
isOpen?: boolean | ||
isDraggable?: boolean |
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.
ability to enable/disable the swipe to dismiss animation
69e1aaf
to
6e68b40
Compare
` | ||
position: ${position || 'absolute'}; |
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.
allow position to be set by prop
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1523 +/- ##
==========================================
+ Coverage 93.72% 93.76% +0.03%
==========================================
Files 149 149
Lines 11279 11284 +5
Branches 683 687 +4
==========================================
+ Hits 10571 10580 +9
+ Misses 684 681 -3
+ Partials 24 23 -1 ☔ View full report in Codecov by Sentry. |
Add zindex, modify padding, add prop to disable drag to dismiss animation