@umituz/react-native-ai-generation-content 1.37.22 → 1.37.24

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.37.22",
3
+ "version": "1.37.24",
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",
@@ -115,7 +115,7 @@ export function CreationImagePreview({
115
115
  source={{ uri }}
116
116
  style={styles.image}
117
117
  contentFit="cover"
118
- transition={200}
118
+ transition={0}
119
119
  cachePolicy="disk"
120
120
  onError={handleImageError}
121
121
  onLoadEnd={handleLoadEnd}
@@ -45,7 +45,7 @@ export const GalleryHeader: React.FC<GalleryHeaderProps> = ({
45
45
  <AtomicText style={styles.title}>{title}</AtomicText>
46
46
  {pendingCount > 0 && (
47
47
  <View style={[styles.pendingBadge, { backgroundColor: tokens.colors.primary }]}>
48
- <AtomicIcon name="Loader" size="xs" color="onPrimary" />
48
+ <AtomicIcon name="sync-outline" size="xs" color="onPrimary" />
49
49
  <AtomicText style={[styles.pendingBadgeText, { color: tokens.colors.onPrimary }]}>
50
50
  {pendingCount}
51
51
  </AtomicText>