@umituz/react-native-ai-generation-content 1.17.235 → 1.17.237
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 -10
- package/src/domains/creations/domain/utils/creation-helpers.ts +1 -1
- package/src/domains/creations/presentation/components/CreationImageViewer.tsx +1 -1
- package/src/domains/creations/presentation/screens/CreationDetailScreen.tsx +1 -2
- package/src/features/anime-selfie/presentation/hooks/useAnimeSelfieFeature.ts +1 -1
- package/src/features/image-to-image/presentation/hooks/useDualImageFeature.ts +1 -1
- package/src/features/image-to-image/presentation/hooks/useImageWithPromptFeature.ts +1 -1
- package/src/features/image-to-image/presentation/hooks/useSingleImageFeature.ts +1 -1
- package/src/features/photo-restoration/presentation/hooks/usePhotoRestoreFeature.ts +1 -1
- package/src/features/remove-object/presentation/hooks/useRemoveObjectFeature.ts +1 -1
- package/src/presentation/hooks/usePhotoGeneration.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-ai-generation-content",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.237",
|
|
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",
|
|
@@ -41,11 +41,7 @@
|
|
|
41
41
|
"@umituz/react-native-design-system": "latest",
|
|
42
42
|
"@umituz/react-native-filesystem": "latest",
|
|
43
43
|
"@umituz/react-native-firebase": "latest",
|
|
44
|
-
"@umituz/react-native-
|
|
45
|
-
"@umituz/react-native-offline": "latest",
|
|
46
|
-
"@umituz/react-native-tanstack": "latest",
|
|
47
|
-
"@umituz/react-native-timezone": "latest",
|
|
48
|
-
"@umituz/react-native-uuid": "latest"
|
|
44
|
+
"@umituz/react-native-tanstack": "latest"
|
|
49
45
|
},
|
|
50
46
|
"peerDependencies": {
|
|
51
47
|
"@react-navigation/native": ">=6.0.0",
|
|
@@ -71,13 +67,9 @@
|
|
|
71
67
|
"@umituz/react-native-filesystem": "latest",
|
|
72
68
|
"@umituz/react-native-firebase": "latest",
|
|
73
69
|
"@umituz/react-native-haptics": "latest",
|
|
74
|
-
"@umituz/react-native-image": "latest",
|
|
75
70
|
"@umituz/react-native-localization": "latest",
|
|
76
|
-
"@umituz/react-native-offline": "latest",
|
|
77
71
|
"@umituz/react-native-storage": "latest",
|
|
78
72
|
"@umituz/react-native-tanstack": "latest",
|
|
79
|
-
"@umituz/react-native-timezone": "latest",
|
|
80
|
-
"@umituz/react-native-uuid": "latest",
|
|
81
73
|
"eslint": "^9.0.0",
|
|
82
74
|
"expo-apple-authentication": "^8.0.8",
|
|
83
75
|
"expo-application": "^7.0.8",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useCallback } from "react";
|
|
2
|
-
import { ImageGallery } from "@umituz/react-native-
|
|
2
|
+
import { ImageGallery } from "@umituz/react-native-design-system";
|
|
3
3
|
import type { Creation } from "../../domain/entities/Creation";
|
|
4
4
|
|
|
5
5
|
interface CreationImageViewerProps {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import React, { useMemo, useState, useCallback } from 'react';
|
|
2
2
|
import { View, ScrollView, StyleSheet } from 'react-native';
|
|
3
3
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
4
|
-
import { useAppDesignTokens } from "@umituz/react-native-design-system";
|
|
5
|
-
import { ImageGallery } from "@umituz/react-native-image";
|
|
4
|
+
import { useAppDesignTokens, ImageGallery } from "@umituz/react-native-design-system";
|
|
6
5
|
import type { Creation } from '../../domain/entities/Creation';
|
|
7
6
|
import type { CreationsConfig } from '../../domain/value-objects/CreationsConfig';
|
|
8
7
|
import { hasVideoContent, getPreviewUrl } from '../../domain/utils';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, useRef, useMemo } from "react";
|
|
7
|
-
import { generateUUID } from "@umituz/react-native-
|
|
7
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
8
8
|
import { executeImageFeature } from "../../../../infrastructure/services";
|
|
9
9
|
import { createAnimeSelfiePrompt } from "../../../../domains/prompts";
|
|
10
10
|
import type {
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, useRef } from "react";
|
|
7
|
-
import { generateUUID } from "@umituz/react-native-
|
|
7
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
8
8
|
import { executeImageFeature } from "../../../../infrastructure/services";
|
|
9
9
|
import type {
|
|
10
10
|
BaseDualImageState,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, useRef } from "react";
|
|
7
|
-
import { generateUUID } from "@umituz/react-native-
|
|
7
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
8
8
|
import { executeImageFeature } from "../../../../infrastructure/services";
|
|
9
9
|
import type {
|
|
10
10
|
BaseImageWithPromptState,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, useRef } from "react";
|
|
7
|
-
import { generateUUID } from "@umituz/react-native-
|
|
7
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
8
8
|
import { executeImageFeature } from "../../../../infrastructure/services";
|
|
9
9
|
import type {
|
|
10
10
|
BaseSingleImageState,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, useRef } from "react";
|
|
7
|
-
import { generateUUID } from "@umituz/react-native-
|
|
7
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
8
8
|
import { executeImageFeature } from "../../../../infrastructure/services";
|
|
9
9
|
import type {
|
|
10
10
|
PhotoRestoreFeatureState,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, useRef } from "react";
|
|
7
|
-
import { generateUUID } from "@umituz/react-native-
|
|
7
|
+
import { generateUUID } from "@umituz/react-native-design-system";
|
|
8
8
|
import { executeImageFeature } from "../../../../infrastructure/services";
|
|
9
9
|
import type {
|
|
10
10
|
RemoveObjectFeatureState,
|
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useState, useCallback, useRef } from "react";
|
|
7
|
-
import { useOfflineStore } from "@umituz/react-native-
|
|
8
|
-
import { useAlert } from "@umituz/react-native-design-system";
|
|
7
|
+
import { useOfflineStore, useAlert } from "@umituz/react-native-design-system";
|
|
9
8
|
import type {
|
|
10
9
|
PhotoGenerationConfig,
|
|
11
10
|
PhotoGenerationState,
|