unified-video-framework 1.4.507 → 1.4.508
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 +1 -1
- package/packages/core/dist/version.d.ts +1 -1
- package/packages/core/dist/version.js +1 -1
- package/packages/core/src/version.ts +1 -1
- package/packages/web/dist/WebPlayer.js +2 -2
- package/packages/web/dist/WebPlayer.js.map +1 -1
- package/packages/web/dist/react/WebPlayerView.js +1 -1
- package/packages/web/dist/react/WebPlayerView.js.map +1 -1
- package/packages/web/src/WebPlayer.ts +2 -2
- package/packages/web/src/react/WebPlayerView.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unified-video-framework",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.508",
|
|
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.
|
|
1
|
+
export declare const VERSION = "1.4.508";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.4.
|
|
1
|
+
export const VERSION = '1.4.508';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.4.
|
|
1
|
+
export const VERSION = '1.4.508';
|
|
@@ -8176,7 +8176,7 @@ export class WebPlayer extends BasePlayer {
|
|
|
8176
8176
|
prevBtn.id = 'uvf-btn-prev';
|
|
8177
8177
|
prevBtn.setAttribute('title', 'Previous track');
|
|
8178
8178
|
prevBtn.setAttribute('aria-label', 'Previous track');
|
|
8179
|
-
prevBtn.innerHTML = '<svg viewBox="0 0 24 24"><path d="
|
|
8179
|
+
prevBtn.innerHTML = '<svg viewBox="0 0 24 24"><path d="M6 6h2v12H6zm3.5 6l8.5-6v12z" fill="currentColor"/></svg>';
|
|
8180
8180
|
controlsRow.appendChild(prevBtn);
|
|
8181
8181
|
}
|
|
8182
8182
|
const playPauseBtn = document.createElement('button');
|
|
@@ -8207,7 +8207,7 @@ export class WebPlayer extends BasePlayer {
|
|
|
8207
8207
|
if (hasPlaylistNav) {
|
|
8208
8208
|
skipBackBtn.setAttribute('title', 'Previous track');
|
|
8209
8209
|
skipBackBtn.setAttribute('aria-label', 'Previous track');
|
|
8210
|
-
skipBackBtn.innerHTML = '<svg viewBox="0 0 24 24"><path d="
|
|
8210
|
+
skipBackBtn.innerHTML = '<svg viewBox="0 0 24 24"><path d="M6 6h2v12H6zm3.5 6l8.5-6v12z" fill="currentColor"/></svg>';
|
|
8211
8211
|
}
|
|
8212
8212
|
else {
|
|
8213
8213
|
skipBackBtn.setAttribute('title', 'Skip backward 10s');
|