@umituz/react-native-ai-generation-content 1.37.25 → 1.37.26
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.
|
|
3
|
+
"version": "1.37.26",
|
|
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",
|
|
@@ -43,18 +43,9 @@ export const GalleryHeader: React.FC<GalleryHeaderProps> = ({
|
|
|
43
43
|
<View>
|
|
44
44
|
<View style={styles.titleRow}>
|
|
45
45
|
<AtomicText style={styles.title}>{title}</AtomicText>
|
|
46
|
-
{pendingCount > 0 && (
|
|
47
|
-
<View style={[styles.pendingBadge, { backgroundColor: tokens.colors.primary }]}>
|
|
48
|
-
<AtomicIcon name="sync-outline" size="xs" color="onPrimary" />
|
|
49
|
-
<AtomicText style={[styles.pendingBadgeText, { color: tokens.colors.onPrimary }]}>
|
|
50
|
-
{pendingCount}
|
|
51
|
-
</AtomicText>
|
|
52
|
-
</View>
|
|
53
|
-
)}
|
|
54
46
|
</View>
|
|
55
47
|
<AtomicText style={styles.subtitle}>
|
|
56
48
|
{count} {countLabel}
|
|
57
|
-
{pendingCount > 0 && pendingLabel ? ` · ${pendingCount} ${pendingLabel}` : ""}
|
|
58
49
|
</AtomicText>
|
|
59
50
|
</View>
|
|
60
51
|
{showFilter && filterButtons.length > 0 && (
|