@twick/video-editor 0.14.7 → 0.14.8
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/components/player/player-manager.d.ts +21 -0
- package/dist/hooks/use-editor-manager.d.ts +27 -0
- package/dist/hooks/use-timeline-manager.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +201 -47
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +202 -48
- package/dist/index.mjs.map +1 -1
- package/dist/video-editor.css +0 -3
- package/package.json +6 -6
package/dist/video-editor.css
CHANGED
|
@@ -598,8 +598,6 @@
|
|
|
598
598
|
left: 0;
|
|
599
599
|
z-index: 30;
|
|
600
600
|
cursor: ew-resize;
|
|
601
|
-
width: 100%;
|
|
602
|
-
height: 100%;
|
|
603
601
|
}
|
|
604
602
|
|
|
605
603
|
.twick-seek-track-pin {
|
|
@@ -608,7 +606,6 @@
|
|
|
608
606
|
left: 0;
|
|
609
607
|
z-index: 30;
|
|
610
608
|
width: 1.5px;
|
|
611
|
-
height: 100%;
|
|
612
609
|
background-color: #FFFFFF;
|
|
613
610
|
}
|
|
614
611
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twick/video-editor",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@emotion/is-prop-valid": "^1.2.2",
|
|
31
|
-
"@twick/canvas": "0.14.
|
|
32
|
-
"@twick/live-player": "0.14.
|
|
33
|
-
"@twick/timeline": "0.14.
|
|
31
|
+
"@twick/canvas": "0.14.8",
|
|
32
|
+
"@twick/live-player": "0.14.8",
|
|
33
|
+
"@twick/timeline": "0.14.8",
|
|
34
34
|
"@react-spring/web": "^10.0.1",
|
|
35
35
|
"@use-gesture/react": "^10.3.0",
|
|
36
|
-
"@twick/media-utils": "0.14.
|
|
36
|
+
"@twick/media-utils": "0.14.8",
|
|
37
37
|
"framer-motion": "^11.0.3",
|
|
38
38
|
"lucide-react": "^0.511.0",
|
|
39
39
|
"react": "^18.2.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"typedoc": "^0.25.8",
|
|
50
50
|
"typedoc-plugin-markdown": "^3.17.1",
|
|
51
51
|
"typescript": "^5.4.2",
|
|
52
|
-
"vite": "^5.4.
|
|
52
|
+
"vite": "^5.4.21",
|
|
53
53
|
"vite-plugin-dts": "^3.7.3"
|
|
54
54
|
}
|
|
55
55
|
}
|