@oxyhq/services 19.0.1 → 19.1.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 (913) hide show
  1. package/lib/commonjs/assets/assets/icons/OxyServices.tsx +5 -12
  2. package/lib/commonjs/assets/icons/OxyServices.js +7 -7
  3. package/lib/commonjs/assets/icons/OxyServices.js.map +1 -1
  4. package/lib/commonjs/index.js +56 -25
  5. package/lib/commonjs/index.js.map +1 -1
  6. package/lib/commonjs/ui/boot/runProviderColdBoot.js +121 -0
  7. package/lib/commonjs/ui/boot/runProviderColdBoot.js.map +1 -0
  8. package/lib/commonjs/ui/client.js +10 -17
  9. package/lib/commonjs/ui/client.js.map +1 -1
  10. package/lib/commonjs/ui/components/FollowButton.js +28 -92
  11. package/lib/commonjs/ui/components/FollowButton.js.map +1 -1
  12. package/lib/commonjs/ui/components/Header.js +127 -241
  13. package/lib/commonjs/ui/components/Header.js.map +1 -1
  14. package/lib/commonjs/ui/components/OxyAccountDialog.js +22 -18
  15. package/lib/commonjs/ui/components/OxyAccountDialog.js.map +1 -1
  16. package/lib/commonjs/ui/components/OxyConsentScreen.js +4 -6
  17. package/lib/commonjs/ui/components/OxyConsentScreen.js.map +1 -1
  18. package/lib/commonjs/ui/components/OxyOAuthCallback.js +45 -0
  19. package/lib/commonjs/ui/components/OxyOAuthCallback.js.map +1 -0
  20. package/lib/commonjs/ui/components/OxyPayButton.js +20 -71
  21. package/lib/commonjs/ui/components/OxyPayButton.js.map +1 -1
  22. package/lib/commonjs/ui/components/OxyProvider.js +3 -3
  23. package/lib/commonjs/ui/components/OxyProvider.js.map +1 -1
  24. package/lib/commonjs/ui/components/OxySignInButton.js +30 -135
  25. package/lib/commonjs/ui/components/OxySignInButton.js.map +1 -1
  26. package/lib/commonjs/ui/components/ProfileButton.js +4 -2
  27. package/lib/commonjs/ui/components/ProfileButton.js.map +1 -1
  28. package/lib/commonjs/ui/components/ProfileSummaryCard.js +99 -0
  29. package/lib/commonjs/ui/components/ProfileSummaryCard.js.map +1 -0
  30. package/lib/commonjs/ui/components/RequireOxyAuth.js +7 -10
  31. package/lib/commonjs/ui/components/RequireOxyAuth.js.map +1 -1
  32. package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js +9 -9
  33. package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js.map +1 -1
  34. package/lib/commonjs/ui/components/fileManagement/FileViewer.js +20 -23
  35. package/lib/commonjs/ui/components/fileManagement/FileViewer.js.map +1 -1
  36. package/lib/commonjs/ui/components/fileManagement/UploadPreview.js +6 -6
  37. package/lib/commonjs/ui/components/fileManagement/UploadPreview.js.map +1 -1
  38. package/lib/commonjs/ui/components/modals/DeleteAccountModal.js +14 -9
  39. package/lib/commonjs/ui/components/modals/DeleteAccountModal.js.map +1 -1
  40. package/lib/commonjs/ui/components/payment/PaymentDetailsStep.js +55 -55
  41. package/lib/commonjs/ui/components/payment/PaymentDetailsStep.js.map +1 -1
  42. package/lib/commonjs/ui/components/payment/paymentStyles.js +13 -13
  43. package/lib/commonjs/ui/components/payment/paymentStyles.js.map +1 -1
  44. package/lib/commonjs/ui/context/OxyContext.js +129 -260
  45. package/lib/commonjs/ui/context/OxyContext.js.map +1 -1
  46. package/lib/commonjs/ui/context/oxyContextHelpers.js +64 -0
  47. package/lib/commonjs/ui/context/oxyContextHelpers.js.map +1 -0
  48. package/lib/commonjs/ui/{components/TextField/Adornment/types.js → context/oxyContextTypes.js} +1 -1
  49. package/lib/commonjs/ui/context/oxyContextTypes.js.map +1 -0
  50. package/lib/commonjs/ui/context/useOxyAccountGraph.js +91 -0
  51. package/lib/commonjs/ui/context/useOxyAccountGraph.js.map +1 -0
  52. package/lib/commonjs/ui/hooks/queryClient.js +9 -18
  53. package/lib/commonjs/ui/hooks/queryClient.js.map +1 -1
  54. package/lib/commonjs/ui/hooks/useAuth.js +7 -5
  55. package/lib/commonjs/ui/hooks/useAuth.js.map +1 -1
  56. package/lib/commonjs/ui/hooks/useSessionManagement.js +2 -0
  57. package/lib/commonjs/ui/hooks/useSessionManagement.js.map +1 -1
  58. package/lib/commonjs/ui/index.js +10 -17
  59. package/lib/commonjs/ui/index.js.map +1 -1
  60. package/lib/commonjs/ui/navigation/accountDialogManager.js +5 -44
  61. package/lib/commonjs/ui/navigation/accountDialogManager.js.map +1 -1
  62. package/lib/commonjs/ui/screens/ConnectedAppsScreen.js +9 -8
  63. package/lib/commonjs/ui/screens/ConnectedAppsScreen.js.map +1 -1
  64. package/lib/commonjs/ui/screens/EditProfileFieldScreen.js +2 -3
  65. package/lib/commonjs/ui/screens/EditProfileFieldScreen.js.map +1 -1
  66. package/lib/commonjs/ui/screens/EditProfileScreen.js +8 -19
  67. package/lib/commonjs/ui/screens/EditProfileScreen.js.map +1 -1
  68. package/lib/commonjs/ui/screens/FAQScreen.js +8 -8
  69. package/lib/commonjs/ui/screens/FAQScreen.js.map +1 -1
  70. package/lib/commonjs/ui/screens/FeedbackScreen.js +0 -1
  71. package/lib/commonjs/ui/screens/FeedbackScreen.js.map +1 -1
  72. package/lib/commonjs/ui/screens/FileManagementScreen.js +59 -1105
  73. package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -1
  74. package/lib/commonjs/ui/screens/HistoryViewScreen.js +9 -8
  75. package/lib/commonjs/ui/screens/HistoryViewScreen.js.map +1 -1
  76. package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +0 -1
  77. package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +1 -1
  78. package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +5 -4
  79. package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +1 -1
  80. package/lib/commonjs/ui/screens/ManageAccountScreen.js +9 -49
  81. package/lib/commonjs/ui/screens/ManageAccountScreen.js.map +1 -1
  82. package/lib/commonjs/ui/screens/PaymentGatewayScreen.js +6 -9
  83. package/lib/commonjs/ui/screens/PaymentGatewayScreen.js.map +1 -1
  84. package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +247 -224
  85. package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
  86. package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +21 -20
  87. package/lib/commonjs/ui/screens/PrivacySettingsScreen.js.map +1 -1
  88. package/lib/commonjs/ui/screens/ProfileScreen.js +4 -4
  89. package/lib/commonjs/ui/screens/ProfileScreen.js.map +1 -1
  90. package/lib/commonjs/ui/screens/SavesCollectionsScreen.js +12 -11
  91. package/lib/commonjs/ui/screens/SavesCollectionsScreen.js.map +1 -1
  92. package/lib/commonjs/ui/screens/SearchSettingsScreen.js +3 -2
  93. package/lib/commonjs/ui/screens/SearchSettingsScreen.js.map +1 -1
  94. package/lib/commonjs/ui/screens/UserListScreen.js +3 -3
  95. package/lib/commonjs/ui/screens/UserListScreen.js.map +1 -1
  96. package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +7 -8
  97. package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +1 -1
  98. package/lib/commonjs/ui/screens/fileManagement/FileListSection.js +114 -0
  99. package/lib/commonjs/ui/screens/fileManagement/FileListSection.js.map +1 -0
  100. package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js +512 -0
  101. package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js.map +1 -0
  102. package/lib/commonjs/ui/screens/fileManagement/UploadBar.js +59 -0
  103. package/lib/commonjs/ui/screens/fileManagement/UploadBar.js.map +1 -0
  104. package/lib/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.js +475 -0
  105. package/lib/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.js.map +1 -0
  106. package/lib/commonjs/ui/screens/fileManagement/shared.js +67 -0
  107. package/lib/commonjs/ui/screens/fileManagement/shared.js.map +1 -0
  108. package/lib/commonjs/ui/screens/trust/TrustCenterScreen.js +3 -2
  109. package/lib/commonjs/ui/screens/trust/TrustCenterScreen.js.map +1 -1
  110. package/lib/commonjs/ui/screens/trust/TrustFAQScreen.js +4 -7
  111. package/lib/commonjs/ui/screens/trust/TrustFAQScreen.js.map +1 -1
  112. package/lib/commonjs/ui/screens/trust/TrustLeaderboardScreen.js +3 -3
  113. package/lib/commonjs/ui/screens/trust/TrustLeaderboardScreen.js.map +1 -1
  114. package/lib/commonjs/ui/screens/trust/TrustRulesScreen.js +3 -2
  115. package/lib/commonjs/ui/screens/trust/TrustRulesScreen.js.map +1 -1
  116. package/lib/commonjs/ui/server.js +4 -5
  117. package/lib/commonjs/ui/server.js.map +1 -1
  118. package/lib/commonjs/ui/session/createSessionClient.js +2 -2
  119. package/lib/commonjs/ui/utils/crossOriginRestore.js +109 -0
  120. package/lib/commonjs/ui/utils/crossOriginRestore.js.map +1 -0
  121. package/lib/commonjs/ui/utils/deviceCredential.js +23 -0
  122. package/lib/commonjs/ui/utils/deviceCredential.js.map +1 -0
  123. package/lib/commonjs/ui/utils/oauthReturn.js +82 -0
  124. package/lib/commonjs/ui/utils/oauthReturn.js.map +1 -0
  125. package/lib/commonjs/ui/utils/storageHelpers.js +1 -2
  126. package/lib/commonjs/ui/utils/storageHelpers.js.map +1 -1
  127. package/lib/module/assets/assets/icons/OxyServices.tsx +5 -12
  128. package/lib/module/assets/icons/OxyServices.js +7 -7
  129. package/lib/module/assets/icons/OxyServices.js.map +1 -1
  130. package/lib/module/index.js +10 -9
  131. package/lib/module/index.js.map +1 -1
  132. package/lib/module/ui/boot/runProviderColdBoot.js +116 -0
  133. package/lib/module/ui/boot/runProviderColdBoot.js.map +1 -0
  134. package/lib/module/ui/client.js +3 -4
  135. package/lib/module/ui/client.js.map +1 -1
  136. package/lib/module/ui/components/FollowButton.js +28 -92
  137. package/lib/module/ui/components/FollowButton.js.map +1 -1
  138. package/lib/module/ui/components/Header.js +127 -241
  139. package/lib/module/ui/components/Header.js.map +1 -1
  140. package/lib/module/ui/components/OxyAccountDialog.js +22 -18
  141. package/lib/module/ui/components/OxyAccountDialog.js.map +1 -1
  142. package/lib/module/ui/components/OxyConsentScreen.js +4 -5
  143. package/lib/module/ui/components/OxyConsentScreen.js.map +1 -1
  144. package/lib/module/ui/components/OxyOAuthCallback.js +41 -0
  145. package/lib/module/ui/components/OxyOAuthCallback.js.map +1 -0
  146. package/lib/module/ui/components/OxyPayButton.js +21 -71
  147. package/lib/module/ui/components/OxyPayButton.js.map +1 -1
  148. package/lib/module/ui/components/OxyProvider.js +3 -3
  149. package/lib/module/ui/components/OxyProvider.js.map +1 -1
  150. package/lib/module/ui/components/OxySignInButton.js +34 -139
  151. package/lib/module/ui/components/OxySignInButton.js.map +1 -1
  152. package/lib/module/ui/components/ProfileButton.js +5 -3
  153. package/lib/module/ui/components/ProfileButton.js.map +1 -1
  154. package/lib/module/ui/components/ProfileSummaryCard.js +95 -0
  155. package/lib/module/ui/components/ProfileSummaryCard.js.map +1 -0
  156. package/lib/module/ui/components/RequireOxyAuth.js +7 -9
  157. package/lib/module/ui/components/RequireOxyAuth.js.map +1 -1
  158. package/lib/module/ui/components/fileManagement/FileDetailsModal.js +9 -9
  159. package/lib/module/ui/components/fileManagement/FileDetailsModal.js.map +1 -1
  160. package/lib/module/ui/components/fileManagement/FileViewer.js +20 -23
  161. package/lib/module/ui/components/fileManagement/FileViewer.js.map +1 -1
  162. package/lib/module/ui/components/fileManagement/UploadPreview.js +6 -6
  163. package/lib/module/ui/components/fileManagement/UploadPreview.js.map +1 -1
  164. package/lib/module/ui/components/modals/DeleteAccountModal.js +14 -8
  165. package/lib/module/ui/components/modals/DeleteAccountModal.js.map +1 -1
  166. package/lib/module/ui/components/payment/PaymentDetailsStep.js +54 -54
  167. package/lib/module/ui/components/payment/PaymentDetailsStep.js.map +1 -1
  168. package/lib/module/ui/components/payment/paymentStyles.js +13 -13
  169. package/lib/module/ui/components/payment/paymentStyles.js.map +1 -1
  170. package/lib/module/ui/context/OxyContext.js +128 -259
  171. package/lib/module/ui/context/OxyContext.js.map +1 -1
  172. package/lib/module/ui/context/oxyContextHelpers.js +57 -0
  173. package/lib/module/ui/context/oxyContextHelpers.js.map +1 -0
  174. package/lib/module/ui/context/oxyContextTypes.js +4 -0
  175. package/lib/module/ui/context/oxyContextTypes.js.map +1 -0
  176. package/lib/module/ui/context/useOxyAccountGraph.js +87 -0
  177. package/lib/module/ui/context/useOxyAccountGraph.js.map +1 -0
  178. package/lib/module/ui/hooks/queryClient.js +8 -17
  179. package/lib/module/ui/hooks/queryClient.js.map +1 -1
  180. package/lib/module/ui/hooks/useAuth.js +7 -5
  181. package/lib/module/ui/hooks/useAuth.js.map +1 -1
  182. package/lib/module/ui/hooks/useSessionManagement.js +2 -0
  183. package/lib/module/ui/hooks/useSessionManagement.js.map +1 -1
  184. package/lib/module/ui/index.js +2 -3
  185. package/lib/module/ui/index.js.map +1 -1
  186. package/lib/module/ui/navigation/accountDialogManager.js +4 -41
  187. package/lib/module/ui/navigation/accountDialogManager.js.map +1 -1
  188. package/lib/module/ui/screens/ConnectedAppsScreen.js +8 -7
  189. package/lib/module/ui/screens/ConnectedAppsScreen.js.map +1 -1
  190. package/lib/module/ui/screens/EditProfileFieldScreen.js +2 -3
  191. package/lib/module/ui/screens/EditProfileFieldScreen.js.map +1 -1
  192. package/lib/module/ui/screens/EditProfileScreen.js +7 -18
  193. package/lib/module/ui/screens/EditProfileScreen.js.map +1 -1
  194. package/lib/module/ui/screens/FAQScreen.js +8 -8
  195. package/lib/module/ui/screens/FAQScreen.js.map +1 -1
  196. package/lib/module/ui/screens/FeedbackScreen.js +0 -1
  197. package/lib/module/ui/screens/FeedbackScreen.js.map +1 -1
  198. package/lib/module/ui/screens/FileManagementScreen.js +53 -1098
  199. package/lib/module/ui/screens/FileManagementScreen.js.map +1 -1
  200. package/lib/module/ui/screens/HistoryViewScreen.js +9 -8
  201. package/lib/module/ui/screens/HistoryViewScreen.js.map +1 -1
  202. package/lib/module/ui/screens/LanguageSelectorScreen.js +0 -1
  203. package/lib/module/ui/screens/LanguageSelectorScreen.js.map +1 -1
  204. package/lib/module/ui/screens/LegalDocumentsScreen.js +5 -4
  205. package/lib/module/ui/screens/LegalDocumentsScreen.js.map +1 -1
  206. package/lib/module/ui/screens/ManageAccountScreen.js +11 -51
  207. package/lib/module/ui/screens/ManageAccountScreen.js.map +1 -1
  208. package/lib/module/ui/screens/PaymentGatewayScreen.js +4 -7
  209. package/lib/module/ui/screens/PaymentGatewayScreen.js.map +1 -1
  210. package/lib/module/ui/screens/PremiumSubscriptionScreen.js +247 -224
  211. package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
  212. package/lib/module/ui/screens/PrivacySettingsScreen.js +19 -18
  213. package/lib/module/ui/screens/PrivacySettingsScreen.js.map +1 -1
  214. package/lib/module/ui/screens/ProfileScreen.js +3 -3
  215. package/lib/module/ui/screens/ProfileScreen.js.map +1 -1
  216. package/lib/module/ui/screens/SavesCollectionsScreen.js +12 -11
  217. package/lib/module/ui/screens/SavesCollectionsScreen.js.map +1 -1
  218. package/lib/module/ui/screens/SearchSettingsScreen.js +3 -2
  219. package/lib/module/ui/screens/SearchSettingsScreen.js.map +1 -1
  220. package/lib/module/ui/screens/UserListScreen.js +2 -2
  221. package/lib/module/ui/screens/UserListScreen.js.map +1 -1
  222. package/lib/module/ui/screens/WelcomeNewUserScreen.js +6 -6
  223. package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +1 -1
  224. package/lib/module/ui/screens/fileManagement/FileListSection.js +110 -0
  225. package/lib/module/ui/screens/fileManagement/FileListSection.js.map +1 -0
  226. package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js +509 -0
  227. package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js.map +1 -0
  228. package/lib/module/ui/screens/fileManagement/UploadBar.js +55 -0
  229. package/lib/module/ui/screens/fileManagement/UploadBar.js.map +1 -0
  230. package/lib/module/ui/screens/fileManagement/hooks/useFileUploadState.js +471 -0
  231. package/lib/module/ui/screens/fileManagement/hooks/useFileUploadState.js.map +1 -0
  232. package/lib/module/ui/screens/fileManagement/shared.js +58 -0
  233. package/lib/module/ui/screens/fileManagement/shared.js.map +1 -0
  234. package/lib/module/ui/screens/trust/TrustCenterScreen.js +3 -2
  235. package/lib/module/ui/screens/trust/TrustCenterScreen.js.map +1 -1
  236. package/lib/module/ui/screens/trust/TrustFAQScreen.js +4 -7
  237. package/lib/module/ui/screens/trust/TrustFAQScreen.js.map +1 -1
  238. package/lib/module/ui/screens/trust/TrustLeaderboardScreen.js +2 -2
  239. package/lib/module/ui/screens/trust/TrustLeaderboardScreen.js.map +1 -1
  240. package/lib/module/ui/screens/trust/TrustRulesScreen.js +3 -2
  241. package/lib/module/ui/screens/trust/TrustRulesScreen.js.map +1 -1
  242. package/lib/module/ui/server.js +2 -3
  243. package/lib/module/ui/server.js.map +1 -1
  244. package/lib/module/ui/session/createSessionClient.js +2 -2
  245. package/lib/module/ui/utils/crossOriginRestore.js +101 -0
  246. package/lib/module/ui/utils/crossOriginRestore.js.map +1 -0
  247. package/lib/module/ui/utils/deviceCredential.js +18 -0
  248. package/lib/module/ui/utils/deviceCredential.js.map +1 -0
  249. package/lib/module/ui/utils/oauthReturn.js +78 -0
  250. package/lib/module/ui/utils/oauthReturn.js.map +1 -0
  251. package/lib/module/ui/utils/storageHelpers.js +1 -2
  252. package/lib/module/ui/utils/storageHelpers.js.map +1 -1
  253. package/lib/typescript/commonjs/assets/icons/OxyServices.d.ts +0 -5
  254. package/lib/typescript/commonjs/assets/icons/OxyServices.d.ts.map +1 -1
  255. package/lib/typescript/commonjs/index.d.ts +11 -6
  256. package/lib/typescript/commonjs/index.d.ts.map +1 -1
  257. package/lib/typescript/commonjs/ui/boot/runProviderColdBoot.d.ts +29 -0
  258. package/lib/typescript/commonjs/ui/boot/runProviderColdBoot.d.ts.map +1 -0
  259. package/lib/typescript/commonjs/ui/client.d.ts +3 -4
  260. package/lib/typescript/commonjs/ui/client.d.ts.map +1 -1
  261. package/lib/typescript/commonjs/ui/components/FollowButton.d.ts.map +1 -1
  262. package/lib/typescript/commonjs/ui/components/Header.d.ts +16 -21
  263. package/lib/typescript/commonjs/ui/components/Header.d.ts.map +1 -1
  264. package/lib/typescript/commonjs/ui/components/OxyAccountDialog.d.ts +3 -7
  265. package/lib/typescript/commonjs/ui/components/OxyAccountDialog.d.ts.map +1 -1
  266. package/lib/typescript/commonjs/ui/components/OxyOAuthCallback.d.ts +11 -0
  267. package/lib/typescript/commonjs/ui/components/OxyOAuthCallback.d.ts.map +1 -0
  268. package/lib/typescript/commonjs/ui/components/OxyPayButton.d.ts.map +1 -1
  269. package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts +0 -13
  270. package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts.map +1 -1
  271. package/lib/typescript/commonjs/ui/components/ProfileButton.d.ts.map +1 -1
  272. package/lib/typescript/commonjs/ui/components/ProfileSummaryCard.d.ts +33 -0
  273. package/lib/typescript/commonjs/ui/components/ProfileSummaryCard.d.ts.map +1 -0
  274. package/lib/typescript/commonjs/ui/components/fileManagement/FileViewer.d.ts.map +1 -1
  275. package/lib/typescript/commonjs/ui/components/modals/DeleteAccountModal.d.ts.map +1 -1
  276. package/lib/typescript/commonjs/ui/components/payment/PaymentDetailsStep.d.ts.map +1 -1
  277. package/lib/typescript/commonjs/ui/components/payment/types.d.ts +6 -10
  278. package/lib/typescript/commonjs/ui/components/payment/types.d.ts.map +1 -1
  279. package/lib/typescript/commonjs/ui/context/OxyContext.d.ts +2 -185
  280. package/lib/typescript/commonjs/ui/context/OxyContext.d.ts.map +1 -1
  281. package/lib/typescript/commonjs/ui/context/oxyContextHelpers.d.ts +7 -0
  282. package/lib/typescript/commonjs/ui/context/oxyContextHelpers.d.ts.map +1 -0
  283. package/lib/typescript/commonjs/ui/context/oxyContextTypes.d.ts +123 -0
  284. package/lib/typescript/commonjs/ui/context/oxyContextTypes.d.ts.map +1 -0
  285. package/lib/typescript/commonjs/ui/context/useOxyAccountGraph.d.ts +26 -0
  286. package/lib/typescript/commonjs/ui/context/useOxyAccountGraph.d.ts.map +1 -0
  287. package/lib/typescript/commonjs/ui/hooks/queryClient.d.ts +2 -3
  288. package/lib/typescript/commonjs/ui/hooks/queryClient.d.ts.map +1 -1
  289. package/lib/typescript/commonjs/ui/hooks/useAuth.d.ts +7 -5
  290. package/lib/typescript/commonjs/ui/hooks/useAuth.d.ts.map +1 -1
  291. package/lib/typescript/commonjs/ui/hooks/useSessionManagement.d.ts.map +1 -1
  292. package/lib/typescript/commonjs/ui/index.d.ts +2 -3
  293. package/lib/typescript/commonjs/ui/index.d.ts.map +1 -1
  294. package/lib/typescript/commonjs/ui/navigation/accountDialogManager.d.ts +4 -34
  295. package/lib/typescript/commonjs/ui/navigation/accountDialogManager.d.ts.map +1 -1
  296. package/lib/typescript/commonjs/ui/screens/ConnectedAppsScreen.d.ts.map +1 -1
  297. package/lib/typescript/commonjs/ui/screens/EditProfileFieldScreen.d.ts.map +1 -1
  298. package/lib/typescript/commonjs/ui/screens/EditProfileScreen.d.ts.map +1 -1
  299. package/lib/typescript/commonjs/ui/screens/FAQScreen.d.ts.map +1 -1
  300. package/lib/typescript/commonjs/ui/screens/FeedbackScreen.d.ts.map +1 -1
  301. package/lib/typescript/commonjs/ui/screens/FileManagementScreen.d.ts.map +1 -1
  302. package/lib/typescript/commonjs/ui/screens/LanguageSelectorScreen.d.ts.map +1 -1
  303. package/lib/typescript/commonjs/ui/screens/LegalDocumentsScreen.d.ts.map +1 -1
  304. package/lib/typescript/commonjs/ui/screens/ManageAccountScreen.d.ts.map +1 -1
  305. package/lib/typescript/commonjs/ui/screens/PaymentGatewayScreen.d.ts.map +1 -1
  306. package/lib/typescript/commonjs/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -1
  307. package/lib/typescript/commonjs/ui/screens/PrivacySettingsScreen.d.ts.map +1 -1
  308. package/lib/typescript/commonjs/ui/screens/SavesCollectionsScreen.d.ts.map +1 -1
  309. package/lib/typescript/commonjs/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -1
  310. package/lib/typescript/commonjs/ui/screens/fileManagement/FileListSection.d.ts +40 -0
  311. package/lib/typescript/commonjs/ui/screens/fileManagement/FileListSection.d.ts.map +1 -0
  312. package/lib/typescript/commonjs/ui/screens/fileManagement/PhotoPickerSection.d.ts +38 -0
  313. package/lib/typescript/commonjs/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +1 -0
  314. package/lib/typescript/commonjs/ui/screens/fileManagement/UploadBar.d.ts +25 -0
  315. package/lib/typescript/commonjs/ui/screens/fileManagement/UploadBar.d.ts.map +1 -0
  316. package/lib/typescript/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.d.ts +39 -0
  317. package/lib/typescript/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.d.ts.map +1 -0
  318. package/lib/typescript/commonjs/ui/screens/fileManagement/shared.d.ts +34 -0
  319. package/lib/typescript/commonjs/ui/screens/fileManagement/shared.d.ts.map +1 -0
  320. package/lib/typescript/commonjs/ui/screens/trust/TrustFAQScreen.d.ts.map +1 -1
  321. package/lib/typescript/commonjs/ui/server.d.ts +2 -3
  322. package/lib/typescript/commonjs/ui/server.d.ts.map +1 -1
  323. package/lib/typescript/commonjs/ui/session/createSessionClient.d.ts +2 -2
  324. package/lib/typescript/commonjs/ui/types/navigation.d.ts +2 -18
  325. package/lib/typescript/commonjs/ui/types/navigation.d.ts.map +1 -1
  326. package/lib/typescript/commonjs/ui/utils/crossOriginRestore.d.ts +24 -0
  327. package/lib/typescript/commonjs/ui/utils/crossOriginRestore.d.ts.map +1 -0
  328. package/lib/typescript/commonjs/ui/utils/deviceCredential.d.ts +8 -0
  329. package/lib/typescript/commonjs/ui/utils/deviceCredential.d.ts.map +1 -0
  330. package/lib/typescript/commonjs/ui/utils/oauthReturn.d.ts +25 -0
  331. package/lib/typescript/commonjs/ui/utils/oauthReturn.d.ts.map +1 -0
  332. package/lib/typescript/commonjs/ui/utils/storageHelpers.d.ts +0 -11
  333. package/lib/typescript/commonjs/ui/utils/storageHelpers.d.ts.map +1 -1
  334. package/lib/typescript/module/assets/icons/OxyServices.d.ts +0 -5
  335. package/lib/typescript/module/assets/icons/OxyServices.d.ts.map +1 -1
  336. package/lib/typescript/module/index.d.ts +11 -6
  337. package/lib/typescript/module/index.d.ts.map +1 -1
  338. package/lib/typescript/module/ui/boot/runProviderColdBoot.d.ts +29 -0
  339. package/lib/typescript/module/ui/boot/runProviderColdBoot.d.ts.map +1 -0
  340. package/lib/typescript/module/ui/client.d.ts +3 -4
  341. package/lib/typescript/module/ui/client.d.ts.map +1 -1
  342. package/lib/typescript/module/ui/components/FollowButton.d.ts.map +1 -1
  343. package/lib/typescript/module/ui/components/Header.d.ts +16 -21
  344. package/lib/typescript/module/ui/components/Header.d.ts.map +1 -1
  345. package/lib/typescript/module/ui/components/OxyAccountDialog.d.ts +3 -7
  346. package/lib/typescript/module/ui/components/OxyAccountDialog.d.ts.map +1 -1
  347. package/lib/typescript/module/ui/components/OxyOAuthCallback.d.ts +11 -0
  348. package/lib/typescript/module/ui/components/OxyOAuthCallback.d.ts.map +1 -0
  349. package/lib/typescript/module/ui/components/OxyPayButton.d.ts.map +1 -1
  350. package/lib/typescript/module/ui/components/OxySignInButton.d.ts +0 -13
  351. package/lib/typescript/module/ui/components/OxySignInButton.d.ts.map +1 -1
  352. package/lib/typescript/module/ui/components/ProfileButton.d.ts.map +1 -1
  353. package/lib/typescript/module/ui/components/ProfileSummaryCard.d.ts +33 -0
  354. package/lib/typescript/module/ui/components/ProfileSummaryCard.d.ts.map +1 -0
  355. package/lib/typescript/module/ui/components/fileManagement/FileViewer.d.ts.map +1 -1
  356. package/lib/typescript/module/ui/components/modals/DeleteAccountModal.d.ts.map +1 -1
  357. package/lib/typescript/module/ui/components/payment/PaymentDetailsStep.d.ts.map +1 -1
  358. package/lib/typescript/module/ui/components/payment/types.d.ts +6 -10
  359. package/lib/typescript/module/ui/components/payment/types.d.ts.map +1 -1
  360. package/lib/typescript/module/ui/context/OxyContext.d.ts +2 -185
  361. package/lib/typescript/module/ui/context/OxyContext.d.ts.map +1 -1
  362. package/lib/typescript/module/ui/context/oxyContextHelpers.d.ts +7 -0
  363. package/lib/typescript/module/ui/context/oxyContextHelpers.d.ts.map +1 -0
  364. package/lib/typescript/module/ui/context/oxyContextTypes.d.ts +123 -0
  365. package/lib/typescript/module/ui/context/oxyContextTypes.d.ts.map +1 -0
  366. package/lib/typescript/module/ui/context/useOxyAccountGraph.d.ts +26 -0
  367. package/lib/typescript/module/ui/context/useOxyAccountGraph.d.ts.map +1 -0
  368. package/lib/typescript/module/ui/hooks/queryClient.d.ts +2 -3
  369. package/lib/typescript/module/ui/hooks/queryClient.d.ts.map +1 -1
  370. package/lib/typescript/module/ui/hooks/useAuth.d.ts +7 -5
  371. package/lib/typescript/module/ui/hooks/useAuth.d.ts.map +1 -1
  372. package/lib/typescript/module/ui/hooks/useSessionManagement.d.ts.map +1 -1
  373. package/lib/typescript/module/ui/index.d.ts +2 -3
  374. package/lib/typescript/module/ui/index.d.ts.map +1 -1
  375. package/lib/typescript/module/ui/navigation/accountDialogManager.d.ts +4 -34
  376. package/lib/typescript/module/ui/navigation/accountDialogManager.d.ts.map +1 -1
  377. package/lib/typescript/module/ui/screens/ConnectedAppsScreen.d.ts.map +1 -1
  378. package/lib/typescript/module/ui/screens/EditProfileFieldScreen.d.ts.map +1 -1
  379. package/lib/typescript/module/ui/screens/EditProfileScreen.d.ts.map +1 -1
  380. package/lib/typescript/module/ui/screens/FAQScreen.d.ts.map +1 -1
  381. package/lib/typescript/module/ui/screens/FeedbackScreen.d.ts.map +1 -1
  382. package/lib/typescript/module/ui/screens/FileManagementScreen.d.ts.map +1 -1
  383. package/lib/typescript/module/ui/screens/LanguageSelectorScreen.d.ts.map +1 -1
  384. package/lib/typescript/module/ui/screens/LegalDocumentsScreen.d.ts.map +1 -1
  385. package/lib/typescript/module/ui/screens/ManageAccountScreen.d.ts.map +1 -1
  386. package/lib/typescript/module/ui/screens/PaymentGatewayScreen.d.ts.map +1 -1
  387. package/lib/typescript/module/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -1
  388. package/lib/typescript/module/ui/screens/PrivacySettingsScreen.d.ts.map +1 -1
  389. package/lib/typescript/module/ui/screens/SavesCollectionsScreen.d.ts.map +1 -1
  390. package/lib/typescript/module/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -1
  391. package/lib/typescript/module/ui/screens/fileManagement/FileListSection.d.ts +40 -0
  392. package/lib/typescript/module/ui/screens/fileManagement/FileListSection.d.ts.map +1 -0
  393. package/lib/typescript/module/ui/screens/fileManagement/PhotoPickerSection.d.ts +38 -0
  394. package/lib/typescript/module/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +1 -0
  395. package/lib/typescript/module/ui/screens/fileManagement/UploadBar.d.ts +25 -0
  396. package/lib/typescript/module/ui/screens/fileManagement/UploadBar.d.ts.map +1 -0
  397. package/lib/typescript/module/ui/screens/fileManagement/hooks/useFileUploadState.d.ts +39 -0
  398. package/lib/typescript/module/ui/screens/fileManagement/hooks/useFileUploadState.d.ts.map +1 -0
  399. package/lib/typescript/module/ui/screens/fileManagement/shared.d.ts +34 -0
  400. package/lib/typescript/module/ui/screens/fileManagement/shared.d.ts.map +1 -0
  401. package/lib/typescript/module/ui/screens/trust/TrustFAQScreen.d.ts.map +1 -1
  402. package/lib/typescript/module/ui/server.d.ts +2 -3
  403. package/lib/typescript/module/ui/server.d.ts.map +1 -1
  404. package/lib/typescript/module/ui/session/createSessionClient.d.ts +2 -2
  405. package/lib/typescript/module/ui/types/navigation.d.ts +2 -18
  406. package/lib/typescript/module/ui/types/navigation.d.ts.map +1 -1
  407. package/lib/typescript/module/ui/utils/crossOriginRestore.d.ts +24 -0
  408. package/lib/typescript/module/ui/utils/crossOriginRestore.d.ts.map +1 -0
  409. package/lib/typescript/module/ui/utils/deviceCredential.d.ts +8 -0
  410. package/lib/typescript/module/ui/utils/deviceCredential.d.ts.map +1 -0
  411. package/lib/typescript/module/ui/utils/oauthReturn.d.ts +25 -0
  412. package/lib/typescript/module/ui/utils/oauthReturn.d.ts.map +1 -0
  413. package/lib/typescript/module/ui/utils/storageHelpers.d.ts +0 -11
  414. package/lib/typescript/module/ui/utils/storageHelpers.d.ts.map +1 -1
  415. package/package.json +29 -17
  416. package/src/assets/icons/OxyServices.tsx +5 -12
  417. package/src/index.ts +16 -10
  418. package/src/ui/boot/runProviderColdBoot.ts +150 -0
  419. package/src/ui/client.ts +3 -4
  420. package/src/ui/components/FollowButton.tsx +30 -95
  421. package/src/ui/components/Header.tsx +135 -405
  422. package/src/ui/components/OxyAccountDialog.tsx +18 -16
  423. package/src/ui/components/OxyConsentScreen.tsx +2 -2
  424. package/src/ui/components/OxyOAuthCallback.tsx +38 -0
  425. package/src/ui/components/OxyPayButton.tsx +11 -60
  426. package/src/ui/components/OxyProvider.tsx +3 -3
  427. package/src/ui/components/OxySignInButton.tsx +35 -134
  428. package/src/ui/components/ProfileButton.tsx +8 -3
  429. package/src/ui/components/ProfileSummaryCard.tsx +123 -0
  430. package/src/ui/components/RequireOxyAuth.tsx +3 -3
  431. package/src/ui/components/__tests__/OxyConsentScreen.test.tsx +1 -3
  432. package/src/ui/components/fileManagement/FileDetailsModal.tsx +9 -9
  433. package/src/ui/components/fileManagement/FileViewer.tsx +20 -22
  434. package/src/ui/components/fileManagement/UploadPreview.tsx +6 -6
  435. package/src/ui/components/modals/DeleteAccountModal.tsx +7 -7
  436. package/src/ui/components/payment/PaymentDetailsStep.tsx +49 -39
  437. package/src/ui/components/payment/paymentStyles.ts +14 -14
  438. package/src/ui/components/payment/types.ts +6 -10
  439. package/src/ui/context/OxyContext.tsx +136 -470
  440. package/src/ui/context/oxyContextHelpers.ts +58 -0
  441. package/src/ui/context/oxyContextTypes.ts +124 -0
  442. package/src/ui/context/useOxyAccountGraph.ts +114 -0
  443. package/src/ui/hooks/queryClient.ts +9 -20
  444. package/src/ui/hooks/useAuth.ts +7 -5
  445. package/src/ui/hooks/useSessionManagement.ts +2 -0
  446. package/src/ui/index.ts +2 -3
  447. package/src/ui/navigation/accountDialogManager.ts +4 -40
  448. package/src/ui/screens/ConnectedAppsScreen.tsx +8 -11
  449. package/src/ui/screens/EditProfileFieldScreen.tsx +2 -3
  450. package/src/ui/screens/EditProfileScreen.tsx +8 -14
  451. package/src/ui/screens/FAQScreen.tsx +7 -8
  452. package/src/ui/screens/FeedbackScreen.tsx +0 -1
  453. package/src/ui/screens/FileManagementScreen.tsx +54 -1158
  454. package/src/ui/screens/HistoryViewScreen.tsx +4 -4
  455. package/src/ui/screens/LanguageSelectorScreen.tsx +0 -1
  456. package/src/ui/screens/LegalDocumentsScreen.tsx +4 -3
  457. package/src/ui/screens/ManageAccountScreen.tsx +14 -47
  458. package/src/ui/screens/PaymentGatewayScreen.tsx +3 -7
  459. package/src/ui/screens/PremiumSubscriptionScreen.tsx +33 -31
  460. package/src/ui/screens/PrivacySettingsScreen.tsx +14 -16
  461. package/src/ui/screens/ProfileScreen.tsx +3 -3
  462. package/src/ui/screens/SavesCollectionsScreen.tsx +11 -12
  463. package/src/ui/screens/SearchSettingsScreen.tsx +2 -2
  464. package/src/ui/screens/UserListScreen.tsx +2 -2
  465. package/src/ui/screens/WelcomeNewUserScreen.tsx +6 -7
  466. package/src/ui/screens/fileManagement/FileListSection.tsx +126 -0
  467. package/src/ui/screens/fileManagement/PhotoPickerSection.tsx +611 -0
  468. package/src/ui/screens/fileManagement/UploadBar.tsx +48 -0
  469. package/src/ui/screens/fileManagement/hooks/useFileUploadState.ts +497 -0
  470. package/src/ui/screens/fileManagement/shared.ts +65 -0
  471. package/src/ui/screens/trust/TrustCenterScreen.tsx +2 -2
  472. package/src/ui/screens/trust/TrustFAQScreen.tsx +4 -10
  473. package/src/ui/screens/trust/TrustLeaderboardScreen.tsx +2 -2
  474. package/src/ui/screens/trust/TrustRulesScreen.tsx +2 -2
  475. package/src/ui/server.ts +2 -3
  476. package/src/ui/session/createSessionClient.ts +2 -2
  477. package/src/ui/types/navigation.ts +2 -18
  478. package/src/ui/utils/crossOriginRestore.ts +129 -0
  479. package/src/ui/utils/deviceCredential.ts +17 -0
  480. package/src/ui/utils/oauthReturn.ts +101 -0
  481. package/src/ui/utils/storageHelpers.ts +0 -12
  482. package/lib/commonjs/ui/components/ActivityIndicator.js +0 -203
  483. package/lib/commonjs/ui/components/ActivityIndicator.js.map +0 -1
  484. package/lib/commonjs/ui/components/AutoHeightScrollView.js +0 -46
  485. package/lib/commonjs/ui/components/AutoHeightScrollView.js.map +0 -1
  486. package/lib/commonjs/ui/components/Avatar.js +0 -181
  487. package/lib/commonjs/ui/components/Avatar.js.map +0 -1
  488. package/lib/commonjs/ui/components/CrossFadeIcon.js +0 -106
  489. package/lib/commonjs/ui/components/CrossFadeIcon.js.map +0 -1
  490. package/lib/commonjs/ui/components/EmptyState.js +0 -41
  491. package/lib/commonjs/ui/components/EmptyState.js.map +0 -1
  492. package/lib/commonjs/ui/components/HelperText.js +0 -95
  493. package/lib/commonjs/ui/components/HelperText.js.map +0 -1
  494. package/lib/commonjs/ui/components/Icon.js +0 -112
  495. package/lib/commonjs/ui/components/Icon.js.map +0 -1
  496. package/lib/commonjs/ui/components/IconButton/IconButton.js +0 -153
  497. package/lib/commonjs/ui/components/IconButton/IconButton.js.map +0 -1
  498. package/lib/commonjs/ui/components/IconButton/utils.js +0 -155
  499. package/lib/commonjs/ui/components/IconButton/utils.js.map +0 -1
  500. package/lib/commonjs/ui/components/LoadingState.js +0 -47
  501. package/lib/commonjs/ui/components/LoadingState.js.map +0 -1
  502. package/lib/commonjs/ui/components/OxyLogo.js +0 -110
  503. package/lib/commonjs/ui/components/OxyLogo.js.map +0 -1
  504. package/lib/commonjs/ui/components/ProfileCard.js +0 -134
  505. package/lib/commonjs/ui/components/ProfileCard.js.map +0 -1
  506. package/lib/commonjs/ui/components/QuickActions.js +0 -84
  507. package/lib/commonjs/ui/components/QuickActions.js.map +0 -1
  508. package/lib/commonjs/ui/components/StepBasedScreen.js +0 -423
  509. package/lib/commonjs/ui/components/StepBasedScreen.js.map +0 -1
  510. package/lib/commonjs/ui/components/Surface.js +0 -258
  511. package/lib/commonjs/ui/components/Surface.js.map +0 -1
  512. package/lib/commonjs/ui/components/TextField/Addons/Outline.js +0 -46
  513. package/lib/commonjs/ui/components/TextField/Addons/Outline.js.map +0 -1
  514. package/lib/commonjs/ui/components/TextField/Addons/Underline.js +0 -53
  515. package/lib/commonjs/ui/components/TextField/Addons/Underline.js.map +0 -1
  516. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.js +0 -153
  517. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.js.map +0 -1
  518. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAffix.js +0 -144
  519. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAffix.js.map +0 -1
  520. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldIcon.js +0 -137
  521. package/lib/commonjs/ui/components/TextField/Adornment/TextFieldIcon.js.map +0 -1
  522. package/lib/commonjs/ui/components/TextField/Adornment/enums.js +0 -22
  523. package/lib/commonjs/ui/components/TextField/Adornment/enums.js.map +0 -1
  524. package/lib/commonjs/ui/components/TextField/Adornment/types.js.map +0 -1
  525. package/lib/commonjs/ui/components/TextField/Adornment/utils.js +0 -62
  526. package/lib/commonjs/ui/components/TextField/Adornment/utils.js.map +0 -1
  527. package/lib/commonjs/ui/components/TextField/Label/InputLabel.js +0 -176
  528. package/lib/commonjs/ui/components/TextField/Label/InputLabel.js.map +0 -1
  529. package/lib/commonjs/ui/components/TextField/Label/LabelBackground.js +0 -84
  530. package/lib/commonjs/ui/components/TextField/Label/LabelBackground.js.map +0 -1
  531. package/lib/commonjs/ui/components/TextField/TextFieldFlat.js +0 -381
  532. package/lib/commonjs/ui/components/TextField/TextFieldFlat.js.map +0 -1
  533. package/lib/commonjs/ui/components/TextField/TextFieldOutlined.js +0 -365
  534. package/lib/commonjs/ui/components/TextField/TextFieldOutlined.js.map +0 -1
  535. package/lib/commonjs/ui/components/TextField/constants.js +0 -50
  536. package/lib/commonjs/ui/components/TextField/constants.js.map +0 -1
  537. package/lib/commonjs/ui/components/TextField/helpers.js +0 -489
  538. package/lib/commonjs/ui/components/TextField/helpers.js.map +0 -1
  539. package/lib/commonjs/ui/components/TextField/types.js +0 -6
  540. package/lib/commonjs/ui/components/TextField/types.js.map +0 -1
  541. package/lib/commonjs/ui/components/TextField.js +0 -335
  542. package/lib/commonjs/ui/components/TextField.js.map +0 -1
  543. package/lib/commonjs/ui/components/TouchableRipple/Pressable.js +0 -12
  544. package/lib/commonjs/ui/components/TouchableRipple/Pressable.js.map +0 -1
  545. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.js +0 -258
  546. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.js.map +0 -1
  547. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.native.js +0 -107
  548. package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.native.js.map +0 -1
  549. package/lib/commonjs/ui/components/TouchableRipple/utils.js +0 -56
  550. package/lib/commonjs/ui/components/TouchableRipple/utils.js.map +0 -1
  551. package/lib/commonjs/ui/components/Typography/AnimatedText.js +0 -59
  552. package/lib/commonjs/ui/components/Typography/AnimatedText.js.map +0 -1
  553. package/lib/commonjs/ui/components/Typography/types.js +0 -26
  554. package/lib/commonjs/ui/components/Typography/types.js.map +0 -1
  555. package/lib/commonjs/ui/components/feedback/ProgressIndicator.js +0 -33
  556. package/lib/commonjs/ui/components/feedback/ProgressIndicator.js.map +0 -1
  557. package/lib/commonjs/ui/components/icon/OxyIcon.js +0 -26
  558. package/lib/commonjs/ui/components/icon/OxyIcon.js.map +0 -1
  559. package/lib/commonjs/ui/components/theming.js +0 -128
  560. package/lib/commonjs/ui/components/theming.js.map +0 -1
  561. package/lib/commonjs/ui/components/types.js +0 -6
  562. package/lib/commonjs/ui/components/types.js.map +0 -1
  563. package/lib/commonjs/ui/components/utils/forwardRef.js +0 -18
  564. package/lib/commonjs/ui/components/utils/forwardRef.js.map +0 -1
  565. package/lib/commonjs/ui/constants/iconColors.js +0 -84
  566. package/lib/commonjs/ui/constants/iconColors.js.map +0 -1
  567. package/lib/commonjs/ui/constants/theme.js +0 -124
  568. package/lib/commonjs/ui/constants/theme.js.map +0 -1
  569. package/lib/commonjs/ui/context/ThemeContext.js +0 -36
  570. package/lib/commonjs/ui/context/ThemeContext.js.map +0 -1
  571. package/lib/commonjs/ui/hooks/useColorScheme.js +0 -29
  572. package/lib/commonjs/ui/hooks/useColorScheme.js.map +0 -1
  573. package/lib/commonjs/ui/styles/authStyles.js +0 -334
  574. package/lib/commonjs/ui/styles/authStyles.js.map +0 -1
  575. package/lib/commonjs/ui/styles/theme.js +0 -153
  576. package/lib/commonjs/ui/styles/theme.js.map +0 -1
  577. package/lib/module/ui/components/ActivityIndicator.js +0 -198
  578. package/lib/module/ui/components/ActivityIndicator.js.map +0 -1
  579. package/lib/module/ui/components/AutoHeightScrollView.js +0 -41
  580. package/lib/module/ui/components/AutoHeightScrollView.js.map +0 -1
  581. package/lib/module/ui/components/Avatar.js +0 -177
  582. package/lib/module/ui/components/Avatar.js.map +0 -1
  583. package/lib/module/ui/components/CrossFadeIcon.js +0 -101
  584. package/lib/module/ui/components/CrossFadeIcon.js.map +0 -1
  585. package/lib/module/ui/components/EmptyState.js +0 -36
  586. package/lib/module/ui/components/EmptyState.js.map +0 -1
  587. package/lib/module/ui/components/HelperText.js +0 -90
  588. package/lib/module/ui/components/HelperText.js.map +0 -1
  589. package/lib/module/ui/components/Icon.js +0 -106
  590. package/lib/module/ui/components/Icon.js.map +0 -1
  591. package/lib/module/ui/components/IconButton/IconButton.js +0 -148
  592. package/lib/module/ui/components/IconButton/IconButton.js.map +0 -1
  593. package/lib/module/ui/components/IconButton/utils.js +0 -149
  594. package/lib/module/ui/components/IconButton/utils.js.map +0 -1
  595. package/lib/module/ui/components/LoadingState.js +0 -42
  596. package/lib/module/ui/components/LoadingState.js.map +0 -1
  597. package/lib/module/ui/components/OxyLogo.js +0 -104
  598. package/lib/module/ui/components/OxyLogo.js.map +0 -1
  599. package/lib/module/ui/components/ProfileCard.js +0 -129
  600. package/lib/module/ui/components/ProfileCard.js.map +0 -1
  601. package/lib/module/ui/components/QuickActions.js +0 -80
  602. package/lib/module/ui/components/QuickActions.js.map +0 -1
  603. package/lib/module/ui/components/StepBasedScreen.js +0 -418
  604. package/lib/module/ui/components/StepBasedScreen.js.map +0 -1
  605. package/lib/module/ui/components/Surface.js +0 -252
  606. package/lib/module/ui/components/Surface.js.map +0 -1
  607. package/lib/module/ui/components/TextField/Addons/Outline.js +0 -40
  608. package/lib/module/ui/components/TextField/Addons/Outline.js.map +0 -1
  609. package/lib/module/ui/components/TextField/Addons/Underline.js +0 -47
  610. package/lib/module/ui/components/TextField/Addons/Underline.js.map +0 -1
  611. package/lib/module/ui/components/TextField/Adornment/TextFieldAdornment.js +0 -146
  612. package/lib/module/ui/components/TextField/Adornment/TextFieldAdornment.js.map +0 -1
  613. package/lib/module/ui/components/TextField/Adornment/TextFieldAffix.js +0 -141
  614. package/lib/module/ui/components/TextField/Adornment/TextFieldAffix.js.map +0 -1
  615. package/lib/module/ui/components/TextField/Adornment/TextFieldIcon.js +0 -135
  616. package/lib/module/ui/components/TextField/Adornment/TextFieldIcon.js.map +0 -1
  617. package/lib/module/ui/components/TextField/Adornment/enums.js +0 -18
  618. package/lib/module/ui/components/TextField/Adornment/enums.js.map +0 -1
  619. package/lib/module/ui/components/TextField/Adornment/types.js +0 -4
  620. package/lib/module/ui/components/TextField/Adornment/types.js.map +0 -1
  621. package/lib/module/ui/components/TextField/Adornment/utils.js +0 -57
  622. package/lib/module/ui/components/TextField/Adornment/utils.js.map +0 -1
  623. package/lib/module/ui/components/TextField/Label/InputLabel.js +0 -171
  624. package/lib/module/ui/components/TextField/Label/InputLabel.js.map +0 -1
  625. package/lib/module/ui/components/TextField/Label/LabelBackground.js +0 -78
  626. package/lib/module/ui/components/TextField/Label/LabelBackground.js.map +0 -1
  627. package/lib/module/ui/components/TextField/TextFieldFlat.js +0 -376
  628. package/lib/module/ui/components/TextField/TextFieldFlat.js.map +0 -1
  629. package/lib/module/ui/components/TextField/TextFieldOutlined.js +0 -359
  630. package/lib/module/ui/components/TextField/TextFieldOutlined.js.map +0 -1
  631. package/lib/module/ui/components/TextField/constants.js +0 -46
  632. package/lib/module/ui/components/TextField/constants.js.map +0 -1
  633. package/lib/module/ui/components/TextField/helpers.js +0 -471
  634. package/lib/module/ui/components/TextField/helpers.js.map +0 -1
  635. package/lib/module/ui/components/TextField/types.js +0 -4
  636. package/lib/module/ui/components/TextField/types.js.map +0 -1
  637. package/lib/module/ui/components/TextField.js +0 -329
  638. package/lib/module/ui/components/TextField.js.map +0 -1
  639. package/lib/module/ui/components/TouchableRipple/Pressable.js +0 -9
  640. package/lib/module/ui/components/TouchableRipple/Pressable.js.map +0 -1
  641. package/lib/module/ui/components/TouchableRipple/TouchableRipple.js +0 -253
  642. package/lib/module/ui/components/TouchableRipple/TouchableRipple.js.map +0 -1
  643. package/lib/module/ui/components/TouchableRipple/TouchableRipple.native.js +0 -101
  644. package/lib/module/ui/components/TouchableRipple/TouchableRipple.native.js.map +0 -1
  645. package/lib/module/ui/components/TouchableRipple/utils.js +0 -50
  646. package/lib/module/ui/components/TouchableRipple/utils.js.map +0 -1
  647. package/lib/module/ui/components/Typography/AnimatedText.js +0 -54
  648. package/lib/module/ui/components/Typography/AnimatedText.js.map +0 -1
  649. package/lib/module/ui/components/Typography/types.js +0 -22
  650. package/lib/module/ui/components/Typography/types.js.map +0 -1
  651. package/lib/module/ui/components/feedback/ProgressIndicator.js +0 -28
  652. package/lib/module/ui/components/feedback/ProgressIndicator.js.map +0 -1
  653. package/lib/module/ui/components/icon/OxyIcon.js +0 -22
  654. package/lib/module/ui/components/icon/OxyIcon.js.map +0 -1
  655. package/lib/module/ui/components/theming.js +0 -123
  656. package/lib/module/ui/components/theming.js.map +0 -1
  657. package/lib/module/ui/components/types.js +0 -4
  658. package/lib/module/ui/components/types.js.map +0 -1
  659. package/lib/module/ui/components/utils/forwardRef.js +0 -13
  660. package/lib/module/ui/components/utils/forwardRef.js.map +0 -1
  661. package/lib/module/ui/constants/iconColors.js +0 -78
  662. package/lib/module/ui/constants/iconColors.js.map +0 -1
  663. package/lib/module/ui/constants/theme.js +0 -120
  664. package/lib/module/ui/constants/theme.js.map +0 -1
  665. package/lib/module/ui/context/ThemeContext.js +0 -29
  666. package/lib/module/ui/context/ThemeContext.js.map +0 -1
  667. package/lib/module/ui/hooks/useColorScheme.js +0 -26
  668. package/lib/module/ui/hooks/useColorScheme.js.map +0 -1
  669. package/lib/module/ui/styles/authStyles.js +0 -329
  670. package/lib/module/ui/styles/authStyles.js.map +0 -1
  671. package/lib/module/ui/styles/theme.js +0 -147
  672. package/lib/module/ui/styles/theme.js.map +0 -1
  673. package/lib/typescript/commonjs/ui/components/ActivityIndicator.d.ts +0 -45
  674. package/lib/typescript/commonjs/ui/components/ActivityIndicator.d.ts.map +0 -1
  675. package/lib/typescript/commonjs/ui/components/AutoHeightScrollView.d.ts +0 -23
  676. package/lib/typescript/commonjs/ui/components/AutoHeightScrollView.d.ts.map +0 -1
  677. package/lib/typescript/commonjs/ui/components/Avatar.d.ts +0 -61
  678. package/lib/typescript/commonjs/ui/components/Avatar.d.ts.map +0 -1
  679. package/lib/typescript/commonjs/ui/components/CrossFadeIcon.d.ts +0 -28
  680. package/lib/typescript/commonjs/ui/components/CrossFadeIcon.d.ts.map +0 -1
  681. package/lib/typescript/commonjs/ui/components/EmptyState.d.ts +0 -8
  682. package/lib/typescript/commonjs/ui/components/EmptyState.d.ts.map +0 -1
  683. package/lib/typescript/commonjs/ui/components/HelperText.d.ts +0 -47
  684. package/lib/typescript/commonjs/ui/components/HelperText.d.ts.map +0 -1
  685. package/lib/typescript/commonjs/ui/components/Icon.d.ts +0 -61
  686. package/lib/typescript/commonjs/ui/components/Icon.d.ts.map +0 -1
  687. package/lib/typescript/commonjs/ui/components/IconButton/IconButton.d.ts +0 -99
  688. package/lib/typescript/commonjs/ui/components/IconButton/IconButton.d.ts.map +0 -1
  689. package/lib/typescript/commonjs/ui/components/IconButton/utils.d.ts +0 -19
  690. package/lib/typescript/commonjs/ui/components/IconButton/utils.d.ts.map +0 -1
  691. package/lib/typescript/commonjs/ui/components/LoadingState.d.ts +0 -9
  692. package/lib/typescript/commonjs/ui/components/LoadingState.d.ts.map +0 -1
  693. package/lib/typescript/commonjs/ui/components/OxyLogo.d.ts +0 -16
  694. package/lib/typescript/commonjs/ui/components/OxyLogo.d.ts.map +0 -1
  695. package/lib/typescript/commonjs/ui/components/ProfileCard.d.ts +0 -21
  696. package/lib/typescript/commonjs/ui/components/ProfileCard.d.ts.map +0 -1
  697. package/lib/typescript/commonjs/ui/components/QuickActions.d.ts +0 -15
  698. package/lib/typescript/commonjs/ui/components/QuickActions.d.ts.map +0 -1
  699. package/lib/typescript/commonjs/ui/components/StepBasedScreen.d.ts +0 -28
  700. package/lib/typescript/commonjs/ui/components/StepBasedScreen.d.ts.map +0 -1
  701. package/lib/typescript/commonjs/ui/components/Surface.d.ts +0 -76
  702. package/lib/typescript/commonjs/ui/components/Surface.d.ts.map +0 -1
  703. package/lib/typescript/commonjs/ui/components/TextField/Addons/Outline.d.ts +0 -17
  704. package/lib/typescript/commonjs/ui/components/TextField/Addons/Outline.d.ts.map +0 -1
  705. package/lib/typescript/commonjs/ui/components/TextField/Addons/Underline.d.ts +0 -20
  706. package/lib/typescript/commonjs/ui/components/TextField/Addons/Underline.d.ts.map +0 -1
  707. package/lib/typescript/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.d.ts +0 -45
  708. package/lib/typescript/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.d.ts.map +0 -1
  709. package/lib/typescript/commonjs/ui/components/TextField/Adornment/TextFieldAffix.d.ts +0 -73
  710. package/lib/typescript/commonjs/ui/components/TextField/Adornment/TextFieldAffix.d.ts.map +0 -1
  711. package/lib/typescript/commonjs/ui/components/TextField/Adornment/TextFieldIcon.d.ts +0 -78
  712. package/lib/typescript/commonjs/ui/components/TextField/Adornment/TextFieldIcon.d.ts.map +0 -1
  713. package/lib/typescript/commonjs/ui/components/TextField/Adornment/enums.d.ts +0 -13
  714. package/lib/typescript/commonjs/ui/components/TextField/Adornment/enums.d.ts.map +0 -1
  715. package/lib/typescript/commonjs/ui/components/TextField/Adornment/types.d.ts +0 -12
  716. package/lib/typescript/commonjs/ui/components/TextField/Adornment/types.d.ts.map +0 -1
  717. package/lib/typescript/commonjs/ui/components/TextField/Adornment/utils.d.ts +0 -12
  718. package/lib/typescript/commonjs/ui/components/TextField/Adornment/utils.d.ts.map +0 -1
  719. package/lib/typescript/commonjs/ui/components/TextField/Label/InputLabel.d.ts +0 -5
  720. package/lib/typescript/commonjs/ui/components/TextField/Label/InputLabel.d.ts.map +0 -1
  721. package/lib/typescript/commonjs/ui/components/TextField/Label/LabelBackground.d.ts +0 -5
  722. package/lib/typescript/commonjs/ui/components/TextField/Label/LabelBackground.d.ts.map +0 -1
  723. package/lib/typescript/commonjs/ui/components/TextField/TextFieldFlat.d.ts +0 -5
  724. package/lib/typescript/commonjs/ui/components/TextField/TextFieldFlat.d.ts.map +0 -1
  725. package/lib/typescript/commonjs/ui/components/TextField/TextFieldOutlined.d.ts +0 -5
  726. package/lib/typescript/commonjs/ui/components/TextField/TextFieldOutlined.d.ts.map +0 -1
  727. package/lib/typescript/commonjs/ui/components/TextField/constants.d.ts +0 -32
  728. package/lib/typescript/commonjs/ui/components/TextField/constants.d.ts.map +0 -1
  729. package/lib/typescript/commonjs/ui/components/TextField/helpers.d.ts +0 -97
  730. package/lib/typescript/commonjs/ui/components/TextField/helpers.d.ts.map +0 -1
  731. package/lib/typescript/commonjs/ui/components/TextField/types.d.ts +0 -155
  732. package/lib/typescript/commonjs/ui/components/TextField/types.d.ts.map +0 -1
  733. package/lib/typescript/commonjs/ui/components/TextField.d.ts +0 -192
  734. package/lib/typescript/commonjs/ui/components/TextField.d.ts.map +0 -1
  735. package/lib/typescript/commonjs/ui/components/TouchableRipple/Pressable.d.ts +0 -13
  736. package/lib/typescript/commonjs/ui/components/TouchableRipple/Pressable.d.ts.map +0 -1
  737. package/lib/typescript/commonjs/ui/components/TouchableRipple/TouchableRipple.d.ts +0 -62
  738. package/lib/typescript/commonjs/ui/components/TouchableRipple/TouchableRipple.d.ts.map +0 -1
  739. package/lib/typescript/commonjs/ui/components/TouchableRipple/TouchableRipple.native.d.ts +0 -25
  740. package/lib/typescript/commonjs/ui/components/TouchableRipple/TouchableRipple.native.d.ts.map +0 -1
  741. package/lib/typescript/commonjs/ui/components/TouchableRipple/utils.d.ts +0 -11
  742. package/lib/typescript/commonjs/ui/components/TouchableRipple/utils.d.ts.map +0 -1
  743. package/lib/typescript/commonjs/ui/components/Typography/AnimatedText.d.ts +0 -35
  744. package/lib/typescript/commonjs/ui/components/Typography/AnimatedText.d.ts.map +0 -1
  745. package/lib/typescript/commonjs/ui/components/Typography/types.d.ts +0 -19
  746. package/lib/typescript/commonjs/ui/components/Typography/types.d.ts.map +0 -1
  747. package/lib/typescript/commonjs/ui/components/feedback/ProgressIndicator.d.ts +0 -11
  748. package/lib/typescript/commonjs/ui/components/feedback/ProgressIndicator.d.ts.map +0 -1
  749. package/lib/typescript/commonjs/ui/components/icon/OxyIcon.d.ts +0 -10
  750. package/lib/typescript/commonjs/ui/components/icon/OxyIcon.d.ts.map +0 -1
  751. package/lib/typescript/commonjs/ui/components/theming.d.ts +0 -8
  752. package/lib/typescript/commonjs/ui/components/theming.d.ts.map +0 -1
  753. package/lib/typescript/commonjs/ui/components/types.d.ts +0 -81
  754. package/lib/typescript/commonjs/ui/components/types.d.ts.map +0 -1
  755. package/lib/typescript/commonjs/ui/components/utils/forwardRef.d.ts +0 -12
  756. package/lib/typescript/commonjs/ui/components/utils/forwardRef.d.ts.map +0 -1
  757. package/lib/typescript/commonjs/ui/constants/iconColors.d.ts +0 -130
  758. package/lib/typescript/commonjs/ui/constants/iconColors.d.ts.map +0 -1
  759. package/lib/typescript/commonjs/ui/constants/theme.d.ts +0 -98
  760. package/lib/typescript/commonjs/ui/constants/theme.d.ts.map +0 -1
  761. package/lib/typescript/commonjs/ui/context/ThemeContext.d.ts +0 -19
  762. package/lib/typescript/commonjs/ui/context/ThemeContext.d.ts.map +0 -1
  763. package/lib/typescript/commonjs/ui/hooks/useColorScheme.d.ts +0 -8
  764. package/lib/typescript/commonjs/ui/hooks/useColorScheme.d.ts.map +0 -1
  765. package/lib/typescript/commonjs/ui/styles/authStyles.d.ts +0 -328
  766. package/lib/typescript/commonjs/ui/styles/authStyles.d.ts.map +0 -1
  767. package/lib/typescript/commonjs/ui/styles/theme.d.ts +0 -75
  768. package/lib/typescript/commonjs/ui/styles/theme.d.ts.map +0 -1
  769. package/lib/typescript/module/ui/components/ActivityIndicator.d.ts +0 -45
  770. package/lib/typescript/module/ui/components/ActivityIndicator.d.ts.map +0 -1
  771. package/lib/typescript/module/ui/components/AutoHeightScrollView.d.ts +0 -23
  772. package/lib/typescript/module/ui/components/AutoHeightScrollView.d.ts.map +0 -1
  773. package/lib/typescript/module/ui/components/Avatar.d.ts +0 -61
  774. package/lib/typescript/module/ui/components/Avatar.d.ts.map +0 -1
  775. package/lib/typescript/module/ui/components/CrossFadeIcon.d.ts +0 -28
  776. package/lib/typescript/module/ui/components/CrossFadeIcon.d.ts.map +0 -1
  777. package/lib/typescript/module/ui/components/EmptyState.d.ts +0 -8
  778. package/lib/typescript/module/ui/components/EmptyState.d.ts.map +0 -1
  779. package/lib/typescript/module/ui/components/HelperText.d.ts +0 -47
  780. package/lib/typescript/module/ui/components/HelperText.d.ts.map +0 -1
  781. package/lib/typescript/module/ui/components/Icon.d.ts +0 -61
  782. package/lib/typescript/module/ui/components/Icon.d.ts.map +0 -1
  783. package/lib/typescript/module/ui/components/IconButton/IconButton.d.ts +0 -99
  784. package/lib/typescript/module/ui/components/IconButton/IconButton.d.ts.map +0 -1
  785. package/lib/typescript/module/ui/components/IconButton/utils.d.ts +0 -19
  786. package/lib/typescript/module/ui/components/IconButton/utils.d.ts.map +0 -1
  787. package/lib/typescript/module/ui/components/LoadingState.d.ts +0 -9
  788. package/lib/typescript/module/ui/components/LoadingState.d.ts.map +0 -1
  789. package/lib/typescript/module/ui/components/OxyLogo.d.ts +0 -16
  790. package/lib/typescript/module/ui/components/OxyLogo.d.ts.map +0 -1
  791. package/lib/typescript/module/ui/components/ProfileCard.d.ts +0 -21
  792. package/lib/typescript/module/ui/components/ProfileCard.d.ts.map +0 -1
  793. package/lib/typescript/module/ui/components/QuickActions.d.ts +0 -15
  794. package/lib/typescript/module/ui/components/QuickActions.d.ts.map +0 -1
  795. package/lib/typescript/module/ui/components/StepBasedScreen.d.ts +0 -28
  796. package/lib/typescript/module/ui/components/StepBasedScreen.d.ts.map +0 -1
  797. package/lib/typescript/module/ui/components/Surface.d.ts +0 -76
  798. package/lib/typescript/module/ui/components/Surface.d.ts.map +0 -1
  799. package/lib/typescript/module/ui/components/TextField/Addons/Outline.d.ts +0 -17
  800. package/lib/typescript/module/ui/components/TextField/Addons/Outline.d.ts.map +0 -1
  801. package/lib/typescript/module/ui/components/TextField/Addons/Underline.d.ts +0 -20
  802. package/lib/typescript/module/ui/components/TextField/Addons/Underline.d.ts.map +0 -1
  803. package/lib/typescript/module/ui/components/TextField/Adornment/TextFieldAdornment.d.ts +0 -45
  804. package/lib/typescript/module/ui/components/TextField/Adornment/TextFieldAdornment.d.ts.map +0 -1
  805. package/lib/typescript/module/ui/components/TextField/Adornment/TextFieldAffix.d.ts +0 -73
  806. package/lib/typescript/module/ui/components/TextField/Adornment/TextFieldAffix.d.ts.map +0 -1
  807. package/lib/typescript/module/ui/components/TextField/Adornment/TextFieldIcon.d.ts +0 -78
  808. package/lib/typescript/module/ui/components/TextField/Adornment/TextFieldIcon.d.ts.map +0 -1
  809. package/lib/typescript/module/ui/components/TextField/Adornment/enums.d.ts +0 -13
  810. package/lib/typescript/module/ui/components/TextField/Adornment/enums.d.ts.map +0 -1
  811. package/lib/typescript/module/ui/components/TextField/Adornment/types.d.ts +0 -12
  812. package/lib/typescript/module/ui/components/TextField/Adornment/types.d.ts.map +0 -1
  813. package/lib/typescript/module/ui/components/TextField/Adornment/utils.d.ts +0 -12
  814. package/lib/typescript/module/ui/components/TextField/Adornment/utils.d.ts.map +0 -1
  815. package/lib/typescript/module/ui/components/TextField/Label/InputLabel.d.ts +0 -5
  816. package/lib/typescript/module/ui/components/TextField/Label/InputLabel.d.ts.map +0 -1
  817. package/lib/typescript/module/ui/components/TextField/Label/LabelBackground.d.ts +0 -5
  818. package/lib/typescript/module/ui/components/TextField/Label/LabelBackground.d.ts.map +0 -1
  819. package/lib/typescript/module/ui/components/TextField/TextFieldFlat.d.ts +0 -5
  820. package/lib/typescript/module/ui/components/TextField/TextFieldFlat.d.ts.map +0 -1
  821. package/lib/typescript/module/ui/components/TextField/TextFieldOutlined.d.ts +0 -5
  822. package/lib/typescript/module/ui/components/TextField/TextFieldOutlined.d.ts.map +0 -1
  823. package/lib/typescript/module/ui/components/TextField/constants.d.ts +0 -32
  824. package/lib/typescript/module/ui/components/TextField/constants.d.ts.map +0 -1
  825. package/lib/typescript/module/ui/components/TextField/helpers.d.ts +0 -97
  826. package/lib/typescript/module/ui/components/TextField/helpers.d.ts.map +0 -1
  827. package/lib/typescript/module/ui/components/TextField/types.d.ts +0 -155
  828. package/lib/typescript/module/ui/components/TextField/types.d.ts.map +0 -1
  829. package/lib/typescript/module/ui/components/TextField.d.ts +0 -192
  830. package/lib/typescript/module/ui/components/TextField.d.ts.map +0 -1
  831. package/lib/typescript/module/ui/components/TouchableRipple/Pressable.d.ts +0 -13
  832. package/lib/typescript/module/ui/components/TouchableRipple/Pressable.d.ts.map +0 -1
  833. package/lib/typescript/module/ui/components/TouchableRipple/TouchableRipple.d.ts +0 -62
  834. package/lib/typescript/module/ui/components/TouchableRipple/TouchableRipple.d.ts.map +0 -1
  835. package/lib/typescript/module/ui/components/TouchableRipple/TouchableRipple.native.d.ts +0 -25
  836. package/lib/typescript/module/ui/components/TouchableRipple/TouchableRipple.native.d.ts.map +0 -1
  837. package/lib/typescript/module/ui/components/TouchableRipple/utils.d.ts +0 -11
  838. package/lib/typescript/module/ui/components/TouchableRipple/utils.d.ts.map +0 -1
  839. package/lib/typescript/module/ui/components/Typography/AnimatedText.d.ts +0 -35
  840. package/lib/typescript/module/ui/components/Typography/AnimatedText.d.ts.map +0 -1
  841. package/lib/typescript/module/ui/components/Typography/types.d.ts +0 -19
  842. package/lib/typescript/module/ui/components/Typography/types.d.ts.map +0 -1
  843. package/lib/typescript/module/ui/components/feedback/ProgressIndicator.d.ts +0 -11
  844. package/lib/typescript/module/ui/components/feedback/ProgressIndicator.d.ts.map +0 -1
  845. package/lib/typescript/module/ui/components/icon/OxyIcon.d.ts +0 -10
  846. package/lib/typescript/module/ui/components/icon/OxyIcon.d.ts.map +0 -1
  847. package/lib/typescript/module/ui/components/theming.d.ts +0 -8
  848. package/lib/typescript/module/ui/components/theming.d.ts.map +0 -1
  849. package/lib/typescript/module/ui/components/types.d.ts +0 -81
  850. package/lib/typescript/module/ui/components/types.d.ts.map +0 -1
  851. package/lib/typescript/module/ui/components/utils/forwardRef.d.ts +0 -12
  852. package/lib/typescript/module/ui/components/utils/forwardRef.d.ts.map +0 -1
  853. package/lib/typescript/module/ui/constants/iconColors.d.ts +0 -130
  854. package/lib/typescript/module/ui/constants/iconColors.d.ts.map +0 -1
  855. package/lib/typescript/module/ui/constants/theme.d.ts +0 -98
  856. package/lib/typescript/module/ui/constants/theme.d.ts.map +0 -1
  857. package/lib/typescript/module/ui/context/ThemeContext.d.ts +0 -19
  858. package/lib/typescript/module/ui/context/ThemeContext.d.ts.map +0 -1
  859. package/lib/typescript/module/ui/hooks/useColorScheme.d.ts +0 -8
  860. package/lib/typescript/module/ui/hooks/useColorScheme.d.ts.map +0 -1
  861. package/lib/typescript/module/ui/styles/authStyles.d.ts +0 -328
  862. package/lib/typescript/module/ui/styles/authStyles.d.ts.map +0 -1
  863. package/lib/typescript/module/ui/styles/theme.d.ts +0 -75
  864. package/lib/typescript/module/ui/styles/theme.d.ts.map +0 -1
  865. package/src/ui/components/ActivityIndicator.tsx +0 -254
  866. package/src/ui/components/AutoHeightScrollView.tsx +0 -50
  867. package/src/ui/components/Avatar.tsx +0 -284
  868. package/src/ui/components/CrossFadeIcon.tsx +0 -140
  869. package/src/ui/components/EmptyState.tsx +0 -39
  870. package/src/ui/components/HelperText.tsx +0 -149
  871. package/src/ui/components/Icon.tsx +0 -189
  872. package/src/ui/components/IconButton/IconButton.tsx +0 -232
  873. package/src/ui/components/IconButton/utils.ts +0 -190
  874. package/src/ui/components/LoadingState.tsx +0 -46
  875. package/src/ui/components/OxyLogo.tsx +0 -82
  876. package/src/ui/components/ProfileCard.tsx +0 -137
  877. package/src/ui/components/QuickActions.tsx +0 -91
  878. package/src/ui/components/StepBasedScreen.tsx +0 -499
  879. package/src/ui/components/Surface.tsx +0 -384
  880. package/src/ui/components/TextField/Addons/Outline.tsx +0 -64
  881. package/src/ui/components/TextField/Addons/Underline.tsx +0 -78
  882. package/src/ui/components/TextField/Adornment/TextFieldAdornment.tsx +0 -205
  883. package/src/ui/components/TextField/Adornment/TextFieldAffix.tsx +0 -212
  884. package/src/ui/components/TextField/Adornment/TextFieldIcon.tsx +0 -195
  885. package/src/ui/components/TextField/Adornment/enums.tsx +0 -12
  886. package/src/ui/components/TextField/Adornment/types.tsx +0 -11
  887. package/src/ui/components/TextField/Adornment/utils.ts +0 -66
  888. package/src/ui/components/TextField/Label/InputLabel.tsx +0 -219
  889. package/src/ui/components/TextField/Label/LabelBackground.tsx +0 -100
  890. package/src/ui/components/TextField/TextFieldFlat.tsx +0 -488
  891. package/src/ui/components/TextField/TextFieldOutlined.tsx +0 -464
  892. package/src/ui/components/TextField/constants.tsx +0 -48
  893. package/src/ui/components/TextField/helpers.tsx +0 -611
  894. package/src/ui/components/TextField/types.tsx +0 -160
  895. package/src/ui/components/TextField.tsx +0 -574
  896. package/src/ui/components/TouchableRipple/Pressable.tsx +0 -42
  897. package/src/ui/components/TouchableRipple/TouchableRipple.native.tsx +0 -146
  898. package/src/ui/components/TouchableRipple/TouchableRipple.tsx +0 -347
  899. package/src/ui/components/TouchableRipple/utils.ts +0 -66
  900. package/src/ui/components/Typography/AnimatedText.tsx +0 -106
  901. package/src/ui/components/Typography/types.tsx +0 -22
  902. package/src/ui/components/feedback/ProgressIndicator.tsx +0 -35
  903. package/src/ui/components/icon/OxyIcon.tsx +0 -31
  904. package/src/ui/components/theming.tsx +0 -126
  905. package/src/ui/components/types.tsx +0 -93
  906. package/src/ui/components/utils/forwardRef.tsx +0 -23
  907. package/src/ui/constants/iconColors.ts +0 -88
  908. package/src/ui/constants/theme.ts +0 -121
  909. package/src/ui/context/ThemeContext.tsx +0 -41
  910. package/src/ui/context/__tests__/OxyContext.coldBoot.test.tsx +0 -166
  911. package/src/ui/hooks/useColorScheme.ts +0 -24
  912. package/src/ui/styles/authStyles.ts +0 -348
  913. package/src/ui/styles/theme.ts +0 -169
