@fluid-topics/ft-filter 1.1.109 → 1.1.112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -56,7 +56,8 @@ class FtFilterLevel extends FtLitElement {
56
56
  <div tabindex="0"
57
57
  part="controls go-back"
58
58
  class="ft-filter-level--go-back"
59
- aria-label="back to ${this.parent.label}"
59
+ aria-label="Back to ${this.parent.label}"
60
+ role="button"
60
61
  ?disabled=${this.disabled}
61
62
  @keyup=${this.goBackOnKeyPress}
62
63
  @click=${this.goBackOnClick}>
@@ -82,10 +83,9 @@ class FtFilterLevel extends FtLitElement {
82
83
  : html `
83
84
  <ft-button icon="thin_arrow_right"
84
85
  part="controls navigate-hierarchy"
85
- aria-label="expand node"
86
- label="${option.label}"
86
+ aria-label="Expand node"
87
87
  ?disabled=${this.disabled}
88
- tooltipPosition="left"
88
+ hideTooltip
89
89
  @click=${() => this.displayLevel(option)}></ft-button>
90
90
  `}
91
91
  </div>