@versa_ai/vmml-editor 1.0.36 → 1.0.37
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/.turbo/turbo-build.log +8 -8
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/EditorCanvas.tsx +1 -1
- package/src/components/SeekBar.tsx +0 -1
- package/src/index.tsx +0 -1
package/package.json
CHANGED
|
@@ -52,7 +52,6 @@ const SeekBar = ({ player, vmmlRef, frame, durationInFrames, intoEdit, setDragSt
|
|
|
52
52
|
wasPlaying: player.isPlaying(),
|
|
53
53
|
});
|
|
54
54
|
player.pause();
|
|
55
|
-
console.log(_frame, 'vcnjvabnjvabnjvbn>>>>>>>>>>>>>')
|
|
56
55
|
player.seekTo(_frame);
|
|
57
56
|
vmmlRef.current && vmmlRef.current.onSeekStart();
|
|
58
57
|
}, [player, durationInFrames]);
|
package/src/index.tsx
CHANGED
|
@@ -277,7 +277,6 @@ const EditorFn = <Schema extends AnyZodObject, Props>(
|
|
|
277
277
|
};
|
|
278
278
|
|
|
279
279
|
const onWaiting = () => {
|
|
280
|
-
console.log('onWaiting>>>>>>>>>>>>>>consol')
|
|
281
280
|
const { current }: any = vmmlPlayerRef;
|
|
282
281
|
const playing = current?.playerRef?.isPlaying?.() ?? false
|
|
283
282
|
if (playing) {
|