{ "version": 3, "sources": ["../../node_modules/@patternfly/patternfly/components/Title/title.css", "../../node_modules/lit-html/src/directives/if-defined.ts", "../../src/flow/stages/base.ts"], "sourcesContent": [".pf-c-title {\n --pf-c-title--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);\n --pf-c-title--m-4xl--LineHeight: var(--pf-global--LineHeight--sm);\n --pf-c-title--m-4xl--FontSize: var(--pf-global--FontSize--4xl);\n --pf-c-title--m-4xl--FontWeight: var(--pf-global--FontWeight--normal);\n --pf-c-title--m-3xl--LineHeight: var(--pf-global--LineHeight--sm);\n --pf-c-title--m-3xl--FontSize: var(--pf-global--FontSize--3xl);\n --pf-c-title--m-3xl--FontWeight: var(--pf-global--FontWeight--normal);\n --pf-c-title--m-2xl--LineHeight: var(--pf-global--LineHeight--sm);\n --pf-c-title--m-2xl--FontSize: var(--pf-global--FontSize--2xl);\n --pf-c-title--m-2xl--FontWeight: var(--pf-global--FontWeight--normal);\n --pf-c-title--m-xl--LineHeight: var(--pf-global--LineHeight--md);\n --pf-c-title--m-xl--FontSize: var(--pf-global--FontSize--xl);\n --pf-c-title--m-xl--FontWeight: var(--pf-global--FontWeight--normal);\n --pf-c-title--m-lg--LineHeight: var(--pf-global--LineHeight--md);\n --pf-c-title--m-lg--FontSize: var(--pf-global--FontSize--lg);\n --pf-c-title--m-lg--FontWeight: var(--pf-global--FontWeight--normal);\n --pf-c-title--m-md--LineHeight: var(--pf-global--LineHeight--md);\n --pf-c-title--m-md--FontSize: var(--pf-global--FontSize--md);\n --pf-c-title--m-md--FontWeight: var(--pf-global--FontWeight--normal);\n font-family: var(--pf-c-title--FontFamily);\n word-break: break-word;\n}\n.pf-c-title.pf-m-4xl {\n font-size: var(--pf-c-title--m-4xl--FontSize);\n font-weight: var(--pf-c-title--m-4xl--FontWeight);\n line-height: var(--pf-c-title--m-4xl--LineHeight);\n}\n.pf-c-title.pf-m-3xl {\n font-size: var(--pf-c-title--m-3xl--FontSize);\n font-weight: var(--pf-c-title--m-3xl--FontWeight);\n line-height: var(--pf-c-title--m-3xl--LineHeight);\n}\n.pf-c-title.pf-m-2xl {\n font-size: var(--pf-c-title--m-2xl--FontSize);\n font-weight: var(--pf-c-title--m-2xl--FontWeight);\n line-height: var(--pf-c-title--m-2xl--LineHeight);\n}\n.pf-c-title.pf-m-xl {\n font-size: var(--pf-c-title--m-xl--FontSize);\n font-weight: var(--pf-c-title--m-xl--FontWeight);\n line-height: var(--pf-c-title--m-xl--LineHeight);\n}\n.pf-c-title.pf-m-lg {\n font-size: var(--pf-c-title--m-lg--FontSize);\n font-weight: var(--pf-c-title--m-lg--FontWeight);\n line-height: var(--pf-c-title--m-lg--LineHeight);\n}\n.pf-c-title.pf-m-md {\n font-size: var(--pf-c-title--m-md--FontSize);\n font-weight: var(--pf-c-title--m-md--FontWeight);\n line-height: var(--pf-c-title--m-md--LineHeight);\n}\n\n.pf-m-overpass-font .pf-c-title {\n --pf-c-title--m-md--FontWeight: var(--pf-global--FontWeight--semi-bold);\n --pf-c-title--m-lg--FontWeight: var(--pf-global--FontWeight--semi-bold);\n}", "/**\n * @license\n * Copyright 2018 Google LLC\n * SPDX-License-Identifier: BSD-3-Clause\n */\n\nimport {nothing} from '../lit-html.js';\n\n/**\n * For AttributeParts, sets the attribute if the value is defined and removes\n * the attribute if the value is undefined.\n *\n * For other part types, this directive is a no-op.\n */\nexport const ifDefined = (value: T) => value ?? nothing;\n", "import { AKElement } from \"@goauthentik/elements/Base\";\nimport { KeyUnknown } from \"@goauthentik/elements/forms/Form\";\n\nimport { msg } from \"@lit/localize\";\nimport { html, nothing } from \"lit\";\nimport { property } from \"lit/decorators.js\";\nimport { ifDefined } from \"lit/directives/if-defined.js\";\n\nimport { ContextualFlowInfo, CurrentBrand, ErrorDetail } from \"@goauthentik/api\";\n\nexport interface SubmitOptions {\n invisible: boolean;\n}\n\nexport interface StageHost {\n challenge?: unknown;\n flowSlug?: string;\n loading: boolean;\n submit(payload: unknown, options?: SubmitOptions): Promise;\n\n readonly brand?: CurrentBrand;\n}\n\nexport function readFileAsync(file: Blob) {\n return new Promise((resolve, reject) => {\n const reader = new FileReader();\n reader.onload = () => {\n resolve(reader.result);\n };\n reader.onerror = reject;\n reader.readAsDataURL(file);\n });\n}\n\n// Challenge which contains flow info\nexport interface FlowInfoChallenge {\n flowInfo?: ContextualFlowInfo;\n}\n\n// Challenge which has a pending user\nexport interface PendingUserChallenge {\n pendingUser?: string;\n pendingUserAvatar?: string;\n}\n\nexport interface ResponseErrorsChallenge {\n responseErrors?: {\n [key: string]: Array;\n };\n}\n\nexport class BaseStage<\n Tin extends FlowInfoChallenge & PendingUserChallenge & ResponseErrorsChallenge,\n Tout,\n> extends AKElement {\n host!: StageHost;\n\n @property({ attribute: false })\n challenge!: Tin;\n\n async submitForm(e: Event, defaults?: Tout): Promise {\n e.preventDefault();\n const object: KeyUnknown = defaults || {};\n const form = new FormData(this.shadowRoot?.querySelector(\"form\") || undefined);\n\n for await (const [key, value] of form.entries()) {\n if (value instanceof Blob) {\n object[key] = await readFileAsync(value);\n } else {\n object[key] = value;\n }\n }\n return this.host?.submit(object as unknown as Tout).then((successful) => {\n if (successful) {\n this.cleanup();\n }\n return successful;\n });\n }\n\n renderNonFieldErrors() {\n const errors = this.challenge?.responseErrors || {};\n if (!(\"non_field_errors\" in errors)) {\n return nothing;\n }\n const nonFieldErrors = errors[\"non_field_errors\"];\n if (!nonFieldErrors) {\n return nothing;\n }\n return html`
\n ${nonFieldErrors.map((err) => {\n return html`
\n
\n \n
\n

${err.string}

\n
`;\n })}\n
`;\n }\n\n renderUserInfo() {\n if (!this.challenge.pendingUser || !this.challenge.pendingUserAvatar) {\n return nothing;\n }\n return html`\n \n \n \n \n `;\n }\n\n cleanup(): void {\n // Method that can be overridden by stages\n return;\n }\n}\n"], "mappings": "6IAAA,IAAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;GCcO,IAAMC,EAAgBC,GAAaA,GAASC,ECS5C,SAASC,EAAcC,EAAY,CACtC,OAAO,IAAI,QAAQ,CAACC,EAASC,IAAW,CACpC,IAAMC,EAAS,IAAI,WACnBA,EAAO,OAAS,IAAM,CAClBF,EAAQE,EAAO,MAAM,CACzB,EACAA,EAAO,QAAUD,EACjBC,EAAO,cAAcH,CAAI,CAC7B,CAAC,CACL,CAmBO,IAAMI,EAAN,cAGGC,CAAU,CAMhB,MAAM,WAAWC,EAAUC,EAAmC,CAC1DD,EAAE,eAAe,EACjB,IAAME,EAAqBD,GAAY,CAAC,EAClCE,EAAO,IAAI,SAAS,KAAK,YAAY,cAAc,MAAM,GAAK,MAAS,EAE7E,aAAiB,CAACC,EAAKC,CAAK,IAAKF,EAAK,QAAQ,EACtCE,aAAiB,KACjBH,EAAOE,CAAG,EAAI,MAAMX,EAAcY,CAAK,EAEvCH,EAAOE,CAAG,EAAIC,EAGtB,OAAO,KAAK,MAAM,OAAOH,CAAyB,EAAE,KAAMI,IAClDA,GACA,KAAK,QAAQ,EAEVA,EACV,CACL,CAEA,sBAAuB,CACnB,IAAMC,EAAS,KAAK,WAAW,gBAAkB,CAAC,EAClD,GAAI,EAAE,qBAAsBA,GACxB,OAAOC,EAEX,IAAMC,EAAiBF,EAAO,iBAC9B,OAAKE,EAGEC;AAAA,cACDD,EAAe,IAAKE,GACXD;AAAA;AAAA;AAAA;AAAA,oDAI6BC,EAAI,MAAM;AAAA,uBAEjD,CAAC;AAAA,gBAVKH,CAYf,CAEA,gBAAiB,CACb,MAAI,CAAC,KAAK,UAAU,aAAe,CAAC,KAAK,UAAU,kBACxCA,EAEJE;AAAA;AAAA;AAAA,8BAGe,KAAK,UAAU,iBAAiB;AAAA,uBACvC,KAAK,UAAU,WAAW;AAAA;AAAA;AAAA,+BAGlBE,EAAU,KAAK,UAAU,UAAU,SAAS,CAAC;AAAA,2BACjDC,EAAI,UAAU,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,yBAQjB,KAAK,UAAU,WAAW;AAAA;AAAA,SAG/C,CAEA,SAAgB,CAGhB,CACJ,EAxEIC,EAAA,CADCC,EAAS,CAAE,UAAW,EAAM,CAAC,GANrBjB,EAOT", "names": ["title_default", "ifDefined", "value", "nothing", "readFileAsync", "file", "resolve", "reject", "reader", "BaseStage", "AKElement", "e", "defaults", "object", "form", "key", "value", "successful", "errors", "D", "nonFieldErrors", "ke", "err", "to", "msg", "__decorateClass", "n"] }