{"version":3,"file":"pagination-item.BqKNTEfL.js","sources":["../../../../../packages/web-components/src/lib/components/pagination-item/pagination-item.ts"],"sourcesContent":["import { html, nothing } from 'lit';\nimport { property } from 'lit/decorators.js';\nimport { pdsCustomElement as customElement } from '../../decorators/pds-custom-element';\nimport { required } from '../../decorators/required';\nimport { PdsElement } from '../PdsElement';\nimport styles from './pagination-item.scss?inline';\n\n/**\n * @summary A pagination item\n *\n * @fires pds-pagination-item-click A custom event dispatched on click with an event detail summary indicating the clicked pagination page\n */\n@customElement('pds-pagination-item', {\n category: 'component',\n type: 'component',\n state: 'stable',\n styles,\n})\nexport class PdsPaginationItem extends PdsElement {\n connectedCallback() {\n super.connectedCallback();\n this.initLocalization();\n }\n\n /**\n * Style variant - this should be set programatically by the parent pagination component, so it should not need to be manually set\n * - **no-arrows-first** renders pagination button with rounded left side\n * - **no-arrows-last** renders pagination button with rounded right side\n * - **no-arrows-one-item** renders pagination button with both sides rounded\n *\n * @internal\n */\n @property({ type: String })\n variant: 'no-arrows-first' | 'no-arrows-last' | 'no-arrows-one-item';\n\n /**\n * Active page indicator\n */\n @property({ type: Boolean })\n active: boolean = false;\n\n /**\n * If page navigation should be the result of the interaction, supply a url for the href\n */\n @property({ type: String })\n href: string;\n\n /**\n * Handles spacing when no flyers are present- this should be set programmatically by the parent pagination component, so it should not need to be manually set\n *\n * @internal\n */\n @property({ type: Boolean })\n hideFlyers: boolean = false;\n\n /**\n * Page number to display in pagination item. This is a **required** property.\n */\n @required\n @property({ type: Number, reflect: true })\n pageNumber: Number;\n\n handleClick(e: { target: { textContent: string } }) {\n const detailSummaryMessage = e.target.textContent.trim();\n const customEvent = new CustomEvent('pds-pagination-item-click', {\n bubbles: true,\n composed: true,\n detail: {\n summary: detailSummaryMessage,\n },\n });\n\n this.dispatchEvent(customEvent);\n }\n\n getButtonMarkup() {\n return html`\n \n `;\n }\n\n getAnchorMarkup() {\n return html`\n \n ${this.pageNumber}\n \n `;\n }\n\n /**\n * @internal\n */\n get classNames() {\n return {\n [this.variant]: !!this.variant,\n hideFlyers: this.hideFlyers,\n 'list-item': true,\n };\n }\n\n // aria-current must be set to the actual value of 'true' for the screen reader to announce it\n render() {\n return html`