{"version":3,"file":"step-indicator-item.iI4KZXqg.js","sources":["../../../../../packages/web-components/src/lib/components/step-indicator-item/step-indicator-item.ts"],"sourcesContent":["import { html, nothing } from 'lit';\nimport { property } from 'lit/decorators.js';\nimport { pdsCustomElement as customElement } from '../../decorators/pds-custom-element';\nimport { PdsElement } from '../PdsElement';\nimport styles from './step-indicator-item.scss?inline';\nimport '@principal/design-system-icons-web/check';\nimport { requiredSlot } from '../../decorators/requiredSlot';\n\n/**\n * @summary A step indicator item\n *\n * @slot default Required: The text of the step\n *\n * @fires pds-step-indicator-item-click a custom event dispatched on click\n */\n@customElement('pds-step-indicator-item', {\n category: 'component',\n type: 'component',\n state: 'stable',\n styles,\n})\nexport class PdsStepIndicatorItem extends PdsElement {\n connectedCallback() {\n super.connectedCallback();\n this.initLocalization();\n }\n\n /**\n * status\n * - **complete** renders the step-indicator-item as a completed step\n * - **current** renders the step-indicator-item as the current step\n * - **incomplete** renders the step-indicator-item as an incomplete step\n */\n @property({ reflect: true })\n status: 'completed' | 'current' | 'incomplete' = 'incomplete';\n\n /**\n * href\n */\n @property({ reflect: true })\n href: string;\n\n /**\n * active\n * This indicates the user is viewing this step\n */\n @property({ type: Boolean })\n active: boolean = false;\n\n /**\n * variant\n * - **default** renders the step-indicator-item with the default styling\n * - **inverted** renders the step-indicator-item with the inverted styling\n */\n @property({ type: String })\n variant: 'default' | 'inverted' = 'default';\n\n /**\n * @internal\n */\n get classNames() {\n return {\n [this.status]: !!this.status,\n interactive: !!this.href,\n active: !!this.active,\n inverted: this.variant === 'inverted',\n };\n }\n\n handleClick(e: Event) {\n const customEvent = new CustomEvent('pds-step-indicator-item-click', {\n bubbles: true,\n composed: true,\n cancelable: true,\n detail: {\n summary: this.textContent,\n },\n });\n\n this.dispatchEvent(customEvent);\n\n if (customEvent.defaultPrevented) {\n e.preventDefault();\n }\n }\n\n completedCircleTemplate() {\n return html`