@umituz/react-native-ai-generation-content 1.61.44 → 1.61.45

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.44",
3
+ "version": "1.61.45",
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",
@@ -4,7 +4,7 @@
4
4
  * Displays a fallback UI instead of crashing the entire app
5
5
  */
6
6
 
7
- import React, { Component, ErrorInfo, ReactNode } from "react";
7
+ import React, { ErrorInfo, ReactNode } from "react";
8
8
  import { View, Text, TouchableOpacity, StyleSheet } from "react-native";
9
9
 
10
10
  interface ErrorBoundaryProps {
@@ -18,7 +18,7 @@ interface ErrorBoundaryState {
18
18
  readonly error?: Error;
19
19
  }
20
20
 
21
- export class ErrorBoundary extends Component<
21
+ export class ErrorBoundary extends React.Component<
22
22
  ErrorBoundaryProps,
23
23
  ErrorBoundaryState
24
24
  > {