diff --git a/core/pfe-core/controllers/internals-controller.ts b/core/pfe-core/controllers/internals-controller.ts index 64bbbcd9e6..1636f91320 100644 --- a/core/pfe-core/controllers/internals-controller.ts +++ b/core/pfe-core/controllers/internals-controller.ts @@ -45,11 +45,13 @@ function aria( configurable: false, get(this: InternalsController) { // @ts-expect-error: because i'm bad, i'm bad - return this.attach()[key]; + const internals = this.attachOrRetrieveInternals(); + return internals[key]; }, set(this: InternalsController, value: string | null) { // @ts-expect-error: shamone! - this.attach()[key] = value; + const internals = this.attachOrRetrieveInternals(); + internals[key] = value; this.host.requestUpdate(); }, }); @@ -206,7 +208,7 @@ export class InternalsController implements ReactiveController, ARIAMixin { `InternalsController must be instantiated with an HTMLElement or a \`getHTMLElement\` function`, ); } - this.attach(); + this.attachOrRetrieveInternals(); this.initializeOptions(options); InternalsController.instances.set(host, this); this.#polyfillDisabledPseudo(); @@ -237,7 +239,7 @@ export class InternalsController implements ReactiveController, ARIAMixin { * Because of that, `this.internals` may not be available in the decorator setter * so we cheat here with nullish coalescing assignment operator `??=`; */ - private attach() { + private attachOrRetrieveInternals() { this.internals ??= this.element!.attachInternals(); return this.internals; } diff --git a/elements/pf-button/demo/user-role.html b/elements/pf-button/demo/user-role.html new file mode 100644 index 0000000000..adaeccfbf5 --- /dev/null +++ b/elements/pf-button/demo/user-role.html @@ -0,0 +1,70 @@ + +

Button Role Example

+
+ HTML + CSS + JS +
+ +
+ HTML is the foundational language of the web. +
+ + + + + + + Note: the purpose of this demo is to show how custom + roles can be applied to <pf-button>. + However, we recommend always using <pf-tabs>, and avoiding custom + implementations of existing design system patterns + +
+ + + +