{"version":3,"file":"footer-contact-link.BqcRhReX.js","sources":["../../../../../node_modules/lucide-static/dist/esm/icons/circle-help.js","../../../../../node_modules/lucide-static/dist/esm/icons/mail.js","../../../../../node_modules/lucide-static/dist/esm/icons/phone.js","../../../../../node_modules/lucide-static/dist/esm/icons/printer.js","../../../../../packages/icons-web/src/lib/icons/phone/phone.ts","../../../../../packages/icons-web/src/lib/icons/help-circle/help-circle.ts","../../../../../packages/icons-web/src/lib/icons/mail/mail.ts","../../../../../packages/icons-web/src/lib/icons/printer/printer.ts","../../../../../packages/web-components/src/lib/components/footer-contact-link/footer-contact-link.ts"],"sourcesContent":["/**\n * @license lucide-static v0.477.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst CircleHelp = `\n\n`;\n\nexport { CircleHelp as default };\n//# sourceMappingURL=circle-help.js.map\n","/**\n * @license lucide-static v0.477.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Mail = `\n\n`;\n\nexport { Mail as default };\n//# sourceMappingURL=mail.js.map\n","/**\n * @license lucide-static v0.477.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Phone = `\n\n`;\n\nexport { Phone as default };\n//# sourceMappingURL=phone.js.map\n","/**\n * @license lucide-static v0.477.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */\n\nconst Printer = `\n\n`;\n\nexport { Printer as default };\n//# sourceMappingURL=printer.js.map\n","import { Phone } from 'lucide-static';\nimport { html } from 'lit';\nimport { unsafeHTML } from 'lit/directives/unsafe-html.js';\nimport { state } from 'lit/decorators.js';\nimport { pdsCustomIconElement as customElement } from '../../../decorators/pds-icon';\nimport { PdsIcon } from '../PdsIcon';\n\n@customElement('pds-icon-phone')\nexport class PdsIconPhone extends PdsIcon {\n @state()\n icon = Phone;\n\n render() {\n return html`${unsafeHTML(this.setIconAttributes())}`;\n }\n}\n","import { html } from 'lit';\nimport { HelpCircle } from 'lucide-static';\nimport { unsafeHTML } from 'lit/directives/unsafe-html.js';\nimport { state } from 'lit/decorators.js';\nimport { pdsCustomIconElement as customElement } from '../../../decorators/pds-icon';\nimport { PdsIcon } from '../PdsIcon';\n\n@customElement('pds-icon-help-circle')\nexport class PdsIconHelpCircle extends PdsIcon {\n @state()\n icon = HelpCircle;\n\n render() {\n return html`${unsafeHTML(this.setIconAttributes())}`;\n }\n}\n","import { html } from 'lit';\nimport { Mail } from 'lucide-static';\nimport { unsafeHTML } from 'lit/directives/unsafe-html.js';\nimport { state } from 'lit/decorators.js';\nimport { pdsCustomIconElement as customElement } from '../../../decorators/pds-icon';\nimport { PdsIcon } from '../PdsIcon';\n\n@customElement('pds-icon-mail')\nexport class PdsIconMail extends PdsIcon {\n @state()\n icon = Mail;\n\n render() {\n return html`${unsafeHTML(this.setIconAttributes())}`;\n }\n}\n","import { html } from 'lit';\nimport { Printer } from 'lucide-static';\nimport { unsafeHTML } from 'lit/directives/unsafe-html.js';\nimport { state } from 'lit/decorators.js';\nimport { pdsCustomIconElement as customElement } from '../../../decorators/pds-icon';\nimport { PdsIcon } from '../PdsIcon';\n\n@customElement('pds-icon-printer')\nexport class PdsIconPrinter extends PdsIcon {\n @state()\n icon = Printer;\n\n render() {\n return html`${unsafeHTML(this.setIconAttributes())}`;\n }\n}\n","import { html, nothing } from 'lit';\nimport { property, queryAssignedNodes } from 'lit/decorators.js';\nimport { pdsCustomElement as customElement } from '../../decorators/pds-custom-element';\nimport { PdsElement } from '../PdsElement';\nimport styles from './footer-contact-link.scss?inline';\nimport { required } from '../../decorators/required';\nimport '../link/link';\nimport '@principal/design-system-icons-web/phone';\nimport '@principal/design-system-icons-web/help-circle';\nimport '@principal/design-system-icons-web/mail';\nimport '@principal/design-system-icons-web/printer';\n\n/**\n * @summary This component contains default or customizable contact links to be used within the PdsFooter\n *\n * @slot default Optional: Contains the display text of custom links\n */\n@customElement('pds-footer-contact-link', {\n category: 'component',\n type: 'component',\n state: 'stable',\n styles,\n})\nexport class PdsFooterContactLink extends PdsElement {\n /**\n * Style variant\n * - **subtle** renders a subtle pds-link for use on lighter backgrounds\n * - **subtle-inverted** renders a subtle-inverted pds-link for use on darker backgrounds\n */\n @property()\n variant: 'subtle' | 'subtle-inverted' = 'subtle';\n\n /**\n * Link category\n * - **phone** renders a footer-contact-link with a phone icon\n * - **email** renders a footer-contact-link with a mail icon\n * - **help** renders a footer-contact-link with a help-circle icon\n * - **fax** renders a footer-contact-link with a print icon\n * This is a **required** property.\n */\n @required\n @property()\n linkCategory: 'phone' | 'email' | 'help' | 'fax';\n\n /**\n * href prop for phone/fax # or contact URL\n */\n @property({ type: String })\n href: string;\n\n /**\n * aria label to ensure a11y (esp. for phone number links)\n */\n @property({ type: String })\n ariaLabel: string;\n\n /**\n * Specifes target to open the linked document\n */\n @property()\n target?: '_self' | '_blank' | '_parent' | '_top';\n\n /**\n * Specifies information about a linked document\n * Automatically set to 'noopener noreferrer' when target is '_blank'\n */\n @property()\n rel?: string;\n\n /**\n * This grabs the content from the default slot\n * @internal\n */\n @queryAssignedNodes({ slot: undefined })\n defaultSlotElement: Array;\n\n attachIcon() {\n if (this.linkCategory === 'phone') {\n return html``;\n }\n if (this.linkCategory === 'fax') {\n return html``;\n }\n if (this.linkCategory === 'email') {\n return html``;\n }\n if (this.linkCategory === 'help') {\n return html``;\n }\n return nothing;\n }\n\n setPhoneLabel() {\n if (this.defaultSlotElement.length >= 1) {\n return String(this.defaultSlotElement[0].textContent);\n }\n return String(this.getDefaultLabelText());\n }\n\n getDefaulthref() {\n if (this.linkCategory === 'phone') {\n return 'tel:800-986-3343';\n }\n if (this.linkCategory === 'fax') {\n console.error(\n 'For fax variants, please add the `href` and `ariaLabel` attributes, as well as label text.',\n );\n }\n if (this.linkCategory === 'email') {\n return '/contact-us';\n }\n if (this.linkCategory === 'help') {\n return '/help';\n }\n return '';\n }\n\n getDefaultAriaLabel() {\n if (this.linkCategory === 'phone') {\n return `${this.translateText('call-us-at')} ${this.setPhoneLabel()}`;\n }\n if (this.linkCategory === 'fax') {\n console.error(\n 'For fax variants, please add the `href` and `ariaLabel` attributes, as well as label text.',\n );\n }\n if (this.linkCategory === 'email') {\n return `${this.translateText('contact-us')}`;\n }\n if (this.linkCategory === 'help') {\n return `${this.translateText('help-topics')}`;\n }\n return '';\n }\n\n getDefaultLabelText() {\n if (this.linkCategory === 'phone') {\n return `800-986-3343`;\n }\n if (this.linkCategory === 'email') {\n return `${this.translateText('contact-us')}`;\n }\n if (this.linkCategory === 'help') {\n return `${this.translateText('help-topics')}`;\n }\n return nothing;\n }\n\n /**\n * @internal\n */\n get classNames() {\n return {\n [this.variant]: !!this.variant,\n };\n }\n\n render() {\n return html`${this.attachIcon()}${this.getDefaultLabelText()}`;\n }\n}\n"],"names":["CircleHelp","Mail","Phone","Printer","PdsIconPhone","PdsIcon","html","unsafeHTML","__decorateClass","state","customElement","PdsIconHelpCircle","HelpCircle","PdsIconMail","PdsIconPrinter","PdsFooterContactLink","PdsElement","nothing","property","required","queryAssignedNodes","styles"],"mappings":"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","x_google_ignoreList":[0,1,2,3]}