@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
@@ -1,155 +0,0 @@
1
- import type * as React from 'react';
2
- import type { TextInput as NativeTextInput, Animated, TextStyle, LayoutChangeEvent, ColorValue, StyleProp, ViewProps, ViewStyle, NativeSyntheticEvent, TextLayoutEventData } from 'react-native';
3
- import type { $Omit, InternalTheme, ThemeProp } from '../types';
4
- export type TextFieldLabelProp = string | React.ReactElement;
5
- type TextInputProps = React.ComponentPropsWithRef<typeof NativeTextInput> & {
6
- mode?: 'flat' | 'outlined';
7
- left?: React.ReactNode;
8
- right?: React.ReactNode;
9
- disabled?: boolean;
10
- label?: TextFieldLabelProp;
11
- placeholder?: string;
12
- error?: boolean;
13
- onChangeText?: Function;
14
- selectionColor?: string;
15
- cursorColor?: string;
16
- underlineColor?: string;
17
- activeUnderlineColor?: string;
18
- outlineColor?: string;
19
- activeOutlineColor?: string;
20
- textColor?: string;
21
- dense?: boolean;
22
- multiline?: boolean;
23
- numberOfLines?: number;
24
- onFocus?: (args: NativeSyntheticEvent<unknown>) => void;
25
- onBlur?: (args: NativeSyntheticEvent<unknown>) => void;
26
- render?: (props: RenderProps) => React.ReactNode;
27
- value?: string;
28
- style?: StyleProp<TextStyle>;
29
- theme?: ThemeProp;
30
- testID?: string;
31
- contentStyle?: StyleProp<TextStyle>;
32
- outlineStyle?: StyleProp<ViewStyle>;
33
- underlineStyle?: StyleProp<ViewStyle>;
34
- scaledLabel?: boolean;
35
- };
36
- export type RenderProps = {
37
- ref: (a?: NativeTextInput | null) => void;
38
- onChangeText?: (a: string) => void;
39
- placeholder?: string;
40
- placeholderTextColor?: ColorValue;
41
- editable?: boolean;
42
- selectionColor?: string;
43
- cursorColor?: string;
44
- onFocus?: (args: NativeSyntheticEvent<unknown>) => void;
45
- onBlur?: (args: NativeSyntheticEvent<unknown>) => void;
46
- underlineColorAndroid?: string;
47
- onLayout?: (args: LayoutChangeEvent) => void;
48
- style: any;
49
- multiline?: boolean;
50
- numberOfLines?: number;
51
- value?: string;
52
- adjustsFontSizeToFit?: boolean;
53
- testID?: string;
54
- };
55
- type TextInputTypesWithoutMode = $Omit<TextInputProps, 'mode'>;
56
- export type State = {
57
- labeled: Animated.Value;
58
- error: Animated.Value;
59
- focused: boolean;
60
- displayPlaceholder: boolean;
61
- value?: string;
62
- labelTextLayout: {
63
- width: number;
64
- };
65
- labelLayout: {
66
- measured: boolean;
67
- width: number;
68
- height: number;
69
- };
70
- leftLayout: {
71
- height: number | null;
72
- width: number | null;
73
- };
74
- rightLayout: {
75
- height: number | null;
76
- width: number | null;
77
- };
78
- inputContainerLayout: {
79
- width: number;
80
- };
81
- contentStyle?: StyleProp<ViewProps>;
82
- };
83
- export type ChildTextInputProps = {
84
- parentState: State;
85
- innerRef: (ref?: NativeTextInput | null) => void;
86
- onFocus?: (args: NativeSyntheticEvent<unknown>) => void;
87
- onBlur?: (args: NativeSyntheticEvent<unknown>) => void;
88
- forceFocus: () => void;
89
- onChangeText?: (value: string) => void;
90
- onInputLayout: (event: LayoutChangeEvent) => void;
91
- onLayoutAnimatedText: (args: LayoutChangeEvent) => void;
92
- onLabelTextLayout: (event: NativeSyntheticEvent<TextLayoutEventData>) => void;
93
- onLeftAffixLayoutChange: (event: LayoutChangeEvent) => void;
94
- onRightAffixLayoutChange: (event: LayoutChangeEvent) => void;
95
- } & $Omit<TextInputTypesWithoutMode, 'theme'> & {
96
- theme: InternalTheme;
97
- };
98
- export type LabelProps = {
99
- mode?: 'flat' | 'outlined';
100
- placeholderStyle: any;
101
- placeholderOpacity: number | Animated.Value | Animated.AnimatedInterpolation<number>;
102
- baseLabelTranslateX: number;
103
- baseLabelTranslateY: number;
104
- wiggleOffsetX: number;
105
- labelScale: number;
106
- fontSize: number;
107
- lineHeight?: number | undefined;
108
- fontWeight: TextStyle['fontWeight'];
109
- font: any;
110
- topPosition: number;
111
- paddingLeft?: number;
112
- paddingRight?: number;
113
- labelTranslationXOffset?: number;
114
- placeholderColor: string | null;
115
- backgroundColor?: ColorValue;
116
- label?: TextFieldLabelProp | null;
117
- hasActiveOutline?: boolean | null;
118
- activeColor: string;
119
- errorColor?: string;
120
- labelError?: boolean | null;
121
- onLayoutAnimatedText: (args: LayoutChangeEvent) => void;
122
- onLabelTextLayout: (event: NativeSyntheticEvent<TextLayoutEventData>) => void;
123
- roundness: number;
124
- maxFontSizeMultiplier?: number | undefined | null;
125
- testID?: string;
126
- contentStyle?: StyleProp<ViewProps>;
127
- theme?: ThemeProp;
128
- };
129
- export type InputLabelProps = {
130
- labeled: Animated.Value;
131
- error: Animated.Value;
132
- focused: boolean;
133
- wiggle: boolean;
134
- opacity: number;
135
- labelLayoutMeasured: boolean;
136
- labelLayoutWidth: number;
137
- labelLayoutHeight: number;
138
- inputContainerLayout: {
139
- width: number;
140
- };
141
- labelBackground?: any;
142
- maxFontSizeMultiplier?: number | undefined | null;
143
- isV3?: boolean;
144
- scaledLabel?: boolean;
145
- } & LabelProps;
146
- export type LabelBackgroundProps = {
147
- labelStyle: any;
148
- labeled: Animated.Value;
149
- labelLayoutWidth: number;
150
- labelLayoutHeight: number;
151
- maxFontSizeMultiplier?: number | undefined | null;
152
- theme?: ThemeProp;
153
- } & LabelProps;
154
- export {};
155
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/TextField/types.tsx"],"names":[],"mappings":"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"}
@@ -1,192 +0,0 @@
1
- import * as React from 'react';
2
- import { type StyleProp, TextInput as NativeTextInput, type TextStyle, type ViewStyle } from 'react-native';
3
- import { type Props as TextFieldAffixProps } from './TextField/Adornment/TextFieldAffix';
4
- import { type Props as TextFieldIconProps } from './TextField/Adornment/TextFieldIcon';
5
- import type { RenderProps, TextFieldLabelProp } from './TextField/types';
6
- import type { ThemeProp } from "./types";
7
- export type Props = React.ComponentPropsWithRef<typeof NativeTextInput> & {
8
- /**
9
- * Mode of the TextInput.
10
- * - `flat` - flat input with an underline.
11
- * - `outlined` - input with an outline.
12
- *
13
- * In `outlined` mode, the background color of the label is derived from `colors?.background` in theme or the `backgroundColor` style.
14
- * This component render TextInputOutlined or TextInputFlat based on that props
15
- */
16
- mode?: 'flat' | 'outlined';
17
- /**
18
- * The adornment placed on the left side of the input. It can be either `TextField.Icon` or `TextField.Affix`.
19
- */
20
- left?: React.ReactNode;
21
- /**
22
- * The adornment placed on the right side of the input. It can be either `TextField.Icon` or `TextField.Affix`.
23
- */
24
- right?: React.ReactNode;
25
- /**
26
- * If true, user won't be able to interact with the component.
27
- */
28
- disabled?: boolean;
29
- /**
30
- * The text or component to use for the floating label.
31
- */
32
- label?: TextFieldLabelProp;
33
- /**
34
- * Placeholder for the input.
35
- */
36
- placeholder?: string;
37
- /**
38
- * Whether to style the TextInput with error style.
39
- */
40
- error?: boolean;
41
- /**
42
- * Callback that is called when the text input's text changes. Changed text is passed as an argument to the callback handler.
43
- */
44
- onChangeText?: Function;
45
- /**
46
- * Selection color of the input. On iOS, it sets both the selection color and cursor color.
47
- * On Android, it sets only the selection color.
48
- */
49
- selectionColor?: string;
50
- /**
51
- * @platform Android only
52
- * Cursor (or "caret") color of the input on Android.
53
- * This property has no effect on iOS.
54
- */
55
- cursorColor?: string;
56
- /**
57
- * Inactive underline color of the input.
58
- */
59
- underlineColor?: string;
60
- /**
61
- * Active underline color of the input.
62
- */
63
- activeUnderlineColor?: string;
64
- /**
65
- * Inactive outline color of the input.
66
- */
67
- outlineColor?: string;
68
- /**
69
- * Active outline color of the input.
70
- */
71
- activeOutlineColor?: string;
72
- /**
73
- * Color of the text in the input.
74
- */
75
- textColor?: string;
76
- /**
77
- * Sets min height with densed layout. For `TextField` in `flat` mode
78
- * height is `64dp` or in dense layout - `52dp` with label or `40dp` without label.
79
- * For `TextField` in `outlined` mode
80
- * height is `56dp` or in dense layout - `40dp` regardless of label.
81
- * When you apply `height` prop in style the `dense` prop affects only `paddingVertical` inside `TextField`
82
- */
83
- dense?: boolean;
84
- /**
85
- * Whether the input can have multiple lines.
86
- */
87
- multiline?: boolean;
88
- /**
89
- * @platform Android only
90
- * The number of lines to show in the input (Android only).
91
- */
92
- numberOfLines?: number;
93
- /**
94
- * Callback that is called when the text input is focused.
95
- */
96
- onFocus?: (args: any) => void;
97
- /**
98
- * Callback that is called when the text input is blurred.
99
- */
100
- onBlur?: (args: any) => void;
101
- /**
102
- *
103
- * Callback to render a custom input component such as `react-native-text-input-mask`
104
- * instead of the default `TextInput` component from `react-native`.
105
- *
106
- * Example:
107
- * ```js
108
- * <TextField
109
- * label="Phone number"
110
- * render={props =>
111
- * <TextInputMask
112
- * {...props}
113
- * mask="+[00] [000] [000] [000]"
114
- * />
115
- * }
116
- * />
117
- * ```
118
- */
119
- render?: (props: RenderProps) => React.ReactNode;
120
- /**
121
- * Value of the text input.
122
- */
123
- value?: string;
124
- /**
125
- * Pass `fontSize` prop to modify the font size inside `TextField`.
126
- * Pass `height` prop to set `TextField` height. When `height` is passed,
127
- * `dense` prop will affect only input's `paddingVertical`.
128
- * Pass `paddingHorizontal` to modify horizontal padding.
129
- * This can be used to get MD Guidelines v1 TextInput look.
130
- */
131
- style?: StyleProp<TextStyle>;
132
- /**
133
- * @optional
134
- */
135
- theme?: ThemeProp;
136
- /**
137
- * testID to be used on tests.
138
- */
139
- testID?: string;
140
- /**
141
- * Pass custom style directly to the input itself.
142
- * Overrides input style
143
- * Example: `paddingLeft`, `backgroundColor`
144
- */
145
- contentStyle?: StyleProp<TextStyle>;
146
- /**
147
- * Pass style to override the default style of outlined wrapper.
148
- * Overrides style when mode is set to `outlined`
149
- * Example: `borderRadius`, `borderColor`
150
- */
151
- outlineStyle?: StyleProp<ViewStyle>;
152
- /**
153
- * Pass style to override the default style of underlined wrapper.
154
- * Overrides style when mode is set to `flat`
155
- * Example: `borderRadius`, `borderColor`
156
- */
157
- underlineStyle?: StyleProp<ViewStyle>;
158
- };
159
- interface CompoundedComponent extends React.ForwardRefExoticComponent<Props & React.RefAttributes<TextFieldHandles>> {
160
- Icon: React.FunctionComponent<TextFieldIconProps>;
161
- Affix: React.FunctionComponent<TextFieldAffixProps>;
162
- }
163
- type TextFieldHandles = Pick<NativeTextInput, 'focus' | 'clear' | 'blur' | 'isFocused' | 'setNativeProps' | 'setSelection'>;
164
- /**
165
- * A component to allow users to input text.
166
- *
167
- * ## Usage
168
- * ```js
169
- * import * as React from 'react';
170
- * import { TextField } from './TextField';
171
- *
172
- * const MyComponent = () => {
173
- * const [text, setText] = React.useState("");
174
- *
175
- * return (
176
- * <TextField
177
- * label="Email"
178
- * value={text}
179
- * onChangeText={text => setText(text)}
180
- * />
181
- * );
182
- * };
183
- *
184
- * export default MyComponent;
185
- * ```
186
- *
187
- * @extends TextInput props https://reactnative.dev/docs/textinput#props
188
- */
189
- declare const TextField: CompoundedComponent;
190
- export default TextField;
191
- export type { Props as TextFieldProps };
192
- //# sourceMappingURL=TextField.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TextField.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/TextField.tsx"],"names":[],"mappings":"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"}
@@ -1,13 +0,0 @@
1
- import type * as React from 'react';
2
- import type { Animated, PressableProps as PressableNativeProps, StyleProp, View, ViewStyle } from 'react-native';
3
- export type PressableStateCallbackType = {
4
- hovered: boolean;
5
- pressed: boolean;
6
- focused: boolean;
7
- };
8
- export type PressableProps = Omit<PressableNativeProps, 'children' | 'style'> & {
9
- children: React.ReactNode | ((state: PressableStateCallbackType) => React.ReactNode) | undefined;
10
- style?: StyleProp<ViewStyle> | Animated.WithAnimatedValue<StyleProp<ViewStyle>> | ((state: PressableStateCallbackType) => StyleProp<ViewStyle> | Animated.WithAnimatedValue<StyleProp<ViewStyle>>) | undefined;
11
- };
12
- export declare const Pressable: React.ForwardRefExoticComponent<PressableProps & React.RefAttributes<View>>;
13
- //# sourceMappingURL=Pressable.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Pressable.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/TouchableRipple/Pressable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AACpC,OAAO,KAAK,EACV,QAAQ,EACR,cAAc,IAAI,oBAAoB,EACtC,SAAS,EACT,IAAI,EACJ,SAAS,EACV,MAAM,cAAc,CAAC;AAMtB,MAAM,MAAM,0BAA0B,GAAG;IACvC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,IAAI,CAC/B,oBAAoB,EACpB,UAAU,GAAG,OAAO,CACrB,GAAG;IACF,QAAQ,EACJ,KAAK,CAAC,SAAS,GACf,CAAC,CAAC,KAAK,EAAE,0BAA0B,KAAK,KAAK,CAAC,SAAS,CAAC,GACxD,SAAS,CAAC;IACd,KAAK,CAAC,EACF,SAAS,CAAC,SAAS,CAAC,GACpB,QAAQ,CAAC,iBAAiB,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,GAChD,CAAC,CACC,KAAK,EAAE,0BAA0B,KAE/B,SAAS,CAAC,SAAS,CAAC,GACpB,QAAQ,CAAC,iBAAiB,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC,GACrD,SAAS,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,yBAAyB,CACrD,cAAc,GAAG,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,CAElB,CAAC"}
@@ -1,62 +0,0 @@
1
- import * as React from 'react';
2
- import { type ColorValue, type GestureResponderEvent, type StyleProp, type View, type ViewStyle } from 'react-native';
3
- import type { PressableProps, PressableStateCallbackType } from './Pressable';
4
- import type { ThemeProp } from '../types';
5
- export type Props = PressableProps & {
6
- /**
7
- * Whether to render the ripple outside the view bounds.
8
- */
9
- borderless?: boolean;
10
- /**
11
- * Type of background drawabale to display the feedback (Android).
12
- * https://reactnative.dev/docs/pressable#rippleconfig
13
- */
14
- background?: Object;
15
- /**
16
- * Whether to start the ripple at the center (Web).
17
- */
18
- centered?: boolean;
19
- /**
20
- * Whether to prevent interaction with the touchable.
21
- */
22
- disabled?: boolean;
23
- /**
24
- * Function to execute on press. If not set, will cause the touchable to be disabled.
25
- */
26
- onPress?: (e: GestureResponderEvent) => void;
27
- /**
28
- * Function to execute on long press.
29
- */
30
- onLongPress?: (e: GestureResponderEvent) => void;
31
- /**
32
- * Function to execute immediately when a touch is engaged, before `onPressOut` and `onPress`.
33
- */
34
- onPressIn?: (e: GestureResponderEvent) => void;
35
- /**
36
- * Function to execute when a touch is released.
37
- */
38
- onPressOut?: (e: GestureResponderEvent) => void;
39
- /**
40
- * Color of the ripple effect (Android >= 5.0 and Web).
41
- */
42
- rippleColor?: ColorValue;
43
- /**
44
- * Color of the underlay for the highlight effect (Android < 5.0 and iOS).
45
- */
46
- underlayColor?: string;
47
- /**
48
- * Content of the `TouchableRipple`.
49
- */
50
- children: ((state: PressableStateCallbackType) => React.ReactNode) | React.ReactNode;
51
- style?: StyleProp<ViewStyle> | ((state: PressableStateCallbackType) => StyleProp<ViewStyle>) | undefined;
52
- /**
53
- * @optional
54
- */
55
- theme?: ThemeProp;
56
- };
57
- declare const Component: import("../utils/forwardRef").ForwardRefComponent<View, Props>;
58
- declare const _default: typeof Component & {
59
- supported: boolean;
60
- };
61
- export default _default;
62
- //# sourceMappingURL=TouchableRipple.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TouchableRipple.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/TouchableRipple/TouchableRipple.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EACL,KAAK,UAAU,EACf,KAAK,qBAAqB,EAE1B,KAAK,SAAS,EAEd,KAAK,IAAI,EACT,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,cAAc,EAAE,0BAA0B,EAAE,MAAM,aAAa,CAAC;AAI9E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AA+B1C,MAAM,MAAM,KAAK,GAAG,cAAc,GAAG;IACnC;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAC7C;;OAEG;IACH,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,CAAC;IACjD;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAC/C;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAChD;;OAEG;IACH,WAAW,CAAC,EAAE,UAAU,CAAC;IACzB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,QAAQ,EACN,CAAC,CAAC,KAAK,EAAE,0BAA0B,KAAK,KAAK,CAAC,SAAS,CAAC,GACxD,KAAK,CAAC,SAAS,CAAC;IAClB,KAAK,CAAC,EACJ,SAAS,CAAC,SAAS,CAAC,GACpB,CAAC,CAAC,KAAK,EAAE,0BAA0B,KAAK,SAAS,CAAC,SAAS,CAAC,CAAC,GAC7D,SAAS,CAAC;IACZ;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAkPF,QAAA,MAAM,SAAS,gEAA8B,CAAC;wBAElB,OAAO,SAAS,GAAG;IAAE,SAAS,EAAE,OAAO,CAAA;CAAE;AAArE,wBAAsE"}
@@ -1,25 +0,0 @@
1
- import * as React from 'react';
2
- import { type PressableAndroidRippleConfig, type StyleProp, type ViewStyle, type GestureResponderEvent, View, type ColorValue } from 'react-native';
3
- import type { PressableProps } from './Pressable';
4
- import type { ThemeProp } from '../types';
5
- export type Props = PressableProps & {
6
- borderless?: boolean;
7
- background?: PressableAndroidRippleConfig;
8
- centered?: boolean;
9
- disabled?: boolean;
10
- onPress?: (e: GestureResponderEvent) => void | null;
11
- onLongPress?: (e: GestureResponderEvent) => void;
12
- onPressIn?: (e: GestureResponderEvent) => void;
13
- onPressOut?: (e: GestureResponderEvent) => void;
14
- rippleColor?: ColorValue;
15
- underlayColor?: string;
16
- children: React.ReactNode;
17
- style?: StyleProp<ViewStyle>;
18
- theme?: ThemeProp;
19
- };
20
- declare const Component: import("../utils/forwardRef").ForwardRefComponent<View, Props>;
21
- declare const _default: typeof Component & {
22
- supported: boolean;
23
- };
24
- export default _default;
25
- //# sourceMappingURL=TouchableRipple.native.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TouchableRipple.native.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/TouchableRipple/TouchableRipple.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EACL,KAAK,4BAA4B,EACjC,KAAK,SAAS,EAEd,KAAK,SAAS,EAEd,KAAK,qBAAqB,EAC1B,IAAI,EACJ,KAAK,UAAU,EAChB,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAMlD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAO1C,MAAM,MAAM,KAAK,GAAG,cAAc,GAAG;IACnC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,4BAA4B,CAAC;IAC1C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,GAAG,IAAI,CAAC;IACpD,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,CAAC;IACjD,SAAS,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAC/C,UAAU,CAAC,EAAE,CAAC,CAAC,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAChD,WAAW,CAAC,EAAE,UAAU,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAwGF,QAAA,MAAM,SAAS,gEAA8B,CAAC;wBAElB,OAAO,SAAS,GAAG;IAAE,SAAS,EAAE,OAAO,CAAA;CAAE;AAArE,wBAAsE"}
@@ -1,11 +0,0 @@
1
- import type { ColorValue } from 'react-native';
2
- import type { InternalTheme } from '../types';
3
- export declare const getTouchableRippleColors: ({ theme, rippleColor, underlayColor, }: {
4
- theme: InternalTheme;
5
- rippleColor?: ColorValue;
6
- underlayColor?: string;
7
- }) => {
8
- calculatedRippleColor: ColorValue;
9
- calculatedUnderlayColor: string;
10
- };
11
- //# sourceMappingURL=utils.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/TouchableRipple/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI/C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AA2C9C,eAAO,MAAM,wBAAwB,GAAI,wCAItC;IACD,KAAK,EAAE,aAAa,CAAC;IACrB,WAAW,CAAC,EAAE,UAAU,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;;;CAUA,CAAC"}
@@ -1,35 +0,0 @@
1
- import type * as React from 'react';
2
- import { Animated, type StyleProp, type TextStyle, type Text } from 'react-native';
3
- import type { VariantProp } from './types';
4
- import type { ThemeProp } from "../types";
5
- type Props<T> = React.ComponentPropsWithRef<typeof Animated.Text> & {
6
- /**
7
- * Variant defines appropriate text styles for type role and its size.
8
- * Available variants:
9
- *
10
- * Display: `displayLarge`, `displayMedium`, `displaySmall`
11
- *
12
- * Headline: `headlineLarge`, `headlineMedium`, `headlineSmall`
13
- *
14
- * Title: `titleLarge`, `titleMedium`, `titleSmall`
15
- *
16
- * Label: `labelLarge`, `labelMedium`, `labelSmall`
17
- *
18
- * Body: `bodyLarge`, `bodyMedium`, `bodySmall`
19
- */
20
- variant?: VariantProp<T>;
21
- style?: StyleProp<TextStyle>;
22
- /**
23
- * @optional
24
- */
25
- theme?: ThemeProp;
26
- };
27
- /**
28
- * Animated text component which follows styles from the theme.
29
- *
30
- * @extends Text props https://reactnative.dev/docs/text#props
31
- */
32
- declare const AnimatedText: import("../utils/forwardRef").ForwardRefComponent<Text & HTMLElement, Props<never>>;
33
- export declare const customAnimatedText: <T>() => (props: Props<T>) => React.ReactElement;
34
- export default AnimatedText;
35
- //# sourceMappingURL=AnimatedText.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AnimatedText.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/Typography/AnimatedText.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AACpC,OAAO,EACL,QAAQ,EAER,KAAK,SAAS,EAEd,KAAK,SAAS,EACd,KAAK,IAAI,EACV,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAG1C,KAAK,KAAK,CAAC,CAAC,IAAI,KAAK,CAAC,qBAAqB,CAAC,OAAO,QAAQ,CAAC,IAAI,CAAC,GAAG;IAClE;;;;;;;;;;;;;OAaG;IACH,OAAO,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC;IACzB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,QAAA,MAAM,YAAY,qFAmDjB,CAAC;AAQF,eAAO,MAAM,kBAAkB,GAAI,CAAC,OAClB,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;AAE1D,eAAe,YAAY,CAAC"}
@@ -1,19 +0,0 @@
1
- export declare enum MD3TypescaleKey {
2
- displayLarge = "displayLarge",
3
- displayMedium = "displayMedium",
4
- displaySmall = "displaySmall",
5
- headlineLarge = "headlineLarge",
6
- headlineMedium = "headlineMedium",
7
- headlineSmall = "headlineSmall",
8
- titleLarge = "titleLarge",
9
- titleMedium = "titleMedium",
10
- titleSmall = "titleSmall",
11
- labelLarge = "labelLarge",
12
- labelMedium = "labelMedium",
13
- labelSmall = "labelSmall",
14
- bodyLarge = "bodyLarge",
15
- bodyMedium = "bodyMedium",
16
- bodySmall = "bodySmall"
17
- }
18
- export type VariantProp<T> = (T extends string ? (string extends T ? never : T) : never) | keyof typeof MD3TypescaleKey;
19
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/Typography/types.tsx"],"names":[],"mappings":"AACA,oBAAY,eAAe;IACzB,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAC/B,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IACjC,aAAa,kBAAkB;IAC/B,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,SAAS,cAAc;CACxB;AAED,MAAM,MAAM,WAAW,CAAC,CAAC,IACrB,CAAC,CAAC,SAAS,MAAM,GAAG,CAAC,MAAM,SAAS,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,GAC3D,MAAM,OAAO,eAAe,CAAC"}
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- import type { FeedbackColors } from './types';
3
- interface ProgressIndicatorProps {
4
- currentStep: number;
5
- totalSteps: number;
6
- colors: FeedbackColors;
7
- styles: any;
8
- }
9
- declare const ProgressIndicator: React.FC<ProgressIndicatorProps>;
10
- export default ProgressIndicator;
11
- //# sourceMappingURL=ProgressIndicator.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ProgressIndicator.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/feedback/ProgressIndicator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAE9C,UAAU,sBAAsB;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,cAAc,CAAC;IACvB,MAAM,EAAE,GAAG,CAAC;CACf;AAED,QAAA,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAmBtD,CAAC;AAIH,eAAe,iBAAiB,CAAC"}
@@ -1,10 +0,0 @@
1
- import type React from 'react';
2
- export interface IconProps {
3
- name: string;
4
- size?: number;
5
- color?: string;
6
- style?: Record<string, unknown>;
7
- }
8
- declare const OxyIcon: React.FC<IconProps>;
9
- export default OxyIcon;
10
- //# sourceMappingURL=OxyIcon.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"OxyIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/icon/OxyIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACjC;AAED,QAAA,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAiBhC,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -1,8 +0,0 @@
1
- import type { InternalTheme } from './types';
2
- /**
3
- * Adapter to convert services theming to react-native-paper's InternalTheme format
4
- */
5
- export declare const useInternalTheme: (themeOverrides?: (Partial<InternalTheme> & {
6
- dark?: boolean;
7
- }) | "light" | "dark") => InternalTheme;
8
- //# sourceMappingURL=theming.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"theming.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/theming.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7C;;GAEG;AACH,eAAO,MAAM,gBAAgB,GAC3B,iBAAiB,CAAA,OAAO,CAAC,aAAa,CAAC,GAAG;IAAE,IAAI,CAAC,EAAE,OAAO,CAAA;CAAE,IAAG,OAAO,GAAG,MAAM,KAC9E,aAoHF,CAAC"}