@umituz/react-native-ai-generation-content 1.25.11 → 1.25.12
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.25.
|
|
3
|
+
"version": "1.25.12",
|
|
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",
|
|
@@ -85,7 +85,43 @@ export const detectFeatureType = (scenarioId: string): FeatureType => {
|
|
|
85
85
|
};
|
|
86
86
|
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
88
|
+
* Romantic Mood Options for Couple Scenarios
|
|
89
|
+
*/
|
|
90
|
+
const ROMANTIC_MOOD_OPTIONS = [
|
|
91
|
+
{ id: "romantic", label: "Romantic", icon: "❤️", value: "romantic" },
|
|
92
|
+
{ id: "mysterious", label: "Mysterious", icon: "🌙", value: "mysterious" },
|
|
93
|
+
{ id: "magical", label: "Magical", icon: "✨", value: "magical" },
|
|
94
|
+
{ id: "energetic", label: "Energetic", icon: "⚡", value: "energetic" },
|
|
95
|
+
{ id: "melancholic", label: "Melancholic", icon: "☁️", value: "melancholic" },
|
|
96
|
+
{ id: "passionate", label: "Passionate", icon: "🔥", value: "passionate" },
|
|
97
|
+
{ id: "nostalgic", label: "Nostalgic", icon: "📷", value: "nostalgic" },
|
|
98
|
+
{ id: "futuristic", label: "Futuristic", icon: "🚀", value: "futuristic" },
|
|
99
|
+
];
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Art Style Options for Couple Scenarios
|
|
103
|
+
*/
|
|
104
|
+
const ART_STYLE_OPTIONS = [
|
|
105
|
+
{ id: "original", label: "Original", icon: "🖼️", value: "original" },
|
|
106
|
+
{ id: "cubism", label: "Cubism", icon: "🔷", value: "cubism" },
|
|
107
|
+
{ id: "popArt", label: "Pop Art", icon: "🎨", value: "pop_art" },
|
|
108
|
+
{ id: "impressionism", label: "Impressionism", icon: "🖌️", value: "impressionism" },
|
|
109
|
+
{ id: "surrealism", label: "Surrealism", icon: "👁️", value: "surrealism" },
|
|
110
|
+
{ id: "renaissance", label: "Renaissance", icon: "🎭", value: "renaissance" },
|
|
111
|
+
];
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Artist Style Options for Couple Scenarios
|
|
115
|
+
*/
|
|
116
|
+
const ARTIST_STYLE_OPTIONS = [
|
|
117
|
+
{ id: "vanGogh", label: "Van Gogh", icon: "🖌️", value: "van_gogh" },
|
|
118
|
+
{ id: "picasso", label: "Picasso", icon: "🔷", value: "picasso" },
|
|
119
|
+
{ id: "fridaKahlo", label: "Frida Kahlo", icon: "🌺", value: "frida_kahlo" },
|
|
120
|
+
{ id: "daVinci", label: "Da Vinci", icon: "🎨", value: "da_vinci" },
|
|
121
|
+
];
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Config Factory for COUPLE features (2 photos + style selections)
|
|
89
125
|
* Generic sequential labels for two-person scenarios
|
|
90
126
|
*/
|
|
91
127
|
const createCoupleConfig = (scenarioId: string): WizardFeatureConfig => ({
|
|
@@ -110,6 +146,36 @@ const createCoupleConfig = (scenarioId: string): WizardFeatureConfig => ({
|
|
|
110
146
|
showPhotoTips: true,
|
|
111
147
|
required: true,
|
|
112
148
|
},
|
|
149
|
+
{
|
|
150
|
+
id: "romantic_mood",
|
|
151
|
+
type: "selection",
|
|
152
|
+
selectionType: "custom",
|
|
153
|
+
titleKey: "selection.romanticMood.title",
|
|
154
|
+
subtitleKey: "selection.romanticMood.subtitle",
|
|
155
|
+
options: ROMANTIC_MOOD_OPTIONS,
|
|
156
|
+
multiSelect: true,
|
|
157
|
+
required: false,
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
id: "art_style",
|
|
161
|
+
type: "selection",
|
|
162
|
+
selectionType: "style",
|
|
163
|
+
titleKey: "selection.artStyle.title",
|
|
164
|
+
subtitleKey: "selection.artStyle.subtitle",
|
|
165
|
+
options: ART_STYLE_OPTIONS,
|
|
166
|
+
multiSelect: false,
|
|
167
|
+
required: false,
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
id: "artist_style",
|
|
171
|
+
type: "selection",
|
|
172
|
+
selectionType: "custom",
|
|
173
|
+
titleKey: "selection.artistStyle.title",
|
|
174
|
+
subtitleKey: "selection.artistStyle.subtitle",
|
|
175
|
+
options: ARTIST_STYLE_OPTIONS,
|
|
176
|
+
multiSelect: false,
|
|
177
|
+
required: false,
|
|
178
|
+
},
|
|
113
179
|
],
|
|
114
180
|
});
|
|
115
181
|
|