@umituz/react-native-ai-generation-content 1.20.15 → 1.20.16

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.20.15",
3
+ "version": "1.20.16",
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",
@@ -95,7 +95,7 @@ export const StarRatingPicker: React.FC<StarRatingPickerProps> = ({
95
95
  <Modal
96
96
  visible={visible}
97
97
  transparent
98
- animationType="fade"
98
+ animationType="none"
99
99
  onRequestClose={handleClose}
100
100
  >
101
101
  <TouchableOpacity
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  import { FC, useMemo, useCallback } from "react";
7
- import { View, ScrollView, StyleSheet, Animated } from "react-native";
7
+ import { View, ScrollView, StyleSheet } from "react-native";
8
8
  import {
9
9
  AtomicText,
10
10
  AtomicButton,
@@ -98,7 +98,7 @@ export const LoveMessageGeneratorScreen: FC = () => {
98
98
 
99
99
  <View style={styles.formContent}>
100
100
  {gen.currentStep === GeneratorStep.PARTNER && (
101
- <Animated.View>
101
+ <View>
102
102
  <StepPartner
103
103
  partnerName={gen.partnerName}
104
104
  setPartnerName={gen.setPartnerName}
@@ -107,24 +107,24 @@ export const LoveMessageGeneratorScreen: FC = () => {
107
107
  hasProfile={gen.hasProfile}
108
108
  onEditProfile={handleNavigateToProfile}
109
109
  />
110
- </Animated.View>
110
+ </View>
111
111
  )}
112
112
 
113
113
  {gen.currentStep === GeneratorStep.VIBE && (
114
- <Animated.View>
114
+ <View>
115
115
  <StepVibe
116
116
  selectedType={gen.selectedType}
117
117
  setSelectedType={gen.setSelectedType}
118
118
  selectedTone={gen.selectedTone}
119
119
  setSelectedTone={gen.setSelectedTone}
120
120
  />
121
- </Animated.View>
121
+ </View>
122
122
  )}
123
123
 
124
124
  {gen.currentStep === GeneratorStep.DETAILS && (
125
- <Animated.View>
125
+ <View>
126
126
  <StepDetails details={gen.details} setDetails={gen.setDetails} />
127
- </Animated.View>
127
+ </View>
128
128
  )}
129
129
 
130
130
  {gen.currentStep === GeneratorStep.RESULT && (
@@ -50,7 +50,7 @@ export const SettingsSheet: React.FC<SettingsSheetProps> = ({
50
50
  <Modal
51
51
  visible={visible}
52
52
  transparent
53
- animationType="slide"
53
+ animationType="none"
54
54
  onRequestClose={onClose}
55
55
  >
56
56
  <Pressable