@@ -120,6 +120,8 @@ const props = withDefaults(defineProps<TableProps<T>>(), {
120120 paginationRounded : () => getDefault (" table.paginationRounded" , false ),
121121 paginationSimple : () => getDefault (" table.paginationSimple" , false ),
122122 paginationOrder : () => getDefault (" table.paginationOrder" ),
123+ paginationRangeBefore: undefined ,
124+ paginationRangeAfter: undefined ,
123125 backendFiltering : () => getDefault (" table.backendFiltering" , false ),
124126 filtersIcon : () => getDefault (" table.filterIcon" ),
125127 filtersPlaceholder : () => getDefault (" table.filterPlaceholder" ),
@@ -1225,6 +1227,8 @@ defineExpose({ rows: tableRows, sort: sortByField });
12251227 :size =" paginationSize"
12261228 :order =" paginationOrder"
12271229 :simple =" paginationSimple"
1230+ :range-before =" paginationRangeBefore"
1231+ :range-after =" paginationRangeAfter"
12281232 :icon-pack =" iconPack"
12291233 :aria-next-label =" ariaNextLabel"
12301234 :aria-previous-label =" ariaPreviousLabel"
@@ -1739,6 +1743,8 @@ defineExpose({ rows: tableRows, sort: sortByField });
17391743 :size =" paginationSize"
17401744 :order =" paginationOrder"
17411745 :simple =" paginationSimple"
1746+ :range-before =" paginationRangeBefore"
1747+ :range-after =" paginationRangeAfter"
17421748 :icon-pack =" iconPack"
17431749 :aria-next-label =" ariaNextLabel"
17441750 :aria-previous-label =" ariaPreviousLabel"
0 commit comments