@grizzshutsdown/simpleplayer 0.1.9 → 0.1.11

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/README.md CHANGED
@@ -101,7 +101,7 @@ declare module 'react' {
101
101
  - `disable-autoplay`: turn off default autoplay. Autoplay starts muted so browsers allow it.
102
102
  - `show-time`: dual-mode timestamp. When used with `controls`, shows a pinned glass timestamp tray in the bottom-left alongside the controls tray. When used without `controls`, shows a hover tooltip above the scrubber as you drag or hover it. Clicking the timestamp toggles between elapsed and remaining time. The tray automatically resizes to fit the text as the time changes during playback.
103
103
 
104
- The default player matches the simple preview: play/pause, scrubber, muted autoplay, and no extra side controls.
104
+ The default player matches the simple preview: play/pause, scrubber, muted autoplay, and no extra side controls. Hovering over the scrubber shows a translucent fill that follows the cursor, previewing the seek position.
105
105
 
106
106
  Keep the HTML clean and manage controls with JavaScript:
107
107
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grizzshutsdown/simpleplayer",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "A simple default video player created from Grizz's portfolio for others to use.",
5
5
  "type": "module",
6
6
  "homepage": "https://grizz.fyi",
@@ -29,6 +29,8 @@ Attributes:
29
29
  - `disable-picture-in-picture`: removes Picture-in-Picture.
30
30
  - `disable-fullscreen`: removes fullscreen.
31
31
 
32
+ The scrubber shows a translucent hover fill that follows the cursor, previewing the seek position.
33
+
32
34
  JavaScript properties mirror each attribute:
33
35
 
34
36
  ```js