web: use absolute imports with path rewrite instead of relative imports (#3149)
This commit is contained in:
@ -1,10 +1,20 @@
|
||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
|
||||
import "@goauthentik/web/elements/forms/ProxyForm";
|
||||
import "@goauthentik/web/elements/wizard/FormWizardPage";
|
||||
import "@goauthentik/web/elements/wizard/Wizard";
|
||||
import { WizardPage } from "@goauthentik/web/elements/wizard/WizardPage";
|
||||
import "@goauthentik/web/pages/sources/ldap/LDAPSourceForm";
|
||||
import "@goauthentik/web/pages/sources/oauth/OAuthSourceForm";
|
||||
import "@goauthentik/web/pages/sources/plex/PlexSourceForm";
|
||||
import "@goauthentik/web/pages/sources/saml/SAMLSourceForm";
|
||||
|
||||
import { t } from "@lingui/macro";
|
||||
|
||||
import { customElement } from "@lit/reactive-element/decorators/custom-element.js";
|
||||
import { CSSResult, LitElement, TemplateResult, html } from "lit";
|
||||
import { property } from "lit/decorators.js";
|
||||
|
||||
import AKGlobal from "../../authentik.css";
|
||||
import AKGlobal from "@goauthentik/web/authentik.css";
|
||||
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
||||
import PFForm from "@patternfly/patternfly/components/Form/form.css";
|
||||
import PFRadio from "@patternfly/patternfly/components/Radio/radio.css";
|
||||
@ -12,16 +22,6 @@ import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
||||
|
||||
import { SourcesApi, TypeCreate } from "@goauthentik/api";
|
||||
|
||||
import { DEFAULT_CONFIG } from "../../api/Config";
|
||||
import "../../elements/forms/ProxyForm";
|
||||
import "../../elements/wizard/FormWizardPage";
|
||||
import "../../elements/wizard/Wizard";
|
||||
import { WizardPage } from "../../elements/wizard/WizardPage";
|
||||
import "./ldap/LDAPSourceForm";
|
||||
import "./oauth/OAuthSourceForm";
|
||||
import "./plex/PlexSourceForm";
|
||||
import "./saml/SAMLSourceForm";
|
||||
|
||||
@customElement("ak-source-wizard-initial")
|
||||
export class InitialSourceWizardPage extends WizardPage {
|
||||
@property({ attribute: false })
|
||||
|
||||
Reference in New Issue
Block a user