unified-video-framework 1.4.457 → 1.4.458

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unified-video-framework",
3
- "version": "1.4.457",
3
+ "version": "1.4.458",
4
4
  "description": "Cross-platform video player framework supporting iOS, Android, Web, Smart TVs (Samsung/LG), Roku, and more",
5
5
  "main": "packages/core/dist/index.js",
6
6
  "types": "packages/core/dist/index.d.ts",
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.4.457";
1
+ export declare const VERSION = "1.4.458";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.4.457';
1
+ export const VERSION = '1.4.458';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- export const VERSION = '1.4.457';
1
+ export const VERSION = '1.4.458';
@@ -1419,7 +1419,7 @@ export class WebPlayer extends BasePlayer {
1419
1419
  controlsBar.style.opacity = '1';
1420
1420
  controlsBar.style.pointerEvents = 'auto';
1421
1421
  controlsBar.style.zIndex = '100';
1422
- controlsBar.style.position = 'relative';
1422
+ controlsBar.style.position = 'absolute';
1423
1423
  }
1424
1424
  const topBar = document.querySelector('.uvf-top-bar');
1425
1425
  if (topBar) {
@@ -7743,7 +7743,7 @@ export class WebPlayer extends BasePlayer {
7743
7743
 
7744
7744
  /* Ensure controls bar is positioned correctly and visible */
7745
7745
  .uvf-player-wrapper.youtube-custom-controls-mode .uvf-controls-bar {
7746
- position: relative !important;
7746
+ position: absolute !important;
7747
7747
  bottom: 0 !important;
7748
7748
  left: 0 !important;
7749
7749
  right: 0 !important;
@@ -1927,7 +1927,7 @@ export class WebPlayer extends BasePlayer {
1927
1927
  controlsBar.style.opacity = '1';
1928
1928
  controlsBar.style.pointerEvents = 'auto';
1929
1929
  controlsBar.style.zIndex = '100';
1930
- controlsBar.style.position = 'relative'; // Ensure proper stacking context
1930
+ controlsBar.style.position = 'absolute'; // Anchor to bottom of player wrapper
1931
1931
  }
1932
1932
 
1933
1933
  const topBar = document.querySelector('.uvf-top-bar') as HTMLElement;
@@ -8996,7 +8996,7 @@ export class WebPlayer extends BasePlayer {
8996
8996
 
8997
8997
  /* Ensure controls bar is positioned correctly and visible */
8998
8998
  .uvf-player-wrapper.youtube-custom-controls-mode .uvf-controls-bar {
8999
- position: relative !important;
8999
+ position: absolute !important;
9000
9000
  bottom: 0 !important;
9001
9001
  left: 0 !important;
9002
9002
  right: 0 !important;