@@ -0,0 +1,512 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _expoImage = require("expo-image");
10
+ var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
11
+ var _vectorIcons = require("@expo/vector-icons");
12
+ var _styles = require("../../components/fileManagement/styles.js");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); } /**
15
+ * Haptic feedback wrapper. `expo-haptics` is an optional dependency — when not
16
+ * installed (or on web), all calls degrade silently. We resolve the module
17
+ * once and cache the promise so subsequent calls don't repeat the dynamic
18
+ * import. Matches the pattern used by AvatarCropScreen.
19
+ */
20
+ let hapticsModulePromise = null;
21
+ const getHaptics = () => {
22
+ if (_reactNative.Platform.OS === 'web') return Promise.resolve(null);
23
+ if (hapticsModulePromise) return hapticsModulePromise;
24
+ hapticsModulePromise = (async () => {
25
+ try {
26
+ const mod = await Promise.resolve().then(() => _interopRequireWildcard(require('expo-haptics')));
27
+ if (!mod || typeof mod.impactAsync !== 'function') return null;
28
+ return mod;
29
+ } catch {
30
+ return null;
31
+ }
32
+ })();
33
+ return hapticsModulePromise;
34
+ };
35
+ const hapticImpact = async style => {
36
+ const h = await getHaptics();
37
+ if (!h) return;
38
+ const styleEnum = style === 'heavy' ? h.ImpactFeedbackStyle.Heavy : style === 'medium' ? h.ImpactFeedbackStyle.Medium : h.ImpactFeedbackStyle.Light;
39
+ try {
40
+ await h.impactAsync(styleEnum);
41
+ } catch {
42
+ // Silent — haptics are non-critical UX polish.
43
+ }
44
+ };
45
+ const hapticSelection = async () => {
46
+ const h = await getHaptics();
47
+ if (!h) return;
48
+ try {
49
+ await h.selectionAsync();
50
+ } catch {
51
+ // Silent.
52
+ }
53
+ };
54
+ const hapticNotification = async type => {
55
+ const h = await getHaptics();
56
+ if (!h) return;
57
+ const typeEnum = type === 'error' ? h.NotificationFeedbackType.Error : type === 'warning' ? h.NotificationFeedbackType.Warning : h.NotificationFeedbackType.Success;
58
+ try {
59
+ await h.notificationAsync(typeEnum);
60
+ } catch {
61
+ // Silent.
62
+ }
63
+ };
64
+
65
+ /**
66
+ * Props for the dedicated photo picker view. Used by FileManagementScreen
67
+ * only when `selectMode + image-only` is active. All callbacks are wired by
68
+ * the parent — this component is purely presentational.
69
+ */
70
+
71
+ /**
72
+ * A single photo cell. Memoized so re-renders during selection only touch
73
+ * affected cells — selection of one photo must not redraw the whole grid.
74
+ *
75
+ * Apple Photos pattern: when any cell is selected, *non-selected* siblings
76
+ * fade to 0.6 opacity to focus attention on the active selection.
77
+ */
78
+ const PhotoPickerCell = /*#__PURE__*/_react.default.memo(function PhotoPickerCell(props) {
79
+ const {
80
+ photo,
81
+ size,
82
+ marginRight,
83
+ marginBottom,
84
+ isSelected,
85
+ selectionIndex,
86
+ dim,
87
+ primaryColor,
88
+ thumbUrl,
89
+ enterIndex,
90
+ reduceMotion,
91
+ onPress,
92
+ onLongPress,
93
+ a11yLabel
94
+ } = props;
95
+
96
+ // Cap the cumulative stagger at ~800ms total so the very long grid does
97
+ // not keep fading in late tiles. Beyond ~53 tiles the delay maxes out.
98
+ const STAGGER_PER_CELL_MS = 15;
99
+ const MAX_TOTAL_STAGGER_MS = 800;
100
+ const delay = Math.min(enterIndex * STAGGER_PER_CELL_MS, MAX_TOTAL_STAGGER_MS);
101
+
102
+ // Selection ring pulse animation: 1.0 → 1.05 → 1.0 on transition to
103
+ // selected. Plays at most once per selection change; reduce-motion skips.
104
+ const ringScale = (0, _reactNativeReanimated.useSharedValue)(1);
105
+ const prevSelected = (0, _react.useRef)(isSelected);
106
+ (0, _react.useEffect)(() => {
107
+ if (prevSelected.current === isSelected) return;
108
+ prevSelected.current = isSelected;
109
+ if (!isSelected) {
110
+ ringScale.value = 1;
111
+ return;
112
+ }
113
+ if (reduceMotion) {
114
+ ringScale.value = 1;
115
+ return;
116
+ }
117
+ ringScale.value = (0, _reactNativeReanimated.withSequence)((0, _reactNativeReanimated.withTiming)(1.05, {
118
+ duration: 110
119
+ }), (0, _reactNativeReanimated.withSpring)(1, {
120
+ damping: 14,
121
+ stiffness: 200
122
+ }));
123
+ }, [isSelected, reduceMotion, ringScale]);
124
+ const ringAnimatedStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => ({
125
+ transform: [{
126
+ scale: ringScale.value
127
+ }]
128
+ }));
129
+ const inner = /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
130
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
131
+ style: [_styles.photoPickerStyles.cellInner, dim && _styles.photoPickerStyles.cellDim],
132
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_expoImage.Image, {
133
+ source: {
134
+ uri: thumbUrl
135
+ },
136
+ style: _styles.photoPickerStyles.cellImage,
137
+ contentFit: "cover",
138
+ transition: 120,
139
+ cachePolicy: "memory-disk",
140
+ accessibilityLabel: photo.filename
141
+ })
142
+ }), isSelected && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
143
+ pointerEvents: "none",
144
+ style: [_styles.photoPickerStyles.cellRing, {
145
+ borderColor: primaryColor
146
+ }, ringAnimatedStyle]
147
+ }), isSelected && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
148
+ pointerEvents: "none",
149
+ style: [_styles.photoPickerStyles.cellBadge, {
150
+ backgroundColor: primaryColor
151
+ }],
152
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
153
+ style: _styles.photoPickerStyles.cellBadgeText,
154
+ children: selectionIndex > 0 ? String(selectionIndex) : ''
155
+ })
156
+ })]
157
+ });
158
+ const cellWrapperStyle = {
159
+ width: size,
160
+ height: size,
161
+ marginRight,
162
+ marginBottom
163
+ };
164
+ if (reduceMotion) {
165
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
166
+ activeOpacity: 0.85,
167
+ onPress: onPress,
168
+ onLongPress: onLongPress,
169
+ style: [_styles.photoPickerStyles.cellWrapper, cellWrapperStyle],
170
+ accessibilityRole: "button",
171
+ accessibilityLabel: a11yLabel,
172
+ accessibilityState: {
173
+ selected: isSelected
174
+ },
175
+ children: inner
176
+ });
177
+ }
178
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
179
+ entering: _reactNativeReanimated.FadeIn.delay(delay).duration(200),
180
+ style: [_styles.photoPickerStyles.cellWrapper, cellWrapperStyle],
181
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
182
+ activeOpacity: 0.85,
183
+ onPress: onPress,
184
+ onLongPress: onLongPress,
185
+ style: {
186
+ flex: 1
187
+ },
188
+ accessibilityRole: "button",
189
+ accessibilityLabel: a11yLabel,
190
+ accessibilityState: {
191
+ selected: isSelected
192
+ },
193
+ children: inner
194
+ })
195
+ });
196
+ });
197
+ const PhotoPickerView = ({
198
+ photos,
199
+ selectedIds,
200
+ multiSelect,
201
+ maxSelection,
202
+ allowUpload,
203
+ refreshing,
204
+ uploading,
205
+ isPickingDocument,
206
+ uploadProgress,
207
+ hasMore,
208
+ loadingMore,
209
+ reduceMotion,
210
+ getThumbUrl,
211
+ primaryColor,
212
+ isOwner,
213
+ onTogglePhoto,
214
+ onPreviewPhoto,
215
+ onUpload,
216
+ onRefresh,
217
+ onLoadMore,
218
+ onCancel,
219
+ onConfirm,
220
+ t
221
+ }) => {
222
+ const {
223
+ width: windowWidth,
224
+ height: windowHeight
225
+ } = (0, _reactNative.useWindowDimensions)();
226
+
227
+ // Layout: 3 columns phone portrait, 2 columns phone landscape,
228
+ // 4 columns tablet (>= 600 width). Apple Photos-ish.
229
+ const columns = (0, _react.useMemo)(() => {
230
+ if (windowWidth >= 600) return 4;
231
+ // Landscape phone: width > height
232
+ if (windowWidth > windowHeight) return 2;
233
+ return 3;
234
+ }, [windowWidth, windowHeight]);
235
+ const GUTTER = 2;
236
+ const cellSize = (0, _react.useMemo)(() => {
237
+ // (windowWidth - (columns - 1) * GUTTER) / columns, but
238
+ // FlatList in 3-col layout means each row has 2 inter-cell gutters.
239
+ return Math.floor((windowWidth - GUTTER * (columns - 1)) / columns);
240
+ }, [windowWidth, columns]);
241
+
242
+ // Map selectedIds → 1-based selection order for the badge. We freeze a
243
+ // stable order at the time of selection: the order is the insertion
244
+ // order of the Set (which JS preserves natively).
245
+ const selectionOrder = (0, _react.useMemo)(() => {
246
+ const map = new Map();
247
+ let i = 1;
248
+ for (const id of selectedIds) {
249
+ map.set(id, i++);
250
+ }
251
+ return map;
252
+ }, [selectedIds]);
253
+ const hasAnySelection = selectedIds.size > 0;
254
+
255
+ // Compact icon-only upload pill on narrow screens; full pill otherwise.
256
+ const showUploadLabel = windowWidth >= 360;
257
+
258
+ // The bottom sheet renders below the status bar already (its `maxHeight`
259
+ // is capped by `SCREEN_HEIGHT - insets.top`), so the picker MUST NOT add
260
+ // an additional safe-area inset to the header. Header layout:
261
+ // • 28dp drag-handle hit area floats at the very top of the sheet
262
+ // • 56dp app bar sits immediately below the handle
263
+ // Total header zone = 28 + 56 = 84dp from sheet top.
264
+ const HANDLE_ZONE = 28;
265
+ const APP_BAR_HEIGHT = 56;
266
+ const headerHeight = HANDLE_ZONE + APP_BAR_HEIGHT;
267
+ const contentPaddingTop = headerHeight + 4;
268
+ const isEmpty = photos.length === 0;
269
+ const a11yColumnsAnnouncement = (0, _react.useRef)(columns);
270
+ (0, _react.useEffect)(() => {
271
+ if (a11yColumnsAnnouncement.current !== columns) {
272
+ a11yColumnsAnnouncement.current = columns;
273
+ }
274
+ }, [columns]);
275
+ const handleCellPress = (0, _react.useCallback)(photo => {
276
+ if (_reactNative.Platform.OS !== 'web') {
277
+ void hapticImpact('light');
278
+ }
279
+ onTogglePhoto(photo);
280
+ }, [onTogglePhoto]);
281
+ const handleCellLongPress = (0, _react.useCallback)(photo => {
282
+ if (_reactNative.Platform.OS !== 'web') {
283
+ void hapticSelection();
284
+ }
285
+ onPreviewPhoto(photo);
286
+ }, [onPreviewPhoto]);
287
+ const handleConfirm = (0, _react.useCallback)(() => {
288
+ if (multiSelect) {
289
+ if (selectedIds.size === 0) return;
290
+ if (_reactNative.Platform.OS !== 'web') {
291
+ void hapticNotification('success');
292
+ }
293
+ }
294
+ onConfirm();
295
+ }, [multiSelect, selectedIds.size, onConfirm]);
296
+
297
+ // FlatList renderItem: each cell knows its enterIndex (for stagger).
298
+ const renderItem = (0, _react.useCallback)(({
299
+ item,
300
+ index
301
+ }) => {
302
+ const isSelected = selectedIds.has(item.id);
303
+ const selIndex = isSelected ? selectionOrder.get(item.id) || 0 : 0;
304
+ // Last column gets no right margin; last row no bottom margin
305
+ // (FlatList handles row breaks via numColumns).
306
+ const isLastInRow = (index + 1) % columns === 0;
307
+ const a11yLabel = t(isSelected ? 'fileManagement.a11y.photoCellSelected' : 'fileManagement.a11y.photoCellUnselected', {
308
+ name: item.filename || 'photo'
309
+ });
310
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(PhotoPickerCell, {
311
+ photo: item,
312
+ size: cellSize,
313
+ marginRight: isLastInRow ? 0 : GUTTER,
314
+ marginBottom: GUTTER,
315
+ isSelected: isSelected,
316
+ selectionIndex: selIndex,
317
+ dim: multiSelect && hasAnySelection && !isSelected,
318
+ primaryColor: primaryColor,
319
+ thumbUrl: getThumbUrl(item, 'thumb'),
320
+ enterIndex: index,
321
+ reduceMotion: reduceMotion,
322
+ onPress: () => handleCellPress(item),
323
+ onLongPress: () => handleCellLongPress(item),
324
+ a11yLabel: a11yLabel
325
+ });
326
+ }, [selectedIds, selectionOrder, columns, cellSize, multiSelect, hasAnySelection, primaryColor, getThumbUrl, reduceMotion, handleCellPress, handleCellLongPress, t]);
327
+ const keyExtractor = (0, _react.useCallback)(item => item.id, []);
328
+ const listFooter = (0, _react.useMemo)(() => {
329
+ if (!loadingMore) return null;
330
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
331
+ style: {
332
+ paddingVertical: 16,
333
+ alignItems: 'center'
334
+ },
335
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
336
+ size: "small",
337
+ color: "#FFFFFF"
338
+ })
339
+ });
340
+ }, [loadingMore]);
341
+ const handleEndReached = (0, _react.useCallback)(() => {
342
+ if (loadingMore || !hasMore) return;
343
+ onLoadMore();
344
+ }, [loadingMore, hasMore, onLoadMore]);
345
+ const confirmDisabled = multiSelect && selectedIds.size === 0;
346
+ const confirmLabel = multiSelect ? t('fileManagement.doneWithCount', {
347
+ count: selectedIds.size
348
+ }) : t('fileManagement.done');
349
+
350
+ // The progress fill width. Guard against zero division.
351
+ const progressFraction = uploadProgress && uploadProgress.total > 0 ? Math.min(1, Math.max(0, uploadProgress.current / uploadProgress.total)) : 0;
352
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
353
+ style: _styles.photoPickerStyles.root,
354
+ children: [isEmpty ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
355
+ style: [_styles.photoPickerStyles.empty, {
356
+ paddingTop: contentPaddingTop
357
+ }],
358
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
359
+ style: _styles.photoPickerStyles.emptyIconWrap,
360
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.MaterialCommunityIcons, {
361
+ name: "image-outline",
362
+ size: 64,
363
+ color: "#FFFFFF"
364
+ })
365
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
366
+ style: [_styles.photoPickerStyles.emptyTitle, {
367
+ color: '#FFFFFF'
368
+ }],
369
+ children: t('fileManagement.photoPicker.emptyTitle')
370
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
371
+ style: [_styles.photoPickerStyles.emptySubtitle, {
372
+ color: '#FFFFFF'
373
+ }],
374
+ children: t('fileManagement.photoPicker.emptySubtitle')
375
+ }), isOwner && allowUpload && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
376
+ style: [_styles.photoPickerStyles.emptyCta, {
377
+ backgroundColor: primaryColor
378
+ }],
379
+ onPress: onUpload,
380
+ disabled: uploading || isPickingDocument,
381
+ accessibilityRole: "button",
382
+ accessibilityLabel: t('fileManagement.uploadPhoto'),
383
+ accessibilityState: {
384
+ busy: uploading || isPickingDocument
385
+ },
386
+ children: uploading || isPickingDocument ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
387
+ size: "small",
388
+ color: "#FFFFFF"
389
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
390
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
391
+ name: "cloud-upload",
392
+ size: 18,
393
+ color: "#FFFFFF"
394
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
395
+ style: _styles.photoPickerStyles.emptyCtaText,
396
+ children: t('fileManagement.uploadPhoto')
397
+ })]
398
+ })
399
+ })]
400
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.FlatList, {
401
+ data: photos,
402
+ renderItem: renderItem,
403
+ keyExtractor: keyExtractor,
404
+ numColumns: columns,
405
+ contentContainerStyle: [_styles.photoPickerStyles.gridContent, {
406
+ paddingTop: contentPaddingTop
407
+ }],
408
+ style: _styles.photoPickerStyles.grid,
409
+ showsVerticalScrollIndicator: false,
410
+ refreshControl: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.RefreshControl, {
411
+ refreshing: refreshing,
412
+ onRefresh: onRefresh,
413
+ tintColor: "#FFFFFF",
414
+ colors: [primaryColor],
415
+ progressViewOffset: contentPaddingTop
416
+ }),
417
+ onEndReached: handleEndReached,
418
+ onEndReachedThreshold: 0.4,
419
+ ListFooterComponent: listFooter,
420
+ removeClippedSubviews: true,
421
+ initialNumToRender: Math.max(12, columns * 6),
422
+ windowSize: 9
423
+ }, `cols-${columns}`), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
424
+ style: [_styles.photoPickerStyles.header, {
425
+ paddingTop: HANDLE_ZONE,
426
+ minHeight: headerHeight
427
+ }],
428
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
429
+ style: _styles.photoPickerStyles.headerRow,
430
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
431
+ style: [_styles.photoPickerStyles.headerSide, _styles.photoPickerStyles.headerSideLeft],
432
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
433
+ onPress: onCancel,
434
+ style: _styles.photoPickerStyles.headerCancel,
435
+ accessibilityRole: "button",
436
+ accessibilityLabel: t('fileManagement.a11y.cancelPicker'),
437
+ hitSlop: {
438
+ top: 8,
439
+ bottom: 8,
440
+ left: 8,
441
+ right: 8
442
+ },
443
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
444
+ style: _styles.photoPickerStyles.headerCancelText,
445
+ children: t('fileManagement.cancel')
446
+ })
447
+ })
448
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
449
+ pointerEvents: "none",
450
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
451
+ style: _styles.photoPickerStyles.headerTitle,
452
+ numberOfLines: 1,
453
+ children: t('fileManagement.choosePhoto')
454
+ })
455
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
456
+ style: [_styles.photoPickerStyles.headerSide, _styles.photoPickerStyles.headerSideRight],
457
+ children: multiSelect ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
458
+ onPress: handleConfirm,
459
+ disabled: confirmDisabled,
460
+ style: [_styles.photoPickerStyles.headerPrimaryPill, {
461
+ backgroundColor: confirmDisabled ? 'rgba(255,255,255,0.18)' : primaryColor,
462
+ opacity: confirmDisabled ? 0.6 : 1
463
+ }],
464
+ accessibilityRole: "button",
465
+ accessibilityLabel: t('fileManagement.a11y.confirmSelection'),
466
+ accessibilityState: {
467
+ disabled: confirmDisabled
468
+ },
469
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
470
+ style: _styles.photoPickerStyles.headerPrimaryText,
471
+ children: confirmLabel
472
+ })
473
+ }) : isOwner && allowUpload && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
474
+ onPress: onUpload,
475
+ disabled: uploading || isPickingDocument,
476
+ style: [_styles.photoPickerStyles.headerPrimaryPill, !showUploadLabel && _styles.photoPickerStyles.headerPrimaryPillIconOnly, {
477
+ backgroundColor: primaryColor
478
+ }],
479
+ accessibilityRole: "button",
480
+ accessibilityLabel: t('fileManagement.a11y.uploadFromDevice'),
481
+ accessibilityState: {
482
+ busy: uploading || isPickingDocument
483
+ },
484
+ children: uploading || isPickingDocument ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
485
+ size: "small",
486
+ color: "#FFFFFF"
487
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
488
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
489
+ name: "cloud-upload",
490
+ size: 16,
491
+ color: "#FFFFFF"
492
+ }), showUploadLabel && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
493
+ style: _styles.photoPickerStyles.headerPrimaryText,
494
+ children: t('fileManagement.upload')
495
+ })]
496
+ })
497
+ })
498
+ })]
499
+ }), uploading && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
500
+ style: _styles.photoPickerStyles.headerProgressBarTrack,
501
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
502
+ style: [_styles.photoPickerStyles.headerProgressBarFill, {
503
+ width: `${Math.round(progressFraction * 100)}%`,
504
+ backgroundColor: primaryColor
505
+ }]
506
+ })
507
+ })]
508
+ })]
509
+ });
510
+ };
511
+ var _default = exports.default = PhotoPickerView;
512
+ //# sourceMappingURL=PhotoPickerSection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_expoImage","_reactNativeReanimated","_vectorIcons","_styles","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","hapticsModulePromise","getHaptics","Platform","OS","Promise","resolve","mod","then","impactAsync","hapticImpact","style","h","styleEnum","ImpactFeedbackStyle","Heavy","Medium","Light","hapticSelection","selectionAsync","hapticNotification","type","typeEnum","NotificationFeedbackType","Error","Warning","Success","notificationAsync","PhotoPickerCell","React","memo","props","photo","size","marginRight","marginBottom","isSelected","selectionIndex","dim","primaryColor","thumbUrl","enterIndex","reduceMotion","onPress","onLongPress","a11yLabel","STAGGER_PER_CELL_MS","MAX_TOTAL_STAGGER_MS","delay","Math","min","ringScale","useSharedValue","prevSelected","useRef","useEffect","current","value","withSequence","withTiming","duration","withSpring","damping","stiffness","ringAnimatedStyle","useAnimatedStyle","transform","scale","inner","jsxs","Fragment","children","jsx","View","photoPickerStyles","cellInner","cellDim","Image","source","uri","cellImage","contentFit","transition","cachePolicy","accessibilityLabel","filename","pointerEvents","cellRing","borderColor","cellBadge","backgroundColor","Text","cellBadgeText","String","cellWrapperStyle","width","height","TouchableOpacity","activeOpacity","cellWrapper","accessibilityRole","accessibilityState","selected","entering","FadeIn","flex","PhotoPickerView","photos","selectedIds","multiSelect","maxSelection","allowUpload","refreshing","uploading","isPickingDocument","uploadProgress","hasMore","loadingMore","getThumbUrl","isOwner","onTogglePhoto","onPreviewPhoto","onUpload","onRefresh","onLoadMore","onCancel","onConfirm","windowWidth","windowHeight","useWindowDimensions","columns","useMemo","GUTTER","cellSize","floor","selectionOrder","map","Map","id","hasAnySelection","showUploadLabel","HANDLE_ZONE","APP_BAR_HEIGHT","headerHeight","contentPaddingTop","isEmpty","length","a11yColumnsAnnouncement","handleCellPress","useCallback","handleCellLongPress","handleConfirm","renderItem","item","index","selIndex","isLastInRow","name","keyExtractor","listFooter","paddingVertical","alignItems","ActivityIndicator","color","handleEndReached","confirmDisabled","confirmLabel","count","progressFraction","total","max","root","empty","paddingTop","emptyIconWrap","MaterialCommunityIcons","emptyTitle","emptySubtitle","emptyCta","disabled","busy","Ionicons","emptyCtaText","FlatList","data","numColumns","contentContainerStyle","gridContent","grid","showsVerticalScrollIndicator","refreshControl","RefreshControl","tintColor","colors","progressViewOffset","onEndReached","onEndReachedThreshold","ListFooterComponent","removeClippedSubviews","initialNumToRender","windowSize","header","minHeight","headerRow","headerSide","headerSideLeft","headerCancel","hitSlop","top","bottom","left","right","headerCancelText","headerTitle","numberOfLines","headerSideRight","headerPrimaryPill","opacity","headerPrimaryText","headerPrimaryPillIconOnly","headerProgressBarTrack","headerProgressBarFill","round","_default","exports"],"sourceRoot":"../../../../../src","sources":["ui/screens/fileManagement/PhotoPickerSection.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _reactNative = require("react-native");
8
+ var _vectorIcons = require("@expo/vector-icons");
9
+ var _styles = require("../../components/fileManagement/styles.js");
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ /**
12
+ * The non-blocking "Uploading…" banner overlay shown at the bottom of the file
13
+ * manager while uploads are in flight. Purely presentational — the orchestrator
14
+ * gates rendering on `!selectMode && uploading`.
15
+ */
16
+ const UploadBar = ({
17
+ uploadProgress,
18
+ isDark,
19
+ colors,
20
+ t
21
+ }) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
22
+ style: [_styles.fileManagementStyles.uploadBannerContainer, {
23
+ pointerEvents: 'none'
24
+ }],
25
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
26
+ style: [_styles.fileManagementStyles.uploadBanner, {
27
+ backgroundColor: isDark ? '#222831EE' : '#FFFFFFEE',
28
+ borderColor: colors.border
29
+ }],
30
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
31
+ name: "cloud-upload",
32
+ size: 18,
33
+ color: colors.primary
34
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
35
+ style: _styles.fileManagementStyles.uploadBannerContent,
36
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
37
+ style: [_styles.fileManagementStyles.uploadBannerText, {
38
+ color: colors.text
39
+ }],
40
+ children: [t('fileManagement.uploading'), uploadProgress ? ` ${uploadProgress.current}/${uploadProgress.total}` : '...']
41
+ }), uploadProgress && uploadProgress.total > 0 && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
42
+ style: [_styles.fileManagementStyles.uploadProgressBarContainer, {
43
+ backgroundColor: isDark ? 'rgba(255,255,255,0.1)' : 'rgba(0,0,0,0.1)'
44
+ }],
45
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
46
+ style: [_styles.fileManagementStyles.uploadProgressBar, {
47
+ width: `${uploadProgress.current / uploadProgress.total * 100}%`,
48
+ backgroundColor: colors.primary
49
+ }]
50
+ })
51
+ })]
52
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
53
+ size: "small",
54
+ color: colors.primary
55
+ })]
56
+ })
57
+ });
58
+ var _default = exports.default = UploadBar;
59
+ //# sourceMappingURL=UploadBar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_reactNative","require","_vectorIcons","_styles","_jsxRuntime","UploadBar","uploadProgress","isDark","colors","t","jsx","View","style","fileManagementStyles","uploadBannerContainer","pointerEvents","children","jsxs","uploadBanner","backgroundColor","borderColor","border","Ionicons","name","size","color","primary","uploadBannerContent","Text","uploadBannerText","text","current","total","uploadProgressBarContainer","uploadProgressBar","width","ActivityIndicator","_default","exports","default"],"sourceRoot":"../../../../../src","sources":["ui/screens/fileManagement/UploadBar.tsx"],"mappings":";;;;;;AACA,IAAAA,YAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,OAAA,GAAAF,OAAA;AAA8E,IAAAG,WAAA,GAAAH,OAAA;AAY9E;AACA;AACA;AACA;AACA;AACA,MAAMI,SAAmC,GAAGA,CAAC;EAAEC,cAAc;EAAEC,MAAM;EAAEC,MAAM;EAAEC;AAAE,CAAC,kBAC9E,IAAAL,WAAA,CAAAM,GAAA,EAACV,YAAA,CAAAW,IAAI;EAACC,KAAK,EAAE,CAACC,4BAAoB,CAACC,qBAAqB,EAAE;IAAEC,aAAa,EAAE;EAAO,CAAC,CAAE;EAAAC,QAAA,eACjF,IAAAZ,WAAA,CAAAa,IAAA,EAACjB,YAAA,CAAAW,IAAI;IAACC,KAAK,EAAE,CAACC,4BAAoB,CAACK,YAAY,EAAE;MAAEC,eAAe,EAAEZ,MAAM,GAAG,WAAW,GAAG,WAAW;MAAEa,WAAW,EAAEZ,MAAM,CAACa;IAAO,CAAC,CAAE;IAAAL,QAAA,gBAClI,IAAAZ,WAAA,CAAAM,GAAA,EAACR,YAAA,CAAAoB,QAAQ;MAACC,IAAI,EAAC,cAAc;MAACC,IAAI,EAAE,EAAG;MAACC,KAAK,EAAEjB,MAAM,CAACkB;IAAQ,CAAE,CAAC,eACjE,IAAAtB,WAAA,CAAAa,IAAA,EAACjB,YAAA,CAAAW,IAAI;MAACC,KAAK,EAAEC,4BAAoB,CAACc,mBAAoB;MAAAX,QAAA,gBAClD,IAAAZ,WAAA,CAAAa,IAAA,EAACjB,YAAA,CAAA4B,IAAI;QAAChB,KAAK,EAAE,CAACC,4BAAoB,CAACgB,gBAAgB,EAAE;UAAEJ,KAAK,EAAEjB,MAAM,CAACsB;QAAK,CAAC,CAAE;QAAAd,QAAA,GACxEP,CAAC,CAAC,0BAA0B,CAAC,EAAEH,cAAc,GAAG,IAAIA,cAAc,CAACyB,OAAO,IAAIzB,cAAc,CAAC0B,KAAK,EAAE,GAAG,KAAK;MAAA,CAC3G,CAAC,EACN1B,cAAc,IAAIA,cAAc,CAAC0B,KAAK,GAAG,CAAC,iBACvC,IAAA5B,WAAA,CAAAM,GAAA,EAACV,YAAA,CAAAW,IAAI;QAACC,KAAK,EAAE,CAACC,4BAAoB,CAACoB,0BAA0B,EAAE;UAAEd,eAAe,EAAEZ,MAAM,GAAG,uBAAuB,GAAG;QAAkB,CAAC,CAAE;QAAAS,QAAA,eACtI,IAAAZ,WAAA,CAAAM,GAAA,EAACV,YAAA,CAAAW,IAAI;UACDC,KAAK,EAAE,CACHC,4BAAoB,CAACqB,iBAAiB,EACtC;YACIC,KAAK,EAAE,GAAI7B,cAAc,CAACyB,OAAO,GAAGzB,cAAc,CAAC0B,KAAK,GAAI,GAAG,GAAG;YAClEb,eAAe,EAAEX,MAAM,CAACkB;UAC5B,CAAC;QACH,CACL;MAAC,CACA,CACT;IAAA,CACC,CAAC,eACP,IAAAtB,WAAA,CAAAM,GAAA,EAACV,YAAA,CAAAoC,iBAAiB;MAACZ,IAAI,EAAC,OAAO;MAACC,KAAK,EAAEjB,MAAM,CAACkB;IAAQ,CAAE,CAAC;EAAA,CACvD;AAAC,CACL,CACT;AAAC,IAAAW,QAAA,GAAAC,OAAA,CAAAC,OAAA,GAEalC,SAAS","ignoreList":[]}