@brightspace-ui/labs 2.37.2 → 2.37.4

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
@@ -114,5 +114,5 @@
114
114
  "resize-observer-polyfill": "^1",
115
115
  "webvtt-parser": "^2.1.2"
116
116
  },
117
- "version": "2.37.2"
117
+ "version": "2.37.4"
118
118
  }
@@ -1234,6 +1234,7 @@ class MediaPlayer extends LocalizeLabsElement(RtlMixin(LitElement)) {
1234
1234
  @playing=${this._onPlaying}
1235
1235
  @pause=${this._onPause}
1236
1236
  @loadedmetadata=${this._onLoadedMetadata}
1237
+ tabindex="-1"
1237
1238
  @timeupdate=${this._onTimeUpdate}
1238
1239
  @volumechange=${this._onVolumeChange}
1239
1240
  >
@@ -175,7 +175,7 @@ class NavigationImmersive extends LitElement {
175
175
  this._rightObserver = new ResizeObserver(this._onRightResize.bind(this));
176
176
 
177
177
  // Only create navigation observer if feature flag is enabled
178
- if (getFlag('GAUD-8465-immersive-nav-text-spacing', true)) {
178
+ if (getFlag('GAUD-8465-immersive-nav-text-spacing', false)) {
179
179
  this._navigationObserver = new ResizeObserver(this._onNavigationResize.bind(this));
180
180
  }
181
181