@twick/studio 0.14.17 → 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 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
- pnpm add @twick/timeline @twick/live-player @twick/studio
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) => JSX.Element;
37
+ declare const ElementPanelContainer: ({ selectedTool, videoResolution, selectedElement, addElement, updateElement, }: ElementPanelContainerProps) => React.ReactElement;
37
38
  export default ElementPanelContainer;