@oxyhq/services 5.14.0 → 5.15.0

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 (1157) hide show
  1. package/README.md +130 -54
  2. package/lib/commonjs/assets/assets/lottie/welcomeheader_background_op1.json +1 -0
  3. package/lib/commonjs/assets/lottie/welcomeheader_background_op1.json +1 -0
  4. package/lib/commonjs/core/HttpService.js +94 -4
  5. package/lib/commonjs/core/HttpService.js.map +1 -1
  6. package/lib/commonjs/core/OxyServices.base.js +3 -1
  7. package/lib/commonjs/core/OxyServices.base.js.map +1 -1
  8. package/lib/commonjs/core/mixins/OxyServices.assets.js +213 -22
  9. package/lib/commonjs/core/mixins/OxyServices.assets.js.map +1 -1
  10. package/lib/commonjs/core/mixins/OxyServices.auth.js +70 -99
  11. package/lib/commonjs/core/mixins/OxyServices.auth.js.map +1 -1
  12. package/lib/commonjs/crypto/index.js +33 -0
  13. package/lib/commonjs/crypto/index.js.map +1 -0
  14. package/lib/commonjs/crypto/keyManager.js +208 -0
  15. package/lib/commonjs/crypto/keyManager.js.map +1 -0
  16. package/lib/commonjs/crypto/recoveryPhrase.js +137 -0
  17. package/lib/commonjs/crypto/recoveryPhrase.js.map +1 -0
  18. package/lib/commonjs/crypto/signatureService.js +230 -0
  19. package/lib/commonjs/crypto/signatureService.js.map +1 -0
  20. package/lib/commonjs/i18n/locales/en-US.json +4 -0
  21. package/lib/commonjs/index.js +22 -0
  22. package/lib/commonjs/index.js.map +1 -1
  23. package/lib/commonjs/ui/components/ActivityIndicator.js +203 -0
  24. package/lib/commonjs/ui/components/ActivityIndicator.js.map +1 -0
  25. package/lib/commonjs/ui/components/AutoHeightScrollView.js +46 -0
  26. package/lib/commonjs/ui/components/AutoHeightScrollView.js.map +1 -0
  27. package/lib/commonjs/ui/components/BottomSheet.js +407 -0
  28. package/lib/commonjs/ui/components/BottomSheet.js.map +1 -0
  29. package/lib/commonjs/ui/components/BottomSheetRouter.js +366 -0
  30. package/lib/commonjs/ui/components/BottomSheetRouter.js.map +1 -0
  31. package/lib/commonjs/ui/components/CrossFadeIcon.js +106 -0
  32. package/lib/commonjs/ui/components/CrossFadeIcon.js.map +1 -0
  33. package/lib/commonjs/ui/components/EmptyState.js +41 -0
  34. package/lib/commonjs/ui/components/EmptyState.js.map +1 -0
  35. package/lib/commonjs/ui/components/GroupedItem.js +87 -82
  36. package/lib/commonjs/ui/components/GroupedItem.js.map +1 -1
  37. package/lib/commonjs/ui/components/GroupedSection.js +25 -25
  38. package/lib/commonjs/ui/components/GroupedSection.js.map +1 -1
  39. package/lib/commonjs/ui/components/Header.js +111 -47
  40. package/lib/commonjs/ui/components/Header.js.map +1 -1
  41. package/lib/commonjs/ui/components/HelperText.js +103 -0
  42. package/lib/commonjs/ui/components/HelperText.js.map +1 -0
  43. package/lib/commonjs/ui/components/Icon.js +109 -0
  44. package/lib/commonjs/ui/components/Icon.js.map +1 -0
  45. package/lib/commonjs/ui/components/IconButton/IconButton.js +159 -0
  46. package/lib/commonjs/ui/components/IconButton/IconButton.js.map +1 -0
  47. package/lib/commonjs/ui/components/IconButton/utils.js +155 -0
  48. package/lib/commonjs/ui/components/IconButton/utils.js.map +1 -0
  49. package/lib/commonjs/ui/components/LoadingState.js +47 -0
  50. package/lib/commonjs/ui/components/LoadingState.js.map +1 -0
  51. package/lib/commonjs/ui/components/OxyPayButton.js +1 -14
  52. package/lib/commonjs/ui/components/OxyPayButton.js.map +1 -1
  53. package/lib/commonjs/ui/components/OxyProvider.js +41 -391
  54. package/lib/commonjs/ui/components/OxyProvider.js.map +1 -1
  55. package/lib/commonjs/ui/components/OxySignInButton.js +9 -13
  56. package/lib/commonjs/ui/components/OxySignInButton.js.map +1 -1
  57. package/lib/commonjs/ui/components/ProfileCard.js +7 -4
  58. package/lib/commonjs/ui/components/ProfileCard.js.map +1 -1
  59. package/lib/commonjs/ui/components/QuickActions.js +7 -4
  60. package/lib/commonjs/ui/components/QuickActions.js.map +1 -1
  61. package/lib/commonjs/ui/components/Section.js +4 -1
  62. package/lib/commonjs/ui/components/Section.js.map +1 -1
  63. package/lib/commonjs/ui/components/SectionTitle.js +6 -3
  64. package/lib/commonjs/ui/components/SectionTitle.js.map +1 -1
  65. package/lib/commonjs/ui/components/SettingRow.js +77 -0
  66. package/lib/commonjs/ui/components/SettingRow.js.map +1 -0
  67. package/lib/commonjs/ui/components/StepBasedScreen.js +188 -172
  68. package/lib/commonjs/ui/components/StepBasedScreen.js.map +1 -1
  69. package/lib/commonjs/ui/components/Surface.js +258 -0
  70. package/lib/commonjs/ui/components/Surface.js.map +1 -0
  71. package/lib/commonjs/ui/components/TextField/Addons/Outline.js +46 -0
  72. package/lib/commonjs/ui/components/TextField/Addons/Outline.js.map +1 -0
  73. package/lib/commonjs/ui/components/TextField/Addons/Underline.js +53 -0
  74. package/lib/commonjs/ui/components/TextField/Addons/Underline.js.map +1 -0
  75. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.js +155 -0
  76. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.js.map +1 -0
  77. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAffix.js +144 -0
  78. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAffix.js.map +1 -0
  79. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldIcon.js +137 -0
  80. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldIcon.js.map +1 -0
  81. package/lib/commonjs/ui/components/TextField/Adornment/enums.js +22 -0
  82. package/lib/commonjs/ui/components/TextField/Adornment/enums.js.map +1 -0
  83. package/lib/commonjs/ui/components/TextField/Adornment/types.js +6 -0
  84. package/lib/commonjs/ui/components/TextField/Adornment/types.js.map +1 -0
  85. package/lib/commonjs/ui/components/TextField/Adornment/utils.js +62 -0
  86. package/lib/commonjs/ui/components/TextField/Adornment/utils.js.map +1 -0
  87. package/lib/commonjs/ui/components/TextField/Label/InputLabel.js +176 -0
  88. package/lib/commonjs/ui/components/TextField/Label/InputLabel.js.map +1 -0
  89. package/lib/commonjs/ui/components/TextField/Label/LabelBackground.js +84 -0
  90. package/lib/commonjs/ui/components/TextField/Label/LabelBackground.js.map +1 -0
  91. package/lib/commonjs/ui/components/TextField/TextFieldFlat.js +377 -0
  92. package/lib/commonjs/ui/components/TextField/TextFieldFlat.js.map +1 -0
  93. package/lib/commonjs/ui/components/TextField/TextFieldOutlined.js +361 -0
  94. package/lib/commonjs/ui/components/TextField/TextFieldOutlined.js.map +1 -0
  95. package/lib/commonjs/ui/components/TextField/constants.js +50 -0
  96. package/lib/commonjs/ui/components/TextField/constants.js.map +1 -0
  97. package/lib/commonjs/ui/components/TextField/helpers.js +490 -0
  98. package/lib/commonjs/ui/components/TextField/helpers.js.map +1 -0
  99. package/lib/commonjs/ui/components/TextField/types.js +6 -0
  100. package/lib/commonjs/ui/components/TextField/types.js.map +1 -0
  101. package/lib/commonjs/ui/components/TextField.js +339 -0
  102. package/lib/commonjs/ui/components/TextField.js.map +1 -0
  103. package/lib/commonjs/ui/components/TouchableRipple/Pressable.js +12 -0
  104. package/lib/commonjs/ui/components/TouchableRipple/Pressable.js.map +1 -0
  105. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.js +258 -0
  106. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.js.map +1 -0
  107. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.native.js +107 -0
  108. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.native.js.map +1 -0
  109. package/lib/commonjs/ui/components/TouchableRipple/utils.js +56 -0
  110. package/lib/commonjs/ui/components/TouchableRipple/utils.js.map +1 -0
  111. package/lib/commonjs/ui/components/Typography/AnimatedText.js +62 -0
  112. package/lib/commonjs/ui/components/Typography/AnimatedText.js.map +1 -0
  113. package/lib/commonjs/ui/components/Typography/types.js +26 -0
  114. package/lib/commonjs/ui/components/Typography/types.js.map +1 -0
  115. package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js +171 -0
  116. package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js.map +1 -0
  117. package/lib/commonjs/ui/components/fileManagement/FileViewer.js +409 -0
  118. package/lib/commonjs/ui/components/fileManagement/FileViewer.js.map +1 -0
  119. package/lib/commonjs/ui/components/fileManagement/UploadPreview.js +181 -0
  120. package/lib/commonjs/ui/components/fileManagement/UploadPreview.js.map +1 -0
  121. package/lib/commonjs/ui/components/fileManagement/styles.js +868 -0
  122. package/lib/commonjs/ui/components/fileManagement/styles.js.map +1 -0
  123. package/lib/commonjs/ui/components/index.js +29 -1
  124. package/lib/commonjs/ui/components/index.js.map +1 -1
  125. package/lib/commonjs/ui/components/profile/EditBioModal.js +181 -0
  126. package/lib/commonjs/ui/components/profile/EditBioModal.js.map +1 -0
  127. package/lib/commonjs/ui/components/profile/EditDisplayNameModal.js +207 -0
  128. package/lib/commonjs/ui/components/profile/EditDisplayNameModal.js.map +1 -0
  129. package/lib/commonjs/ui/components/profile/EditEmailModal.js +184 -0
  130. package/lib/commonjs/ui/components/profile/EditEmailModal.js.map +1 -0
  131. package/lib/commonjs/ui/components/profile/EditLinksModal.js +315 -0
  132. package/lib/commonjs/ui/components/profile/EditLinksModal.js.map +1 -0
  133. package/lib/commonjs/ui/components/profile/EditLocationModal.js +273 -0
  134. package/lib/commonjs/ui/components/profile/EditLocationModal.js.map +1 -0
  135. package/lib/commonjs/ui/components/profile/EditUsernameModal.js +180 -0
  136. package/lib/commonjs/ui/components/profile/EditUsernameModal.js.map +1 -0
  137. package/lib/commonjs/ui/components/profile/TwoFactorSetupModal.js +467 -0
  138. package/lib/commonjs/ui/components/profile/TwoFactorSetupModal.js.map +1 -0
  139. package/lib/commonjs/ui/components/styles/overlay.js +85 -0
  140. package/lib/commonjs/ui/components/styles/overlay.js.map +1 -0
  141. package/lib/commonjs/ui/components/styles/shadow.js +132 -0
  142. package/lib/commonjs/ui/components/styles/shadow.js.map +1 -0
  143. package/lib/commonjs/ui/components/theming.js +116 -0
  144. package/lib/commonjs/ui/components/theming.js.map +1 -0
  145. package/lib/commonjs/ui/components/types.js +2 -0
  146. package/lib/commonjs/ui/components/types.js.map +1 -0
  147. package/lib/commonjs/ui/components/utils/forwardRef.js +18 -0
  148. package/lib/commonjs/ui/components/utils/forwardRef.js.map +1 -0
  149. package/lib/commonjs/ui/components/utils/hasTouchHandler.js +13 -0
  150. package/lib/commonjs/ui/components/utils/hasTouchHandler.js.map +1 -0
  151. package/lib/commonjs/ui/components/utils/roundLayoutSize.js +9 -0
  152. package/lib/commonjs/ui/components/utils/roundLayoutSize.js.map +1 -0
  153. package/lib/commonjs/ui/components/utils/splitStyles.js +50 -0
  154. package/lib/commonjs/ui/components/utils/splitStyles.js.map +1 -0
  155. package/lib/commonjs/ui/constants/iconColors.js +84 -0
  156. package/lib/commonjs/ui/constants/iconColors.js.map +1 -0
  157. package/lib/commonjs/ui/constants/spacing.js +50 -0
  158. package/lib/commonjs/ui/constants/spacing.js.map +1 -0
  159. package/lib/commonjs/ui/constants/theme.js +123 -0
  160. package/lib/commonjs/ui/constants/theme.js.map +1 -0
  161. package/lib/commonjs/ui/context/OxyContext.js +198 -853
  162. package/lib/commonjs/ui/context/OxyContext.js.map +1 -1
  163. package/lib/commonjs/ui/context/ThemeContext.js +36 -0
  164. package/lib/commonjs/ui/context/ThemeContext.js.map +1 -0
  165. package/lib/commonjs/ui/context/hooks/useAuthOperations.js +349 -0
  166. package/lib/commonjs/ui/context/hooks/useAuthOperations.js.map +1 -0
  167. package/lib/commonjs/ui/context/hooks/useDeviceManagement.js +73 -0
  168. package/lib/commonjs/ui/context/hooks/useDeviceManagement.js.map +1 -0
  169. package/lib/commonjs/ui/context/hooks/useLanguageManagement.js +112 -0
  170. package/lib/commonjs/ui/context/hooks/useLanguageManagement.js.map +1 -0
  171. package/lib/commonjs/ui/context/hooks/useSessionManagement.js +261 -0
  172. package/lib/commonjs/ui/context/hooks/useSessionManagement.js.map +1 -0
  173. package/lib/commonjs/ui/context/hooks/useStorage.js +79 -0
  174. package/lib/commonjs/ui/context/hooks/useStorage.js.map +1 -0
  175. package/lib/commonjs/ui/context/utils/errorHandlers.js +90 -0
  176. package/lib/commonjs/ui/context/utils/errorHandlers.js.map +1 -0
  177. package/lib/commonjs/ui/context/utils/sessionHelpers.js +103 -0
  178. package/lib/commonjs/ui/context/utils/sessionHelpers.js.map +1 -0
  179. package/lib/commonjs/ui/context/utils/storageHelpers.js +119 -0
  180. package/lib/commonjs/ui/context/utils/storageHelpers.js.map +1 -0
  181. package/lib/commonjs/ui/hooks/index.js +14 -0
  182. package/lib/commonjs/ui/hooks/index.js.map +1 -1
  183. package/lib/commonjs/ui/hooks/use-color-scheme.js +29 -0
  184. package/lib/commonjs/ui/hooks/use-color-scheme.js.map +1 -0
  185. package/lib/commonjs/ui/hooks/use-haptic-press.js +21 -0
  186. package/lib/commonjs/ui/hooks/use-haptic-press.js.map +1 -0
  187. package/lib/commonjs/ui/hooks/useAssets.js.map +1 -1
  188. package/lib/commonjs/ui/hooks/useDeviceManagement.js +73 -0
  189. package/lib/commonjs/ui/hooks/useDeviceManagement.js.map +1 -0
  190. package/lib/commonjs/ui/hooks/useLanguageManagement.js +112 -0
  191. package/lib/commonjs/ui/hooks/useLanguageManagement.js.map +1 -0
  192. package/lib/commonjs/ui/hooks/useProfileEditing.js +123 -0
  193. package/lib/commonjs/ui/hooks/useProfileEditing.js.map +1 -0
  194. package/lib/commonjs/ui/hooks/useSessionManagement.js +261 -0
  195. package/lib/commonjs/ui/hooks/useSessionManagement.js.map +1 -0
  196. package/lib/commonjs/ui/hooks/useStorage.js +79 -0
  197. package/lib/commonjs/ui/hooks/useStorage.js.map +1 -0
  198. package/lib/commonjs/ui/hooks/useThemeColors.js +31 -0
  199. package/lib/commonjs/ui/hooks/useThemeColors.js.map +1 -0
  200. package/lib/commonjs/ui/hooks/useThemeStyles.js +69 -0
  201. package/lib/commonjs/ui/hooks/useThemeStyles.js.map +1 -0
  202. package/lib/commonjs/ui/index.js +1 -4
  203. package/lib/commonjs/ui/index.js.map +1 -1
  204. package/lib/commonjs/ui/navigation/bottomSheetManager.js +180 -0
  205. package/lib/commonjs/ui/navigation/bottomSheetManager.js.map +1 -0
  206. package/lib/commonjs/ui/navigation/routes.js +80 -154
  207. package/lib/commonjs/ui/navigation/routes.js.map +1 -1
  208. package/lib/commonjs/ui/screens/AccountCenterScreen.js +67 -67
  209. package/lib/commonjs/ui/screens/AccountCenterScreen.js.map +1 -1
  210. package/lib/commonjs/ui/screens/AccountOverviewScreen.js +217 -98
  211. package/lib/commonjs/ui/screens/AccountOverviewScreen.js.map +1 -1
  212. package/lib/commonjs/ui/screens/AccountSettingsScreen.js +514 -429
  213. package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +1 -1
  214. package/lib/commonjs/ui/screens/AccountSwitcherScreen.js +44 -59
  215. package/lib/commonjs/ui/screens/AccountSwitcherScreen.js.map +1 -1
  216. package/lib/commonjs/ui/screens/AccountVerificationScreen.js +12 -19
  217. package/lib/commonjs/ui/screens/AccountVerificationScreen.js.map +1 -1
  218. package/lib/commonjs/ui/screens/AppInfoScreen.js +36 -43
  219. package/lib/commonjs/ui/screens/AppInfoScreen.js.map +1 -1
  220. package/lib/commonjs/ui/screens/FeedbackScreen.js +14 -14
  221. package/lib/commonjs/ui/screens/FeedbackScreen.js.map +1 -1
  222. package/lib/commonjs/ui/screens/FileManagementScreen.js +674 -1968
  223. package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -1
  224. package/lib/commonjs/ui/screens/HelpSupportScreen.js +26 -23
  225. package/lib/commonjs/ui/screens/HelpSupportScreen.js.map +1 -1
  226. package/lib/commonjs/ui/screens/HistoryViewScreen.js +19 -59
  227. package/lib/commonjs/ui/screens/HistoryViewScreen.js.map +1 -1
  228. package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +79 -170
  229. package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +1 -1
  230. package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +13 -40
  231. package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +1 -1
  232. package/lib/commonjs/ui/screens/OxyAuthScreen.js +436 -0
  233. package/lib/commonjs/ui/screens/OxyAuthScreen.js.map +1 -0
  234. package/lib/commonjs/ui/screens/PaymentGatewayScreen.js +18 -24
  235. package/lib/commonjs/ui/screens/PaymentGatewayScreen.js.map +1 -1
  236. package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +21 -9
  237. package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
  238. package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +180 -252
  239. package/lib/commonjs/ui/screens/PrivacySettingsScreen.js.map +1 -1
  240. package/lib/commonjs/ui/screens/ProfileScreen.js +7 -5
  241. package/lib/commonjs/ui/screens/ProfileScreen.js.map +1 -1
  242. package/lib/commonjs/ui/screens/SavesCollectionsScreen.js +32 -70
  243. package/lib/commonjs/ui/screens/SavesCollectionsScreen.js.map +1 -1
  244. package/lib/commonjs/ui/screens/SearchSettingsScreen.js +26 -99
  245. package/lib/commonjs/ui/screens/SearchSettingsScreen.js.map +1 -1
  246. package/lib/commonjs/ui/screens/SessionManagementScreen.js +24 -16
  247. package/lib/commonjs/ui/screens/SessionManagementScreen.js.map +1 -1
  248. package/lib/commonjs/ui/screens/UserLinksScreen.js +8 -10
  249. package/lib/commonjs/ui/screens/UserLinksScreen.js.map +1 -1
  250. package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +64 -67
  251. package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +1 -1
  252. package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js +11 -8
  253. package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js.map +1 -1
  254. package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js +124 -122
  255. package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js.map +1 -1
  256. package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js +99 -112
  257. package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js.map +1 -1
  258. package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js +12 -9
  259. package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -1
  260. package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js +552 -79
  261. package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js.map +1 -1
  262. package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js +12 -8
  263. package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js.map +1 -1
  264. package/lib/commonjs/ui/styles/authStyles.js +5 -11
  265. package/lib/commonjs/ui/styles/authStyles.js.map +1 -1
  266. package/lib/commonjs/ui/styles/spacing.js +60 -2
  267. package/lib/commonjs/ui/styles/spacing.js.map +1 -1
  268. package/lib/commonjs/ui/styles/theme.js +1 -1
  269. package/lib/commonjs/ui/types/fileManagement.js +6 -0
  270. package/lib/commonjs/ui/types/fileManagement.js.map +1 -0
  271. package/lib/commonjs/ui/types/navigation.js +6 -0
  272. package/lib/commonjs/ui/types/navigation.js.map +1 -0
  273. package/lib/commonjs/ui/utils/colorUtils.js +52 -0
  274. package/lib/commonjs/ui/utils/colorUtils.js.map +1 -0
  275. package/lib/commonjs/ui/utils/errorHandlers.js +90 -0
  276. package/lib/commonjs/ui/utils/errorHandlers.js.map +1 -0
  277. package/lib/commonjs/ui/utils/fileManagement.js +181 -0
  278. package/lib/commonjs/ui/utils/fileManagement.js.map +1 -0
  279. package/lib/commonjs/ui/utils/sessionHelpers.js +103 -0
  280. package/lib/commonjs/ui/utils/sessionHelpers.js.map +1 -0
  281. package/lib/commonjs/ui/utils/storageHelpers.js +119 -0
  282. package/lib/commonjs/ui/utils/storageHelpers.js.map +1 -0
  283. package/lib/commonjs/ui/utils/themeUtils.js +47 -0
  284. package/lib/commonjs/ui/utils/themeUtils.js.map +1 -0
  285. package/lib/commonjs/ui/utils/user-utils.js +53 -0
  286. package/lib/commonjs/ui/utils/user-utils.js.map +1 -0
  287. package/lib/commonjs/utils/errorUtils.js +14 -4
  288. package/lib/commonjs/utils/errorUtils.js.map +1 -1
  289. package/lib/module/assets/assets/lottie/welcomeheader_background_op1.json +1 -0
  290. package/lib/module/assets/lottie/welcomeheader_background_op1.json +1 -0
  291. package/lib/module/core/HttpService.js +94 -4
  292. package/lib/module/core/HttpService.js.map +1 -1
  293. package/lib/module/core/OxyServices.base.js +3 -1
  294. package/lib/module/core/OxyServices.base.js.map +1 -1
  295. package/lib/module/core/mixins/OxyServices.assets.js +212 -20
  296. package/lib/module/core/mixins/OxyServices.assets.js.map +1 -1
  297. package/lib/module/core/mixins/OxyServices.auth.js +70 -99
  298. package/lib/module/core/mixins/OxyServices.auth.js.map +1 -1
  299. package/lib/module/crypto/index.js +16 -0
  300. package/lib/module/crypto/index.js.map +1 -0
  301. package/lib/module/crypto/keyManager.js +204 -0
  302. package/lib/module/crypto/keyManager.js.map +1 -0
  303. package/lib/module/crypto/recoveryPhrase.js +131 -0
  304. package/lib/module/crypto/recoveryPhrase.js.map +1 -0
  305. package/lib/module/crypto/signatureService.js +227 -0
  306. package/lib/module/crypto/signatureService.js.map +1 -0
  307. package/lib/module/i18n/locales/en-US.json +4 -0
  308. package/lib/module/index.js +2 -0
  309. package/lib/module/index.js.map +1 -1
  310. package/lib/module/ui/components/ActivityIndicator.js +198 -0
  311. package/lib/module/ui/components/ActivityIndicator.js.map +1 -0
  312. package/lib/module/ui/components/AutoHeightScrollView.js +41 -0
  313. package/lib/module/ui/components/AutoHeightScrollView.js.map +1 -0
  314. package/lib/module/ui/components/BottomSheet.js +402 -0
  315. package/lib/module/ui/components/BottomSheet.js.map +1 -0
  316. package/lib/module/ui/components/BottomSheetRouter.js +356 -0
  317. package/lib/module/ui/components/BottomSheetRouter.js.map +1 -0
  318. package/lib/module/ui/components/CrossFadeIcon.js +101 -0
  319. package/lib/module/ui/components/CrossFadeIcon.js.map +1 -0
  320. package/lib/module/ui/components/EmptyState.js +36 -0
  321. package/lib/module/ui/components/EmptyState.js.map +1 -0
  322. package/lib/module/ui/components/GroupedItem.js +88 -82
  323. package/lib/module/ui/components/GroupedItem.js.map +1 -1
  324. package/lib/module/ui/components/GroupedSection.js +23 -23
  325. package/lib/module/ui/components/GroupedSection.js.map +1 -1
  326. package/lib/module/ui/components/Header.js +109 -46
  327. package/lib/module/ui/components/Header.js.map +1 -1
  328. package/lib/module/ui/components/HelperText.js +99 -0
  329. package/lib/module/ui/components/HelperText.js.map +1 -0
  330. package/lib/module/ui/components/Icon.js +102 -0
  331. package/lib/module/ui/components/Icon.js.map +1 -0
  332. package/lib/module/ui/components/IconButton/IconButton.js +153 -0
  333. package/lib/module/ui/components/IconButton/IconButton.js.map +1 -0
  334. package/lib/module/ui/components/IconButton/utils.js +149 -0
  335. package/lib/module/ui/components/IconButton/utils.js.map +1 -0
  336. package/lib/module/ui/components/LoadingState.js +42 -0
  337. package/lib/module/ui/components/LoadingState.js.map +1 -0
  338. package/lib/module/ui/components/OxyPayButton.js +1 -14
  339. package/lib/module/ui/components/OxyPayButton.js.map +1 -1
  340. package/lib/module/ui/components/OxyProvider.js +45 -396
  341. package/lib/module/ui/components/OxyProvider.js.map +1 -1
  342. package/lib/module/ui/components/OxySignInButton.js +9 -13
  343. package/lib/module/ui/components/OxySignInButton.js.map +1 -1
  344. package/lib/module/ui/components/ProfileCard.js +7 -4
  345. package/lib/module/ui/components/ProfileCard.js.map +1 -1
  346. package/lib/module/ui/components/QuickActions.js +7 -4
  347. package/lib/module/ui/components/QuickActions.js.map +1 -1
  348. package/lib/module/ui/components/Section.js +4 -1
  349. package/lib/module/ui/components/Section.js.map +1 -1
  350. package/lib/module/ui/components/SectionTitle.js +6 -3
  351. package/lib/module/ui/components/SectionTitle.js.map +1 -1
  352. package/lib/module/ui/components/SettingRow.js +72 -0
  353. package/lib/module/ui/components/SettingRow.js.map +1 -0
  354. package/lib/module/ui/components/StepBasedScreen.js +190 -174
  355. package/lib/module/ui/components/StepBasedScreen.js.map +1 -1
  356. package/lib/module/ui/components/Surface.js +252 -0
  357. package/lib/module/ui/components/Surface.js.map +1 -0
  358. package/lib/module/ui/components/TextField/Addons/Outline.js +40 -0
  359. package/lib/module/ui/components/TextField/Addons/Outline.js.map +1 -0
  360. package/lib/module/ui/components/TextField/Addons/Underline.js +47 -0
  361. package/lib/module/ui/components/TextField/Addons/Underline.js.map +1 -0
  362. package/lib/module/ui/components/TextField/Adornment/TextFieldAdornment.js +148 -0
  363. package/lib/module/ui/components/TextField/Adornment/TextFieldAdornment.js.map +1 -0
  364. package/lib/module/ui/components/TextField/Adornment/TextFieldAffix.js +141 -0
  365. package/lib/module/ui/components/TextField/Adornment/TextFieldAffix.js.map +1 -0
  366. package/lib/module/ui/components/TextField/Adornment/TextFieldIcon.js +135 -0
  367. package/lib/module/ui/components/TextField/Adornment/TextFieldIcon.js.map +1 -0
  368. package/lib/module/ui/components/TextField/Adornment/enums.js +18 -0
  369. package/lib/module/ui/components/TextField/Adornment/enums.js.map +1 -0
  370. package/lib/module/ui/components/TextField/Adornment/types.js +4 -0
  371. package/lib/module/ui/components/TextField/Adornment/types.js.map +1 -0
  372. package/lib/module/ui/components/TextField/Adornment/utils.js +57 -0
  373. package/lib/module/ui/components/TextField/Adornment/utils.js.map +1 -0
  374. package/lib/module/ui/components/TextField/Label/InputLabel.js +171 -0
  375. package/lib/module/ui/components/TextField/Label/InputLabel.js.map +1 -0
  376. package/lib/module/ui/components/TextField/Label/LabelBackground.js +78 -0
  377. package/lib/module/ui/components/TextField/Label/LabelBackground.js.map +1 -0
  378. package/lib/module/ui/components/TextField/TextFieldFlat.js +372 -0
  379. package/lib/module/ui/components/TextField/TextFieldFlat.js.map +1 -0
  380. package/lib/module/ui/components/TextField/TextFieldOutlined.js +355 -0
  381. package/lib/module/ui/components/TextField/TextFieldOutlined.js.map +1 -0
  382. package/lib/module/ui/components/TextField/constants.js +46 -0
  383. package/lib/module/ui/components/TextField/constants.js.map +1 -0
  384. package/lib/module/ui/components/TextField/helpers.js +472 -0
  385. package/lib/module/ui/components/TextField/helpers.js.map +1 -0
  386. package/lib/module/ui/components/TextField/types.js +4 -0
  387. package/lib/module/ui/components/TextField/types.js.map +1 -0
  388. package/lib/module/ui/components/TextField.js +333 -0
  389. package/lib/module/ui/components/TextField.js.map +1 -0
  390. package/lib/module/ui/components/TouchableRipple/Pressable.js +9 -0
  391. package/lib/module/ui/components/TouchableRipple/Pressable.js.map +1 -0
  392. package/lib/module/ui/components/TouchableRipple/TouchableRipple.js +253 -0
  393. package/lib/module/ui/components/TouchableRipple/TouchableRipple.js.map +1 -0
  394. package/lib/module/ui/components/TouchableRipple/TouchableRipple.native.js +101 -0
  395. package/lib/module/ui/components/TouchableRipple/TouchableRipple.native.js.map +1 -0
  396. package/lib/module/ui/components/TouchableRipple/utils.js +50 -0
  397. package/lib/module/ui/components/TouchableRipple/utils.js.map +1 -0
  398. package/lib/module/ui/components/Typography/AnimatedText.js +56 -0
  399. package/lib/module/ui/components/Typography/AnimatedText.js.map +1 -0
  400. package/lib/module/ui/components/Typography/types.js +22 -0
  401. package/lib/module/ui/components/Typography/types.js.map +1 -0
  402. package/lib/module/ui/components/fileManagement/FileDetailsModal.js +165 -0
  403. package/lib/module/ui/components/fileManagement/FileDetailsModal.js.map +1 -0
  404. package/lib/module/ui/components/fileManagement/FileViewer.js +402 -0
  405. package/lib/module/ui/components/fileManagement/FileViewer.js.map +1 -0
  406. package/lib/module/ui/components/fileManagement/UploadPreview.js +175 -0
  407. package/lib/module/ui/components/fileManagement/UploadPreview.js.map +1 -0
  408. package/lib/module/ui/components/fileManagement/styles.js +864 -0
  409. package/lib/module/ui/components/fileManagement/styles.js.map +1 -0
  410. package/lib/module/ui/components/index.js +4 -1
  411. package/lib/module/ui/components/index.js.map +1 -1
  412. package/lib/module/ui/components/profile/EditBioModal.js +175 -0
  413. package/lib/module/ui/components/profile/EditBioModal.js.map +1 -0
  414. package/lib/module/ui/components/profile/EditDisplayNameModal.js +201 -0
  415. package/lib/module/ui/components/profile/EditDisplayNameModal.js.map +1 -0
  416. package/lib/module/ui/components/profile/EditEmailModal.js +178 -0
  417. package/lib/module/ui/components/profile/EditEmailModal.js.map +1 -0
  418. package/lib/module/ui/components/profile/EditLinksModal.js +309 -0
  419. package/lib/module/ui/components/profile/EditLinksModal.js.map +1 -0
  420. package/lib/module/ui/components/profile/EditLocationModal.js +267 -0
  421. package/lib/module/ui/components/profile/EditLocationModal.js.map +1 -0
  422. package/lib/module/ui/components/profile/EditUsernameModal.js +174 -0
  423. package/lib/module/ui/components/profile/EditUsernameModal.js.map +1 -0
  424. package/lib/module/ui/components/profile/TwoFactorSetupModal.js +460 -0
  425. package/lib/module/ui/components/profile/TwoFactorSetupModal.js.map +1 -0
  426. package/lib/module/ui/components/styles/overlay.js +80 -0
  427. package/lib/module/ui/components/styles/overlay.js.map +1 -0
  428. package/lib/module/ui/components/styles/shadow.js +128 -0
  429. package/lib/module/ui/components/styles/shadow.js.map +1 -0
  430. package/lib/module/ui/components/theming.js +111 -0
  431. package/lib/module/ui/components/theming.js.map +1 -0
  432. package/lib/module/ui/components/types.js +2 -0
  433. package/lib/module/ui/components/types.js.map +1 -0
  434. package/lib/module/ui/components/utils/forwardRef.js +13 -0
  435. package/lib/module/ui/components/utils/forwardRef.js.map +1 -0
  436. package/lib/module/ui/components/utils/hasTouchHandler.js +9 -0
  437. package/lib/module/ui/components/utils/hasTouchHandler.js.map +1 -0
  438. package/lib/module/ui/components/utils/roundLayoutSize.js +4 -0
  439. package/lib/module/ui/components/utils/roundLayoutSize.js.map +1 -0
  440. package/lib/module/ui/components/utils/splitStyles.js +46 -0
  441. package/lib/module/ui/components/utils/splitStyles.js.map +1 -0
  442. package/lib/module/ui/constants/iconColors.js +78 -0
  443. package/lib/module/ui/constants/iconColors.js.map +1 -0
  444. package/lib/module/ui/constants/spacing.js +45 -0
  445. package/lib/module/ui/constants/spacing.js.map +1 -0
  446. package/lib/module/ui/constants/theme.js +119 -0
  447. package/lib/module/ui/constants/theme.js.map +1 -0
  448. package/lib/module/ui/context/OxyContext.js +199 -855
  449. package/lib/module/ui/context/OxyContext.js.map +1 -1
  450. package/lib/module/ui/context/ThemeContext.js +29 -0
  451. package/lib/module/ui/context/ThemeContext.js.map +1 -0
  452. package/lib/module/ui/context/hooks/useAuthOperations.js +344 -0
  453. package/lib/module/ui/context/hooks/useAuthOperations.js.map +1 -0
  454. package/lib/module/ui/context/hooks/useDeviceManagement.js +68 -0
  455. package/lib/module/ui/context/hooks/useDeviceManagement.js.map +1 -0
  456. package/lib/module/ui/context/hooks/useLanguageManagement.js +107 -0
  457. package/lib/module/ui/context/hooks/useLanguageManagement.js.map +1 -0
  458. package/lib/module/ui/context/hooks/useSessionManagement.js +256 -0
  459. package/lib/module/ui/context/hooks/useSessionManagement.js.map +1 -0
  460. package/lib/module/ui/context/hooks/useStorage.js +74 -0
  461. package/lib/module/ui/context/hooks/useStorage.js.map +1 -0
  462. package/lib/module/ui/context/utils/errorHandlers.js +83 -0
  463. package/lib/module/ui/context/utils/errorHandlers.js.map +1 -0
  464. package/lib/module/ui/context/utils/sessionHelpers.js +96 -0
  465. package/lib/module/ui/context/utils/sessionHelpers.js.map +1 -0
  466. package/lib/module/ui/context/utils/storageHelpers.js +111 -0
  467. package/lib/module/ui/context/utils/storageHelpers.js.map +1 -0
  468. package/lib/module/ui/hooks/index.js +2 -0
  469. package/lib/module/ui/hooks/index.js.map +1 -1
  470. package/lib/module/ui/hooks/use-color-scheme.js +26 -0
  471. package/lib/module/ui/hooks/use-color-scheme.js.map +1 -0
  472. package/lib/module/ui/hooks/use-haptic-press.js +17 -0
  473. package/lib/module/ui/hooks/use-haptic-press.js.map +1 -0
  474. package/lib/module/ui/hooks/useAssets.js.map +1 -1
  475. package/lib/module/ui/hooks/useDeviceManagement.js +68 -0
  476. package/lib/module/ui/hooks/useDeviceManagement.js.map +1 -0
  477. package/lib/module/ui/hooks/useLanguageManagement.js +107 -0
  478. package/lib/module/ui/hooks/useLanguageManagement.js.map +1 -0
  479. package/lib/module/ui/hooks/useProfileEditing.js +118 -0
  480. package/lib/module/ui/hooks/useProfileEditing.js.map +1 -0
  481. package/lib/module/ui/hooks/useSessionManagement.js +256 -0
  482. package/lib/module/ui/hooks/useSessionManagement.js.map +1 -0
  483. package/lib/module/ui/hooks/useStorage.js +74 -0
  484. package/lib/module/ui/hooks/useStorage.js.map +1 -0
  485. package/lib/module/ui/hooks/useThemeColors.js +27 -0
  486. package/lib/module/ui/hooks/useThemeColors.js.map +1 -0
  487. package/lib/module/ui/hooks/useThemeStyles.js +64 -0
  488. package/lib/module/ui/hooks/useThemeStyles.js.map +1 -0
  489. package/lib/module/ui/index.js +2 -4
  490. package/lib/module/ui/index.js.map +1 -1
  491. package/lib/module/ui/navigation/bottomSheetManager.js +168 -0
  492. package/lib/module/ui/navigation/bottomSheetManager.js.map +1 -0
  493. package/lib/module/ui/navigation/routes.js +77 -152
  494. package/lib/module/ui/navigation/routes.js.map +1 -1
  495. package/lib/module/ui/screens/AccountCenterScreen.js +67 -67
  496. package/lib/module/ui/screens/AccountCenterScreen.js.map +1 -1
  497. package/lib/module/ui/screens/AccountOverviewScreen.js +218 -100
  498. package/lib/module/ui/screens/AccountOverviewScreen.js.map +1 -1
  499. package/lib/module/ui/screens/AccountSettingsScreen.js +515 -430
  500. package/lib/module/ui/screens/AccountSettingsScreen.js.map +1 -1
  501. package/lib/module/ui/screens/AccountSwitcherScreen.js +45 -60
  502. package/lib/module/ui/screens/AccountSwitcherScreen.js.map +1 -1
  503. package/lib/module/ui/screens/AccountVerificationScreen.js +12 -19
  504. package/lib/module/ui/screens/AccountVerificationScreen.js.map +1 -1
  505. package/lib/module/ui/screens/AppInfoScreen.js +36 -43
  506. package/lib/module/ui/screens/AppInfoScreen.js.map +1 -1
  507. package/lib/module/ui/screens/FeedbackScreen.js +14 -14
  508. package/lib/module/ui/screens/FeedbackScreen.js.map +1 -1
  509. package/lib/module/ui/screens/FileManagementScreen.js +670 -1965
  510. package/lib/module/ui/screens/FileManagementScreen.js.map +1 -1
  511. package/lib/module/ui/screens/HelpSupportScreen.js +26 -23
  512. package/lib/module/ui/screens/HelpSupportScreen.js.map +1 -1
  513. package/lib/module/ui/screens/HistoryViewScreen.js +22 -62
  514. package/lib/module/ui/screens/HistoryViewScreen.js.map +1 -1
  515. package/lib/module/ui/screens/LanguageSelectorScreen.js +80 -171
  516. package/lib/module/ui/screens/LanguageSelectorScreen.js.map +1 -1
  517. package/lib/module/ui/screens/LegalDocumentsScreen.js +16 -43
  518. package/lib/module/ui/screens/LegalDocumentsScreen.js.map +1 -1
  519. package/lib/module/ui/screens/OxyAuthScreen.js +432 -0
  520. package/lib/module/ui/screens/OxyAuthScreen.js.map +1 -0
  521. package/lib/module/ui/screens/PaymentGatewayScreen.js +18 -24
  522. package/lib/module/ui/screens/PaymentGatewayScreen.js.map +1 -1
  523. package/lib/module/ui/screens/PremiumSubscriptionScreen.js +21 -9
  524. package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
  525. package/lib/module/ui/screens/PrivacySettingsScreen.js +167 -239
  526. package/lib/module/ui/screens/PrivacySettingsScreen.js.map +1 -1
  527. package/lib/module/ui/screens/ProfileScreen.js +7 -5
  528. package/lib/module/ui/screens/ProfileScreen.js.map +1 -1
  529. package/lib/module/ui/screens/SavesCollectionsScreen.js +35 -73
  530. package/lib/module/ui/screens/SavesCollectionsScreen.js.map +1 -1
  531. package/lib/module/ui/screens/SearchSettingsScreen.js +29 -102
  532. package/lib/module/ui/screens/SearchSettingsScreen.js.map +1 -1
  533. package/lib/module/ui/screens/SessionManagementScreen.js +24 -16
  534. package/lib/module/ui/screens/SessionManagementScreen.js.map +1 -1
  535. package/lib/module/ui/screens/UserLinksScreen.js +8 -10
  536. package/lib/module/ui/screens/UserLinksScreen.js.map +1 -1
  537. package/lib/module/ui/screens/WelcomeNewUserScreen.js +65 -68
  538. package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +1 -1
  539. package/lib/module/ui/screens/karma/KarmaAboutScreen.js +11 -8
  540. package/lib/module/ui/screens/karma/KarmaAboutScreen.js.map +1 -1
  541. package/lib/module/ui/screens/karma/KarmaCenterScreen.js +124 -121
  542. package/lib/module/ui/screens/karma/KarmaCenterScreen.js.map +1 -1
  543. package/lib/module/ui/screens/karma/KarmaFAQScreen.js +101 -114
  544. package/lib/module/ui/screens/karma/KarmaFAQScreen.js.map +1 -1
  545. package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js +12 -9
  546. package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -1
  547. package/lib/module/ui/screens/karma/KarmaRewardsScreen.js +554 -81
  548. package/lib/module/ui/screens/karma/KarmaRewardsScreen.js.map +1 -1
  549. package/lib/module/ui/screens/karma/KarmaRulesScreen.js +12 -8
  550. package/lib/module/ui/screens/karma/KarmaRulesScreen.js.map +1 -1
  551. package/lib/module/ui/styles/authStyles.js +5 -11
  552. package/lib/module/ui/styles/authStyles.js.map +1 -1
  553. package/lib/module/ui/styles/spacing.js +12 -2
  554. package/lib/module/ui/styles/spacing.js.map +1 -1
  555. package/lib/module/ui/styles/theme.js +1 -1
  556. package/lib/module/ui/types/fileManagement.js +4 -0
  557. package/lib/module/ui/types/fileManagement.js.map +1 -0
  558. package/lib/module/ui/types/navigation.js +4 -0
  559. package/lib/module/ui/types/navigation.js.map +1 -0
  560. package/lib/module/ui/utils/colorUtils.js +46 -0
  561. package/lib/module/ui/utils/colorUtils.js.map +1 -0
  562. package/lib/module/ui/utils/errorHandlers.js +83 -0
  563. package/lib/module/ui/utils/errorHandlers.js.map +1 -0
  564. package/lib/module/ui/utils/fileManagement.js +172 -0
  565. package/lib/module/ui/utils/fileManagement.js.map +1 -0
  566. package/lib/module/ui/utils/sessionHelpers.js +96 -0
  567. package/lib/module/ui/utils/sessionHelpers.js.map +1 -0
  568. package/lib/module/ui/utils/storageHelpers.js +111 -0
  569. package/lib/module/ui/utils/storageHelpers.js.map +1 -0
  570. package/lib/module/ui/utils/themeUtils.js +41 -0
  571. package/lib/module/ui/utils/themeUtils.js.map +1 -0
  572. package/lib/module/ui/utils/user-utils.js +46 -0
  573. package/lib/module/ui/utils/user-utils.js.map +1 -0
  574. package/lib/module/utils/errorUtils.js +14 -4
  575. package/lib/module/utils/errorUtils.js.map +1 -1
  576. package/lib/typescript/core/HttpService.d.ts +48 -0
  577. package/lib/typescript/core/HttpService.d.ts.map +1 -1
  578. package/lib/typescript/core/OxyServices.base.d.ts.map +1 -1
  579. package/lib/typescript/core/mixins/OxyServices.analytics.d.ts.map +1 -1
  580. package/lib/typescript/core/mixins/OxyServices.assets.d.ts +23 -1
  581. package/lib/typescript/core/mixins/OxyServices.assets.d.ts.map +1 -1
  582. package/lib/typescript/core/mixins/OxyServices.auth.d.ts +70 -42
  583. package/lib/typescript/core/mixins/OxyServices.auth.d.ts.map +1 -1
  584. package/lib/typescript/core/mixins/OxyServices.developer.d.ts.map +1 -1
  585. package/lib/typescript/core/mixins/OxyServices.devices.d.ts.map +1 -1
  586. package/lib/typescript/core/mixins/OxyServices.karma.d.ts.map +1 -1
  587. package/lib/typescript/core/mixins/OxyServices.language.d.ts.map +1 -1
  588. package/lib/typescript/core/mixins/OxyServices.location.d.ts.map +1 -1
  589. package/lib/typescript/core/mixins/OxyServices.payment.d.ts.map +1 -1
  590. package/lib/typescript/core/mixins/OxyServices.privacy.d.ts.map +1 -1
  591. package/lib/typescript/core/mixins/OxyServices.totp.d.ts.map +1 -1
  592. package/lib/typescript/core/mixins/OxyServices.user.d.ts.map +1 -1
  593. package/lib/typescript/core/mixins/OxyServices.utility.d.ts.map +1 -1
  594. package/lib/typescript/core/mixins/index.d.ts +26 -34
  595. package/lib/typescript/core/mixins/index.d.ts.map +1 -1
  596. package/lib/typescript/crypto/index.d.ts +11 -0
  597. package/lib/typescript/crypto/index.d.ts.map +1 -0
  598. package/lib/typescript/crypto/keyManager.d.ts +73 -0
  599. package/lib/typescript/crypto/keyManager.d.ts.map +1 -0
  600. package/lib/typescript/crypto/recoveryPhrase.d.ts +57 -0
  601. package/lib/typescript/crypto/recoveryPhrase.d.ts.map +1 -0
  602. package/lib/typescript/crypto/signatureService.d.ts +80 -0
  603. package/lib/typescript/crypto/signatureService.d.ts.map +1 -0
  604. package/lib/typescript/index.d.ts +2 -0
  605. package/lib/typescript/index.d.ts.map +1 -1
  606. package/lib/typescript/models/interfaces.d.ts +1 -0
  607. package/lib/typescript/models/interfaces.d.ts.map +1 -1
  608. package/lib/typescript/types/bip39.d.ts +28 -0
  609. package/lib/typescript/types/color.d.ts +18 -0
  610. package/lib/typescript/types/elliptic.d.ts +60 -0
  611. package/lib/typescript/types/expo-crypto.d.ts +28 -0
  612. package/lib/typescript/types/expo-random.d.ts +8 -0
  613. package/lib/typescript/types/expo-secure-store.d.ts +20 -0
  614. package/lib/typescript/types/expo-vector-icons.d.ts +9 -0
  615. package/lib/typescript/ui/components/ActivityIndicator.d.ts +45 -0
  616. package/lib/typescript/ui/components/ActivityIndicator.d.ts.map +1 -0
  617. package/lib/typescript/ui/components/AutoHeightScrollView.d.ts +23 -0
  618. package/lib/typescript/ui/components/AutoHeightScrollView.d.ts.map +1 -0
  619. package/lib/typescript/ui/components/BottomSheet.d.ts +29 -0
  620. package/lib/typescript/ui/components/BottomSheet.d.ts.map +1 -0
  621. package/lib/typescript/ui/components/BottomSheetRouter.d.ts +14 -0
  622. package/lib/typescript/ui/components/BottomSheetRouter.d.ts.map +1 -0
  623. package/lib/typescript/ui/components/CrossFadeIcon.d.ts +27 -0
  624. package/lib/typescript/ui/components/CrossFadeIcon.d.ts.map +1 -0
  625. package/lib/typescript/ui/components/EmptyState.d.ts +8 -0
  626. package/lib/typescript/ui/components/EmptyState.d.ts.map +1 -0
  627. package/lib/typescript/ui/components/GroupedItem.d.ts +5 -9
  628. package/lib/typescript/ui/components/GroupedItem.d.ts.map +1 -1
  629. package/lib/typescript/ui/components/GroupedSection.d.ts +6 -7
  630. package/lib/typescript/ui/components/GroupedSection.d.ts.map +1 -1
  631. package/lib/typescript/ui/components/Header.d.ts +6 -1
  632. package/lib/typescript/ui/components/Header.d.ts.map +1 -1
  633. package/lib/typescript/ui/components/HelperText.d.ts +47 -0
  634. package/lib/typescript/ui/components/HelperText.d.ts.map +1 -0
  635. package/lib/typescript/ui/components/Icon.d.ts +60 -0
  636. package/lib/typescript/ui/components/Icon.d.ts.map +1 -0
  637. package/lib/typescript/ui/components/IconButton/IconButton.d.ts +99 -0
  638. package/lib/typescript/ui/components/IconButton/IconButton.d.ts.map +1 -0
  639. package/lib/typescript/ui/components/IconButton/utils.d.ts +19 -0
  640. package/lib/typescript/ui/components/IconButton/utils.d.ts.map +1 -0
  641. package/lib/typescript/ui/components/LoadingState.d.ts +9 -0
  642. package/lib/typescript/ui/components/LoadingState.d.ts.map +1 -0
  643. package/lib/typescript/ui/components/OxyPayButton.d.ts.map +1 -1
  644. package/lib/typescript/ui/components/OxyProvider.d.ts +4 -5
  645. package/lib/typescript/ui/components/OxyProvider.d.ts.map +1 -1
  646. package/lib/typescript/ui/components/OxySignInButton.d.ts +3 -8
  647. package/lib/typescript/ui/components/OxySignInButton.d.ts.map +1 -1
  648. package/lib/typescript/ui/components/ProfileCard.d.ts.map +1 -1
  649. package/lib/typescript/ui/components/QuickActions.d.ts.map +1 -1
  650. package/lib/typescript/ui/components/Section.d.ts +1 -1
  651. package/lib/typescript/ui/components/Section.d.ts.map +1 -1
  652. package/lib/typescript/ui/components/SectionTitle.d.ts +1 -1
  653. package/lib/typescript/ui/components/SectionTitle.d.ts.map +1 -1
  654. package/lib/typescript/ui/components/SettingRow.d.ts +14 -0
  655. package/lib/typescript/ui/components/SettingRow.d.ts.map +1 -0
  656. package/lib/typescript/ui/components/StepBasedScreen.d.ts +3 -2
  657. package/lib/typescript/ui/components/StepBasedScreen.d.ts.map +1 -1
  658. package/lib/typescript/ui/components/Surface.d.ts +76 -0
  659. package/lib/typescript/ui/components/Surface.d.ts.map +1 -0
  660. package/lib/typescript/ui/components/TextField/Addons/Outline.d.ts +16 -0
  661. package/lib/typescript/ui/components/TextField/Addons/Outline.d.ts.map +1 -0
  662. package/lib/typescript/ui/components/TextField/Addons/Underline.d.ts +19 -0
  663. package/lib/typescript/ui/components/TextField/Addons/Underline.d.ts.map +1 -0
  664. package/lib/typescript/ui/components/TextField/Adornment/TextFieldAdornment.d.ts +45 -0
  665. package/lib/typescript/ui/components/TextField/Adornment/TextFieldAdornment.d.ts.map +1 -0
  666. package/lib/typescript/ui/components/TextField/Adornment/TextFieldAffix.d.ts +73 -0
  667. package/lib/typescript/ui/components/TextField/Adornment/TextFieldAffix.d.ts.map +1 -0
  668. package/lib/typescript/ui/components/TextField/Adornment/TextFieldIcon.d.ts +78 -0
  669. package/lib/typescript/ui/components/TextField/Adornment/TextFieldIcon.d.ts.map +1 -0
  670. package/lib/typescript/ui/components/TextField/Adornment/enums.d.ts +13 -0
  671. package/lib/typescript/ui/components/TextField/Adornment/enums.d.ts.map +1 -0
  672. package/lib/typescript/ui/components/TextField/Adornment/types.d.ts +12 -0
  673. package/lib/typescript/ui/components/TextField/Adornment/types.d.ts.map +1 -0
  674. package/lib/typescript/ui/components/TextField/Adornment/utils.d.ts +12 -0
  675. package/lib/typescript/ui/components/TextField/Adornment/utils.d.ts.map +1 -0
  676. package/lib/typescript/ui/components/TextField/Label/InputLabel.d.ts +5 -0
  677. package/lib/typescript/ui/components/TextField/Label/InputLabel.d.ts.map +1 -0
  678. package/lib/typescript/ui/components/TextField/Label/LabelBackground.d.ts +4 -0
  679. package/lib/typescript/ui/components/TextField/Label/LabelBackground.d.ts.map +1 -0
  680. package/lib/typescript/ui/components/TextField/TextFieldFlat.d.ts +4 -0
  681. package/lib/typescript/ui/components/TextField/TextFieldFlat.d.ts.map +1 -0
  682. package/lib/typescript/ui/components/TextField/TextFieldOutlined.d.ts +4 -0
  683. package/lib/typescript/ui/components/TextField/TextFieldOutlined.d.ts.map +1 -0
  684. package/lib/typescript/ui/components/TextField/constants.d.ts +32 -0
  685. package/lib/typescript/ui/components/TextField/constants.d.ts.map +1 -0
  686. package/lib/typescript/ui/components/TextField/helpers.d.ts +97 -0
  687. package/lib/typescript/ui/components/TextField/helpers.d.ts.map +1 -0
  688. package/lib/typescript/ui/components/TextField/types.d.ts +156 -0
  689. package/lib/typescript/ui/components/TextField/types.d.ts.map +1 -0
  690. package/lib/typescript/ui/components/TextField.d.ts +192 -0
  691. package/lib/typescript/ui/components/TextField.d.ts.map +1 -0
  692. package/lib/typescript/ui/components/TouchableRipple/Pressable.d.ts +13 -0
  693. package/lib/typescript/ui/components/TouchableRipple/Pressable.d.ts.map +1 -0
  694. package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.d.ts +62 -0
  695. package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.d.ts.map +1 -0
  696. package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.native.d.ts +25 -0
  697. package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.native.d.ts.map +1 -0
  698. package/lib/typescript/ui/components/TouchableRipple/utils.d.ts +11 -0
  699. package/lib/typescript/ui/components/TouchableRipple/utils.d.ts.map +1 -0
  700. package/lib/typescript/ui/components/Typography/AnimatedText.d.ts +35 -0
  701. package/lib/typescript/ui/components/Typography/AnimatedText.d.ts.map +1 -0
  702. package/lib/typescript/ui/components/Typography/types.d.ts +19 -0
  703. package/lib/typescript/ui/components/Typography/types.d.ts.map +1 -0
  704. package/lib/typescript/ui/components/fileManagement/FileDetailsModal.d.ts +15 -0
  705. package/lib/typescript/ui/components/fileManagement/FileDetailsModal.d.ts.map +1 -0
  706. package/lib/typescript/ui/components/fileManagement/FileViewer.d.ts +18 -0
  707. package/lib/typescript/ui/components/fileManagement/FileViewer.d.ts.map +1 -0
  708. package/lib/typescript/ui/components/fileManagement/UploadPreview.d.ts +21 -0
  709. package/lib/typescript/ui/components/fileManagement/UploadPreview.d.ts.map +1 -0
  710. package/lib/typescript/ui/components/fileManagement/styles.d.ts +860 -0
  711. package/lib/typescript/ui/components/fileManagement/styles.d.ts.map +1 -0
  712. package/lib/typescript/ui/components/index.d.ts +4 -1
  713. package/lib/typescript/ui/components/index.d.ts.map +1 -1
  714. package/lib/typescript/ui/components/profile/EditBioModal.d.ts +11 -0
  715. package/lib/typescript/ui/components/profile/EditBioModal.d.ts.map +1 -0
  716. package/lib/typescript/ui/components/profile/EditDisplayNameModal.d.ts +12 -0
  717. package/lib/typescript/ui/components/profile/EditDisplayNameModal.d.ts.map +1 -0
  718. package/lib/typescript/ui/components/profile/EditEmailModal.d.ts +11 -0
  719. package/lib/typescript/ui/components/profile/EditEmailModal.d.ts.map +1 -0
  720. package/lib/typescript/ui/components/profile/EditLinksModal.d.ts +18 -0
  721. package/lib/typescript/ui/components/profile/EditLinksModal.d.ts.map +1 -0
  722. package/lib/typescript/ui/components/profile/EditLocationModal.d.ts +20 -0
  723. package/lib/typescript/ui/components/profile/EditLocationModal.d.ts.map +1 -0
  724. package/lib/typescript/ui/components/profile/EditUsernameModal.d.ts +11 -0
  725. package/lib/typescript/ui/components/profile/EditUsernameModal.d.ts.map +1 -0
  726. package/lib/typescript/ui/components/profile/TwoFactorSetupModal.d.ts +11 -0
  727. package/lib/typescript/ui/components/profile/TwoFactorSetupModal.d.ts.map +1 -0
  728. package/lib/typescript/ui/components/styles/overlay.d.ts +4 -0
  729. package/lib/typescript/ui/components/styles/overlay.d.ts.map +1 -0
  730. package/lib/typescript/ui/components/styles/shadow.d.ts +3 -0
  731. package/lib/typescript/ui/components/styles/shadow.d.ts.map +1 -0
  732. package/lib/typescript/ui/components/theming.d.ts +8 -0
  733. package/lib/typescript/ui/components/theming.d.ts.map +1 -0
  734. package/lib/typescript/ui/components/types.d.ts +80 -0
  735. package/lib/typescript/ui/components/types.d.ts.map +1 -0
  736. package/lib/typescript/ui/components/utils/forwardRef.d.ts +12 -0
  737. package/lib/typescript/ui/components/utils/forwardRef.d.ts.map +1 -0
  738. package/lib/typescript/ui/components/utils/hasTouchHandler.d.ts +6 -0
  739. package/lib/typescript/ui/components/utils/hasTouchHandler.d.ts.map +1 -0
  740. package/lib/typescript/ui/components/utils/roundLayoutSize.d.ts +2 -0
  741. package/lib/typescript/ui/components/utils/roundLayoutSize.d.ts.map +1 -0
  742. package/lib/typescript/ui/components/utils/splitStyles.d.ts +20 -0
  743. package/lib/typescript/ui/components/utils/splitStyles.d.ts.map +1 -0
  744. package/lib/typescript/ui/constants/iconColors.d.ts +130 -0
  745. package/lib/typescript/ui/constants/iconColors.d.ts.map +1 -0
  746. package/lib/typescript/ui/constants/spacing.d.ts +33 -0
  747. package/lib/typescript/ui/constants/spacing.d.ts.map +1 -0
  748. package/lib/typescript/ui/constants/theme.d.ts +97 -0
  749. package/lib/typescript/ui/constants/theme.d.ts.map +1 -0
  750. package/lib/typescript/ui/context/OxyContext.d.ts +23 -17
  751. package/lib/typescript/ui/context/OxyContext.d.ts.map +1 -1
  752. package/lib/typescript/ui/context/ThemeContext.d.ts +19 -0
  753. package/lib/typescript/ui/context/ThemeContext.d.ts.map +1 -0
  754. package/lib/typescript/ui/context/hooks/useAuthOperations.d.ts +51 -0
  755. package/lib/typescript/ui/context/hooks/useAuthOperations.d.ts.map +1 -0
  756. package/lib/typescript/ui/context/hooks/useDeviceManagement.d.ts +27 -0
  757. package/lib/typescript/ui/context/hooks/useDeviceManagement.d.ts.map +1 -0
  758. package/lib/typescript/ui/context/hooks/useLanguageManagement.d.ts +25 -0
  759. package/lib/typescript/ui/context/hooks/useLanguageManagement.d.ts.map +1 -0
  760. package/lib/typescript/ui/context/hooks/useSessionManagement.d.ts +39 -0
  761. package/lib/typescript/ui/context/hooks/useSessionManagement.d.ts.map +1 -0
  762. package/lib/typescript/ui/context/hooks/useStorage.d.ts +22 -0
  763. package/lib/typescript/ui/context/hooks/useStorage.d.ts.map +1 -0
  764. package/lib/typescript/ui/context/utils/errorHandlers.d.ts +30 -0
  765. package/lib/typescript/ui/context/utils/errorHandlers.d.ts.map +1 -0
  766. package/lib/typescript/ui/context/utils/sessionHelpers.d.ts +59 -0
  767. package/lib/typescript/ui/context/utils/sessionHelpers.d.ts.map +1 -0
  768. package/lib/typescript/ui/context/utils/storageHelpers.d.ts +31 -0
  769. package/lib/typescript/ui/context/utils/storageHelpers.d.ts.map +1 -0
  770. package/lib/typescript/ui/hooks/index.d.ts +2 -0
  771. package/lib/typescript/ui/hooks/index.d.ts.map +1 -1
  772. package/lib/typescript/ui/hooks/use-color-scheme.d.ts +8 -0
  773. package/lib/typescript/ui/hooks/use-color-scheme.d.ts.map +1 -0
  774. package/lib/typescript/ui/hooks/use-haptic-press.d.ts +8 -0
  775. package/lib/typescript/ui/hooks/use-haptic-press.d.ts.map +1 -0
  776. package/lib/typescript/ui/hooks/useDeviceManagement.d.ts +27 -0
  777. package/lib/typescript/ui/hooks/useDeviceManagement.d.ts.map +1 -0
  778. package/lib/typescript/ui/hooks/useLanguageManagement.d.ts +25 -0
  779. package/lib/typescript/ui/hooks/useLanguageManagement.d.ts.map +1 -0
  780. package/lib/typescript/ui/hooks/useProfileEditing.d.ts +36 -0
  781. package/lib/typescript/ui/hooks/useProfileEditing.d.ts.map +1 -0
  782. package/lib/typescript/ui/hooks/useSessionManagement.d.ts +39 -0
  783. package/lib/typescript/ui/hooks/useSessionManagement.d.ts.map +1 -0
  784. package/lib/typescript/ui/hooks/useStorage.d.ts +22 -0
  785. package/lib/typescript/ui/hooks/useStorage.d.ts.map +1 -0
  786. package/lib/typescript/ui/hooks/useThemeColors.d.ts +94 -0
  787. package/lib/typescript/ui/hooks/useThemeColors.d.ts.map +1 -0
  788. package/lib/typescript/ui/hooks/useThemeStyles.d.ts +45 -0
  789. package/lib/typescript/ui/hooks/useThemeStyles.d.ts.map +1 -0
  790. package/lib/typescript/ui/index.d.ts +2 -2
  791. package/lib/typescript/ui/index.d.ts.map +1 -1
  792. package/lib/typescript/ui/navigation/bottomSheetManager.d.ts +74 -0
  793. package/lib/typescript/ui/navigation/bottomSheetManager.d.ts.map +1 -0
  794. package/lib/typescript/ui/navigation/routes.d.ts +4 -7
  795. package/lib/typescript/ui/navigation/routes.d.ts.map +1 -1
  796. package/lib/typescript/ui/screens/AccountCenterScreen.d.ts +1 -1
  797. package/lib/typescript/ui/screens/AccountCenterScreen.d.ts.map +1 -1
  798. package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts +1 -1
  799. package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts.map +1 -1
  800. package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts +1 -1
  801. package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts.map +1 -1
  802. package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts +1 -1
  803. package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts.map +1 -1
  804. package/lib/typescript/ui/screens/AccountVerificationScreen.d.ts +1 -1
  805. package/lib/typescript/ui/screens/AccountVerificationScreen.d.ts.map +1 -1
  806. package/lib/typescript/ui/screens/AppInfoScreen.d.ts +1 -1
  807. package/lib/typescript/ui/screens/AppInfoScreen.d.ts.map +1 -1
  808. package/lib/typescript/ui/screens/FeedbackScreen.d.ts +1 -1
  809. package/lib/typescript/ui/screens/FeedbackScreen.d.ts.map +1 -1
  810. package/lib/typescript/ui/screens/FileManagementScreen.d.ts +1 -36
  811. package/lib/typescript/ui/screens/FileManagementScreen.d.ts.map +1 -1
  812. package/lib/typescript/ui/screens/HelpSupportScreen.d.ts +1 -1
  813. package/lib/typescript/ui/screens/HelpSupportScreen.d.ts.map +1 -1
  814. package/lib/typescript/ui/screens/HistoryViewScreen.d.ts +1 -1
  815. package/lib/typescript/ui/screens/HistoryViewScreen.d.ts.map +1 -1
  816. package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts +1 -1
  817. package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts.map +1 -1
  818. package/lib/typescript/ui/screens/LegalDocumentsScreen.d.ts +1 -1
  819. package/lib/typescript/ui/screens/LegalDocumentsScreen.d.ts.map +1 -1
  820. package/lib/typescript/ui/screens/OxyAuthScreen.d.ts +16 -0
  821. package/lib/typescript/ui/screens/OxyAuthScreen.d.ts.map +1 -0
  822. package/lib/typescript/ui/screens/PaymentGatewayScreen.d.ts +1 -1
  823. package/lib/typescript/ui/screens/PaymentGatewayScreen.d.ts.map +1 -1
  824. package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts +1 -1
  825. package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -1
  826. package/lib/typescript/ui/screens/PrivacySettingsScreen.d.ts +1 -1
  827. package/lib/typescript/ui/screens/PrivacySettingsScreen.d.ts.map +1 -1
  828. package/lib/typescript/ui/screens/ProfileScreen.d.ts +1 -1
  829. package/lib/typescript/ui/screens/ProfileScreen.d.ts.map +1 -1
  830. package/lib/typescript/ui/screens/SavesCollectionsScreen.d.ts +1 -1
  831. package/lib/typescript/ui/screens/SavesCollectionsScreen.d.ts.map +1 -1
  832. package/lib/typescript/ui/screens/SearchSettingsScreen.d.ts +1 -1
  833. package/lib/typescript/ui/screens/SearchSettingsScreen.d.ts.map +1 -1
  834. package/lib/typescript/ui/screens/SessionManagementScreen.d.ts +1 -1
  835. package/lib/typescript/ui/screens/SessionManagementScreen.d.ts.map +1 -1
  836. package/lib/typescript/ui/screens/UserLinksScreen.d.ts +2 -2
  837. package/lib/typescript/ui/screens/UserLinksScreen.d.ts.map +1 -1
  838. package/lib/typescript/ui/screens/WelcomeNewUserScreen.d.ts +1 -1
  839. package/lib/typescript/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -1
  840. package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts +1 -1
  841. package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts.map +1 -1
  842. package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts +1 -1
  843. package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts.map +1 -1
  844. package/lib/typescript/ui/screens/karma/KarmaFAQScreen.d.ts +1 -1
  845. package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts +1 -1
  846. package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts.map +1 -1
  847. package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts +1 -1
  848. package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts.map +1 -1
  849. package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts +1 -1
  850. package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts.map +1 -1
  851. package/lib/typescript/ui/stores/authStore.d.ts +1 -2
  852. package/lib/typescript/ui/stores/authStore.d.ts.map +1 -1
  853. package/lib/typescript/ui/styles/authStyles.d.ts +0 -10
  854. package/lib/typescript/ui/styles/authStyles.d.ts.map +1 -1
  855. package/lib/typescript/ui/styles/spacing.d.ts +7 -1
  856. package/lib/typescript/ui/styles/spacing.d.ts.map +1 -1
  857. package/lib/typescript/ui/types/fileManagement.d.ts +41 -0
  858. package/lib/typescript/ui/types/fileManagement.d.ts.map +1 -0
  859. package/lib/typescript/ui/types/navigation.d.ts +36 -0
  860. package/lib/typescript/ui/types/navigation.d.ts.map +1 -0
  861. package/lib/typescript/ui/utils/colorUtils.d.ts +14 -0
  862. package/lib/typescript/ui/utils/colorUtils.d.ts.map +1 -0
  863. package/lib/typescript/ui/utils/errorHandlers.d.ts +30 -0
  864. package/lib/typescript/ui/utils/errorHandlers.d.ts.map +1 -0
  865. package/lib/typescript/ui/utils/fileManagement.d.ts +39 -0
  866. package/lib/typescript/ui/utils/fileManagement.d.ts.map +1 -0
  867. package/lib/typescript/ui/utils/sessionHelpers.d.ts +59 -0
  868. package/lib/typescript/ui/utils/sessionHelpers.d.ts.map +1 -0
  869. package/lib/typescript/ui/utils/storageHelpers.d.ts +31 -0
  870. package/lib/typescript/ui/utils/storageHelpers.d.ts.map +1 -0
  871. package/lib/typescript/ui/utils/themeUtils.d.ts +24 -0
  872. package/lib/typescript/ui/utils/themeUtils.d.ts.map +1 -0
  873. package/lib/typescript/ui/utils/user-utils.d.ts +29 -0
  874. package/lib/typescript/ui/utils/user-utils.d.ts.map +1 -0
  875. package/lib/typescript/utils/errorUtils.d.ts.map +1 -1
  876. package/package.json +26 -15
  877. package/src/assets/lottie/welcomeheader_background_op1.json +1 -0
  878. package/src/core/HttpService.ts +97 -4
  879. package/src/core/OxyServices.base.ts +3 -1
  880. package/src/core/mixins/OxyServices.assets.ts +225 -27
  881. package/src/core/mixins/OxyServices.auth.ts +144 -80
  882. package/src/crypto/index.ts +20 -0
  883. package/src/crypto/keyManager.ts +213 -0
  884. package/src/crypto/recoveryPhrase.ts +146 -0
  885. package/src/crypto/signatureService.ts +258 -0
  886. package/src/i18n/locales/en-US.json +4 -0
  887. package/src/index.ts +13 -0
  888. package/src/models/interfaces.ts +1 -0
  889. package/src/types/bip39.d.ts +28 -0
  890. package/src/types/color.d.ts +18 -0
  891. package/src/types/elliptic.d.ts +60 -0
  892. package/src/types/expo-crypto.d.ts +28 -0
  893. package/src/types/expo-random.d.ts +8 -0
  894. package/src/types/expo-secure-store.d.ts +20 -0
  895. package/src/types/expo-vector-icons.d.ts +9 -0
  896. package/src/ui/components/ActivityIndicator.tsx +254 -0
  897. package/src/ui/components/AutoHeightScrollView.tsx +50 -0
  898. package/src/ui/components/BottomSheet.tsx +443 -0
  899. package/src/ui/components/BottomSheetRouter.tsx +407 -0
  900. package/src/ui/components/CrossFadeIcon.tsx +140 -0
  901. package/src/ui/components/EmptyState.tsx +39 -0
  902. package/src/ui/components/GroupedItem.tsx +98 -96
  903. package/src/ui/components/GroupedSection.tsx +24 -29
  904. package/src/ui/components/Header.tsx +129 -49
  905. package/src/ui/components/HelperText.tsx +160 -0
  906. package/src/ui/components/Icon.tsx +181 -0
  907. package/src/ui/components/IconButton/IconButton.tsx +235 -0
  908. package/src/ui/components/IconButton/utils.ts +190 -0
  909. package/src/ui/components/LoadingState.tsx +46 -0
  910. package/src/ui/components/OxyPayButton.tsx +1 -12
  911. package/src/ui/components/OxyProvider.tsx +49 -409
  912. package/src/ui/components/OxySignInButton.tsx +11 -18
  913. package/src/ui/components/ProfileCard.tsx +7 -4
  914. package/src/ui/components/QuickActions.tsx +7 -4
  915. package/src/ui/components/Section.tsx +6 -2
  916. package/src/ui/components/SectionTitle.tsx +7 -4
  917. package/src/ui/components/SettingRow.tsx +76 -0
  918. package/src/ui/components/StepBasedScreen.tsx +205 -187
  919. package/src/ui/components/Surface.tsx +384 -0
  920. package/src/ui/components/TextField/Addons/Outline.tsx +64 -0
  921. package/src/ui/components/TextField/Addons/Underline.tsx +78 -0
  922. package/src/ui/components/TextField/Adornment/TextFieldAdornment.tsx +208 -0
  923. package/src/ui/components/TextField/Adornment/TextFieldAffix.tsx +212 -0
  924. package/src/ui/components/TextField/Adornment/TextFieldIcon.tsx +195 -0
  925. package/src/ui/components/TextField/Adornment/enums.tsx +12 -0
  926. package/src/ui/components/TextField/Adornment/types.tsx +11 -0
  927. package/src/ui/components/TextField/Adornment/utils.ts +66 -0
  928. package/src/ui/components/TextField/Label/InputLabel.tsx +219 -0
  929. package/src/ui/components/TextField/Label/LabelBackground.tsx +100 -0
  930. package/src/ui/components/TextField/TextFieldFlat.tsx +488 -0
  931. package/src/ui/components/TextField/TextFieldOutlined.tsx +464 -0
  932. package/src/ui/components/TextField/constants.tsx +48 -0
  933. package/src/ui/components/TextField/helpers.tsx +612 -0
  934. package/src/ui/components/TextField/types.tsx +156 -0
  935. package/src/ui/components/TextField.tsx +578 -0
  936. package/src/ui/components/TouchableRipple/Pressable.tsx +41 -0
  937. package/src/ui/components/TouchableRipple/TouchableRipple.native.tsx +146 -0
  938. package/src/ui/components/TouchableRipple/TouchableRipple.tsx +347 -0
  939. package/src/ui/components/TouchableRipple/utils.ts +66 -0
  940. package/src/ui/components/Typography/AnimatedText.tsx +107 -0
  941. package/src/ui/components/Typography/types.tsx +22 -0
  942. package/src/ui/components/fileManagement/FileDetailsModal.tsx +137 -0
  943. package/src/ui/components/fileManagement/FileViewer.tsx +380 -0
  944. package/src/ui/components/fileManagement/UploadPreview.tsx +175 -0
  945. package/src/ui/components/fileManagement/styles.ts +860 -0
  946. package/src/ui/components/index.ts +4 -1
  947. package/src/ui/components/profile/EditBioModal.tsx +184 -0
  948. package/src/ui/components/profile/EditDisplayNameModal.tsx +205 -0
  949. package/src/ui/components/profile/EditEmailModal.tsx +188 -0
  950. package/src/ui/components/profile/EditLinksModal.tsx +316 -0
  951. package/src/ui/components/profile/EditLocationModal.tsx +278 -0
  952. package/src/ui/components/profile/EditUsernameModal.tsx +183 -0
  953. package/src/ui/components/profile/TwoFactorSetupModal.tsx +442 -0
  954. package/src/ui/components/styles/overlay.tsx +88 -0
  955. package/src/ui/components/styles/shadow.tsx +136 -0
  956. package/src/ui/components/theming.tsx +114 -0
  957. package/src/ui/components/types.tsx +90 -0
  958. package/src/ui/components/utils/forwardRef.tsx +23 -0
  959. package/src/ui/components/utils/hasTouchHandler.tsx +23 -0
  960. package/src/ui/components/utils/roundLayoutSize.ts +2 -0
  961. package/src/ui/components/utils/splitStyles.ts +60 -0
  962. package/src/ui/constants/iconColors.ts +88 -0
  963. package/src/ui/constants/spacing.ts +45 -0
  964. package/src/ui/constants/theme.ts +120 -0
  965. package/src/ui/context/OxyContext.tsx +276 -894
  966. package/src/ui/context/ThemeContext.tsx +41 -0
  967. package/src/ui/context/hooks/useAuthOperations.ts +400 -0
  968. package/src/ui/context/hooks/useDeviceManagement.ts +108 -0
  969. package/src/ui/context/hooks/useLanguageManagement.ts +152 -0
  970. package/src/ui/context/hooks/useSessionManagement.ts +378 -0
  971. package/src/ui/context/hooks/useStorage.ts +104 -0
  972. package/src/ui/context/utils/errorHandlers.ts +136 -0
  973. package/src/ui/context/utils/sessionHelpers.ts +146 -0
  974. package/src/ui/context/utils/storageHelpers.ts +134 -0
  975. package/src/ui/hooks/index.ts +3 -1
  976. package/src/ui/hooks/use-color-scheme.ts +24 -0
  977. package/src/ui/hooks/use-haptic-press.ts +15 -0
  978. package/src/ui/hooks/useAssets.ts +1 -1
  979. package/src/ui/hooks/useDeviceManagement.ts +108 -0
  980. package/src/ui/hooks/useLanguageManagement.ts +152 -0
  981. package/src/ui/hooks/useProfileEditing.ts +151 -0
  982. package/src/ui/hooks/useSessionManagement.ts +378 -0
  983. package/src/ui/hooks/useStorage.ts +104 -0
  984. package/src/ui/hooks/useThemeColors.ts +26 -0
  985. package/src/ui/hooks/useThemeStyles.ts +85 -0
  986. package/src/ui/index.ts +1 -4
  987. package/src/ui/navigation/bottomSheetManager.ts +191 -0
  988. package/src/ui/navigation/routes.ts +107 -189
  989. package/src/ui/screens/AccountCenterScreen.tsx +67 -63
  990. package/src/ui/screens/AccountOverviewScreen.tsx +237 -95
  991. package/src/ui/screens/AccountSettingsScreen.tsx +546 -474
  992. package/src/ui/screens/AccountSwitcherScreen.tsx +113 -116
  993. package/src/ui/screens/AccountVerificationScreen.tsx +18 -20
  994. package/src/ui/screens/AppInfoScreen.tsx +37 -38
  995. package/src/ui/screens/FeedbackScreen.tsx +15 -12
  996. package/src/ui/screens/FileManagementScreen.tsx +764 -2026
  997. package/src/ui/screens/HelpSupportScreen.tsx +30 -23
  998. package/src/ui/screens/HistoryViewScreen.tsx +25 -56
  999. package/src/ui/screens/LanguageSelectorScreen.tsx +84 -170
  1000. package/src/ui/screens/LegalDocumentsScreen.tsx +18 -41
  1001. package/src/ui/screens/OxyAuthScreen.tsx +402 -0
  1002. package/src/ui/screens/PaymentGatewayScreen.tsx +20 -22
  1003. package/src/ui/screens/PremiumSubscriptionScreen.tsx +13 -10
  1004. package/src/ui/screens/PrivacySettingsScreen.tsx +150 -198
  1005. package/src/ui/screens/ProfileScreen.tsx +7 -6
  1006. package/src/ui/screens/SavesCollectionsScreen.tsx +39 -62
  1007. package/src/ui/screens/SearchSettingsScreen.tsx +36 -86
  1008. package/src/ui/screens/SessionManagementScreen.tsx +25 -17
  1009. package/src/ui/screens/UserLinksScreen.tsx +10 -11
  1010. package/src/ui/screens/WelcomeNewUserScreen.tsx +41 -41
  1011. package/src/ui/screens/karma/KarmaAboutScreen.tsx +13 -9
  1012. package/src/ui/screens/karma/KarmaCenterScreen.tsx +70 -70
  1013. package/src/ui/screens/karma/KarmaFAQScreen.tsx +96 -96
  1014. package/src/ui/screens/karma/KarmaLeaderboardScreen.tsx +15 -10
  1015. package/src/ui/screens/karma/KarmaRewardsScreen.tsx +605 -60
  1016. package/src/ui/screens/karma/KarmaRulesScreen.tsx +14 -9
  1017. package/src/ui/stores/authStore.ts +1 -1
  1018. package/src/ui/styles/authStyles.ts +5 -11
  1019. package/src/ui/styles/spacing.ts +21 -2
  1020. package/src/ui/styles/theme.ts +1 -1
  1021. package/src/ui/types/fileManagement.ts +51 -0
  1022. package/src/ui/types/navigation.ts +61 -0
  1023. package/src/ui/utils/colorUtils.ts +46 -0
  1024. package/src/ui/utils/errorHandlers.ts +136 -0
  1025. package/src/ui/utils/fileManagement.ts +190 -0
  1026. package/src/ui/utils/sessionHelpers.ts +146 -0
  1027. package/src/ui/utils/storageHelpers.ts +134 -0
  1028. package/src/ui/utils/themeUtils.ts +43 -0
  1029. package/src/ui/utils/user-utils.ts +58 -0
  1030. package/src/utils/errorUtils.ts +14 -4
  1031. package/lib/commonjs/ui/components/internal/TextField.js +0 -665
  1032. package/lib/commonjs/ui/components/internal/TextField.js.map +0 -1
  1033. package/lib/commonjs/ui/navigation/OxyRouter.js +0 -213
  1034. package/lib/commonjs/ui/navigation/OxyRouter.js.map +0 -1
  1035. package/lib/commonjs/ui/navigation/types.js +0 -13
  1036. package/lib/commonjs/ui/navigation/types.js.map +0 -1
  1037. package/lib/commonjs/ui/screens/AccountManagementDemo.js +0 -298
  1038. package/lib/commonjs/ui/screens/AccountManagementDemo.js.map +0 -1
  1039. package/lib/commonjs/ui/screens/RecoverAccountScreen.js +0 -137
  1040. package/lib/commonjs/ui/screens/RecoverAccountScreen.js.map +0 -1
  1041. package/lib/commonjs/ui/screens/SignInScreen.js +0 -270
  1042. package/lib/commonjs/ui/screens/SignInScreen.js.map +0 -1
  1043. package/lib/commonjs/ui/screens/SignUpScreen.js +0 -229
  1044. package/lib/commonjs/ui/screens/SignUpScreen.js.map +0 -1
  1045. package/lib/commonjs/ui/screens/steps/RecoverRequestStep.js +0 -135
  1046. package/lib/commonjs/ui/screens/steps/RecoverRequestStep.js.map +0 -1
  1047. package/lib/commonjs/ui/screens/steps/RecoverResetPasswordStep.js +0 -165
  1048. package/lib/commonjs/ui/screens/steps/RecoverResetPasswordStep.js.map +0 -1
  1049. package/lib/commonjs/ui/screens/steps/RecoverSuccessStep.js +0 -159
  1050. package/lib/commonjs/ui/screens/steps/RecoverSuccessStep.js.map +0 -1
  1051. package/lib/commonjs/ui/screens/steps/RecoverVerifyStep.js +0 -144
  1052. package/lib/commonjs/ui/screens/steps/RecoverVerifyStep.js.map +0 -1
  1053. package/lib/commonjs/ui/screens/steps/SignInPasswordStep.js +0 -358
  1054. package/lib/commonjs/ui/screens/steps/SignInPasswordStep.js.map +0 -1
  1055. package/lib/commonjs/ui/screens/steps/SignInTotpStep.js +0 -188
  1056. package/lib/commonjs/ui/screens/steps/SignInTotpStep.js.map +0 -1
  1057. package/lib/commonjs/ui/screens/steps/SignInUsernameStep.js +0 -509
  1058. package/lib/commonjs/ui/screens/steps/SignInUsernameStep.js.map +0 -1
  1059. package/lib/commonjs/ui/screens/steps/SignUpIdentityStep.js +0 -200
  1060. package/lib/commonjs/ui/screens/steps/SignUpIdentityStep.js.map +0 -1
  1061. package/lib/commonjs/ui/screens/steps/SignUpSecurityStep.js +0 -185
  1062. package/lib/commonjs/ui/screens/steps/SignUpSecurityStep.js.map +0 -1
  1063. package/lib/commonjs/ui/screens/steps/SignUpSummaryStep.js +0 -138
  1064. package/lib/commonjs/ui/screens/steps/SignUpSummaryStep.js.map +0 -1
  1065. package/lib/commonjs/ui/screens/steps/SignUpWelcomeStep.js +0 -150
  1066. package/lib/commonjs/ui/screens/steps/SignUpWelcomeStep.js.map +0 -1
  1067. package/lib/module/package.json +0 -1
  1068. package/lib/module/ui/components/internal/TextField.js +0 -660
  1069. package/lib/module/ui/components/internal/TextField.js.map +0 -1
  1070. package/lib/module/ui/navigation/OxyRouter.js +0 -209
  1071. package/lib/module/ui/navigation/OxyRouter.js.map +0 -1
  1072. package/lib/module/ui/navigation/types.js +0 -22
  1073. package/lib/module/ui/navigation/types.js.map +0 -1
  1074. package/lib/module/ui/screens/AccountManagementDemo.js +0 -295
  1075. package/lib/module/ui/screens/AccountManagementDemo.js.map +0 -1
  1076. package/lib/module/ui/screens/RecoverAccountScreen.js +0 -133
  1077. package/lib/module/ui/screens/RecoverAccountScreen.js.map +0 -1
  1078. package/lib/module/ui/screens/SignInScreen.js +0 -265
  1079. package/lib/module/ui/screens/SignInScreen.js.map +0 -1
  1080. package/lib/module/ui/screens/SignUpScreen.js +0 -224
  1081. package/lib/module/ui/screens/SignUpScreen.js.map +0 -1
  1082. package/lib/module/ui/screens/steps/RecoverRequestStep.js +0 -130
  1083. package/lib/module/ui/screens/steps/RecoverRequestStep.js.map +0 -1
  1084. package/lib/module/ui/screens/steps/RecoverResetPasswordStep.js +0 -160
  1085. package/lib/module/ui/screens/steps/RecoverResetPasswordStep.js.map +0 -1
  1086. package/lib/module/ui/screens/steps/RecoverSuccessStep.js +0 -154
  1087. package/lib/module/ui/screens/steps/RecoverSuccessStep.js.map +0 -1
  1088. package/lib/module/ui/screens/steps/RecoverVerifyStep.js +0 -139
  1089. package/lib/module/ui/screens/steps/RecoverVerifyStep.js.map +0 -1
  1090. package/lib/module/ui/screens/steps/SignInPasswordStep.js +0 -353
  1091. package/lib/module/ui/screens/steps/SignInPasswordStep.js.map +0 -1
  1092. package/lib/module/ui/screens/steps/SignInTotpStep.js +0 -183
  1093. package/lib/module/ui/screens/steps/SignInTotpStep.js.map +0 -1
  1094. package/lib/module/ui/screens/steps/SignInUsernameStep.js +0 -504
  1095. package/lib/module/ui/screens/steps/SignInUsernameStep.js.map +0 -1
  1096. package/lib/module/ui/screens/steps/SignUpIdentityStep.js +0 -195
  1097. package/lib/module/ui/screens/steps/SignUpIdentityStep.js.map +0 -1
  1098. package/lib/module/ui/screens/steps/SignUpSecurityStep.js +0 -180
  1099. package/lib/module/ui/screens/steps/SignUpSecurityStep.js.map +0 -1
  1100. package/lib/module/ui/screens/steps/SignUpSummaryStep.js +0 -133
  1101. package/lib/module/ui/screens/steps/SignUpSummaryStep.js.map +0 -1
  1102. package/lib/module/ui/screens/steps/SignUpWelcomeStep.js +0 -145
  1103. package/lib/module/ui/screens/steps/SignUpWelcomeStep.js.map +0 -1
  1104. package/lib/typescript/ui/components/internal/TextField.d.ts +0 -41
  1105. package/lib/typescript/ui/components/internal/TextField.d.ts.map +0 -1
  1106. package/lib/typescript/ui/navigation/OxyRouter.d.ts +0 -7
  1107. package/lib/typescript/ui/navigation/OxyRouter.d.ts.map +0 -1
  1108. package/lib/typescript/ui/navigation/types.d.ts +0 -141
  1109. package/lib/typescript/ui/navigation/types.d.ts.map +0 -1
  1110. package/lib/typescript/ui/screens/AccountManagementDemo.d.ts +0 -8
  1111. package/lib/typescript/ui/screens/AccountManagementDemo.d.ts.map +0 -1
  1112. package/lib/typescript/ui/screens/RecoverAccountScreen.d.ts +0 -5
  1113. package/lib/typescript/ui/screens/RecoverAccountScreen.d.ts.map +0 -1
  1114. package/lib/typescript/ui/screens/SignInScreen.d.ts +0 -5
  1115. package/lib/typescript/ui/screens/SignInScreen.d.ts.map +0 -1
  1116. package/lib/typescript/ui/screens/SignUpScreen.d.ts +0 -5
  1117. package/lib/typescript/ui/screens/SignUpScreen.d.ts.map +0 -1
  1118. package/lib/typescript/ui/screens/steps/RecoverRequestStep.d.ts +0 -24
  1119. package/lib/typescript/ui/screens/steps/RecoverRequestStep.d.ts.map +0 -1
  1120. package/lib/typescript/ui/screens/steps/RecoverResetPasswordStep.d.ts +0 -24
  1121. package/lib/typescript/ui/screens/steps/RecoverResetPasswordStep.d.ts.map +0 -1
  1122. package/lib/typescript/ui/screens/steps/RecoverSuccessStep.d.ts +0 -19
  1123. package/lib/typescript/ui/screens/steps/RecoverSuccessStep.d.ts.map +0 -1
  1124. package/lib/typescript/ui/screens/steps/RecoverVerifyStep.d.ts +0 -26
  1125. package/lib/typescript/ui/screens/steps/RecoverVerifyStep.d.ts.map +0 -1
  1126. package/lib/typescript/ui/screens/steps/SignInPasswordStep.d.ts +0 -30
  1127. package/lib/typescript/ui/screens/steps/SignInPasswordStep.d.ts.map +0 -1
  1128. package/lib/typescript/ui/screens/steps/SignInTotpStep.d.ts +0 -19
  1129. package/lib/typescript/ui/screens/steps/SignInTotpStep.d.ts.map +0 -1
  1130. package/lib/typescript/ui/screens/steps/SignInUsernameStep.d.ts +0 -28
  1131. package/lib/typescript/ui/screens/steps/SignInUsernameStep.d.ts.map +0 -1
  1132. package/lib/typescript/ui/screens/steps/SignUpIdentityStep.d.ts +0 -26
  1133. package/lib/typescript/ui/screens/steps/SignUpIdentityStep.d.ts.map +0 -1
  1134. package/lib/typescript/ui/screens/steps/SignUpSecurityStep.d.ts +0 -27
  1135. package/lib/typescript/ui/screens/steps/SignUpSecurityStep.d.ts.map +0 -1
  1136. package/lib/typescript/ui/screens/steps/SignUpSummaryStep.d.ts +0 -17
  1137. package/lib/typescript/ui/screens/steps/SignUpSummaryStep.d.ts.map +0 -1
  1138. package/lib/typescript/ui/screens/steps/SignUpWelcomeStep.d.ts +0 -14
  1139. package/lib/typescript/ui/screens/steps/SignUpWelcomeStep.d.ts.map +0 -1
  1140. package/src/ui/components/internal/TextField.tsx +0 -808
  1141. package/src/ui/navigation/OxyRouter.tsx +0 -216
  1142. package/src/ui/navigation/types.ts +0 -164
  1143. package/src/ui/screens/AccountManagementDemo.tsx +0 -297
  1144. package/src/ui/screens/RecoverAccountScreen.tsx +0 -141
  1145. package/src/ui/screens/SignInScreen.tsx +0 -297
  1146. package/src/ui/screens/SignUpScreen.tsx +0 -239
  1147. package/src/ui/screens/steps/RecoverRequestStep.tsx +0 -143
  1148. package/src/ui/screens/steps/RecoverResetPasswordStep.tsx +0 -162
  1149. package/src/ui/screens/steps/RecoverSuccessStep.tsx +0 -148
  1150. package/src/ui/screens/steps/RecoverVerifyStep.tsx +0 -154
  1151. package/src/ui/screens/steps/SignInPasswordStep.tsx +0 -343
  1152. package/src/ui/screens/steps/SignInTotpStep.tsx +0 -163
  1153. package/src/ui/screens/steps/SignInUsernameStep.tsx +0 -560
  1154. package/src/ui/screens/steps/SignUpIdentityStep.tsx +0 -217
  1155. package/src/ui/screens/steps/SignUpSecurityStep.tsx +0 -207
  1156. package/src/ui/screens/steps/SignUpSummaryStep.tsx +0 -155
  1157. package/src/ui/screens/steps/SignUpWelcomeStep.tsx +0 -127
