@twick/studio 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/container/element-panel-container.d.ts +26 -1
- package/dist/components/container/subtitles-panel-container.d.ts +1 -0
- package/dist/components/panel/subtitles-panel.d.ts +37 -18
- package/dist/helpers/constant.d.ts +52 -0
- package/dist/hooks/use-studio-manager.d.ts +1 -1
- package/dist/hooks/use-subtitles-panel.d.ts +13 -0
- package/dist/index.js +240 -186
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +242 -188
- package/dist/index.mjs.map +1 -1
- package/dist/studio.css +1 -3
- package/package.json +4 -2
package/dist/studio.css
CHANGED
|
@@ -113,6 +113,7 @@ html {
|
|
|
113
113
|
.panel-section {
|
|
114
114
|
display: flex;
|
|
115
115
|
flex-direction: column;
|
|
116
|
+
gap: 8;
|
|
116
117
|
margin-bottom: 0.75rem;
|
|
117
118
|
}
|
|
118
119
|
|
|
@@ -1593,15 +1594,12 @@ video::-webkit-media-controls-panel {
|
|
|
1593
1594
|
left: 0;
|
|
1594
1595
|
z-index: 30;
|
|
1595
1596
|
cursor: ew-resize;
|
|
1596
|
-
width: 100%;
|
|
1597
|
-
height: 100%;
|
|
1598
1597
|
}.twick-seek-track-pin {
|
|
1599
1598
|
position: absolute;
|
|
1600
1599
|
top: 0;
|
|
1601
1600
|
left: 0;
|
|
1602
1601
|
z-index: 30;
|
|
1603
1602
|
width: 1.5px;
|
|
1604
|
-
height: 100%;
|
|
1605
1603
|
background-color: #FFFFFF;
|
|
1606
1604
|
}.twick-seek-track-handle {
|
|
1607
1605
|
position: absolute;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twick/studio",
|
|
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",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@twick/media-utils": "^0.14.0",
|
|
27
27
|
"@twick/timeline": "^0.14.0",
|
|
28
|
+
"@twick/live-player": "^0.14.0",
|
|
28
29
|
"@twick/video-editor": "^0.14.0"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
@@ -37,12 +38,13 @@
|
|
|
37
38
|
"@types/react": "^18.2.55",
|
|
38
39
|
"@types/react-dom": "^18.2.19",
|
|
39
40
|
"@twick/timeline": "^0.14.0",
|
|
41
|
+
"@twick/live-player": "^0.14.0",
|
|
40
42
|
"@twick/video-editor": "^0.14.0",
|
|
41
43
|
"rimraf": "^5.0.5",
|
|
42
44
|
"typedoc": "^0.25.8",
|
|
43
45
|
"typedoc-plugin-markdown": "^3.17.1",
|
|
44
46
|
"typescript": "^5.4.2",
|
|
45
|
-
"vite": "^5.4.
|
|
47
|
+
"vite": "^5.4.21",
|
|
46
48
|
"vite-plugin-dts": "^3.7.3"
|
|
47
49
|
}
|
|
48
50
|
}
|