{ "version": 3, "sources": ["../../node_modules/@patternfly/patternfly/components/AlertGroup/alert-group.css", "../../src/elements/messages/Message.ts", "../../src/elements/messages/MessageContainer.ts"], "sourcesContent": [".pf-c-alert-group {\n --pf-c-alert-group__item--MarginTop: var(--pf-global--spacer--sm);\n --pf-c-alert-group--m-toast--Top: var(--pf-global--spacer--2xl);\n --pf-c-alert-group--m-toast--Right: var(--pf-global--spacer--xl);\n --pf-c-alert-group--m-toast--MaxWidth: 37.5rem;\n --pf-c-alert-group--m-toast--ZIndex: var(--pf-global--ZIndex--2xl);\n --pf-c-alert-group__overflow-button--BorderWidth: 0;\n --pf-c-alert-group__overflow-button--PaddingTop: var(--pf-global--spacer--lg);\n --pf-c-alert-group__overflow-button--PaddingRight: var(--pf-global--spacer--md);\n --pf-c-alert-group__overflow-button--PaddingBottom: var(--pf-global--spacer--lg);\n --pf-c-alert-group__overflow-button--PaddingLeft: var(--pf-global--spacer--md);\n --pf-c-alert-group__overflow-button--Color: var(--pf-global--link--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-global--BoxShadow--lg);\n --pf-c-alert-group__overflow-button--BackgroundColor: var(--pf-global--BackgroundColor--100);\n --pf-c-alert-group__overflow-button--hover--Color: var(--pf-global--link--Color--hover);\n --pf-c-alert-group__overflow-button--hover--BoxShadow: var(--pf-global--BoxShadow--lg), var(--pf-global--BoxShadow--lg-bottom);\n --pf-c-alert-group__overflow-button--focus--Color: var(--pf-global--link--Color--hover);\n --pf-c-alert-group__overflow-button--focus--BoxShadow: var(--pf-global--BoxShadow--lg), var(--pf-global--BoxShadow--lg-bottom);\n --pf-c-alert-group__overflow-button--active--Color: var(--pf-global--link--Color--hover);\n --pf-c-alert-group__overflow-button--active--BoxShadow: var(--pf-global--BoxShadow--lg), var(--pf-global--BoxShadow--lg-bottom);\n}\n.pf-c-alert-group > * + * {\n margin-top: var(--pf-c-alert-group__item--MarginTop);\n}\n.pf-c-alert-group.pf-m-toast {\n position: fixed;\n top: var(--pf-c-alert-group--m-toast--Top);\n right: var(--pf-c-alert-group--m-toast--Right);\n z-index: var(--pf-c-alert-group--m-toast--ZIndex);\n width: calc(100% - var(--pf-c-alert-group--m-toast--Right) * 2);\n max-width: var(--pf-c-alert-group--m-toast--MaxWidth);\n}\n\n.pf-c-alert-group__overflow-button {\n position: relative;\n width: 100%;\n padding: var(--pf-c-alert-group__overflow-button--PaddingTop) var(--pf-c-alert-group__overflow-button--PaddingRight) var(--pf-c-alert-group__overflow-button--PaddingBottom) var(--pf-c-alert-group__overflow-button--PaddingLeft);\n color: var(--pf-c-alert-group__overflow-button--Color);\n background-color: var(--pf-c-alert-group__overflow-button--BackgroundColor);\n border-width: var(--pf-c-alert-group__overflow-button--BorderWidth);\n box-shadow: var(--pf-c-alert-group__overflow-button--BoxShadow);\n}\n.pf-c-alert-group__overflow-button:hover {\n --pf-c-alert-group__overflow-button--Color: var(--pf-c-alert-group__overflow-button--hover--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-c-alert-group__overflow-button--hover--BoxShadow);\n}\n.pf-c-alert-group__overflow-button:focus {\n --pf-c-alert-group__overflow-button--Color: var(--pf-c-alert-group__overflow-button--focus--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-c-alert-group__overflow-button--focus--BoxShadow);\n}\n.pf-c-alert-group__overflow-button:active {\n --pf-c-alert-group__overflow-button--Color: var(--pf-c-alert-group__overflow-button--active--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-c-alert-group__overflow-button--active--BoxShadow);\n}", "import { MessageLevel } from \"@goauthentik/common/messages\";\nimport { AKElement } from \"@goauthentik/elements/Base\";\n\nimport { CSSResult, TemplateResult, html } from \"lit\";\nimport { customElement, property } from \"lit/decorators.js\";\n\nimport PFAlert from \"@patternfly/patternfly/components/Alert/alert.css\";\nimport PFAlertGroup from \"@patternfly/patternfly/components/AlertGroup/alert-group.css\";\nimport PFButton from \"@patternfly/patternfly/components/Button/button.css\";\nimport PFBase from \"@patternfly/patternfly/patternfly-base.css\";\n\nexport interface APIMessage {\n level: MessageLevel;\n tags?: string;\n message: string;\n description?: string;\n}\n\nconst LEVEL_ICON_MAP: { [key: string]: string } = {\n error: \"fas fa-exclamation-circle\",\n warning: \"fas fa-exclamation-triangle\",\n success: \"fas fa-check-circle\",\n info: \"fas fa-info\",\n};\n\n@customElement(\"ak-message\")\nexport class Message extends AKElement {\n @property({ attribute: false })\n message?: APIMessage;\n\n @property({ type: Number })\n removeAfter = 8000;\n\n @property({ attribute: false })\n onRemove?: (m: APIMessage) => void;\n\n static get styles(): CSSResult[] {\n return [PFBase, PFButton, PFAlert, PFAlertGroup];\n }\n\n firstUpdated(): void {\n setTimeout(() => {\n if (!this.message) return;\n if (!this.onRemove) return;\n this.onRemove(this.message);\n }, this.removeAfter);\n }\n\n render(): TemplateResult {\n return html`
${this.message?.message}
\n ${this.message?.description &&\n html`${this.message.description}
\n