Revert "web: Safari fixes merge branch (#14181)" (#14211)

This commit is contained in:
Marc 'risson' Schmitt
2025-04-24 20:00:29 +02:00
committed by GitHub
parent cf160f800d
commit 337956672f
31 changed files with 832 additions and 1424 deletions

View File

@ -1,9 +1,18 @@
import { FlowExecutor } from "@goauthentik/flow/FlowExecutor";
import { customElement } from "lit/decorators.js";
import { customElement, property } from "lit/decorators.js";
import { UiThemeEnum } from "@goauthentik/api";
@customElement("ak-storybook-interface-flow")
export class StoryFlowInterface extends FlowExecutor {}
export class StoryFlowInterface extends FlowExecutor {
@property()
storyTheme: UiThemeEnum = UiThemeEnum.Dark;
async getTheme(): Promise<UiThemeEnum> {
return this.storyTheme;
}
}
declare global {
interface HTMLElementTagNameMap {