@umituz/react-native-ai-creations 1.2.6 → 1.2.8
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-creations",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "AI-generated creations gallery with filtering, sharing, and management for React Native apps",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -63,4 +63,4 @@
|
|
|
63
63
|
"README.md",
|
|
64
64
|
"LICENSE"
|
|
65
65
|
]
|
|
66
|
-
}
|
|
66
|
+
}
|
|
@@ -212,9 +212,7 @@ export function CreationsGalleryScreen({
|
|
|
212
212
|
<View style={styles.container}>
|
|
213
213
|
<View style={styles.headerArea}>
|
|
214
214
|
<View>
|
|
215
|
-
{/* @ts-expect-error - type prop exists in AtomicText but types not resolving correctly */}
|
|
216
215
|
<AtomicText type="headlineSmall">{t(config.translations.title) || 'My Creations'}</AtomicText>
|
|
217
|
-
{/* @ts-expect-error - type prop exists in AtomicText but types not resolving correctly */}
|
|
218
216
|
<AtomicText type="bodySmall" style={{ opacity: 0.6 }}>{filtered.length} {t(config.translations.photoCount) || 'photos'}</AtomicText>
|
|
219
217
|
</View>
|
|
220
218
|
<TouchableOpacity
|
|
@@ -222,7 +220,6 @@ export function CreationsGalleryScreen({
|
|
|
222
220
|
style={[styles.filterButton, isFiltered && styles.filterButtonActive]}
|
|
223
221
|
>
|
|
224
222
|
<AtomicIcon name="ListFilter" size="sm" color={isFiltered ? "primary" : "secondary"} />
|
|
225
|
-
{/* @ts-expect-error - type prop exists in AtomicText but types not resolving correctly */}
|
|
226
223
|
<AtomicText type="labelMedium" color={isFiltered ? "primary" : "secondary"}>Filter</AtomicText>
|
|
227
224
|
{isFiltered && (
|
|
228
225
|
<View style={styles.badge} />
|