@umituz/react-native-ai-generation-content 1.17.37 → 1.17.38

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.37",
3
+ "version": "1.17.38",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
package/src/index.ts CHANGED
@@ -281,7 +281,7 @@ export {
281
281
  // New Generic Sections
282
282
  AIGenerationProgressInline,
283
283
  PromptInput,
284
- HeroSection,
284
+ AIGenerationHero,
285
285
  // Buttons
286
286
  GenerateButton,
287
287
  // Display
@@ -325,7 +325,7 @@ export type {
325
325
  DualImagePickerProps,
326
326
  AIGenerationProgressInlineProps,
327
327
  PromptInputProps,
328
- HeroSectionProps,
328
+ AIGenerationHeroProps,
329
329
  // Buttons
330
330
  GenerateButtonProps,
331
331
  // Display
@@ -13,14 +13,14 @@ import {
13
13
  useAppDesignTokens,
14
14
  } from "@umituz/react-native-design-system";
15
15
 
16
- export interface HeroSectionProps {
16
+ export interface AIGenerationHeroProps {
17
17
  readonly title: string;
18
18
  readonly subtitle?: string;
19
19
  readonly iconName?: string;
20
20
  readonly gradientColors?: readonly [string, string, ...string[]];
21
21
  }
22
22
 
23
- export const HeroSection: React.FC<HeroSectionProps> = ({
23
+ export const AIGenerationHero: React.FC<AIGenerationHeroProps> = ({
24
24
  title,
25
25
  subtitle,
26
26
  iconName,
@@ -6,7 +6,7 @@ export { PendingJobProgressBar } from "./PendingJobProgressBar";
6
6
  export { PendingJobCardActions } from "./PendingJobCardActions";
7
7
  export { AIGenerationProgressInline } from "./AIGenerationProgressInline";
8
8
  export { PromptInput } from "./PromptInput";
9
- export { HeroSection } from "./HeroSection";
9
+ export { AIGenerationHero } from "./AIGenerationHero";
10
10
 
11
11
  export type {
12
12
  GenerationProgressModalProps,
@@ -25,7 +25,7 @@ export type { PendingJobProgressBarProps } from "./PendingJobProgressBar";
25
25
  export type { PendingJobCardActionsProps } from "./PendingJobCardActions";
26
26
  export type { AIGenerationProgressInlineProps } from "./AIGenerationProgressInline";
27
27
  export type { PromptInputProps } from "./PromptInput";
28
- export type { HeroSectionProps } from "./HeroSection";
28
+ export type { AIGenerationHeroProps } from "./AIGenerationHero";
29
29
 
30
30
  export * from "./result";
31
31
  export * from "./photo-step";