@umituz/react-native-video-editor 1.0.34 → 1.0.35
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/package.json +1 -2
- package/src/infrastructure/services/image-layer-operations.service.ts +1 -1
- package/src/infrastructure/services/layer-operations/layer-duplicate.service.ts +1 -1
- package/src/infrastructure/services/scene-operations.service.ts +1 -1
- package/src/infrastructure/services/shape-layer-operations.service.ts +1 -1
- package/src/infrastructure/services/text-layer-operations.service.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-video-editor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
4
4
|
"description": "Professional video editor with layer-based timeline, text/image/shape/audio/animation layers, and export functionality",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"@types/react": "~19.1.10",
|
|
49
49
|
"@umituz/react-native-design-system": "latest",
|
|
50
50
|
"@umituz/react-native-localization": "latest",
|
|
51
|
-
"@umituz/react-native-uuid": "latest",
|
|
52
51
|
"expo-application": "^7.0.8",
|
|
53
52
|
"expo-crypto": "^13.0.2",
|
|
54
53
|
"expo-device": "^8.0.10",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Image layer business logic
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { generateUUID } from "@umituz/react-native-
|
|
6
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
7
7
|
import type { Scene, ImageLayer } from "../../domain/entities";
|
|
8
8
|
import type { LayerOperationResult, AddImageLayerData } from "../../domain/entities";
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Handle layer duplication operations
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { generateUUID } from "@umituz/react-native-
|
|
6
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
7
7
|
import type { Scene } from "../../../domain/entities";
|
|
8
8
|
import type { LayerOperationResult } from "../../../domain/entities";
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Business logic for scene operations
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { generateUUID } from "@umituz/react-native-
|
|
6
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
7
7
|
import type { Scene, Audio } from "../../domain/entities";
|
|
8
8
|
import type { SceneOperationResult } from "../../domain/entities";
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Shape layer business logic
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { generateUUID } from "@umituz/react-native-
|
|
6
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
7
7
|
import type { Scene, ShapeLayer } from "../../domain/entities";
|
|
8
8
|
import type { LayerOperationResult, AddShapeLayerData } from "../../domain/entities";
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Text layer business logic
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { generateUUID } from "@umituz/react-native-
|
|
6
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
7
7
|
import type { Scene, TextLayer } from "../../domain/entities";
|
|
8
8
|
import type { LayerOperationResult, AddTextLayerData } from "../../domain/entities";
|
|
9
9
|
|