@umituz/react-native-ai-generation-content 1.61.18 → 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.
|
|
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:
|
|
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.
|
|
42
|
-
paddingVertical: tokens.spacing.
|
|
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
|
>
|
|
@@ -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.
|
|
40
|
-
paddingVertical: tokens.spacing.
|
|
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
|
>
|
|
@@ -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
|
|
12
|
+
readonly imageMultiRef?: string;
|
|
13
13
|
readonly imageTextToImage?: string;
|
|
14
14
|
readonly imageToVideo?: string;
|
|
15
15
|
readonly textToVideo?: string;
|