@twick/studio 0.14.18 → 0.14.20
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 +5 -1
- package/dist/components/container/element-panel-container.d.ts +2 -1
- package/dist/index.js +3468 -3468
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -14
package/README.md
CHANGED
|
@@ -16,9 +16,13 @@ The main video editing interface for Twick, providing a professional-grade editi
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
|
|
19
|
+
npm install @twick/studio
|
|
20
|
+
# or
|
|
21
|
+
pnpm add @twick/studio
|
|
20
22
|
```
|
|
21
23
|
|
|
24
|
+
**Note:** All required dependencies (`@twick/timeline`, `@twick/live-player`, `@twick/video-editor`, `@twick/canvas`, `@twick/media-utils`) are automatically installed with `@twick/studio`.
|
|
25
|
+
|
|
22
26
|
## Quick Start
|
|
23
27
|
|
|
24
28
|
```tsx
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
1
2
|
import { Size, TrackElement } from '@twick/timeline';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -33,5 +34,5 @@ interface ElementPanelContainerProps {
|
|
|
33
34
|
* />
|
|
34
35
|
* ```
|
|
35
36
|
*/
|
|
36
|
-
declare const ElementPanelContainer: ({ selectedTool, videoResolution, selectedElement, addElement, updateElement, }: ElementPanelContainerProps) =>
|
|
37
|
+
declare const ElementPanelContainer: ({ selectedTool, videoResolution, selectedElement, addElement, updateElement, }: ElementPanelContainerProps) => React.ReactElement;
|
|
37
38
|
export default ElementPanelContainer;
|