@twick/video-editor 0.14.6 → 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.
@@ -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;
@@ -583,8 +598,6 @@
583
598
  left: 0;
584
599
  z-index: 30;
585
600
  cursor: ew-resize;
586
- width: 100%;
587
- height: 100%;
588
601
  }
589
602
 
590
603
  .twick-seek-track-pin {
@@ -593,7 +606,6 @@
593
606
  left: 0;
594
607
  z-index: 30;
595
608
  width: 1.5px;
596
- height: 100%;
597
609
  background-color: #FFFFFF;
598
610
  }
599
611
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twick/video-editor",
3
- "version": "0.14.6",
3
+ "version": "0.14.8",
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.6",
32
- "@twick/live-player": "0.14.6",
33
- "@twick/timeline": "0.14.6",
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.6",
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.20",
52
+ "vite": "^5.4.21",
53
53
  "vite-plugin-dts": "^3.7.3"
54
54
  }
55
55
  }