@twick/video-editor 0.14.6 → 0.14.7
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 +147 -3
- package/dist/components/controls/control-manager.d.ts +4 -1
- package/dist/components/controls/player-controls.d.ts +3 -0
- package/dist/components/controls/seek-control.d.ts +4 -1
- package/dist/components/timeline/timeline-manager.d.ts +6 -1
- package/dist/components/timeline/timeline-view.d.ts +3 -1
- package/dist/components/track/seek-track.d.ts +3 -1
- package/dist/components/track/track-base.d.ts +3 -1
- package/dist/components/track/track-element.d.ts +2 -0
- package/dist/components/video-editor.d.ts +65 -1
- package/dist/helpers/constants.d.ts +50 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +270 -78
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +271 -79
- package/dist/index.mjs.map +1 -1
- package/dist/video-editor.css +15 -0
- package/package.json +6 -6
package/dist/video-editor.css
CHANGED
|
@@ -551,6 +551,21 @@
|
|
|
551
551
|
width: 100%;
|
|
552
552
|
}
|
|
553
553
|
|
|
554
|
+
.twick-seek-track-container-no-scrollbar {
|
|
555
|
+
display: flex;
|
|
556
|
+
position: relative;
|
|
557
|
+
min-width: 100%;
|
|
558
|
+
height: 2rem;
|
|
559
|
+
width: 100%;
|
|
560
|
+
/* Hide scrollbar for all browsers */
|
|
561
|
+
scrollbar-width: none; /* Firefox */
|
|
562
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.twick-seek-track-container-no-scrollbar::-webkit-scrollbar {
|
|
566
|
+
display: none; /* Chrome, Safari, Opera */
|
|
567
|
+
}
|
|
568
|
+
|
|
554
569
|
.twick-seek-track-empty-space {
|
|
555
570
|
position: sticky;
|
|
556
571
|
left: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twick/video-editor",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "vite build",
|
|
16
|
+
"build": "tsc --noEmit && vite build",
|
|
17
17
|
"dev": "vite build --watch",
|
|
18
18
|
"lint": "eslint src/",
|
|
19
19
|
"clean": "rimraf .turbo node_modules dist",
|
|
@@ -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.7",
|
|
32
|
+
"@twick/live-player": "0.14.7",
|
|
33
|
+
"@twick/timeline": "0.14.7",
|
|
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.7",
|
|
37
37
|
"framer-motion": "^11.0.3",
|
|
38
38
|
"lucide-react": "^0.511.0",
|
|
39
39
|
"react": "^18.2.0",
|