@@ -1,17 +1,20 @@
1
1
  "use strict";
2
2
 
3
- import React, { useState, useCallback, useMemo, useEffect } from 'react';
4
- import { View, Text, StyleSheet, ScrollView, Switch, ActivityIndicator, TouchableOpacity } from 'react-native';
5
- import { useOxy } from '../context/OxyContext';
3
+ import React, { useState, useCallback, useEffect, useMemo } from 'react';
4
+ import { View, Text, StyleSheet, ScrollView, TouchableOpacity } from 'react-native';
6
5
  import { toast } from '../../lib/sonner';
7
- import { Header, Section, Avatar } from '../components';
6
+ import { Header, Section, Avatar, SettingRow, LoadingState, EmptyState, GroupedSection } from '../components';
8
7
  import { useI18n } from '../hooks/useI18n';
8
+ import { useThemeStyles } from '../hooks/useThemeStyles';
9
+ import { normalizeTheme } from '../utils/themeUtils';
10
+ import { useOxy } from '../context/OxyContext';
9
11
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
10
12
  const PrivacySettingsScreen = ({
11
13
  onClose,
12
14
  theme,
13
15
  goBack
14
16
  }) => {
17
+ // Use useOxy() hook for OxyContext values
15
18
  const {
16
19
  oxyServices,
17
20
  user
@@ -165,106 +168,75 @@ const PrivacySettingsScreen = ({
165
168
  avatar
166
169
  };
167
170
  }, []);
171
+ const normalizedTheme = normalizeTheme(theme);
172
+ const themeStyles = useThemeStyles(normalizedTheme);
168
173
 
169
- // Reusable user list item component
170
- const UserListItem = ({
171
- item,
172
- idField,
173
- onAction,
174
- actionLabel,
175
- actionColor,
176
- subtitle
177
- }) => {
178
- const {
179
- userId,
180
- username,
181
- avatar
182
- } = extractUserInfo(item, idField);
183
- // Convert avatar file ID to URI if needed
184
- const avatarUri = avatar && oxyServices ? oxyServices.getFileDownloadUrl(avatar, 'thumb') : undefined;
185
- return /*#__PURE__*/_jsxs(View, {
186
- style: [styles.userRow, {
187
- borderBottomColor: themeStyles.borderColor
188
- }],
189
- children: [/*#__PURE__*/_jsxs(View, {
190
- style: styles.userInfo,
191
- children: [/*#__PURE__*/_jsx(Avatar, {
174
+ // Convert blocked users to GroupedSection items
175
+ const blockedUserItems = useMemo(() => {
176
+ return blockedUsers.map(blocked => {
177
+ const {
178
+ userId,
179
+ username,
180
+ avatar
181
+ } = extractUserInfo(blocked, 'blockedId');
182
+ const avatarUri = avatar && oxyServices ? oxyServices.getFileDownloadUrl(avatar, 'thumb') : undefined;
183
+ return {
184
+ id: userId,
185
+ title: username,
186
+ customIcon: /*#__PURE__*/_jsx(Avatar, {
192
187
  uri: avatarUri,
193
188
  name: username,
194
- size: 40,
195
- theme: theme
196
- }), /*#__PURE__*/_jsxs(View, {
197
- style: styles.userDetails,
198
- children: [/*#__PURE__*/_jsx(Text, {
199
- style: [styles.username, {
200
- color: themeStyles.textColor
201
- }],
202
- children: username
203
- }), subtitle && /*#__PURE__*/_jsx(Text, {
204
- style: [styles.userSubtext, {
205
- color: themeStyles.mutedTextColor
189
+ size: 40
190
+ }),
191
+ customContent: /*#__PURE__*/_jsx(TouchableOpacity, {
192
+ onPress: () => handleUnblock(userId),
193
+ style: [styles.actionButton, {
194
+ backgroundColor: themeStyles.secondaryBackgroundColor
195
+ }],
196
+ children: /*#__PURE__*/_jsx(Text, {
197
+ style: [styles.actionButtonText, {
198
+ color: themeStyles.dangerColor
206
199
  }],
207
- children: subtitle
208
- })]
209
- })]
210
- }), /*#__PURE__*/_jsx(TouchableOpacity, {
211
- onPress: () => onAction(userId),
212
- style: [styles.actionButton, {
213
- backgroundColor: themeStyles.secondaryBackgroundColor
214
- }],
215
- children: /*#__PURE__*/_jsx(Text, {
216
- style: [styles.actionButtonText, {
217
- color: actionColor
200
+ children: t('privacySettings.unblock') || 'Unblock'
201
+ })
202
+ })
203
+ };
204
+ });
205
+ }, [blockedUsers, oxyServices, themeStyles, handleUnblock, t]);
206
+
207
+ // Convert restricted users to GroupedSection items
208
+ const restrictedUserItems = useMemo(() => {
209
+ return restrictedUsers.map(restricted => {
210
+ const {
211
+ userId,
212
+ username,
213
+ avatar
214
+ } = extractUserInfo(restricted, 'restrictedId');
215
+ const avatarUri = avatar && oxyServices ? oxyServices.getFileDownloadUrl(avatar, 'thumb') : undefined;
216
+ return {
217
+ id: userId,
218
+ title: username,
219
+ subtitle: t('privacySettings.restrictedDescription') || 'Limited interactions',
220
+ customIcon: /*#__PURE__*/_jsx(Avatar, {
221
+ uri: avatarUri,
222
+ name: username,
223
+ size: 40
224
+ }),
225
+ customContent: /*#__PURE__*/_jsx(TouchableOpacity, {
226
+ onPress: () => handleUnrestrict(userId),
227
+ style: [styles.actionButton, {
228
+ backgroundColor: themeStyles.secondaryBackgroundColor
218
229
  }],
219
- children: actionLabel
230
+ children: /*#__PURE__*/_jsx(Text, {
231
+ style: [styles.actionButtonText, {
232
+ color: themeStyles.primaryColor
233
+ }],
234
+ children: t('privacySettings.unrestrict') || 'Unrestrict'
235
+ })
220
236
  })
221
- })]
237
+ };
222
238
  });
223
- };
224
- const themeStyles = useMemo(() => {
225
- const isDarkTheme = theme === 'dark';
226
- return {
227
- textColor: isDarkTheme ? '#FFFFFF' : '#000000',
228
- backgroundColor: isDarkTheme ? '#121212' : '#FFFFFF',
229
- secondaryBackgroundColor: isDarkTheme ? '#222222' : '#F5F5F5',
230
- borderColor: isDarkTheme ? '#444444' : '#E0E0E0',
231
- mutedTextColor: isDarkTheme ? '#8E8E93' : '#8E8E93'
232
- };
233
- }, [theme]);
234
- const SettingRow = ({
235
- title,
236
- description,
237
- value,
238
- onValueChange,
239
- disabled
240
- }) => /*#__PURE__*/_jsxs(View, {
241
- style: [styles.settingRow, {
242
- borderBottomColor: themeStyles.borderColor
243
- }],
244
- children: [/*#__PURE__*/_jsxs(View, {
245
- style: styles.settingInfo,
246
- children: [/*#__PURE__*/_jsx(Text, {
247
- style: [styles.settingTitle, {
248
- color: themeStyles.textColor
249
- }],
250
- children: title
251
- }), description && /*#__PURE__*/_jsx(Text, {
252
- style: [styles.settingDescription, {
253
- color: themeStyles.mutedTextColor
254
- }],
255
- children: description
256
- })]
257
- }), /*#__PURE__*/_jsx(Switch, {
258
- value: value,
259
- onValueChange: onValueChange,
260
- disabled: disabled || isSaving,
261
- trackColor: {
262
- false: '#767577',
263
- true: '#d169e5'
264
- },
265
- thumbColor: value ? '#fff' : '#f4f3f4'
266
- })]
267
- });
239
+ }, [restrictedUsers, oxyServices, themeStyles, handleUnrestrict, t]);
268
240
  if (isLoading) {
269
241
  return /*#__PURE__*/_jsxs(View, {
270
242
  style: [styles.container, {
@@ -272,16 +244,11 @@ const PrivacySettingsScreen = ({
272
244
  }],
273
245
  children: [/*#__PURE__*/_jsx(Header, {
274
246
  title: t('privacySettings.title') || 'Privacy Settings',
275
- theme: theme,
276
247
  onBack: goBack || onClose,
277
248
  variant: "minimal",
278
249
  elevation: "subtle"
279
- }), /*#__PURE__*/_jsx(View, {
280
- style: styles.loadingContainer,
281
- children: /*#__PURE__*/_jsx(ActivityIndicator, {
282
- size: "large",
283
- color: themeStyles.textColor
284
- })
250
+ }), /*#__PURE__*/_jsx(LoadingState, {
251
+ color: themeStyles.textColor
285
252
  })]
286
253
  });
287
254
  }
@@ -291,7 +258,6 @@ const PrivacySettingsScreen = ({
291
258
  }],
292
259
  children: [/*#__PURE__*/_jsx(Header, {
293
260
  title: t('privacySettings.title') || 'Privacy Settings',
294
- theme: theme,
295
261
  onBack: goBack || onClose,
296
262
  variant: "minimal",
297
263
  elevation: "subtle"
@@ -299,159 +265,182 @@ const PrivacySettingsScreen = ({
299
265
  style: styles.content,
300
266
  children: [/*#__PURE__*/_jsxs(Section, {
301
267
  title: t('privacySettings.sections.account') || 'ACCOUNT PRIVACY',
302
- theme: theme,
303
268
  isFirst: true,
304
269
  children: [/*#__PURE__*/_jsx(SettingRow, {
305
270
  title: t('privacySettings.isPrivateAccount') || 'Private Account',
306
271
  description: t('privacySettings.isPrivateAccountDesc') || 'Only approved followers can see your posts',
307
272
  value: settings.isPrivateAccount,
308
- onValueChange: value => updateSetting('isPrivateAccount', value)
273
+ onValueChange: value => updateSetting('isPrivateAccount', value),
274
+ disabled: isSaving,
275
+ textColor: themeStyles.textColor,
276
+ mutedTextColor: themeStyles.mutedTextColor,
277
+ borderColor: themeStyles.borderColor
309
278
  }), /*#__PURE__*/_jsx(SettingRow, {
310
279
  title: t('privacySettings.profileVisibility') || 'Profile Visibility',
311
280
  description: t('privacySettings.profileVisibilityDesc') || 'Control who can view your profile',
312
281
  value: settings.profileVisibility,
313
- onValueChange: value => updateSetting('profileVisibility', value)
282
+ onValueChange: value => updateSetting('profileVisibility', value),
283
+ disabled: isSaving,
284
+ textColor: themeStyles.textColor,
285
+ mutedTextColor: themeStyles.mutedTextColor,
286
+ borderColor: themeStyles.borderColor
314
287
  }), /*#__PURE__*/_jsx(SettingRow, {
315
288
  title: t('privacySettings.hideOnlineStatus') || 'Hide Online Status',
316
289
  description: t('privacySettings.hideOnlineStatusDesc') || 'Don\'t show when you\'re online',
317
290
  value: settings.hideOnlineStatus,
318
- onValueChange: value => updateSetting('hideOnlineStatus', value)
291
+ onValueChange: value => updateSetting('hideOnlineStatus', value),
292
+ disabled: isSaving,
293
+ textColor: themeStyles.textColor,
294
+ mutedTextColor: themeStyles.mutedTextColor,
295
+ borderColor: themeStyles.borderColor
319
296
  }), /*#__PURE__*/_jsx(SettingRow, {
320
297
  title: t('privacySettings.hideLastSeen') || 'Hide Last Seen',
321
298
  description: t('privacySettings.hideLastSeenDesc') || 'Don\'t show when you were last active',
322
299
  value: settings.hideLastSeen,
323
- onValueChange: value => updateSetting('hideLastSeen', value)
300
+ onValueChange: value => updateSetting('hideLastSeen', value),
301
+ disabled: isSaving,
302
+ textColor: themeStyles.textColor,
303
+ mutedTextColor: themeStyles.mutedTextColor,
304
+ borderColor: themeStyles.borderColor
324
305
  })]
325
306
  }), /*#__PURE__*/_jsxs(Section, {
326
307
  title: t('privacySettings.sections.interactions') || 'INTERACTIONS',
327
- theme: theme,
328
308
  children: [/*#__PURE__*/_jsx(SettingRow, {
329
309
  title: t('privacySettings.allowTagging') || 'Allow Tagging',
330
310
  description: t('privacySettings.allowTaggingDesc') || 'Let others tag you in posts',
331
311
  value: settings.allowTagging,
332
- onValueChange: value => updateSetting('allowTagging', value)
312
+ onValueChange: value => updateSetting('allowTagging', value),
313
+ disabled: isSaving,
314
+ textColor: themeStyles.textColor,
315
+ mutedTextColor: themeStyles.mutedTextColor,
316
+ borderColor: themeStyles.borderColor
333
317
  }), /*#__PURE__*/_jsx(SettingRow, {
334
318
  title: t('privacySettings.allowMentions') || 'Allow Mentions',
335
319
  description: t('privacySettings.allowMentionsDesc') || 'Let others mention you',
336
320
  value: settings.allowMentions,
337
- onValueChange: value => updateSetting('allowMentions', value)
321
+ onValueChange: value => updateSetting('allowMentions', value),
322
+ disabled: isSaving,
323
+ textColor: themeStyles.textColor,
324
+ mutedTextColor: themeStyles.mutedTextColor,
325
+ borderColor: themeStyles.borderColor
338
326
  }), /*#__PURE__*/_jsx(SettingRow, {
339
327
  title: t('privacySettings.allowDirectMessages') || 'Allow Direct Messages',
340
328
  description: t('privacySettings.allowDirectMessagesDesc') || 'Let others send you direct messages',
341
329
  value: settings.allowDirectMessages,
342
- onValueChange: value => updateSetting('allowDirectMessages', value)
330
+ onValueChange: value => updateSetting('allowDirectMessages', value),
331
+ disabled: isSaving,
332
+ textColor: themeStyles.textColor,
333
+ mutedTextColor: themeStyles.mutedTextColor,
334
+ borderColor: themeStyles.borderColor
343
335
  }), /*#__PURE__*/_jsx(SettingRow, {
344
336
  title: t('privacySettings.hideReadReceipts') || 'Hide Read Receipts',
345
337
  description: t('privacySettings.hideReadReceiptsDesc') || 'Don\'t show read receipts in messages',
346
338
  value: settings.hideReadReceipts,
347
- onValueChange: value => updateSetting('hideReadReceipts', value)
339
+ onValueChange: value => updateSetting('hideReadReceipts', value),
340
+ disabled: isSaving,
341
+ textColor: themeStyles.textColor,
342
+ mutedTextColor: themeStyles.mutedTextColor,
343
+ borderColor: themeStyles.borderColor
348
344
  })]
349
345
  }), /*#__PURE__*/_jsxs(Section, {
350
346
  title: t('privacySettings.sections.activity') || 'ACTIVITY & DATA',
351
- theme: theme,
352
347
  children: [/*#__PURE__*/_jsx(SettingRow, {
353
348
  title: t('privacySettings.showActivity') || 'Show Activity Status',
354
349
  description: t('privacySettings.showActivityDesc') || 'Display your activity on your profile',
355
350
  value: settings.showActivity,
356
- onValueChange: value => updateSetting('showActivity', value)
351
+ onValueChange: value => updateSetting('showActivity', value),
352
+ disabled: isSaving,
353
+ textColor: themeStyles.textColor,
354
+ mutedTextColor: themeStyles.mutedTextColor,
355
+ borderColor: themeStyles.borderColor
357
356
  }), /*#__PURE__*/_jsx(SettingRow, {
358
357
  title: t('privacySettings.dataSharing') || 'Data Sharing',
359
358
  description: t('privacySettings.dataSharingDesc') || 'Allow sharing data for personalization',
360
359
  value: settings.dataSharing,
361
- onValueChange: value => updateSetting('dataSharing', value)
360
+ onValueChange: value => updateSetting('dataSharing', value),
361
+ disabled: isSaving,
362
+ textColor: themeStyles.textColor,
363
+ mutedTextColor: themeStyles.mutedTextColor,
364
+ borderColor: themeStyles.borderColor
362
365
  }), /*#__PURE__*/_jsx(SettingRow, {
363
366
  title: t('privacySettings.locationSharing') || 'Location Sharing',
364
367
  description: t('privacySettings.locationSharingDesc') || 'Share your location',
365
368
  value: settings.locationSharing,
366
- onValueChange: value => updateSetting('locationSharing', value)
369
+ onValueChange: value => updateSetting('locationSharing', value),
370
+ disabled: isSaving,
371
+ textColor: themeStyles.textColor,
372
+ mutedTextColor: themeStyles.mutedTextColor,
373
+ borderColor: themeStyles.borderColor
367
374
  }), /*#__PURE__*/_jsx(SettingRow, {
368
375
  title: t('privacySettings.analyticsSharing') || 'Analytics Sharing',
369
376
  description: t('privacySettings.analyticsSharingDesc') || 'Allow analytics data collection',
370
377
  value: settings.analyticsSharing,
371
- onValueChange: value => updateSetting('analyticsSharing', value)
378
+ onValueChange: value => updateSetting('analyticsSharing', value),
379
+ disabled: isSaving,
380
+ textColor: themeStyles.textColor,
381
+ mutedTextColor: themeStyles.mutedTextColor,
382
+ borderColor: themeStyles.borderColor
372
383
  })]
373
384
  }), /*#__PURE__*/_jsxs(Section, {
374
385
  title: t('privacySettings.sections.content') || 'CONTENT & SAFETY',
375
- theme: theme,
376
386
  children: [/*#__PURE__*/_jsx(SettingRow, {
377
387
  title: t('privacySettings.sensitiveContent') || 'Show Sensitive Content',
378
388
  description: t('privacySettings.sensitiveContentDesc') || 'Allow sensitive or explicit content',
379
389
  value: settings.sensitiveContent,
380
- onValueChange: value => updateSetting('sensitiveContent', value)
390
+ onValueChange: value => updateSetting('sensitiveContent', value),
391
+ disabled: isSaving,
392
+ textColor: themeStyles.textColor,
393
+ mutedTextColor: themeStyles.mutedTextColor,
394
+ borderColor: themeStyles.borderColor
381
395
  }), /*#__PURE__*/_jsx(SettingRow, {
382
396
  title: t('privacySettings.autoFilter') || 'Auto Filter',
383
397
  description: t('privacySettings.autoFilterDesc') || 'Automatically filter inappropriate content',
384
398
  value: settings.autoFilter,
385
- onValueChange: value => updateSetting('autoFilter', value)
399
+ onValueChange: value => updateSetting('autoFilter', value),
400
+ disabled: isSaving,
401
+ textColor: themeStyles.textColor,
402
+ mutedTextColor: themeStyles.mutedTextColor,
403
+ borderColor: themeStyles.borderColor
386
404
  }), /*#__PURE__*/_jsx(SettingRow, {
387
405
  title: t('privacySettings.muteKeywords') || 'Mute Keywords',
388
406
  description: t('privacySettings.muteKeywordsDesc') || 'Hide posts containing muted keywords',
389
407
  value: settings.muteKeywords,
390
- onValueChange: value => updateSetting('muteKeywords', value)
408
+ onValueChange: value => updateSetting('muteKeywords', value),
409
+ disabled: isSaving,
410
+ textColor: themeStyles.textColor,
411
+ mutedTextColor: themeStyles.mutedTextColor,
412
+ borderColor: themeStyles.borderColor
391
413
  }), /*#__PURE__*/_jsx(SettingRow, {
392
414
  title: t('privacySettings.blockScreenshots') || 'Block Screenshots',
393
415
  description: t('privacySettings.blockScreenshotsDesc') || 'Prevent screenshots of your content',
394
416
  value: settings.blockScreenshots,
395
- onValueChange: value => updateSetting('blockScreenshots', value)
417
+ onValueChange: value => updateSetting('blockScreenshots', value),
418
+ disabled: isSaving,
419
+ textColor: themeStyles.textColor,
420
+ mutedTextColor: themeStyles.mutedTextColor,
421
+ borderColor: themeStyles.borderColor
396
422
  })]
397
423
  }), /*#__PURE__*/_jsx(Section, {
398
424
  title: t('privacySettings.sections.blockedUsers') || 'BLOCKED USERS',
399
- theme: theme,
400
- children: isLoadingUsers ? /*#__PURE__*/_jsx(View, {
401
- style: styles.loadingUsersContainer,
402
- children: /*#__PURE__*/_jsx(ActivityIndicator, {
403
- size: "small",
404
- color: themeStyles.textColor
405
- })
406
- }) : blockedUsers.length === 0 ? /*#__PURE__*/_jsx(View, {
407
- style: styles.emptyContainer,
408
- children: /*#__PURE__*/_jsx(Text, {
409
- style: [styles.emptyText, {
410
- color: themeStyles.mutedTextColor
411
- }],
412
- children: t('privacySettings.noBlockedUsers') || 'No blocked users'
413
- })
414
- }) : blockedUsers.map(blocked => {
415
- const {
416
- userId
417
- } = extractUserInfo(blocked, 'blockedId');
418
- return /*#__PURE__*/_jsx(UserListItem, {
419
- item: blocked,
420
- idField: "blockedId",
421
- onAction: handleUnblock,
422
- actionLabel: t('privacySettings.unblock') || 'Unblock',
423
- actionColor: "#FF3B30"
424
- }, userId);
425
+ children: isLoadingUsers ? /*#__PURE__*/_jsx(LoadingState, {
426
+ color: themeStyles.textColor,
427
+ size: "small"
428
+ }) : blockedUsers.length === 0 ? /*#__PURE__*/_jsx(EmptyState, {
429
+ message: t('privacySettings.noBlockedUsers') || 'No blocked users',
430
+ textColor: themeStyles.mutedTextColor
431
+ }) : /*#__PURE__*/_jsx(GroupedSection, {
432
+ items: blockedUserItems
425
433
  })
426
434
  }), /*#__PURE__*/_jsx(Section, {
427
435
  title: t('privacySettings.sections.restrictedUsers') || 'RESTRICTED USERS',
428
- theme: theme,
429
- children: isLoadingUsers ? /*#__PURE__*/_jsx(View, {
430
- style: styles.loadingUsersContainer,
431
- children: /*#__PURE__*/_jsx(ActivityIndicator, {
432
- size: "small",
433
- color: themeStyles.textColor
434
- })
435
- }) : restrictedUsers.length === 0 ? /*#__PURE__*/_jsx(View, {
436
- style: styles.emptyContainer,
437
- children: /*#__PURE__*/_jsx(Text, {
438
- style: [styles.emptyText, {
439
- color: themeStyles.mutedTextColor
440
- }],
441
- children: t('privacySettings.noRestrictedUsers') || 'No restricted users'
442
- })
443
- }) : restrictedUsers.map(restricted => {
444
- const {
445
- userId
446
- } = extractUserInfo(restricted, 'restrictedId');
447
- return /*#__PURE__*/_jsx(UserListItem, {
448
- item: restricted,
449
- idField: "restrictedId",
450
- onAction: handleUnrestrict,
451
- actionLabel: t('privacySettings.unrestrict') || 'Unrestrict',
452
- actionColor: "#007AFF",
453
- subtitle: t('privacySettings.restrictedDescription') || 'Limited interactions'
454
- }, userId);
436
+ children: isLoadingUsers ? /*#__PURE__*/_jsx(LoadingState, {
437
+ color: themeStyles.textColor,
438
+ size: "small"
439
+ }) : restrictedUsers.length === 0 ? /*#__PURE__*/_jsx(EmptyState, {
440
+ message: t('privacySettings.noRestrictedUsers') || 'No restricted users',
441
+ textColor: themeStyles.mutedTextColor
442
+ }) : /*#__PURE__*/_jsx(GroupedSection, {
443
+ items: restrictedUserItems
455
444
  })
456
445
  })]
457
446
  })]
@@ -465,67 +454,6 @@ const styles = StyleSheet.create({
465
454
  flex: 1,
466
455
  padding: 16
467
456
  },
468
- loadingContainer: {
469
- flex: 1,
470
- alignItems: 'center',
471
- justifyContent: 'center'
472
- },
473
- settingRow: {
474
- flexDirection: 'row',
475
- justifyContent: 'space-between',
476
- alignItems: 'center',
477
- paddingVertical: 16,
478
- borderBottomWidth: 1
479
- },
480
- settingInfo: {
481
- flex: 1,
482
- marginRight: 16
483
- },
484
- settingTitle: {
485
- fontSize: 16,
486
- fontWeight: '500',
487
- marginBottom: 4
488
- },
489
- settingDescription: {
490
- fontSize: 14,
491
- opacity: 0.7
492
- },
493
- loadingUsersContainer: {
494
- paddingVertical: 20,
495
- alignItems: 'center'
496
- },
497
- emptyContainer: {
498
- paddingVertical: 20,
499
- alignItems: 'center'
500
- },
501
- emptyText: {
502
- fontSize: 14
503
- },
504
- userRow: {
505
- flexDirection: 'row',
506
- justifyContent: 'space-between',
507
- alignItems: 'center',
508
- paddingVertical: 12,
509
- borderBottomWidth: 1
510
- },
511
- userInfo: {
512
- flexDirection: 'row',
513
- alignItems: 'center',
514
- flex: 1,
515
- marginRight: 12
516
- },
517
- userDetails: {
518
- marginLeft: 12,
519
- flex: 1
520
- },
521
- username: {
522
- fontSize: 16,
523
- fontWeight: '500',
524
- marginBottom: 2
525
- },
526
- userSubtext: {
527
- fontSize: 13
528
- },
529
457
  actionButton: {
530
458
  paddingHorizontal: 16,
531
459
  paddingVertical: 8,
@@ -1 +1 @@
1
- {"version":3,"names":["React","useState","useCallback","useMemo","useEffect","View","Text","StyleSheet","ScrollView","Switch","ActivityIndicator","TouchableOpacity","useOxy","toast","Header","Section","Avatar","useI18n","jsx","_jsx","jsxs","_jsxs","PrivacySettingsScreen","onClose","theme","goBack","oxyServices","user","t","settings","setSettings","isPrivateAccount","hideOnlineStatus","hideLastSeen","profileVisibility","twoFactorEnabled","loginAlerts","blockScreenshots","login","biometricLogin","showActivity","allowTagging","allowMentions","hideReadReceipts","allowDirectMessages","dataSharing","locationSharing","analyticsSharing","sensitiveContent","autoFilter","muteKeywords","isLoading","setIsLoading","isSaving","setIsSaving","blockedUsers","setBlockedUsers","restrictedUsers","setRestrictedUsers","isLoadingUsers","setIsLoadingUsers","loadSettings","id","privacySettings","getPrivacySettings","error","console","loadUsers","blocked","restricted","Promise","all","getBlockedUsers","getRestrictedUsers","updateSetting","key","value","newSettings","updatePrivacySettings","success","handleUnblock","userId","unblockUser","prev","filter","u","blockedId","_id","handleUnrestrict","unrestrictUser","restrictedId","extractUserInfo","item","idField","userIdField","username","avatar","undefined","UserListItem","onAction","actionLabel","actionColor","subtitle","avatarUri","getFileDownloadUrl","style","styles","userRow","borderBottomColor","themeStyles","borderColor","children","userInfo","uri","name","size","userDetails","color","textColor","userSubtext","mutedTextColor","onPress","actionButton","backgroundColor","secondaryBackgroundColor","actionButtonText","isDarkTheme","SettingRow","title","description","onValueChange","disabled","settingRow","settingInfo","settingTitle","settingDescription","trackColor","false","true","thumbColor","container","onBack","variant","elevation","loadingContainer","content","isFirst","loadingUsersContainer","length","emptyContainer","emptyText","map","create","flex","padding","alignItems","justifyContent","flexDirection","paddingVertical","borderBottomWidth","marginRight","fontSize","fontWeight","marginBottom","opacity","marginLeft","paddingHorizontal","borderRadius","memo"],"sourceRoot":"../../../../src","sources":["ui/screens/PrivacySettingsScreen.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["React","useState","useCallback","useEffect","useMemo","View","Text","StyleSheet","ScrollView","TouchableOpacity","toast","Header","Section","Avatar","SettingRow","LoadingState","EmptyState","GroupedSection","useI18n","useThemeStyles","normalizeTheme","useOxy","jsx","_jsx","jsxs","_jsxs","PrivacySettingsScreen","onClose","theme","goBack","oxyServices","user","t","settings","setSettings","isPrivateAccount","hideOnlineStatus","hideLastSeen","profileVisibility","twoFactorEnabled","loginAlerts","blockScreenshots","login","biometricLogin","showActivity","allowTagging","allowMentions","hideReadReceipts","allowDirectMessages","dataSharing","locationSharing","analyticsSharing","sensitiveContent","autoFilter","muteKeywords","isLoading","setIsLoading","isSaving","setIsSaving","blockedUsers","setBlockedUsers","restrictedUsers","setRestrictedUsers","isLoadingUsers","setIsLoadingUsers","loadSettings","id","privacySettings","getPrivacySettings","error","console","loadUsers","blocked","restricted","Promise","all","getBlockedUsers","getRestrictedUsers","updateSetting","key","value","newSettings","updatePrivacySettings","success","handleUnblock","userId","unblockUser","prev","filter","u","blockedId","_id","handleUnrestrict","unrestrictUser","restrictedId","extractUserInfo","item","idField","userIdField","username","avatar","undefined","normalizedTheme","themeStyles","blockedUserItems","map","avatarUri","getFileDownloadUrl","title","customIcon","uri","name","size","customContent","onPress","style","styles","actionButton","backgroundColor","secondaryBackgroundColor","children","actionButtonText","color","dangerColor","restrictedUserItems","subtitle","primaryColor","container","onBack","variant","elevation","textColor","content","isFirst","description","onValueChange","disabled","mutedTextColor","borderColor","length","message","items","create","flex","padding","paddingHorizontal","paddingVertical","borderRadius","fontSize","fontWeight","memo"],"sourceRoot":"../../../../src","sources":["ui/screens/PrivacySettingsScreen.tsx"],"mappings":"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","ignoreList":[]}