@fluid-topics/ft-filter 1.1.111 → 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>
@@ -1121,7 +1121,8 @@ Also for action icons.`,n.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
1121
1121
  <div tabindex="0"
1122
1122
  part="controls go-back"
1123
1123
  class="ft-filter-level--go-back"
1124
- aria-label="back to ${this.parent.label}"
1124
+ aria-label="Back to ${this.parent.label}"
1125
+ role="button"
1125
1126
  ?disabled=${this.disabled}
1126
1127
  @keyup=${this.goBackOnKeyPress}
1127
1128
  @click=${this.goBackOnClick}>
@@ -1141,10 +1142,9 @@ Also for action icons.`,n.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
1141
1142
  ${this.preventNavigation||i.selected||((l=i.subOptions)!==null&&l!==void 0?l:[]).length===0?ut.nothing:ut.html`
1142
1143
  <ft-button icon="thin_arrow_right"
1143
1144
  part="controls navigate-hierarchy"
1144
- aria-label="expand node"
1145
- label="${i.label}"
1145
+ aria-label="Expand node"
1146
1146
  ?disabled=${this.disabled}
1147
- tooltipPosition="left"
1147
+ hideTooltip
1148
1148
  @click=${()=>this.displayLevel(i)}></ft-button>
1149
1149
  `}
1150
1150
  </div>