Fixed #6064 - Paginator: v4 page buttons still have PrimeVue classes in unstyled mode

pull/6101/head
tugcekucukoglu 2024-07-22 16:22:38 +03:00
parent 37fedd0426
commit ca543a5540
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
:unstyled="unstyled"
:pt="pt"
/>
<PageLinks v-else-if="item === 'PageLinks'" :aria-label="getAriaLabel('pageLabel')" :value="pageLinks" :page="page" @click="changePageLink($event)" :pt="pt" />
<PageLinks v-else-if="item === 'PageLinks'" :aria-label="getAriaLabel('pageLabel')" :value="pageLinks" :page="page" @click="changePageLink($event)" :unstyled="unstyled" :pt="pt" />
<CurrentPageReport
v-else-if="item === 'CurrentPageReport'"
aria-live="polite"
@ -89,8 +89,8 @@
</template>
<script>
import { UniqueComponentId } from '@primevue/core/utils';
import { setAttribute } from '@primeuix/utils/dom';
import { UniqueComponentId } from '@primevue/core/utils';
import BasePaginator from './BasePaginator.vue';
import CurrrentPageReport from './CurrentPageReport.vue';
import FirstPageLink from './FirstPageLink.vue';