mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Fixed #4366 - DataTable: Icon slots issues
This commit is contained in:
parent
dedb871b78
commit
0e05407663
4 changed files with 102 additions and 54 deletions
|
@ -32,20 +32,20 @@
|
|||
<template v-if="$slots.paginatorend" #end>
|
||||
<slot name="paginatorend"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorfirstpagelinkicon" #firstpagelinkicon>
|
||||
<slot name="paginatorfirstpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatorfirstpagelinkicon" #firstpagelinkicon="slotProps">
|
||||
<slot name="paginatorfirstpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorprevpagelinkicon" #prevpagelinkicon>
|
||||
<slot name="paginatorprevpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatorprevpagelinkicon" #prevpagelinkicon="slotProps">
|
||||
<slot name="paginatorprevpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatornextpagelinkicon" #nextpagelinkicon>
|
||||
<slot name="paginatornextpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatornextpagelinkicon" #nextpagelinkicon="slotProps">
|
||||
<slot name="paginatornextpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorlastpagelinkicon" #lastpagelinkicon>
|
||||
<slot name="paginatorlastpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatorlastpagelinkicon" #lastpagelinkicon="slotProps">
|
||||
<slot name="paginatorlastpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorjumptopagedropdownicon" #jumptopagedropdownicon>
|
||||
<slot name="paginatorjumptopagedropdownicon"></slot>
|
||||
<template v-if="$slots.paginatorjumptopagedropdownicon" #jumptopagedropdownicon="slotProps">
|
||||
<slot name="paginatorjumptopagedropdownicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorrowsperpagedropdownicon" #rowsperpagedropdownicon="slotProps">
|
||||
<slot name="paginatorrowsperpagedropdownicon" :class="slotProps.class"></slot>
|
||||
|
@ -138,20 +138,20 @@
|
|||
<template v-if="$slots.paginatorend" #end>
|
||||
<slot name="paginatorend"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorfirstpagelinkicon" #firstpagelinkicon>
|
||||
<slot name="paginatorfirstpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatorfirstpagelinkicon" #firstpagelinkicon="slotProps">
|
||||
<slot name="paginatorfirstpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorprevpagelinkicon" #prevpagelinkicon>
|
||||
<slot name="paginatorprevpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatorprevpagelinkicon" #prevpagelinkicon="slotProps">
|
||||
<slot name="paginatorprevpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatornextpagelinkicon" #nextpagelinkicon>
|
||||
<slot name="paginatornextpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatornextpagelinkicon" #nextpagelinkicon="slotProps">
|
||||
<slot name="paginatornextpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorlastpagelinkicon" #lastpagelinkicon>
|
||||
<slot name="paginatorlastpagelinkicon"></slot>
|
||||
<template v-if="$slots.paginatorlastpagelinkicon" #lastpagelinkicon="slotProps">
|
||||
<slot name="paginatorlastpagelinkicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorjumptopagedropdownicon" #jumptopagedropdownicon>
|
||||
<slot name="paginatorjumptopagedropdownicon"></slot>
|
||||
<template v-if="$slots.paginatorjumptopagedropdownicon" #jumptopagedropdownicon="slotProps">
|
||||
<slot name="paginatorjumptopagedropdownicon" :class="slotProps.class"></slot>
|
||||
</template>
|
||||
<template v-if="$slots.paginatorrowsperpagedropdownicon" #rowsperpagedropdownicon="slotProps">
|
||||
<slot name="paginatorrowsperpagedropdownicon" :class="slotProps.class"></slot>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue