@umituz/react-native-ai-generation-content 1.17.217 → 1.17.219
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.17.
|
|
3
|
+
"version": "1.17.219",
|
|
4
4
|
"description": "Provider-agnostic AI generation orchestration for React Native",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@expo/vector-icons": "^15.0.3",
|
|
62
|
-
"@gorhom/bottom-sheet": "^5.2.8",
|
|
63
62
|
"@react-native-async-storage/async-storage": "^2.2.0",
|
|
64
63
|
"@react-native-community/datetimepicker": "^8.5.1",
|
|
65
64
|
"@react-navigation/bottom-tabs": "^7.9.0",
|
|
@@ -100,7 +99,6 @@
|
|
|
100
99
|
"react-i18next": "^16.5.0",
|
|
101
100
|
"react-native": "0.81.5",
|
|
102
101
|
"react-native-gesture-handler": "^2.30.0",
|
|
103
|
-
"react-native-reanimated": "^4.2.1",
|
|
104
102
|
"react-native-safe-area-context": "^5.6.2",
|
|
105
103
|
"react-native-svg": "^15.15.1",
|
|
106
104
|
"rn-emoji-keyboard": "^1.7.0",
|
|
@@ -42,9 +42,9 @@ interface CreationActionsProps {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
const SIZES = {
|
|
45
|
-
sm: { button:
|
|
46
|
-
md: { button:
|
|
47
|
-
lg: { button:
|
|
45
|
+
sm: { button: 36, icon: "sm" as const },
|
|
46
|
+
md: { button: 44, icon: "md" as const },
|
|
47
|
+
lg: { button: 52, icon: "lg" as const },
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
export function CreationActions({
|
|
@@ -100,6 +100,7 @@ export function CreationActions({
|
|
|
100
100
|
onPress={action.onPress}
|
|
101
101
|
disabled={action.disabled || action.loading}
|
|
102
102
|
activeOpacity={0.7}
|
|
103
|
+
hitSlop={{ top: 8, bottom: 8, left: 8, right: 8 }}
|
|
103
104
|
>
|
|
104
105
|
{action.loading ? (
|
|
105
106
|
<AtomicSpinner
|