Files
authentik/web/src/stories/flow-interface.ts
Teffen Ellis cf160f800d web: Safari fixes merge branch (#14181)
* web/admin: Fix layout centering. Adjust theming.

* web: Fix issue where references to Lit SSR break page styles.

* web: Fix issues surrounding color scheme/theme mixup in UI.
2025-04-24 10:16:04 -04:00

13 lines
341 B
TypeScript

import { FlowExecutor } from "@goauthentik/flow/FlowExecutor";
import { customElement } from "lit/decorators.js";
@customElement("ak-storybook-interface-flow")
export class StoryFlowInterface extends FlowExecutor {}
declare global {
interface HTMLElementTagNameMap {
"ak-storybook-interface-flow": StoryFlowInterface;
}
}