@umituz/react-native-ai-generation-content 1.25.3 → 1.25.4

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.25.3",
3
+ "version": "1.25.4",
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",
@@ -17,6 +17,7 @@ import {
17
17
  } from "@umituz/react-native-design-system";
18
18
  import { PhotoUploadCard } from "../../../../presentation/components";
19
19
  import { FaceDetectionToggle } from "../../../../domains/face-detection";
20
+ import { PhotoTips } from "../../../../features/partner-upload/presentation/components/PhotoTips";
20
21
  import type { UploadedImage } from "../../../../features/partner-upload/domain/types";
21
22
  import { usePhotoUploadState } from "../hooks/usePhotoUploadState";
22
23
 
@@ -134,13 +135,14 @@ export const GenericPhotoUploadScreen: React.FC<PhotoUploadScreenProps> = ({
134
135
  {translations.subtitle}
135
136
  </AtomicText>
136
137
 
137
- {/* Photo Tips - Inline simple version */}
138
+ {/* Photo Tips - InfoGrid version */}
138
139
  {showPhotoTips && (
139
- <View style={[styles.tipsContainer, { backgroundColor: tokens.colors.surfaceVariant + "40" }]}>
140
- <AtomicText type="labelSmall" style={{ color: tokens.colors.textSecondary, textAlign: "center" }}>
141
- {t("photoUpload.tips")}
142
- </AtomicText>
143
- </View>
140
+ <PhotoTips
141
+ t={t}
142
+ titleKey="photoUpload.tips.title"
143
+ headerIcon="bulb"
144
+ style={{ marginHorizontal: 24, marginBottom: 20 }}
145
+ />
144
146
  )}
145
147
 
146
148
  {showFaceDetection && onFaceDetectionToggle && (
@@ -194,12 +196,6 @@ const createStyles = (tokens: DesignTokens) =>
194
196
  marginHorizontal: 24,
195
197
  marginBottom: 24,
196
198
  },
197
- tipsContainer: {
198
- marginHorizontal: 24,
199
- marginBottom: 16,
200
- padding: 12,
201
- borderRadius: 8,
202
- },
203
199
  continueButton: {
204
200
  flexDirection: "row",
205
201
  alignItems: "center",