@umituz/react-native-ai-generation-content 1.89.70 → 1.89.72

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.89.70",
3
+ "version": "1.89.72",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -54,6 +54,7 @@ export const AudioPickerScreen: React.FC<AudioPickerScreenProps> = ({
54
54
  setError(null);
55
55
 
56
56
  // Lazy load expo-document-picker only when needed
57
+ // @ts-ignore - Optional peer dependency
57
58
  const DocumentPicker = await import("expo-document-picker");
58
59
  const result = await DocumentPicker.getDocumentAsync({
59
60
  type: mimeTypes as string[],
@@ -11,6 +11,7 @@ export const VideoResultPlayer: React.FC<VideoResultPlayerProps> = ({ uri }) =>
11
11
 
12
12
  React.useEffect(() => {
13
13
  // Lazy load video player only when needed
14
+ // @ts-ignore - Optional peer dependency
14
15
  import("@umituz/react-native-video-editor").then((module) => {
15
16
  setVideoPlayer(() => module.VideoPlayer);
16
17
  }).catch(() => {