{"version":3,"file":"alert.CV2aOEAf.js","sources":["../../../../../node_modules/lucide-static/dist/esm/icons/triangle-alert.js","../../../../../packages/icons-web/src/lib/icons/alert-triangle/alert-triangle.ts","../../../../../packages/web-components/src/utils/get-slotted-elements-screenreader-text.ts","../../../../../packages/web-components/src/lib/components/alert/alert.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 TriangleAlert = `\n\n`;\n\nexport { TriangleAlert as default };\n//# sourceMappingURL=triangle-alert.js.map\n","import { html } from 'lit';\nimport { AlertTriangle } 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-alert-triangle')\nexport class PdsIconAlertTriangle extends PdsIcon {\n @state()\n icon = AlertTriangle;\n\n render() {\n return html`${unsafeHTML(this.setIconAttributes())}`;\n }\n}\n","// Helper function to recursively get the text content of the slotted elements and their children\nexport const getSlottedElementsScreenreaderText = (\n node: Node,\n srText: string,\n srParentNodes: Set,\n): string => {\n const { parentNode, nodeType } = node;\n let finalSrText = srText;\n if (nodeType === Node.TEXT_NODE) {\n /**\n * If the parent node is in the set of parent nodes, the element's text content has already been added to the screenreader text\n * Return the screenreader text\n * */\n if (parentNode && srParentNodes.has(parentNode)) {\n return finalSrText;\n }\n\n // Get the text content of the node with trimmed white space\n if (node.textContent) {\n const trimmedTextContent = node.textContent.replace(/\\s+/g, ' ').trim();\n finalSrText += ` ${trimmedTextContent}`;\n }\n } else if (nodeType === Node.ELEMENT_NODE) {\n const element = node as HTMLElement;\n const { tagName } = element;\n\n // If the parent node is not in the set of parent nodes, add the text content to the screenreader text\n if (parentNode && !srParentNodes.has(parentNode) && element.textContent) {\n const trimmedTextContent = element.textContent\n .replace(/\\s+/g, ' ')\n .trim();\n finalSrText += ` ${trimmedTextContent}`;\n }\n\n // Appends button or link to the screenreader text if it is a button or link element\n if (tagName === 'BUTTON' || tagName === 'PDS-BUTTON') {\n finalSrText += ' button';\n } else if (tagName === 'A' || tagName === 'PDS-LINK') {\n finalSrText += ' link';\n }\n\n srParentNodes.add(node);\n\n // Recursively check child nodes\n node.childNodes.forEach((childNode) => {\n finalSrText = getSlottedElementsScreenreaderText(\n childNode,\n finalSrText,\n srParentNodes,\n );\n });\n }\n\n return finalSrText;\n};\n","// disable requiredSlot lint until testing issue can be resolved\n/* eslint-disable @nx/workspace-enforce-required-slot-decorator */\n\nimport { html, nothing } from 'lit';\nimport { property, queryAssignedElements, state } from 'lit/decorators.js';\nimport { ifDefined } from 'lit/directives/if-defined.js';\nimport { pdsCustomElement as customElement } from '../../decorators/pds-custom-element';\nimport { PdsElement } from '../PdsElement';\nimport styles from './alert.scss?inline';\nimport '../button/button';\nimport '../layout-container/layout-container';\nimport '@principal/design-system-icons-web/check';\nimport '@principal/design-system-icons-web/alert-circle';\nimport '@principal/design-system-icons-web/alert-triangle';\nimport '@principal/design-system-icons-web/x';\nimport '@principal/design-system-icons-web/info';\nimport { PdsLink } from '../link/link';\nimport { getSlottedElementsScreenreaderText } from '../../../utils/get-slotted-elements-screenreader-text';\n\n/**\n * @summary This component provides feedback to the user about the state of their interaction with in a page or application.\n *\n * @slot default Required: The contents of the alert\n *\n * @fires pds-button-click A custom event dispatched on a click on the alert dismiss button\n */\n@customElement('pds-alert', {\n category: 'component',\n type: 'component',\n state: 'stable',\n styles,\n})\nexport class PdsAlert extends PdsElement {\n connectedCallback() {\n super.connectedCallback();\n this.initLocalization();\n }\n\n /**\n * Style variant\n * - **information** default, renders the alert used for informational alerts\n * - **success** renders the alert used for success alerts\n * - **error** renders the alert used for error alerts, is not dismissible\n * - **warning** renders the alert used for warning alerts\n * - **banner** renders the alert used for banner alerts, by default includes a layout-container\n */\n @property()\n variant: 'information' | 'success' | 'error' | 'warning' | 'banner' =\n 'information';\n\n /**\n * Determines if we should place the header in a layout container\n * If this property isn't passed, no layout container is used.\n */\n @property({ type: String })\n layoutContainerVariant?: 'default' | 'narrow';\n\n /**\n * Remove layout container padding (only to be used if layoutContainerVariant has a value)\n * - **md** removes padding from the layout container below md breakpoint\n * - **all** removes padding from the layout container at all screens (used for nested layout containers)\n */\n @property({ type: String })\n layoutContainerRemovePadding?: 'md' | 'all';\n\n /**\n * Hide dismiss button\n */\n @property({ type: Boolean })\n hideDismissButton: boolean = false;\n\n /**\n * Show or hide alert\n @internal\n */\n @state()\n hidden: boolean = false;\n\n /**\n * Show or hide alert on page load\n */\n @property()\n hiddenOnPageLoad: boolean = false;\n\n /**\n * Checks to see if the alert has valid markup\n * @internal\n */\n @state()\n isValidAlert: boolean = true;\n\n @queryAssignedElements({ slot: undefined })\n defaultSlotElements: HTMLElement[];\n\n /**\n * @internal\n *\n * Checks markup for errors and adds browser console errors for misconfigurations\n */\n async checkLinkVariants() {\n if (this.variant === 'error' && this.hideDismissButton) {\n console.warn(\n 'Error alert cannot be dismissible and will always render without a close button. Please remove the hideDismissButton property to remove this warning.',\n this.outerHTML,\n );\n }\n\n const links = this.querySelectorAll('pds-link');\n links.forEach(async (link) => {\n const pdsLink = link as PdsLink;\n await pdsLink.updateComplete;\n\n const linkAttribute = pdsLink.variant\n ? pdsLink.variant\n : link.getAttribute('variant');\n\n if (this.variant === 'banner' && linkAttribute !== 'strong-inverted') {\n console.error(\n `Invalid link variant: '${linkAttribute}'. Links in a banner alert must use the 'strong-inverted' variant.\n Please update this link with the correct variant to remove this warning.`,\n link,\n );\n this.isValidAlert = false;\n } else if (this.variant !== 'banner' && linkAttribute !== 'strong') {\n console.error(\n `Invalid link variant: '${linkAttribute}'. Links in a non-banner alert must use the 'strong' variant.\n Please update this link with the correct variant to remove this warning.`,\n link,\n );\n this.isValidAlert = false;\n }\n });\n }\n\n /**\n * @internal\n *\n * @returns icon for the alert\n */\n getIcon() {\n switch (this.variant) {\n case 'success':\n return html``;\n case 'information':\n return html``;\n case 'warning':\n return html``;\n default:\n return html``;\n }\n }\n\n showAlert() {\n this.hidden = false;\n this.style.display = 'block';\n }\n\n hideAlert() {\n this.hidden = true;\n this.style.display = 'none';\n }\n\n /**\n * @internal\n *\n * @returns close button markup for dismissable alerts\n */\n getCloseButtonMarkup() {\n return html`\n
\n \n
\n `;\n }\n\n override async firstUpdated() {\n super.firstUpdated();\n // TODOv4: [ValidationTimeout] - Check to see if this setTimeout is still needed\n // This validation logic needs to happen late because it messes\n // with the render content and leads to hydration issues (and issues with child elements)\n // This may be something we can remove if we can find a better way to handle this\n // The validation is only for development - so end users should never see the render content change\n setTimeout(async () => {\n await this.checkLinkVariants();\n }, 1000);\n\n if (this.hiddenOnPageLoad) {\n this.hideAlert();\n }\n\n this.defaultSlotElements.forEach((element) => {\n this.applyLineHeightToSuperscriptElements(element);\n });\n }\n\n /**\n * Recursive function to apply line heights to all nested superscript elements\n * @internal\n */\n applyLineHeightToSuperscriptElements(element: Node) {\n element.childNodes.forEach((child) => {\n if (child.nodeName === 'SUP') {\n const supEl = child as HTMLElement;\n supEl.style.lineHeight = '0';\n }\n if (child.hasChildNodes()) {\n this.applyLineHeightToSuperscriptElements(child);\n }\n });\n }\n\n /**\n * @internal\n */\n get classNames() {\n return {\n [this.variant]: !!this.variant,\n 'is-hidden': this.hidden,\n };\n }\n\n /**\n * @internal\n */\n getScreenReaderText() {\n let srText = '';\n const srParentNodes = new Set();\n\n switch (this.variant) {\n case 'success':\n srText += this.translateText('success-alert');\n break;\n case 'warning':\n srText += this.translateText('warning-alert');\n break;\n case 'error':\n srText += this.translateText('error-alert');\n break;\n case 'banner':\n srText += this.translateText('banner-alert');\n break;\n case 'information':\n default:\n srText += this.translateText('information-alert');\n break;\n }\n\n if (this.hideDismissButton || this.variant === 'error') {\n srText += ` ${this.translateText('alert-not-dismissible')}`;\n }\n\n // This grabs the text content of the slotted elements and adds it to the screenreader text\n const slot = this.shadowRoot?.querySelector('slot');\n if (slot) {\n const slottedElements = slot.assignedNodes();\n slottedElements.forEach((node) => {\n srText = getSlottedElementsScreenreaderText(\n node,\n srText,\n srParentNodes,\n );\n });\n }\n return html`${srText}`;\n }\n\n render() {\n if (!this.isValidAlert) {\n return nothing;\n }\n\n if (this.layoutContainerVariant && this.variant !== 'banner') {\n return html`