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

Fixes(#176) - Fix Tailwind pagination when RTL #178

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/TailwindPagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
>
<nav
v-bind="$attrs"
class="isolate inline-flex -space-x-px rounded-md shadow-sm"
class="inline-flex -space-x-px rounded-md shadow-sm isolate ltr:flex-row rtl:flex-row-reverse"
aria-label="Pagination"
v-if="slotProps.computed.total > slotProps.computed.perPage"
>
<button
class="relative inline-flex items-center rounded-l-md border px-2 py-2 text-sm font-medium focus:z-20 disabled:opacity-50"
class="relative inline-flex items-center px-2 py-2 text-sm font-medium border rounded-l-md focus:z-20 disabled:opacity-50"
:class="itemClasses"
:disabled="!slotProps.computed.prevPageUrl"
v-on="slotProps.prevButtonEvents"
>
<slot name="prev-nav">
<span class="sr-only">Previous</span>
<svg
class="h-5 w-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke-width="1.5" stroke="currentColor"
>
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 19.5L8.25 12l7.5-7.5"/>
Expand All @@ -30,7 +30,7 @@
</button>

<button
class="relative inline-flex items-center border px-4 py-2 text-sm font-medium focus:z-20"
class="relative inline-flex items-center px-4 py-2 text-sm font-medium border focus:z-20"
:class="[
page == slotProps.computed.currentPage ? activeClasses : itemClasses,
page == slotProps.computed.currentPage ? 'z-30' : '',
Expand All @@ -45,7 +45,7 @@
</button>

<button
class="relative inline-flex items-center rounded-r-md border px-2 py-2 text-sm font-medium focus:z-20 disabled:opacity-50"
class="relative inline-flex items-center px-2 py-2 text-sm font-medium border rounded-r-md focus:z-20 disabled:opacity-50"
:class="itemClasses"
:disabled="!slotProps.computed.nextPageUrl"
v-on="slotProps.nextButtonEvents"
Expand Down