* main: (213 commits) website/docs: configuration: fix typo in kubectl command (#10492) website/integrations: fix typo in minio instructions (#10500) web: bump @typescript-eslint/eslint-plugin from 7.5.0 to 7.16.0 in /tests/wdio (#10496) website: bump prettier from 3.3.2 to 3.3.3 in /website (#10493) core: bump ruff from 0.5.1 to 0.5.2 (#10494) web: bump @typescript-eslint/parser from 7.5.0 to 7.16.0 in /tests/wdio (#10495) web: bump eslint-plugin-sonarjs from 0.25.1 to 1.0.3 in /tests/wdio (#10498) web: bump prettier from 3.3.2 to 3.3.3 in /tests/wdio (#10497) web: bump pseudolocale from 2.0.0 to 2.1.0 in /web (#10499) core: bump goauthentik.io/api/v3 from 3.2024061.1 to 3.2024061.2 (#10491) web: bump API Client version (#10488) flows: remove stage challenge type (#10476) core: bump github.com/redis/go-redis/v9 from 9.5.3 to 9.5.4 (#10469) core: bump goauthentik.io/api/v3 from 3.2024060.6 to 3.2024061.1 (#10470) web: bump the babel group across 1 directory with 2 updates (#10471) web: bump the storybook group across 1 directory with 7 updates (#10472) core: bump coverage from 7.5.4 to 7.6.0 (#10473) website/docs: air gapped: clarify .env usage at the top for Kubernetes installations (#10447) website/docs: air gapped: update "see configuration" wording (#10448) website/docs: Add Kubernetes Bootstrap Instructions (#9541) ...
87 lines
3.0 KiB
TypeScript
87 lines
3.0 KiB
TypeScript
import { AKElement } from "@goauthentik/elements/Base";
|
|
|
|
import { msg } from "@lit/localize";
|
|
import { CSSResult, TemplateResult, css, html } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
|
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
|
import PFForm from "@patternfly/patternfly/components/Form/form.css";
|
|
import PFFormControl from "@patternfly/patternfly/components/FormControl/form-control.css";
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
|
|
/**
|
|
* Form Group
|
|
*
|
|
* Mostly visual effects, with a single interaction for opening/closing the view.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* TODO: Listen for custom events from its children about 'invalidation' events, and
|
|
* trigger the `expanded` property as needed.
|
|
*/
|
|
|
|
@customElement("ak-form-group")
|
|
export class FormGroup extends AKElement {
|
|
@property({ type: Boolean, reflect: true })
|
|
expanded = false;
|
|
|
|
@property({ type: String, attribute: "aria-label", reflect: true })
|
|
ariaLabel = msg("Details");
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [
|
|
PFBase,
|
|
PFForm,
|
|
PFButton,
|
|
PFFormControl,
|
|
css`
|
|
slot[name="body"][hidden] {
|
|
display: none !important;
|
|
}
|
|
`,
|
|
];
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
return html`<div class="pf-c-form__field-group ${this.expanded ? "pf-m-expanded" : ""}">
|
|
<div class="pf-c-form__field-group-toggle">
|
|
<div class="pf-c-form__field-group-toggle-button">
|
|
<button
|
|
class="pf-c-button pf-m-plain"
|
|
type="button"
|
|
aria-expanded="${this.expanded}"
|
|
aria-label=${this.ariaLabel}
|
|
@click=${() => {
|
|
this.expanded = !this.expanded;
|
|
}}
|
|
>
|
|
<span class="pf-c-form__field-group-toggle-icon">
|
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="pf-c-form__field-group-header">
|
|
<div class="pf-c-form__field-group-header-main">
|
|
<div class="pf-c-form__field-group-header-title">
|
|
<div class="pf-c-form__field-group-header-title-text">
|
|
<slot name="header"></slot>
|
|
</div>
|
|
</div>
|
|
<div class="pf-c-form__field-group-header-description">
|
|
<slot name="description"></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<slot ?hidden=${!this.expanded} class="pf-c-form__field-group-body" name="body"></slot>
|
|
</div>`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ak-form-group": FormGroup;
|
|
}
|
|
}
|