@twick/video-editor 0.14.2 → 0.14.4
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 +124 -8
- package/dist/components/controls/player-controls.d.ts +40 -1
- package/dist/components/player/player-manager.d.ts +1 -0
- package/dist/components/timeline/timeline-view.d.ts +2 -1
- package/dist/components/track/track-element.d.ts +1 -1
- package/dist/components/video-editor.d.ts +96 -8
- package/dist/helpers/animation-manager.d.ts +35 -0
- package/dist/helpers/constants.d.ts +145 -25
- package/dist/helpers/text-effects-manager.d.ts +32 -0
- package/dist/helpers/types.d.ts +52 -33
- package/dist/hooks/use-player-control.d.ts +15 -0
- package/dist/hooks/use-player-manager.d.ts +15 -0
- package/dist/hooks/use-timeline-control.d.ts +18 -0
- package/dist/hooks/use-timeline-manager.d.ts +19 -0
- package/dist/index.d.ts +7 -4
- package/dist/index.js +365 -222
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +365 -222
- package/dist/index.mjs.map +1 -1
- package/dist/video-editor.css +3 -1
- package/package.json +7 -7
package/dist/video-editor.css
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
.twick-editor-timeline-section {
|
|
29
29
|
display: flex;
|
|
30
|
-
flex-direction:
|
|
30
|
+
flex-direction: column;
|
|
31
31
|
width: 100%;
|
|
32
32
|
height: 100%;
|
|
33
33
|
background-color: #252525;
|
|
@@ -108,6 +108,8 @@
|
|
|
108
108
|
left: 0;
|
|
109
109
|
z-index: 40;
|
|
110
110
|
display: flex;
|
|
111
|
+
justify-content: center;
|
|
112
|
+
align-items: center;
|
|
111
113
|
flex-grow: 0;
|
|
112
114
|
min-width: 40px;
|
|
113
115
|
height: 34px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twick/video-editor",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"**/*.css"
|
|
10
10
|
],
|
|
11
|
-
"license": "
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
12
12
|
"files": [
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dev": "vite build --watch",
|
|
18
18
|
"lint": "eslint src/",
|
|
19
19
|
"clean": "rimraf .turbo node_modules dist",
|
|
20
|
-
"docs": "typedoc
|
|
20
|
+
"docs": "typedoc"
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|
|
@@ -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.4",
|
|
32
|
+
"@twick/live-player": "0.14.4",
|
|
33
|
+
"@twick/timeline": "0.14.4",
|
|
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.4",
|
|
37
37
|
"framer-motion": "^11.0.3",
|
|
38
38
|
"lucide-react": "^0.511.0",
|
|
39
39
|
"react": "^18.2.0",
|