We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I believe we should be able to collapse elements from left to right and invert them using the UCollapsible component.
No response
The text was updated successfully, but these errors were encountered:
Can you show some examples from other UI lib which support that?
Sorry, something went wrong.
I'm not sure if I know any library that supports that, actually. But, for example, we used the UCollapsible component to make our sidebar toggleable.
<UCollapsible v-else v-model:open="sidebarOpen" :ui="{ 'content' : 'data-[state=open]:animate-[collapsible-right_200ms_ease-out] data-[state=closed]:animate-[collapsible-left_200ms_ease-out] overflow-hidden' }"> <template #content> <SidebarContent @toggle-sidebar="sidebarOpen = !sidebarOpen" /> </template> </UCollapsible>
How would you achieve this without using UCollapsible?
I think a orientation props would be really easy to implement while having a great value.
No branches or pull requests
Description
I believe we should be able to collapse elements from left to right and invert them using the UCollapsible component.
Additional context
No response
The text was updated successfully, but these errors were encountered: