ogplayer 1.0.4 → 1.1.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/dist/core/license.d.ts +4 -4
- package/dist/core/player.d.ts +29 -1
- package/dist/core/session-tracker.d.ts +28 -0
- package/dist/core/token-fetch.d.ts +15 -0
- package/dist/core/types.d.ts +62 -3
- package/dist/core/vertical-feed.d.ts +12 -1
- package/dist/ogplayer.global.js +25 -26
- package/dist/ogplayer.js +25 -26
- package/dist/ui/og-player.d.ts +5 -1
- package/package.json +1 -2
package/dist/ui/og-player.d.ts
CHANGED
|
@@ -119,6 +119,10 @@ export declare class OGPlayerElement extends HTMLElement {
|
|
|
119
119
|
private root;
|
|
120
120
|
private controlsVisible;
|
|
121
121
|
private hideTimer;
|
|
122
|
+
/** Where the last deliberate tap-to-hide happened; gates hover-raise. */
|
|
123
|
+
private hidePoint;
|
|
124
|
+
/** Pointer type of the most recent pointerdown on the stage; "" until one lands. */
|
|
125
|
+
private lastPointerType;
|
|
122
126
|
private bufferingTimer;
|
|
123
127
|
private scrubbing;
|
|
124
128
|
private openMenu;
|
|
@@ -165,7 +169,7 @@ export declare class OGPlayerElement extends HTMLElement {
|
|
|
165
169
|
private onState;
|
|
166
170
|
/** Title + content ratings: once per load, at content start, timed fade. */
|
|
167
171
|
private maybeShowOnceOverlays;
|
|
168
|
-
private
|
|
172
|
+
private ratingNode;
|
|
169
173
|
/** While the rating row is shown, the top-end button row drops below it
|
|
170
174
|
* and top-row overlays clear both — the Android/iOS choreography. */
|
|
171
175
|
private setRatingRow;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ogplayer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "OGPlayer web SDK — one video player API across Android, iOS, web and React Native.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/ogplayer.js",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
35
35
|
"homepage": "https://ogplayer.tv/docs/getting-started/web/",
|
|
36
36
|
"bugs": {
|
|
37
|
-
"url": "https://github.com/ogplayer-sdk/ogplayer-web-demos/issues",
|
|
38
37
|
"email": "support@ogplayer.tv"
|
|
39
38
|
},
|
|
40
39
|
"keywords": [
|