@umituz/react-native-ai-generation-content 1.61.17 → 1.61.19

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.61.17",
3
+ "version": "1.61.19",
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",
@@ -32,15 +32,17 @@ export function WizardContinueButton({
32
32
  onPress={onPress}
33
33
  disabled={!canContinue}
34
34
  activeOpacity={0.7}
35
- hitSlop={{ top: 15, bottom: 15, left: 15, right: 15 }}
35
+ hitSlop={{ top: 20, bottom: 20, left: 20, right: 20 }}
36
36
  style={[
37
37
  styles.button,
38
38
  {
39
39
  backgroundColor: canContinue ? tokens.colors.primary : tokens.colors.surfaceVariant,
40
40
  opacity: canContinue ? 1 : 0.5,
41
- paddingHorizontal: tokens.spacing.md,
42
- paddingVertical: tokens.spacing.xs,
41
+ paddingHorizontal: tokens.spacing.lg,
42
+ paddingVertical: tokens.spacing.sm,
43
43
  borderRadius: tokens.borders.radius.full,
44
+ minHeight: 44,
45
+ minWidth: 100,
44
46
  },
45
47
  ]}
46
48
  >
@@ -78,10 +78,3 @@ export interface MagicPromptConfig {
78
78
  readonly maxLength: number;
79
79
  readonly minLength: number;
80
80
  }
81
-
82
- export type CoupleFeatureId = string;
83
-
84
- export interface CoupleFeatureSelection {
85
- readonly featureId: CoupleFeatureId | null;
86
- readonly [key: string]: CoupleFeatureId | string | boolean | number | null | undefined;
87
- }
@@ -79,8 +79,6 @@ export type {
79
79
  VisualStyleOption,
80
80
  InspirationChipData,
81
81
  MagicPromptConfig,
82
- CoupleFeatureId,
83
- CoupleFeatureSelection,
84
82
  } from "./domain/category.types";
85
83
 
86
84
  // Scenario Data Types
@@ -29,6 +29,7 @@ export function ScenarioContinueButton({
29
29
  onPress={onPress}
30
30
  disabled={!canContinue}
31
31
  activeOpacity={0.7}
32
+ hitSlop={{ top: 20, bottom: 20, left: 20, right: 20 }}
32
33
  style={[
33
34
  styles.button,
34
35
  {
@@ -36,9 +37,11 @@ export function ScenarioContinueButton({
36
37
  ? tokens.colors.primary
37
38
  : tokens.colors.surfaceVariant,
38
39
  opacity: canContinue ? 1 : 0.5,
39
- paddingHorizontal: tokens.spacing.md,
40
- paddingVertical: tokens.spacing.xs,
40
+ paddingHorizontal: tokens.spacing.lg,
41
+ paddingVertical: tokens.spacing.sm,
41
42
  borderRadius: tokens.borders.radius.full,
43
+ minHeight: 44,
44
+ minWidth: 100,
42
45
  },
43
46
  ]}
44
47
  >
@@ -90,7 +90,7 @@ export type {
90
90
  CategoryNavigationContainerProps, MainCategoryScreenProps, SubCategoryScreenProps,
91
91
  MainCategory, SubCategory, CategoryInfo, ScenarioSelectorConfig, ScenarioPreviewTranslations,
92
92
  ScenarioConfig, VisualStyleOption, InspirationChipData, MagicPromptConfig,
93
- CoupleFeatureId, CoupleFeatureSelection, ScenarioData,
93
+ ScenarioData,
94
94
  } from "../domains/scenarios";
95
95
  export {
96
96
  createScenariosForApp, filterScenariosByOutputType, filterScenariosByCategory,
@@ -9,7 +9,7 @@ import React, { createContext, useContext, type ReactNode } from "react";
9
9
  declare const __DEV__: boolean;
10
10
 
11
11
  export interface GenerationModels {
12
- readonly imageCoupleMultiRef?: string;
12
+ readonly imageMultiRef?: string;
13
13
  readonly imageTextToImage?: string;
14
14
  readonly imageToVideo?: string;
15
15
  readonly textToVideo?: string;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * useDualImageGeneration Hook
3
- * Generic hook for dual-image AI generation (e.g., baby prediction, couple futures)
3
+ * Generic hook for dual-image AI generation workflows
4
4
  * Sends image_urls array as required by FAL AI multi-image models
5
5
  */
6
6