primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
882 lines (847 loc) • 31.1 kB
JavaScript
import { setAttribute } from '@primeuix/utils/dom';
import BaseComponent from '@primevue/core/basecomponent';
import PaginatorStyle from 'primevue/paginator/style';
import { createElementBlock, openBlock, mergeProps, toDisplayString, resolveDirective, withDirectives, createBlock, resolveDynamicComponent, resolveComponent, normalizeClass, createSlots, withCtx, Fragment, renderList, createTextVNode, createCommentVNode, normalizeProps, renderSlot, createElementVNode } from 'vue';
import AngleDoubleLeftIcon from '@primevue/icons/angledoubleleft';
import Ripple from 'primevue/ripple';
import Select from 'primevue/select';
import InputNumber from 'primevue/inputnumber';
import AngleDoubleRightIcon from '@primevue/icons/angledoubleright';
import AngleRightIcon from '@primevue/icons/angleright';
import AngleLeftIcon from '@primevue/icons/angleleft';
var script$a = {
name: 'BasePaginator',
"extends": BaseComponent,
props: {
totalRecords: {
type: Number,
"default": 0
},
rows: {
type: Number,
"default": 0
},
first: {
type: Number,
"default": 0
},
pageLinkSize: {
type: Number,
"default": 5
},
rowsPerPageOptions: {
type: Array,
"default": null
},
template: {
type: [Object, String],
"default": 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown'
},
currentPageReportTemplate: {
type: null,
"default": '({currentPage} of {totalPages})'
},
alwaysShow: {
type: Boolean,
"default": true
}
},
style: PaginatorStyle,
provide: function provide() {
return {
$pcPaginator: this,
$parentInstance: this
};
}
};
var script$9 = {
name: 'CurrentPageReport',
hostName: 'Paginator',
"extends": BaseComponent,
props: {
pageCount: {
type: Number,
"default": 0
},
currentPage: {
type: Number,
"default": 0
},
page: {
type: Number,
"default": 0
},
first: {
type: Number,
"default": 0
},
rows: {
type: Number,
"default": 0
},
totalRecords: {
type: Number,
"default": 0
},
template: {
type: String,
"default": '({currentPage} of {totalPages})'
}
},
computed: {
text: function text() {
var text = this.template.replace('{currentPage}', this.currentPage).replace('{totalPages}', this.pageCount).replace('{first}', this.pageCount > 0 ? this.first + 1 : 0).replace('{last}', Math.min(this.first + this.rows, this.totalRecords)).replace('{rows}', this.rows).replace('{totalRecords}', this.totalRecords);
return text;
}
}
};
function render$9(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", mergeProps({
"class": _ctx.cx('current')
}, _ctx.ptm('current')), toDisplayString($options.text), 17);
}
script$9.render = render$9;
var script$8 = {
name: 'FirstPageLink',
hostName: 'Paginator',
"extends": BaseComponent,
props: {
template: {
type: Function,
"default": null
}
},
methods: {
getPTOptions: function getPTOptions(key) {
return this.ptm(key, {
context: {
disabled: this.$attrs.disabled
}
});
}
},
components: {
AngleDoubleLeftIcon: AngleDoubleLeftIcon
},
directives: {
ripple: Ripple
}
};
function render$8(_ctx, _cache, $props, $setup, $data, $options) {
var _directive_ripple = resolveDirective("ripple");
return withDirectives((openBlock(), createElementBlock("button", mergeProps({
"class": _ctx.cx('first'),
type: "button"
}, $options.getPTOptions('first'), {
"data-pc-group-section": "pagebutton"
}), [(openBlock(), createBlock(resolveDynamicComponent($props.template || 'AngleDoubleLeftIcon'), mergeProps({
"class": _ctx.cx('firstIcon')
}, $options.getPTOptions('firstIcon')), null, 16, ["class"]))], 16)), [[_directive_ripple]]);
}
script$8.render = render$8;
var script$7 = {
name: 'JumpToPageDropdown',
hostName: 'Paginator',
"extends": BaseComponent,
emits: ['page-change'],
props: {
page: Number,
pageCount: Number,
disabled: Boolean,
templates: null
},
methods: {
onChange: function onChange(value) {
this.$emit('page-change', value);
}
},
computed: {
pageOptions: function pageOptions() {
var opts = [];
for (var i = 0; i < this.pageCount; i++) {
opts.push({
label: String(i + 1),
value: i
});
}
return opts;
}
},
components: {
JTPSelect: Select
}
};
function render$7(_ctx, _cache, $props, $setup, $data, $options) {
var _component_JTPSelect = resolveComponent("JTPSelect");
return openBlock(), createBlock(_component_JTPSelect, {
modelValue: $props.page,
options: $options.pageOptions,
optionLabel: "label",
optionValue: "value",
"onUpdate:modelValue": _cache[0] || (_cache[0] = function ($event) {
return $options.onChange($event);
}),
"class": normalizeClass(_ctx.cx('pcJumpToPageDropdown')),
disabled: $props.disabled,
unstyled: _ctx.unstyled,
pt: _ctx.ptm('pcJumpToPageDropdown'),
"data-pc-group-section": "pagedropdown"
}, createSlots({
_: 2
}, [$props.templates['jumptopagedropdownicon'] ? {
name: "dropdownicon",
fn: withCtx(function (slotProps) {
return [(openBlock(), createBlock(resolveDynamicComponent($props.templates['jumptopagedropdownicon']), {
"class": normalizeClass(slotProps["class"])
}, null, 8, ["class"]))];
}),
key: "0"
} : undefined]), 1032, ["modelValue", "options", "class", "disabled", "unstyled", "pt"]);
}
script$7.render = render$7;
var script$6 = {
name: 'JumpToPageInput',
hostName: 'Paginator',
"extends": BaseComponent,
inheritAttrs: false,
emits: ['page-change'],
props: {
page: Number,
pageCount: Number,
disabled: Boolean
},
data: function data() {
return {
d_page: this.page
};
},
watch: {
page: function page(newValue) {
this.d_page = newValue;
}
},
methods: {
onChange: function onChange(value) {
if (value !== this.page) {
this.d_page = value;
this.$emit('page-change', value - 1);
}
}
},
computed: {
inputArialabel: function inputArialabel() {
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.jumpToPageInputLabel : undefined;
}
},
components: {
JTPInput: InputNumber
}
};
function render$6(_ctx, _cache, $props, $setup, $data, $options) {
var _component_JTPInput = resolveComponent("JTPInput");
return openBlock(), createBlock(_component_JTPInput, {
ref: "jtpInput",
modelValue: $data.d_page,
"class": normalizeClass(_ctx.cx('pcJumpToPageInputText')),
"aria-label": $options.inputArialabel,
disabled: $props.disabled,
"onUpdate:modelValue": $options.onChange,
unstyled: _ctx.unstyled,
pt: _ctx.ptm('pcJumpToPageInputText')
}, null, 8, ["modelValue", "class", "aria-label", "disabled", "onUpdate:modelValue", "unstyled", "pt"]);
}
script$6.render = render$6;
var script$5 = {
name: 'LastPageLink',
hostName: 'Paginator',
"extends": BaseComponent,
props: {
template: {
type: Function,
"default": null
}
},
methods: {
getPTOptions: function getPTOptions(key) {
return this.ptm(key, {
context: {
disabled: this.$attrs.disabled
}
});
}
},
components: {
AngleDoubleRightIcon: AngleDoubleRightIcon
},
directives: {
ripple: Ripple
}
};
function render$5(_ctx, _cache, $props, $setup, $data, $options) {
var _directive_ripple = resolveDirective("ripple");
return withDirectives((openBlock(), createElementBlock("button", mergeProps({
"class": _ctx.cx('last'),
type: "button"
}, $options.getPTOptions('last'), {
"data-pc-group-section": "pagebutton"
}), [(openBlock(), createBlock(resolveDynamicComponent($props.template || 'AngleDoubleRightIcon'), mergeProps({
"class": _ctx.cx('lastIcon')
}, $options.getPTOptions('lastIcon')), null, 16, ["class"]))], 16)), [[_directive_ripple]]);
}
script$5.render = render$5;
var script$4 = {
name: 'NextPageLink',
hostName: 'Paginator',
"extends": BaseComponent,
props: {
template: {
type: Function,
"default": null
}
},
methods: {
getPTOptions: function getPTOptions(key) {
return this.ptm(key, {
context: {
disabled: this.$attrs.disabled
}
});
}
},
components: {
AngleRightIcon: AngleRightIcon
},
directives: {
ripple: Ripple
}
};
function render$4(_ctx, _cache, $props, $setup, $data, $options) {
var _directive_ripple = resolveDirective("ripple");
return withDirectives((openBlock(), createElementBlock("button", mergeProps({
"class": _ctx.cx('next'),
type: "button"
}, $options.getPTOptions('next'), {
"data-pc-group-section": "pagebutton"
}), [(openBlock(), createBlock(resolveDynamicComponent($props.template || 'AngleRightIcon'), mergeProps({
"class": _ctx.cx('nextIcon')
}, $options.getPTOptions('nextIcon')), null, 16, ["class"]))], 16)), [[_directive_ripple]]);
}
script$4.render = render$4;
var script$3 = {
name: 'PageLinks',
hostName: 'Paginator',
"extends": BaseComponent,
inheritAttrs: false,
emits: ['click'],
props: {
value: Array,
page: Number
},
methods: {
getPTOptions: function getPTOptions(pageLink, key) {
return this.ptm(key, {
context: {
active: pageLink === this.page
}
});
},
onPageLinkClick: function onPageLinkClick(event, pageLink) {
this.$emit('click', {
originalEvent: event,
value: pageLink
});
},
ariaPageLabel: function ariaPageLabel(value) {
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.pageLabel.replace(/{page}/g, value) : undefined;
}
},
directives: {
ripple: Ripple
}
};
var _hoisted_1 = ["aria-label", "aria-current", "onClick", "data-p-active"];
function render$3(_ctx, _cache, $props, $setup, $data, $options) {
var _directive_ripple = resolveDirective("ripple");
return openBlock(), createElementBlock("span", mergeProps({
"class": _ctx.cx('pages')
}, _ctx.ptm('pages')), [(openBlock(true), createElementBlock(Fragment, null, renderList($props.value, function (pageLink) {
return withDirectives((openBlock(), createElementBlock("button", mergeProps({
key: pageLink,
"class": _ctx.cx('page', {
pageLink: pageLink
}),
type: "button",
"aria-label": $options.ariaPageLabel(pageLink),
"aria-current": pageLink - 1 === $props.page ? 'page' : undefined,
onClick: function onClick($event) {
return $options.onPageLinkClick($event, pageLink);
},
ref_for: true
}, $options.getPTOptions(pageLink - 1, 'page'), {
"data-p-active": pageLink - 1 === $props.page
}), [createTextVNode(toDisplayString(pageLink), 1)], 16, _hoisted_1)), [[_directive_ripple]]);
}), 128))], 16);
}
script$3.render = render$3;
var script$2 = {
name: 'PrevPageLink',
hostName: 'Paginator',
"extends": BaseComponent,
props: {
template: {
type: Function,
"default": null
}
},
methods: {
getPTOptions: function getPTOptions(key) {
return this.ptm(key, {
context: {
disabled: this.$attrs.disabled
}
});
}
},
components: {
AngleLeftIcon: AngleLeftIcon
},
directives: {
ripple: Ripple
}
};
function render$2(_ctx, _cache, $props, $setup, $data, $options) {
var _directive_ripple = resolveDirective("ripple");
return withDirectives((openBlock(), createElementBlock("button", mergeProps({
"class": _ctx.cx('prev'),
type: "button"
}, $options.getPTOptions('prev'), {
"data-pc-group-section": "pagebutton"
}), [(openBlock(), createBlock(resolveDynamicComponent($props.template || 'AngleLeftIcon'), mergeProps({
"class": _ctx.cx('prevIcon')
}, $options.getPTOptions('prevIcon')), null, 16, ["class"]))], 16)), [[_directive_ripple]]);
}
script$2.render = render$2;
var script$1 = {
name: 'RowsPerPageDropdown',
hostName: 'Paginator',
"extends": BaseComponent,
emits: ['rows-change'],
props: {
options: Array,
rows: Number,
disabled: Boolean,
templates: null
},
methods: {
onChange: function onChange(value) {
this.$emit('rows-change', value);
}
},
computed: {
rowsOptions: function rowsOptions() {
var opts = [];
if (this.options) {
for (var i = 0; i < this.options.length; i++) {
opts.push({
label: String(this.options[i]),
value: this.options[i]
});
}
}
return opts;
}
},
components: {
RPPSelect: Select
}
};
function render$1(_ctx, _cache, $props, $setup, $data, $options) {
var _component_RPPSelect = resolveComponent("RPPSelect");
return openBlock(), createBlock(_component_RPPSelect, {
modelValue: $props.rows,
options: $options.rowsOptions,
optionLabel: "label",
optionValue: "value",
"onUpdate:modelValue": _cache[0] || (_cache[0] = function ($event) {
return $options.onChange($event);
}),
"class": normalizeClass(_ctx.cx('pcRowPerPageDropdown')),
disabled: $props.disabled,
unstyled: _ctx.unstyled,
pt: _ctx.ptm('pcRowPerPageDropdown'),
"data-pc-group-section": "pagedropdown"
}, createSlots({
_: 2
}, [$props.templates['rowsperpagedropdownicon'] ? {
name: "dropdownicon",
fn: withCtx(function (slotProps) {
return [(openBlock(), createBlock(resolveDynamicComponent($props.templates['rowsperpagedropdownicon']), {
"class": normalizeClass(slotProps["class"])
}, null, 8, ["class"]))];
}),
key: "0"
} : undefined]), 1032, ["modelValue", "options", "class", "disabled", "unstyled", "pt"]);
}
script$1.render = render$1;
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = true, o = false; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = true, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
var script = {
name: 'Paginator',
"extends": script$a,
inheritAttrs: false,
emits: ['update:first', 'update:rows', 'page'],
data: function data() {
return {
d_first: this.first,
d_rows: this.rows
};
},
watch: {
first: function first(newValue) {
this.d_first = newValue;
},
rows: function rows(newValue) {
this.d_rows = newValue;
},
totalRecords: function totalRecords(newValue) {
if (this.page > 0 && newValue && this.d_first >= newValue) {
this.changePage(this.pageCount - 1);
}
}
},
mounted: function mounted() {
this.createStyle();
},
methods: {
changePage: function changePage(p) {
var pc = this.pageCount;
if (p >= 0 && p < pc) {
this.d_first = this.d_rows * p;
var state = {
page: p,
first: this.d_first,
rows: this.d_rows,
pageCount: pc
};
this.$emit('update:first', this.d_first);
this.$emit('update:rows', this.d_rows);
this.$emit('page', state);
}
},
changePageToFirst: function changePageToFirst(event) {
if (!this.isFirstPage) {
this.changePage(0);
}
event.preventDefault();
},
changePageToPrev: function changePageToPrev(event) {
this.changePage(this.page - 1);
event.preventDefault();
},
changePageLink: function changePageLink(event) {
this.changePage(event.value - 1);
event.originalEvent.preventDefault();
},
changePageToNext: function changePageToNext(event) {
this.changePage(this.page + 1);
event.preventDefault();
},
changePageToLast: function changePageToLast(event) {
if (!this.isLastPage) {
this.changePage(this.pageCount - 1);
}
event.preventDefault();
},
onRowChange: function onRowChange(value) {
this.d_rows = value;
this.changePage(this.page);
},
createStyle: function createStyle() {
var _this = this;
if (this.hasBreakpoints() && !this.isUnstyled) {
var _this$$primevue;
this.styleElement = document.createElement('style');
this.styleElement.type = 'text/css';
setAttribute(this.styleElement, 'nonce', (_this$$primevue = this.$primevue) === null || _this$$primevue === void 0 || (_this$$primevue = _this$$primevue.config) === null || _this$$primevue === void 0 || (_this$$primevue = _this$$primevue.csp) === null || _this$$primevue === void 0 ? void 0 : _this$$primevue.nonce);
document.body.appendChild(this.styleElement);
var innerHTML = '';
var keys = Object.keys(this.template);
var sortedBreakpoints = {};
keys.sort(function (a, b) {
return parseInt(a) - parseInt(b);
}).forEach(function (key) {
sortedBreakpoints[key] = _this.template[key];
});
for (var _i = 0, _Object$entries = Object.entries(Object.entries(sortedBreakpoints)); _i < _Object$entries.length; _i++) {
var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2),
index = _Object$entries$_i[0],
_Object$entries$_i$ = _slicedToArray(_Object$entries$_i[1], 1),
key = _Object$entries$_i$[0];
var minValue = void 0,
calculatedMinValue = void 0;
if (key !== 'default' && typeof Object.keys(sortedBreakpoints)[index - 1] === 'string') {
calculatedMinValue = Number(Object.keys(sortedBreakpoints)[index - 1].slice(0, -2)) + 1 + 'px';
} else {
calculatedMinValue = Object.keys(sortedBreakpoints)[index - 1];
}
minValue = Object.entries(sortedBreakpoints)[index - 1] ? "and (min-width:".concat(calculatedMinValue, ")") : '';
if (key === 'default') {
innerHTML += "\n @media screen ".concat(minValue, " {\n .p-paginator[").concat(this.$attrSelector, "],\n display: flex;\n }\n }\n ");
} else {
innerHTML += "\n.p-paginator-".concat(key, " {\n display: none;\n}\n@media screen ").concat(minValue, " and (max-width: ").concat(key, ") {\n .p-paginator-").concat(key, " {\n display: flex;\n }\n\n .p-paginator-default{\n display: none;\n }\n}\n ");
}
}
this.styleElement.innerHTML = innerHTML;
}
},
hasBreakpoints: function hasBreakpoints() {
return _typeof(this.template) === 'object';
},
getAriaLabel: function getAriaLabel(labelType) {
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria[labelType] : undefined;
}
},
computed: {
templateItems: function templateItems() {
var keys = {};
if (this.hasBreakpoints()) {
keys = this.template;
if (!keys["default"]) {
keys["default"] = 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown';
}
for (var item in keys) {
keys[item] = this.template[item].split(' ').map(function (value) {
return value.trim();
});
}
return keys;
}
keys['default'] = this.template.split(' ').map(function (value) {
return value.trim();
});
return keys;
},
page: function page() {
return Math.floor(this.d_first / this.d_rows);
},
pageCount: function pageCount() {
return Math.ceil(this.totalRecords / this.d_rows);
},
isFirstPage: function isFirstPage() {
return this.page === 0;
},
isLastPage: function isLastPage() {
return this.page === this.pageCount - 1;
},
calculatePageLinkBoundaries: function calculatePageLinkBoundaries() {
var numberOfPages = this.pageCount;
var visiblePages = Math.min(this.pageLinkSize, numberOfPages);
//calculate range, keep current in middle if necessary
var start = Math.max(0, Math.ceil(this.page - visiblePages / 2));
var end = Math.min(numberOfPages - 1, start + visiblePages - 1);
//check when approaching to last page
var delta = this.pageLinkSize - (end - start + 1);
start = Math.max(0, start - delta);
return [start, end];
},
pageLinks: function pageLinks() {
var pageLinks = [];
var boundaries = this.calculatePageLinkBoundaries;
var start = boundaries[0];
var end = boundaries[1];
for (var i = start; i <= end; i++) {
pageLinks.push(i + 1);
}
return pageLinks;
},
currentState: function currentState() {
return {
page: this.page,
first: this.d_first,
rows: this.d_rows
};
},
empty: function empty() {
return this.pageCount === 0;
},
currentPage: function currentPage() {
return this.pageCount > 0 ? this.page + 1 : 0;
},
last: function last() {
return Math.min(this.d_first + this.rows, this.totalRecords);
}
},
components: {
CurrentPageReport: script$9,
FirstPageLink: script$8,
LastPageLink: script$5,
NextPageLink: script$4,
PageLinks: script$3,
PrevPageLink: script$2,
RowsPerPageDropdown: script$1,
JumpToPageDropdown: script$7,
JumpToPageInput: script$6
}
};
function render(_ctx, _cache, $props, $setup, $data, $options) {
var _component_FirstPageLink = resolveComponent("FirstPageLink");
var _component_PrevPageLink = resolveComponent("PrevPageLink");
var _component_NextPageLink = resolveComponent("NextPageLink");
var _component_LastPageLink = resolveComponent("LastPageLink");
var _component_PageLinks = resolveComponent("PageLinks");
var _component_CurrentPageReport = resolveComponent("CurrentPageReport");
var _component_RowsPerPageDropdown = resolveComponent("RowsPerPageDropdown");
var _component_JumpToPageDropdown = resolveComponent("JumpToPageDropdown");
var _component_JumpToPageInput = resolveComponent("JumpToPageInput");
return (_ctx.alwaysShow ? true : $options.pageLinks && $options.pageLinks.length > 1) ? (openBlock(), createElementBlock("nav", normalizeProps(mergeProps({
key: 0
}, _ctx.ptmi('paginatorContainer'))), [(openBlock(true), createElementBlock(Fragment, null, renderList($options.templateItems, function (value, key) {
return openBlock(), createElementBlock("div", mergeProps({
key: key,
ref_for: true,
ref: "paginator",
"class": _ctx.cx('paginator', {
key: key
})
}, _ctx.ptm('root')), [_ctx.$slots.container ? renderSlot(_ctx.$slots, "container", {
key: 0,
first: $data.d_first + 1,
last: $options.last,
rows: $data.d_rows,
page: $options.page,
pageCount: $options.pageCount,
pageLinks: $options.pageLinks,
totalRecords: _ctx.totalRecords,
firstPageCallback: $options.changePageToFirst,
lastPageCallback: $options.changePageToLast,
prevPageCallback: $options.changePageToPrev,
nextPageCallback: $options.changePageToNext,
rowChangeCallback: $options.onRowChange,
changePageCallback: $options.changePage
}) : (openBlock(), createElementBlock(Fragment, {
key: 1
}, [_ctx.$slots.start ? (openBlock(), createElementBlock("div", mergeProps({
key: 0,
"class": _ctx.cx('contentStart'),
ref_for: true
}, _ctx.ptm('contentStart')), [renderSlot(_ctx.$slots, "start", {
state: $options.currentState
})], 16)) : createCommentVNode("", true), createElementVNode("div", mergeProps({
"class": _ctx.cx('content'),
ref_for: true
}, _ctx.ptm('content')), [(openBlock(true), createElementBlock(Fragment, null, renderList(value, function (item) {
return openBlock(), createElementBlock(Fragment, {
key: item
}, [item === 'FirstPageLink' ? (openBlock(), createBlock(_component_FirstPageLink, {
key: 0,
"aria-label": $options.getAriaLabel('firstPageLabel'),
template: _ctx.$slots.firsticon || _ctx.$slots.firstpagelinkicon,
onClick: _cache[0] || (_cache[0] = function ($event) {
return $options.changePageToFirst($event);
}),
disabled: $options.isFirstPage || $options.empty,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["aria-label", "template", "disabled", "unstyled", "pt"])) : item === 'PrevPageLink' ? (openBlock(), createBlock(_component_PrevPageLink, {
key: 1,
"aria-label": $options.getAriaLabel('prevPageLabel'),
template: _ctx.$slots.previcon || _ctx.$slots.prevpagelinkicon,
onClick: _cache[1] || (_cache[1] = function ($event) {
return $options.changePageToPrev($event);
}),
disabled: $options.isFirstPage || $options.empty,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["aria-label", "template", "disabled", "unstyled", "pt"])) : item === 'NextPageLink' ? (openBlock(), createBlock(_component_NextPageLink, {
key: 2,
"aria-label": $options.getAriaLabel('nextPageLabel'),
template: _ctx.$slots.nexticon || _ctx.$slots.nextpagelinkicon,
onClick: _cache[2] || (_cache[2] = function ($event) {
return $options.changePageToNext($event);
}),
disabled: $options.isLastPage || $options.empty,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["aria-label", "template", "disabled", "unstyled", "pt"])) : item === 'LastPageLink' ? (openBlock(), createBlock(_component_LastPageLink, {
key: 3,
"aria-label": $options.getAriaLabel('lastPageLabel'),
template: _ctx.$slots.lasticon || _ctx.$slots.lastpagelinkicon,
onClick: _cache[3] || (_cache[3] = function ($event) {
return $options.changePageToLast($event);
}),
disabled: $options.isLastPage || $options.empty,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["aria-label", "template", "disabled", "unstyled", "pt"])) : item === 'PageLinks' ? (openBlock(), createBlock(_component_PageLinks, {
key: 4,
"aria-label": $options.getAriaLabel('pageLabel'),
value: $options.pageLinks,
page: $options.page,
onClick: _cache[4] || (_cache[4] = function ($event) {
return $options.changePageLink($event);
}),
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["aria-label", "value", "page", "unstyled", "pt"])) : item === 'CurrentPageReport' ? (openBlock(), createBlock(_component_CurrentPageReport, {
key: 5,
"aria-live": "polite",
template: _ctx.currentPageReportTemplate,
currentPage: $options.currentPage,
page: $options.page,
pageCount: $options.pageCount,
first: $data.d_first,
rows: $data.d_rows,
totalRecords: _ctx.totalRecords,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["template", "currentPage", "page", "pageCount", "first", "rows", "totalRecords", "unstyled", "pt"])) : item === 'RowsPerPageDropdown' && _ctx.rowsPerPageOptions ? (openBlock(), createBlock(_component_RowsPerPageDropdown, {
key: 6,
"aria-label": $options.getAriaLabel('rowsPerPageLabel'),
rows: $data.d_rows,
options: _ctx.rowsPerPageOptions,
onRowsChange: _cache[5] || (_cache[5] = function ($event) {
return $options.onRowChange($event);
}),
disabled: $options.empty,
templates: _ctx.$slots,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["aria-label", "rows", "options", "disabled", "templates", "unstyled", "pt"])) : item === 'JumpToPageDropdown' ? (openBlock(), createBlock(_component_JumpToPageDropdown, {
key: 7,
"aria-label": $options.getAriaLabel('jumpToPageDropdownLabel'),
page: $options.page,
pageCount: $options.pageCount,
onPageChange: _cache[6] || (_cache[6] = function ($event) {
return $options.changePage($event);
}),
disabled: $options.empty,
templates: _ctx.$slots,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["aria-label", "page", "pageCount", "disabled", "templates", "unstyled", "pt"])) : item === 'JumpToPageInput' ? (openBlock(), createBlock(_component_JumpToPageInput, {
key: 8,
page: $options.currentPage,
onPageChange: _cache[7] || (_cache[7] = function ($event) {
return $options.changePage($event);
}),
disabled: $options.empty,
unstyled: _ctx.unstyled,
pt: _ctx.pt
}, null, 8, ["page", "disabled", "unstyled", "pt"])) : createCommentVNode("", true)], 64);
}), 128))], 16), _ctx.$slots.end ? (openBlock(), createElementBlock("div", mergeProps({
key: 1,
"class": _ctx.cx('contentEnd'),
ref_for: true
}, _ctx.ptm('contentEnd')), [renderSlot(_ctx.$slots, "end", {
state: $options.currentState
})], 16)) : createCommentVNode("", true)], 64))], 16);
}), 128))], 16)) : createCommentVNode("", true);
}
script.render = render;
export { script as default };
//# sourceMappingURL=index.mjs.map