@umituz/react-native-video-editor 1.1.4 → 1.1.6
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 +2 -2
- package/src/presentation/components/AudioEditor.tsx +1 -1
- package/src/presentation/components/EditorTimeline.tsx +1 -1
- package/src/presentation/components/EditorToolPanel.tsx +1 -1
- package/src/presentation/components/ExportDialog.tsx +1 -1
- package/src/presentation/components/LayerActionsMenu.tsx +1 -1
- package/src/presentation/components/TextLayerEditor.tsx +1 -1
- package/src/presentation/components/image-layer/OpacitySelector.tsx +1 -1
- package/src/presentation/components/text-layer/ColorPicker.tsx +1 -1
- package/src/presentation/components/text-layer/EditorActions.tsx +1 -1
- package/src/presentation/components/text-layer/FontSizeSelector.tsx +1 -1
- package/src/presentation/components/text-layer/TextAlignSelector.tsx +1 -1
- package/src/presentation/components/text-layer/TextInputSection.tsx +1 -1
- package/src/presentation/hooks/useEditorScenes.ts +1 -1
- package/src/presentation/hooks/useImageLayerOperations.ts +1 -1
- package/src/presentation/hooks/useLayerActions.tsx +1 -1
- package/src/presentation/hooks/useLayerManipulation.ts +1 -1
- package/src/presentation/hooks/useShapeLayerOperations.ts +1 -1
- package/src/presentation/hooks/useTextLayerOperations.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-video-editor",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
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",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@typescript-eslint/eslint-plugin": "*",
|
|
50
50
|
"@typescript-eslint/parser": "*",
|
|
51
51
|
"@umituz/react-native-design-system": "^2.9.29",
|
|
52
|
-
"@umituz/react-native-
|
|
52
|
+
"@umituz/react-native-settings": "latest",
|
|
53
53
|
"eslint": "*",
|
|
54
54
|
"expo-application": "^7.0.8",
|
|
55
55
|
"expo-crypto": "^13.0.2",
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
AtomicText,
|
|
11
11
|
useAppDesignTokens,
|
|
12
12
|
} from "@umituz/react-native-design-system";
|
|
13
|
-
import { useLocalization } from "@umituz/react-native-
|
|
13
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
14
14
|
import type { Audio } from "../../domain/entities";
|
|
15
15
|
import { useAudioLayerForm } from "../hooks/useAudioLayerForm";
|
|
16
16
|
import { AUDIO_FILE_TYPES } from "../../infrastructure/constants/audio-layer.constants";
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
AtomicIcon,
|
|
11
11
|
useAppDesignTokens,
|
|
12
12
|
} from "@umituz/react-native-design-system";
|
|
13
|
-
import { useLocalization } from "@umituz/react-native-
|
|
13
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
14
14
|
import type { VideoProject, Scene } from "../../domain/entities";
|
|
15
15
|
|
|
16
16
|
export interface EditorTimelineProps {
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
AtomicIcon,
|
|
17
17
|
useAppDesignTokens,
|
|
18
18
|
} from "@umituz/react-native-design-system";
|
|
19
|
-
import { useLocalization } from "@umituz/react-native-
|
|
19
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
20
20
|
|
|
21
21
|
export interface EditorToolPanelProps {
|
|
22
22
|
onAddText: () => void;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import React, { useCallback } from "react";
|
|
7
7
|
import { View, ScrollView, StyleSheet, Alert } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import type { ExportSettings, VideoProject } from "../../domain/entities";
|
|
10
10
|
import { useExportForm } from "../hooks/useExportForm";
|
|
11
11
|
import { useExport, type UseExportConfig, type ExportResult } from "../hooks/useExport";
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
AtomicIcon,
|
|
11
11
|
useAppDesignTokens,
|
|
12
12
|
} from "@umituz/react-native-design-system";
|
|
13
|
-
import { useLocalization } from "@umituz/react-native-
|
|
13
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
14
14
|
import type { Layer } from "../../domain/entities";
|
|
15
15
|
|
|
16
16
|
export interface LayerActionsMenuProps {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import React from "react";
|
|
7
7
|
import { View, ScrollView, StyleSheet } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import type { TextLayer } from "../../domain/entities";
|
|
10
10
|
import { useTextLayerForm } from "../hooks/useTextLayerForm";
|
|
11
11
|
import {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import React from "react";
|
|
7
7
|
import { View, StyleSheet, TouchableOpacity } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import {
|
|
10
10
|
AtomicText,
|
|
11
11
|
useAppDesignTokens,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import React from "react";
|
|
7
7
|
import { View, StyleSheet, TouchableOpacity } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import {
|
|
10
10
|
AtomicText,
|
|
11
11
|
AtomicIcon,
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
AtomicText,
|
|
10
10
|
useAppDesignTokens,
|
|
11
11
|
} from "@umituz/react-native-design-system";
|
|
12
|
-
import { useLocalization } from "@umituz/react-native-
|
|
12
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
13
13
|
|
|
14
14
|
interface EditorActionsProps {
|
|
15
15
|
onCancel: () => void;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import React from "react";
|
|
7
7
|
import { View, ScrollView, TouchableOpacity, StyleSheet } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import {
|
|
10
10
|
AtomicText,
|
|
11
11
|
useAppDesignTokens,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import React from "react";
|
|
7
7
|
import { View, StyleSheet, TouchableOpacity } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import {
|
|
10
10
|
AtomicText,
|
|
11
11
|
AtomicIcon,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import React from "react";
|
|
7
7
|
import { View, TextInput, StyleSheet } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import {
|
|
10
10
|
AtomicText,
|
|
11
11
|
useAppDesignTokens,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { useCallback } from "react";
|
|
7
7
|
import { Alert } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import { sceneOperationsService } from "../../infrastructure/services/scene-operations.service";
|
|
10
10
|
import type { Scene, Audio } from "../../domain/entities";
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { useCallback } from "react";
|
|
7
7
|
import { Alert } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import { layerOperationsService } from "../../infrastructure/services/layer-operations.service";
|
|
10
10
|
import type { AddImageLayerData, Scene, ImageLayer } from "../../domain/entities";
|
|
11
11
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useCallback } from "react";
|
|
7
|
-
import { useLocalization } from "@umituz/react-native-
|
|
7
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
8
8
|
import { TextLayerEditor } from "../components/TextLayerEditor";
|
|
9
9
|
import { ImageLayerEditor } from "../components/ImageLayerEditor";
|
|
10
10
|
import { ShapeLayerEditor } from "../components/ShapeLayerEditor";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { useCallback } from "react";
|
|
7
7
|
import { Alert } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import { layerOperationsService } from "../../infrastructure/services/layer-operations.service";
|
|
10
10
|
import type { Scene, LayerOrderAction, Animation } from "../../domain/entities";
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { useCallback } from "react";
|
|
7
7
|
import { Alert } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import { layerOperationsService } from "../../infrastructure/services/layer-operations.service";
|
|
10
10
|
import type { AddShapeLayerData, Scene } from "../../domain/entities";
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { useCallback } from "react";
|
|
7
7
|
import { Alert } from "react-native";
|
|
8
|
-
import { useLocalization } from "@umituz/react-native-
|
|
8
|
+
import { useLocalization } from "@umituz/react-native-settings";
|
|
9
9
|
import { layerOperationsService } from "../../infrastructure/services/layer-operations.service";
|
|
10
10
|
import type { AddTextLayerData, Scene, TextLayer } from "../../domain/entities";
|
|
11
11
|
|