@brightspace-ui/labs 2.42.0 → 2.42.1
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.
package/package.json
CHANGED
|
@@ -177,6 +177,8 @@ class SliderBar extends LocalizeLabsElement(RtlMixin(LitElement)) {
|
|
|
177
177
|
<div
|
|
178
178
|
id="sliderBar"
|
|
179
179
|
@mousedown="${this._barDown}"
|
|
180
|
+
@keydown="${this._onKeyPress}"
|
|
181
|
+
tabindex="0"
|
|
180
182
|
role="slider"
|
|
181
183
|
aria-label="${this.localize('components:mediaPlayer:sliderBarProgress')}"
|
|
182
184
|
aria-orientation="${this.vertical ? 'vertical' : 'horizontal'}"
|
|
@@ -192,8 +194,6 @@ class SliderBar extends LocalizeLabsElement(RtlMixin(LitElement)) {
|
|
|
192
194
|
<div id="knobContainer">
|
|
193
195
|
<div id="sliderKnob"
|
|
194
196
|
class="slider-knob"
|
|
195
|
-
@keydown="${this._onKeyPress}"
|
|
196
|
-
tabindex="0"
|
|
197
197
|
>
|
|
198
198
|
<div class="slider-knob-inner"></div>
|
|
199
199
|
</div>
|