* 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.
13 lines
341 B
TypeScript
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;
|
|
}
|
|
}
|