@microfox/remotion 1.0.0 → 1.0.1
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/CHANGELOG.md +6 -4
- package/dist/index.d.mts +1006 -0
- package/dist/index.d.ts +1006 -0
- package/dist/index.js +3320 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3218 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +20 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 14ea00b: Triggered by issue #2: release @microfox/remotion patch
|
|
8
|
+
|
|
3
9
|
All notable changes to this project will be documented in this file.
|
|
4
10
|
|
|
5
11
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
@@ -11,7 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
17
|
|
|
12
18
|
- **Complete recursive composition system** with unified component architecture
|
|
13
19
|
- **Core Components**:
|
|
14
|
-
|
|
15
20
|
- `Composition` - Main composition component
|
|
16
21
|
- `SimpleComposition` - Simplified composition for quick setup
|
|
17
22
|
- `SceneFrame` and `OverlayFrame` - Frame components
|
|
@@ -20,20 +25,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
20
25
|
- `TextAtom`, `ImageAtom`, `VideoAtom`, `AudioAtom`, `ShapeAtom` - Atom components
|
|
21
26
|
|
|
22
27
|
- **Core System**:
|
|
23
|
-
|
|
24
28
|
- `RenderableComponentData` interface for recursive component structure
|
|
25
29
|
- `RenderableContext` for boundary and timing management
|
|
26
30
|
- Component registry system for extensibility
|
|
27
31
|
- Context-driven rendering with automatic boundary calculation
|
|
28
32
|
|
|
29
33
|
- **Hooks**:
|
|
30
|
-
|
|
31
34
|
- `useRenderableContext` - Context and boundary management
|
|
32
35
|
- `useComponentRegistry` - Registry management
|
|
33
36
|
- `useBoundaryCalculation` - Boundary calculation utilities
|
|
34
37
|
|
|
35
38
|
- **Utilities**:
|
|
36
|
-
|
|
37
39
|
- `createCompositionBuilder` - Programmatic composition creation
|
|
38
40
|
- `createSimpleComposition` - Quick composition setup
|
|
39
41
|
- Context utilities for boundary and timing management
|