@umituz/react-native-ai-generation-content 1.17.10 → 1.17.11

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.
Files changed (29) hide show
  1. package/package.json +1 -1
  2. package/src/features/photo-restoration/presentation/components/PhotoRestoreResultView.tsx +1 -1
  3. package/src/index.ts +1 -1
  4. /package/src/features/{background → replace-background}/domain/entities/background.types.ts +0 -0
  5. /package/src/features/{background → replace-background}/domain/entities/component.types.ts +0 -0
  6. /package/src/features/{background → replace-background}/domain/entities/config.types.ts +0 -0
  7. /package/src/features/{background → replace-background}/domain/entities/index.ts +0 -0
  8. /package/src/features/{background → replace-background}/domain/types/index.ts +0 -0
  9. /package/src/features/{background → replace-background}/domain/types/replace-background.types.ts +0 -0
  10. /package/src/features/{background → replace-background}/index.ts +0 -0
  11. /package/src/features/{background → replace-background}/infrastructure/constants/index.ts +0 -0
  12. /package/src/features/{background → replace-background}/infrastructure/constants/prompts.constants.ts +0 -0
  13. /package/src/features/{background → replace-background}/infrastructure/index.ts +0 -0
  14. /package/src/features/{background → replace-background}/infrastructure/services/index.ts +0 -0
  15. /package/src/features/{background → replace-background}/infrastructure/services/replace-background-executor.ts +0 -0
  16. /package/src/features/{background → replace-background}/presentation/components/BackgroundFeature.tsx +0 -0
  17. /package/src/features/{background → replace-background}/presentation/components/ComparisonSlider.tsx +0 -0
  18. /package/src/features/{background → replace-background}/presentation/components/ErrorDisplay.tsx +0 -0
  19. /package/src/features/{background → replace-background}/presentation/components/FeatureHeader.tsx +0 -0
  20. /package/src/features/{background → replace-background}/presentation/components/GenerateButton.tsx +0 -0
  21. /package/src/features/{background → replace-background}/presentation/components/ImagePicker.tsx +0 -0
  22. /package/src/features/{background → replace-background}/presentation/components/ModeSelector.tsx +0 -0
  23. /package/src/features/{background → replace-background}/presentation/components/ProcessingModal.tsx +0 -0
  24. /package/src/features/{background → replace-background}/presentation/components/PromptInput.tsx +0 -0
  25. /package/src/features/{background → replace-background}/presentation/components/ResultDisplay.tsx +0 -0
  26. /package/src/features/{background → replace-background}/presentation/components/index.ts +0 -0
  27. /package/src/features/{background → replace-background}/presentation/hooks/index.ts +0 -0
  28. /package/src/features/{background → replace-background}/presentation/hooks/useBackgroundFeature.ts +0 -0
  29. /package/src/features/{background → replace-background}/presentation/hooks/useReplaceBackgroundFeature.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.17.10",
3
+ "version": "1.17.11",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -10,7 +10,7 @@ import {
10
10
  AtomicButton,
11
11
  useAppDesignTokens,
12
12
  } from "@umituz/react-native-design-system";
13
- import { ComparisonSlider } from "../../../background/presentation/components/ComparisonSlider";
13
+ import { ComparisonSlider } from "../../../replace-background/presentation/components/ComparisonSlider";
14
14
  import type { PhotoRestoreTranslations } from "../../domain/types";
15
15
 
16
16
  export interface PhotoRestoreResultViewProps {
package/src/index.ts CHANGED
@@ -329,7 +329,7 @@ export * from "./domains/face-detection";
329
329
  // FEATURES - Background
330
330
  // =============================================================================
331
331
 
332
- export * from "./features/background";
332
+ export * from "./features/replace-background";
333
333
 
334
334
  // =============================================================================
335
335
  // FEATURES - Upscaling