@umituz/react-native-settings 4.17.20 → 4.17.21
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-settings",
|
|
3
|
-
"version": "4.17.
|
|
3
|
+
"version": "4.17.21",
|
|
4
4
|
"description": "Complete settings hub for React Native apps - consolidated package with settings, about, legal, appearance, feedback, FAQs, and rating",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -13,11 +13,11 @@ import { ProfileSection } from "@umituz/react-native-auth";
|
|
|
13
13
|
import { SettingsSection } from "../../components/SettingsSection";
|
|
14
14
|
import { DevSettingsSection, DevSettingsProps } from "../../components/DevSettingsSection";
|
|
15
15
|
import { NotificationsSection } from "@umituz/react-native-notifications";
|
|
16
|
-
import { AboutSection } from "
|
|
17
|
-
import { LegalSection } from "
|
|
18
|
-
import { AppearanceSection } from "
|
|
16
|
+
import { AboutSection } from "../../../domains/about/presentation/components/AboutSection";
|
|
17
|
+
import { LegalSection } from "../../../domains/legal/presentation/components/LegalSection";
|
|
18
|
+
import { AppearanceSection } from "../../../domains/appearance/presentation/components/AppearanceSection";
|
|
19
19
|
import { LanguageSection } from "@umituz/react-native-localization";
|
|
20
|
-
import { SupportSection } from "
|
|
20
|
+
import { SupportSection } from "../../../domains/feedback/presentation/components/SupportSection";
|
|
21
21
|
import { SettingItem } from "../../components/SettingItem";
|
|
22
22
|
import type { NormalizedConfig } from "../utils/normalizeConfig";
|
|
23
23
|
import type { CustomSettingsSection } from "../types";
|
|
@@ -197,7 +197,7 @@ export interface SubscriptionConfig {
|
|
|
197
197
|
};
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
-
import type { FeedbackType } from "
|
|
200
|
+
import type { FeedbackType } from "../../../domains/feedback/domain/entities/FeedbackEntity";
|
|
201
201
|
|
|
202
202
|
/**
|
|
203
203
|
* Feedback Settings Configuration
|