@bendyline/squisq-react 2.4.0 → 2.4.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/README.md +4 -0
- package/dist/{chunk-HML6PFH2.js → chunk-EKD6JMJN.js} +585 -156
- package/dist/index.d.ts +57 -5
- package/dist/index.js +6 -2
- package/dist/player/index.d.ts +22 -8
- package/dist/player/index.js +1 -1
- package/dist/squisq-player.full.global.js +457 -455
- package/dist/squisq-player.global.js +63 -61
- package/dist/standalone-source.js +1 -1
- package/dist/styles/index.css +18 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -125,6 +125,10 @@ Interactive mount:
|
|
|
125
125
|
|
|
126
126
|
For headless capture, add `renderMode: true`, then await
|
|
127
127
|
`handle.renderAPI` before calling `seekTo()` or reading render metadata.
|
|
128
|
+
`seekTo()` resolves only after React has committed the requested visual time,
|
|
129
|
+
CSS animations have been positioned, active video has produced its sought
|
|
130
|
+
frame, and one final paint opportunity has completed. `getRenderedTime()`
|
|
131
|
+
returns the timeline time represented by the committed DOM.
|
|
128
132
|
TypeScript hosts can import `MountOptions` and `SquisqPlayerHandle` from the
|
|
129
133
|
package root.
|
|
130
134
|
|