@umituz/react-native-ai-generation-content 1.72.3 → 1.72.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.72.3",
3
+ "version": "1.72.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",
@@ -39,7 +39,7 @@ export const HierarchicalScenarioListScreen: React.FC<HierarchicalScenarioListSc
39
39
  onSelectScenario,
40
40
  onBack,
41
41
  t,
42
- numColumns = 2,
42
+ numColumns = 1,
43
43
  isLoading = false,
44
44
  }) => {
45
45
  const tokens = useAppDesignTokens();
@@ -133,7 +133,7 @@ export const HierarchicalScenarioListScreen: React.FC<HierarchicalScenarioListSc
133
133
  data={filteredScenarios}
134
134
  numColumns={numColumns}
135
135
  showsVerticalScrollIndicator={false}
136
- columnWrapperStyle={styles.row}
136
+ columnWrapperStyle={numColumns > 1 ? styles.row : undefined}
137
137
  renderItem={renderItem}
138
138
  keyExtractor={(item) => item.id}
139
139
  ListEmptyComponent={isLoading ? LoadingComponent : (filteredScenarios.length === 0 ? ListEmptyComponent : null)}