-
Notifications
You must be signed in to change notification settings - Fork 589
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(components): improve RTL support #2433
Merged
Merged
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3006b9b
feat(Switch): handle`switch` in RTL mode
Malik-Jouda 5b34c3c
feat(Input): handle `Input` in RTL mode
Malik-Jouda c4846db
Merge branch 'v3' into improve-rtl-support
Malik-Jouda 5e1f9ea
feat(Modal): handle`modal` in RTL mode
Malik-Jouda 4c8a8a0
fix(Slideover): handle `slideover` in RTL mode
Malik-Jouda da5bdd8
up
Malik-Jouda 57f511b
Merge branch 'v3' into improve-rtl-support
Malik-Jouda b5edeb3
fix(CommandPalette): handle `CommandPalette` in RTL mode
Malik-Jouda 9e0b818
Merge branch 'v3' into improve-rtl-support
benjamincanac f85c23d
Merge branch 'v3' into improve-rtl-support
benjamincanac 576d543
feat(Input): remove the ! important marks
Malik-Jouda fdd8a35
fix(NavigationMenu): handle `NavigationMenu` in RTL mode
Malik-Jouda 8d74090
fix(Tabs): handle `Tabs` in RTL mode
Malik-Jouda 5ba374d
fix(Tooltip): handle `Tooltip` in RTL mode
Malik-Jouda c6e1632
up
Malik-Jouda 88d8e92
fix(Carousel): handle `carousel` in RTL mode
Malik-Jouda 51f3018
up
Malik-Jouda 8e2d061
fix(Table): handle `Table` in RTL mode
Malik-Jouda c349ce2
fix(Accordion) handle `Accordion` in RTL mode
Malik-Jouda e1e6706
Merge branch 'v3' into improve-rtl-support
Malik-Jouda bab3eb3
test: update vue snapshots
benjamincanac 55aaa61
playground: RTL support
Malik-Jouda c6b0ffd
Merge branch 'v3' into improve-rtl-support
Malik-Jouda f5c6d1f
Merge branch 'v3' into improve-rtl-support
Malik-Jouda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Why add
!
important class here?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.
Screen.Recording.2024-10-22.at.2.16.53.PM.mov
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.
Changing the class in the chrome devtools won't work, the
ps-9
class doesn't exist since it isn't defined anywhere.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.
screen-recording-2024-10-23-at-92255-am_npHC5fsW.mp4
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.
in version 4.0.0-alpha.28, the
ps-10
is not applied as expected becausepx-5
takes precedence, while in version 3.4.13,ps-10
works correctly.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.
This is an issue with Tailwind then, can't merge this with important values it will prevent override.
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.
This issue has been solved : tailwindlabs/tailwindcss#14772
tailwindlabs/tailwindcss#14777
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.
Awesome! Let's wait for the new release then :) Thanks for taking care of the issue on tailwindcss!