@oxyhq/services 5.4.2 → 5.4.3

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 (359) hide show
  1. package/lib/commonjs/assets/OxyLogo.svg +1 -0
  2. package/lib/commonjs/assets/assets/OxyLogo.svg +1 -0
  3. package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
  4. package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
  5. package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
  6. package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
  7. package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
  8. package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
  9. package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
  10. package/lib/commonjs/assets/assets/icons/OxyServices.tsx +67 -0
  11. package/lib/commonjs/assets/assets/icons/logo_OxyServices.svg +1 -0
  12. package/lib/commonjs/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
  13. package/lib/commonjs/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
  14. package/lib/commonjs/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
  15. package/lib/commonjs/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
  16. package/lib/commonjs/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
  17. package/lib/commonjs/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
  18. package/lib/commonjs/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
  19. package/lib/commonjs/assets/icons/OxyServices.js +53 -0
  20. package/lib/commonjs/assets/icons/OxyServices.js.map +1 -0
  21. package/lib/commonjs/assets/icons/logo_OxyServices.svg +1 -0
  22. package/lib/commonjs/constants/version.js +28 -0
  23. package/lib/commonjs/constants/version.js.map +1 -0
  24. package/lib/commonjs/core/index.js +1660 -0
  25. package/lib/commonjs/core/index.js.map +1 -0
  26. package/lib/commonjs/index.js +160 -0
  27. package/lib/commonjs/index.js.map +1 -0
  28. package/lib/commonjs/lib/sonner.js +21 -0
  29. package/lib/commonjs/lib/sonner.js.map +1 -0
  30. package/lib/commonjs/models/interfaces.js +2 -0
  31. package/lib/commonjs/models/interfaces.js.map +1 -0
  32. package/lib/commonjs/models/secureSession.js +2 -0
  33. package/lib/commonjs/models/secureSession.js.map +1 -0
  34. package/lib/commonjs/node/index.js +54 -0
  35. package/lib/commonjs/node/index.js.map +1 -0
  36. package/lib/commonjs/ui/components/Avatar.js +98 -0
  37. package/lib/commonjs/ui/components/Avatar.js.map +1 -0
  38. package/lib/commonjs/ui/components/FollowButton.js +246 -0
  39. package/lib/commonjs/ui/components/FollowButton.js.map +1 -0
  40. package/lib/commonjs/ui/components/FontLoader.js +181 -0
  41. package/lib/commonjs/ui/components/FontLoader.js.map +1 -0
  42. package/lib/commonjs/ui/components/GroupedItem.js +109 -0
  43. package/lib/commonjs/ui/components/GroupedItem.js.map +1 -0
  44. package/lib/commonjs/ui/components/GroupedSection.js +33 -0
  45. package/lib/commonjs/ui/components/GroupedSection.js.map +1 -0
  46. package/lib/commonjs/ui/components/OxyLogo.js +56 -0
  47. package/lib/commonjs/ui/components/OxyLogo.js.map +1 -0
  48. package/lib/commonjs/ui/components/OxyProvider.js +517 -0
  49. package/lib/commonjs/ui/components/OxyProvider.js.map +1 -0
  50. package/lib/commonjs/ui/components/OxySignInButton.js +178 -0
  51. package/lib/commonjs/ui/components/OxySignInButton.js.map +1 -0
  52. package/lib/commonjs/ui/components/ProfileCard.js +124 -0
  53. package/lib/commonjs/ui/components/ProfileCard.js.map +1 -0
  54. package/lib/commonjs/ui/components/QuickActions.js +87 -0
  55. package/lib/commonjs/ui/components/QuickActions.js.map +1 -0
  56. package/lib/commonjs/ui/components/Section.js +36 -0
  57. package/lib/commonjs/ui/components/Section.js.map +1 -0
  58. package/lib/commonjs/ui/components/SectionTitle.js +35 -0
  59. package/lib/commonjs/ui/components/SectionTitle.js.map +1 -0
  60. package/lib/commonjs/ui/components/bottomSheet/index.js +37 -0
  61. package/lib/commonjs/ui/components/bottomSheet/index.js.map +1 -0
  62. package/lib/commonjs/ui/components/icon/OxyIcon.js +27 -0
  63. package/lib/commonjs/ui/components/icon/OxyIcon.js.map +1 -0
  64. package/lib/commonjs/ui/components/icon/index.js +14 -0
  65. package/lib/commonjs/ui/components/icon/index.js.map +1 -0
  66. package/lib/commonjs/ui/components/index.js +97 -0
  67. package/lib/commonjs/ui/components/index.js.map +1 -0
  68. package/lib/commonjs/ui/context/OxyContext.js +584 -0
  69. package/lib/commonjs/ui/context/OxyContext.js.map +1 -0
  70. package/lib/commonjs/ui/index.js +128 -0
  71. package/lib/commonjs/ui/index.js.map +1 -0
  72. package/lib/commonjs/ui/navigation/OxyRouter.js +264 -0
  73. package/lib/commonjs/ui/navigation/OxyRouter.js.map +1 -0
  74. package/lib/commonjs/ui/navigation/types.js +6 -0
  75. package/lib/commonjs/ui/navigation/types.js.map +1 -0
  76. package/lib/commonjs/ui/screens/AccountCenterScreen.js +313 -0
  77. package/lib/commonjs/ui/screens/AccountCenterScreen.js.map +1 -0
  78. package/lib/commonjs/ui/screens/AccountManagementDemo.js +299 -0
  79. package/lib/commonjs/ui/screens/AccountManagementDemo.js.map +1 -0
  80. package/lib/commonjs/ui/screens/AccountOverviewScreen.js +855 -0
  81. package/lib/commonjs/ui/screens/AccountOverviewScreen.js.map +1 -0
  82. package/lib/commonjs/ui/screens/AccountSettingsScreen.js +843 -0
  83. package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +1 -0
  84. package/lib/commonjs/ui/screens/AccountSwitcherScreen.js +788 -0
  85. package/lib/commonjs/ui/screens/AccountSwitcherScreen.js.map +1 -0
  86. package/lib/commonjs/ui/screens/AppInfoScreen.js +664 -0
  87. package/lib/commonjs/ui/screens/AppInfoScreen.js.map +1 -0
  88. package/lib/commonjs/ui/screens/BillingManagementScreen.js +636 -0
  89. package/lib/commonjs/ui/screens/BillingManagementScreen.js.map +1 -0
  90. package/lib/commonjs/ui/screens/FileManagementScreen.js +2515 -0
  91. package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -0
  92. package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +1620 -0
  93. package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +1 -0
  94. package/lib/commonjs/ui/screens/ProfileScreen.js +450 -0
  95. package/lib/commonjs/ui/screens/ProfileScreen.js.map +1 -0
  96. package/lib/commonjs/ui/screens/SessionManagementScreen.js +449 -0
  97. package/lib/commonjs/ui/screens/SessionManagementScreen.js.map +1 -0
  98. package/lib/commonjs/ui/screens/SignInScreen.js +1004 -0
  99. package/lib/commonjs/ui/screens/SignInScreen.js.map +1 -0
  100. package/lib/commonjs/ui/screens/SignUpScreen.js +937 -0
  101. package/lib/commonjs/ui/screens/SignUpScreen.js.map +1 -0
  102. package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js +88 -0
  103. package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js.map +1 -0
  104. package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js +364 -0
  105. package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js.map +1 -0
  106. package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js +227 -0
  107. package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js.map +1 -0
  108. package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js +148 -0
  109. package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -0
  110. package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js +127 -0
  111. package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js.map +1 -0
  112. package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js +105 -0
  113. package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js.map +1 -0
  114. package/lib/commonjs/ui/styles/FONTS.md +126 -0
  115. package/lib/commonjs/ui/styles/fonts.js +84 -0
  116. package/lib/commonjs/ui/styles/fonts.js.map +1 -0
  117. package/lib/commonjs/ui/styles/index.js +28 -0
  118. package/lib/commonjs/ui/styles/index.js.map +1 -0
  119. package/lib/commonjs/ui/styles/theme.js +121 -0
  120. package/lib/commonjs/ui/styles/theme.js.map +1 -0
  121. package/lib/commonjs/utils/deviceManager.js +173 -0
  122. package/lib/commonjs/utils/deviceManager.js.map +1 -0
  123. package/lib/commonjs/utils/index.js +13 -0
  124. package/lib/commonjs/utils/index.js.map +1 -0
  125. package/lib/commonjs/utils/polyfills.js +42 -0
  126. package/lib/commonjs/utils/polyfills.js.map +1 -0
  127. package/lib/module/assets/OxyLogo.svg +1 -0
  128. package/lib/module/assets/assets/OxyLogo.svg +1 -0
  129. package/lib/module/assets/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
  130. package/lib/module/assets/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
  131. package/lib/module/assets/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
  132. package/lib/module/assets/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
  133. package/lib/module/assets/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
  134. package/lib/module/assets/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
  135. package/lib/module/assets/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
  136. package/lib/module/assets/assets/icons/OxyServices.tsx +67 -0
  137. package/lib/module/assets/assets/icons/logo_OxyServices.svg +1 -0
  138. package/lib/module/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
  139. package/lib/module/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
  140. package/lib/module/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
  141. package/lib/module/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
  142. package/lib/module/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
  143. package/lib/module/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
  144. package/lib/module/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
  145. package/lib/module/assets/icons/OxyServices.js +46 -0
  146. package/lib/module/assets/icons/OxyServices.js.map +1 -0
  147. package/lib/module/assets/icons/logo_OxyServices.svg +1 -0
  148. package/lib/module/constants/version.js +21 -0
  149. package/lib/module/constants/version.js.map +1 -0
  150. package/lib/module/core/index.js +1634 -0
  151. package/lib/module/core/index.js.map +1 -0
  152. package/lib/module/index.js +48 -0
  153. package/lib/module/index.js.map +1 -0
  154. package/lib/module/lib/sonner.js +16 -0
  155. package/lib/module/lib/sonner.js.map +1 -0
  156. package/lib/module/models/interfaces.js +2 -0
  157. package/lib/module/models/interfaces.js.map +1 -0
  158. package/lib/module/models/secureSession.js +2 -0
  159. package/lib/module/models/secureSession.js.map +1 -0
  160. package/lib/module/node/index.js +23 -0
  161. package/lib/module/node/index.js.map +1 -0
  162. package/lib/module/ui/components/Avatar.js +93 -0
  163. package/lib/module/ui/components/Avatar.js.map +1 -0
  164. package/lib/module/ui/components/FollowButton.js +241 -0
  165. package/lib/module/ui/components/FollowButton.js.map +1 -0
  166. package/lib/module/ui/components/FontLoader.js +176 -0
  167. package/lib/module/ui/components/FontLoader.js.map +1 -0
  168. package/lib/module/ui/components/GroupedItem.js +104 -0
  169. package/lib/module/ui/components/GroupedItem.js.map +1 -0
  170. package/lib/module/ui/components/GroupedSection.js +28 -0
  171. package/lib/module/ui/components/GroupedSection.js.map +1 -0
  172. package/lib/module/ui/components/OxyLogo.js +49 -0
  173. package/lib/module/ui/components/OxyLogo.js.map +1 -0
  174. package/lib/module/ui/components/OxyProvider.js +511 -0
  175. package/lib/module/ui/components/OxyProvider.js.map +1 -0
  176. package/lib/module/ui/components/OxySignInButton.js +172 -0
  177. package/lib/module/ui/components/OxySignInButton.js.map +1 -0
  178. package/lib/module/ui/components/ProfileCard.js +119 -0
  179. package/lib/module/ui/components/ProfileCard.js.map +1 -0
  180. package/lib/module/ui/components/QuickActions.js +82 -0
  181. package/lib/module/ui/components/QuickActions.js.map +1 -0
  182. package/lib/module/ui/components/Section.js +31 -0
  183. package/lib/module/ui/components/Section.js.map +1 -0
  184. package/lib/module/ui/components/SectionTitle.js +30 -0
  185. package/lib/module/ui/components/SectionTitle.js.map +1 -0
  186. package/lib/module/ui/components/bottomSheet/index.js +5 -0
  187. package/lib/module/ui/components/bottomSheet/index.js.map +1 -0
  188. package/lib/module/ui/components/icon/OxyIcon.js +22 -0
  189. package/lib/module/ui/components/icon/OxyIcon.js.map +1 -0
  190. package/lib/module/ui/components/icon/index.js +4 -0
  191. package/lib/module/ui/components/icon/index.js.map +1 -0
  192. package/lib/module/ui/components/index.js +18 -0
  193. package/lib/module/ui/components/index.js.map +1 -0
  194. package/lib/module/ui/context/OxyContext.js +579 -0
  195. package/lib/module/ui/context/OxyContext.js.map +1 -0
  196. package/lib/module/ui/index.js +24 -0
  197. package/lib/module/ui/index.js.map +1 -0
  198. package/lib/module/ui/navigation/OxyRouter.js +257 -0
  199. package/lib/module/ui/navigation/OxyRouter.js.map +1 -0
  200. package/lib/module/ui/navigation/types.js +4 -0
  201. package/lib/module/ui/navigation/types.js.map +1 -0
  202. package/lib/module/ui/screens/AccountCenterScreen.js +308 -0
  203. package/lib/module/ui/screens/AccountCenterScreen.js.map +1 -0
  204. package/lib/module/ui/screens/AccountManagementDemo.js +296 -0
  205. package/lib/module/ui/screens/AccountManagementDemo.js.map +1 -0
  206. package/lib/module/ui/screens/AccountOverviewScreen.js +849 -0
  207. package/lib/module/ui/screens/AccountOverviewScreen.js.map +1 -0
  208. package/lib/module/ui/screens/AccountSettingsScreen.js +837 -0
  209. package/lib/module/ui/screens/AccountSettingsScreen.js.map +1 -0
  210. package/lib/module/ui/screens/AccountSwitcherScreen.js +782 -0
  211. package/lib/module/ui/screens/AccountSwitcherScreen.js.map +1 -0
  212. package/lib/module/ui/screens/AppInfoScreen.js +658 -0
  213. package/lib/module/ui/screens/AppInfoScreen.js.map +1 -0
  214. package/lib/module/ui/screens/BillingManagementScreen.js +631 -0
  215. package/lib/module/ui/screens/BillingManagementScreen.js.map +1 -0
  216. package/lib/module/ui/screens/FileManagementScreen.js +2510 -0
  217. package/lib/module/ui/screens/FileManagementScreen.js.map +1 -0
  218. package/lib/module/ui/screens/PremiumSubscriptionScreen.js +1615 -0
  219. package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +1 -0
  220. package/lib/module/ui/screens/ProfileScreen.js +444 -0
  221. package/lib/module/ui/screens/ProfileScreen.js.map +1 -0
  222. package/lib/module/ui/screens/SessionManagementScreen.js +444 -0
  223. package/lib/module/ui/screens/SessionManagementScreen.js.map +1 -0
  224. package/lib/module/ui/screens/SignInScreen.js +998 -0
  225. package/lib/module/ui/screens/SignInScreen.js.map +1 -0
  226. package/lib/module/ui/screens/SignUpScreen.js +932 -0
  227. package/lib/module/ui/screens/SignUpScreen.js.map +1 -0
  228. package/lib/module/ui/screens/karma/KarmaAboutScreen.js +83 -0
  229. package/lib/module/ui/screens/karma/KarmaAboutScreen.js.map +1 -0
  230. package/lib/module/ui/screens/karma/KarmaCenterScreen.js +358 -0
  231. package/lib/module/ui/screens/karma/KarmaCenterScreen.js.map +1 -0
  232. package/lib/module/ui/screens/karma/KarmaFAQScreen.js +222 -0
  233. package/lib/module/ui/screens/karma/KarmaFAQScreen.js.map +1 -0
  234. package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js +142 -0
  235. package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -0
  236. package/lib/module/ui/screens/karma/KarmaRewardsScreen.js +122 -0
  237. package/lib/module/ui/screens/karma/KarmaRewardsScreen.js.map +1 -0
  238. package/lib/module/ui/screens/karma/KarmaRulesScreen.js +100 -0
  239. package/lib/module/ui/screens/karma/KarmaRulesScreen.js.map +1 -0
  240. package/lib/module/ui/styles/FONTS.md +126 -0
  241. package/lib/module/ui/styles/fonts.js +81 -0
  242. package/lib/module/ui/styles/fonts.js.map +1 -0
  243. package/lib/module/ui/styles/index.js +5 -0
  244. package/lib/module/ui/styles/index.js.map +1 -0
  245. package/lib/module/ui/styles/theme.js +114 -0
  246. package/lib/module/ui/styles/theme.js.map +1 -0
  247. package/lib/module/utils/deviceManager.js +167 -0
  248. package/lib/module/utils/deviceManager.js.map +1 -0
  249. package/lib/module/utils/index.js +4 -0
  250. package/lib/module/utils/index.js.map +1 -0
  251. package/lib/module/utils/polyfills.js +36 -0
  252. package/lib/module/utils/polyfills.js.map +1 -0
  253. package/lib/typescript/assets/icons/OxyServices.d.ts +29 -0
  254. package/lib/typescript/assets/icons/OxyServices.d.ts.map +1 -0
  255. package/lib/typescript/constants/version.d.ts +14 -0
  256. package/lib/typescript/constants/version.d.ts.map +1 -0
  257. package/lib/typescript/core/index.d.ts +603 -0
  258. package/lib/typescript/core/index.d.ts.map +1 -0
  259. package/lib/typescript/index.d.ts +20 -0
  260. package/lib/typescript/index.d.ts.map +1 -0
  261. package/lib/typescript/lib/sonner.d.ts +6 -0
  262. package/lib/typescript/lib/sonner.d.ts.map +1 -0
  263. package/lib/typescript/models/interfaces.d.ts +179 -0
  264. package/lib/typescript/models/interfaces.d.ts.map +1 -0
  265. package/lib/typescript/models/secureSession.d.ts +27 -0
  266. package/lib/typescript/models/secureSession.d.ts.map +1 -0
  267. package/lib/typescript/node/index.d.ts +11 -0
  268. package/lib/typescript/node/index.d.ts.map +1 -0
  269. package/lib/typescript/ui/components/Avatar.d.ts +62 -0
  270. package/lib/typescript/ui/components/Avatar.d.ts.map +1 -0
  271. package/lib/typescript/ui/components/FollowButton.d.ts +92 -0
  272. package/lib/typescript/ui/components/FollowButton.d.ts.map +1 -0
  273. package/lib/typescript/ui/components/FontLoader.d.ts +15 -0
  274. package/lib/typescript/ui/components/FontLoader.d.ts.map +1 -0
  275. package/lib/typescript/ui/components/GroupedItem.d.ts +17 -0
  276. package/lib/typescript/ui/components/GroupedItem.d.ts.map +1 -0
  277. package/lib/typescript/ui/components/GroupedSection.d.ts +19 -0
  278. package/lib/typescript/ui/components/GroupedSection.d.ts.map +1 -0
  279. package/lib/typescript/ui/components/OxyLogo.d.ts +29 -0
  280. package/lib/typescript/ui/components/OxyLogo.d.ts.map +1 -0
  281. package/lib/typescript/ui/components/OxyProvider.d.ts +12 -0
  282. package/lib/typescript/ui/components/OxyProvider.d.ts.map +1 -0
  283. package/lib/typescript/ui/components/OxySignInButton.d.ts +70 -0
  284. package/lib/typescript/ui/components/OxySignInButton.d.ts.map +1 -0
  285. package/lib/typescript/ui/components/ProfileCard.d.ts +20 -0
  286. package/lib/typescript/ui/components/ProfileCard.d.ts.map +1 -0
  287. package/lib/typescript/ui/components/QuickActions.d.ts +15 -0
  288. package/lib/typescript/ui/components/QuickActions.d.ts.map +1 -0
  289. package/lib/typescript/ui/components/Section.d.ts +11 -0
  290. package/lib/typescript/ui/components/Section.d.ts.map +1 -0
  291. package/lib/typescript/ui/components/SectionTitle.d.ts +9 -0
  292. package/lib/typescript/ui/components/SectionTitle.d.ts.map +1 -0
  293. package/lib/typescript/ui/components/bottomSheet/index.d.ts +4 -0
  294. package/lib/typescript/ui/components/bottomSheet/index.d.ts.map +1 -0
  295. package/lib/typescript/ui/components/icon/OxyIcon.d.ts +10 -0
  296. package/lib/typescript/ui/components/icon/OxyIcon.d.ts.map +1 -0
  297. package/lib/typescript/ui/components/icon/index.d.ts +3 -0
  298. package/lib/typescript/ui/components/icon/index.d.ts.map +1 -0
  299. package/lib/typescript/ui/components/index.d.ts +13 -0
  300. package/lib/typescript/ui/components/index.d.ts.map +1 -0
  301. package/lib/typescript/ui/context/OxyContext.d.ts +42 -0
  302. package/lib/typescript/ui/context/OxyContext.d.ts.map +1 -0
  303. package/lib/typescript/ui/index.d.ts +15 -0
  304. package/lib/typescript/ui/index.d.ts.map +1 -0
  305. package/lib/typescript/ui/navigation/OxyRouter.d.ts +5 -0
  306. package/lib/typescript/ui/navigation/OxyRouter.d.ts.map +1 -0
  307. package/lib/typescript/ui/navigation/types.d.ts +116 -0
  308. package/lib/typescript/ui/navigation/types.d.ts.map +1 -0
  309. package/lib/typescript/ui/screens/AccountCenterScreen.d.ts +5 -0
  310. package/lib/typescript/ui/screens/AccountCenterScreen.d.ts.map +1 -0
  311. package/lib/typescript/ui/screens/AccountManagementDemo.d.ts +8 -0
  312. package/lib/typescript/ui/screens/AccountManagementDemo.d.ts.map +1 -0
  313. package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts +5 -0
  314. package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts.map +1 -0
  315. package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts +5 -0
  316. package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts.map +1 -0
  317. package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts +5 -0
  318. package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts.map +1 -0
  319. package/lib/typescript/ui/screens/AppInfoScreen.d.ts +5 -0
  320. package/lib/typescript/ui/screens/AppInfoScreen.d.ts.map +1 -0
  321. package/lib/typescript/ui/screens/BillingManagementScreen.d.ts +5 -0
  322. package/lib/typescript/ui/screens/BillingManagementScreen.d.ts.map +1 -0
  323. package/lib/typescript/ui/screens/FileManagementScreen.d.ts +8 -0
  324. package/lib/typescript/ui/screens/FileManagementScreen.d.ts.map +1 -0
  325. package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts +5 -0
  326. package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -0
  327. package/lib/typescript/ui/screens/ProfileScreen.d.ts +9 -0
  328. package/lib/typescript/ui/screens/ProfileScreen.d.ts.map +1 -0
  329. package/lib/typescript/ui/screens/SessionManagementScreen.d.ts +5 -0
  330. package/lib/typescript/ui/screens/SessionManagementScreen.d.ts.map +1 -0
  331. package/lib/typescript/ui/screens/SignInScreen.d.ts +5 -0
  332. package/lib/typescript/ui/screens/SignInScreen.d.ts.map +1 -0
  333. package/lib/typescript/ui/screens/SignUpScreen.d.ts +5 -0
  334. package/lib/typescript/ui/screens/SignUpScreen.d.ts.map +1 -0
  335. package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts +5 -0
  336. package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts.map +1 -0
  337. package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts +5 -0
  338. package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts.map +1 -0
  339. package/lib/typescript/ui/screens/karma/KarmaFAQScreen.d.ts +5 -0
  340. package/lib/typescript/ui/screens/karma/KarmaFAQScreen.d.ts.map +1 -0
  341. package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts +5 -0
  342. package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts.map +1 -0
  343. package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts +5 -0
  344. package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts.map +1 -0
  345. package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts +5 -0
  346. package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts.map +1 -0
  347. package/lib/typescript/ui/styles/fonts.d.ts +21 -0
  348. package/lib/typescript/ui/styles/fonts.d.ts.map +1 -0
  349. package/lib/typescript/ui/styles/index.d.ts +3 -0
  350. package/lib/typescript/ui/styles/index.d.ts.map +1 -0
  351. package/lib/typescript/ui/styles/theme.d.ts +68 -0
  352. package/lib/typescript/ui/styles/theme.d.ts.map +1 -0
  353. package/lib/typescript/utils/deviceManager.d.ts +66 -0
  354. package/lib/typescript/utils/deviceManager.d.ts.map +1 -0
  355. package/lib/typescript/utils/index.d.ts +3 -0
  356. package/lib/typescript/utils/index.d.ts.map +1 -0
  357. package/lib/typescript/utils/polyfills.d.ts +6 -0
  358. package/lib/typescript/utils/polyfills.d.ts.map +1 -0
  359. package/package.json +20 -4
@@ -0,0 +1,296 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import { View, Text, TouchableOpacity, StyleSheet, ScrollView } from 'react-native';
5
+ import OxyProvider from "../components/OxyProvider.js";
6
+ import { OxyServices } from "../../core/index.js";
7
+
8
+ /**
9
+ * Demo component showcasing the complete account management UI flow
10
+ * This demonstrates how all the account screens work together
11
+ */
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ const AccountManagementDemo = () => {
14
+ const oxyServices = new OxyServices({
15
+ baseURL: 'https://api.oxy.so'
16
+ });
17
+ return /*#__PURE__*/_jsxs(View, {
18
+ style: styles.container,
19
+ children: [/*#__PURE__*/_jsxs(ScrollView, {
20
+ style: styles.content,
21
+ children: [/*#__PURE__*/_jsx(Text, {
22
+ style: styles.title,
23
+ children: "Account Management System Demo"
24
+ }), /*#__PURE__*/_jsx(Text, {
25
+ style: styles.description,
26
+ children: "Complete account management flow with 5 interconnected screens:"
27
+ }), /*#__PURE__*/_jsxs(View, {
28
+ style: styles.screensList,
29
+ children: [/*#__PURE__*/_jsx(ScreenCard, {
30
+ title: "AccountCenterScreen",
31
+ description: "Main account hub and entry point",
32
+ features: ['User profile display', 'Quick access to all account features', 'Multi-account switching', 'Session management access'],
33
+ navigatesTo: ['AccountOverview', 'AccountSwitcher', 'AccountSettings', 'SessionManagement']
34
+ }), /*#__PURE__*/_jsx(ScreenCard, {
35
+ title: "AccountOverviewScreen",
36
+ description: "Comprehensive account information and management",
37
+ features: ['Detailed profile information', 'Account settings shortcuts', 'Subscription management', 'Privacy and security overview'],
38
+ navigatesTo: ['AccountSettings', 'SessionManagement']
39
+ }), /*#__PURE__*/_jsx(ScreenCard, {
40
+ title: "AccountSettingsScreen",
41
+ description: "Complete account configuration and preferences",
42
+ features: ['Profile editing (username, email, name)', 'Password management', 'Security settings', 'Notification preferences', 'Tabbed interface for organization'],
43
+ navigatesTo: ['Previous screen via goBack()']
44
+ }), /*#__PURE__*/_jsx(ScreenCard, {
45
+ title: "AccountSwitcherScreen",
46
+ description: "Multi-account management and switching",
47
+ features: ['View all saved accounts', 'Switch between accounts', 'Remove unwanted accounts', 'Device session management', 'Add new accounts'],
48
+ navigatesTo: ['SignIn', 'Account switching']
49
+ }), /*#__PURE__*/_jsx(ScreenCard, {
50
+ title: "SessionManagementScreen",
51
+ description: "Active session management across devices",
52
+ features: ['View all active sessions', 'Device information display', 'Logout specific sessions', 'Logout all sessions', 'Session security monitoring'],
53
+ navigatesTo: ['Session logout actions']
54
+ })]
55
+ }), /*#__PURE__*/_jsxs(View, {
56
+ style: styles.navigationFlow,
57
+ children: [/*#__PURE__*/_jsx(Text, {
58
+ style: styles.sectionTitle,
59
+ children: "Navigation Flow"
60
+ }), /*#__PURE__*/_jsx(Text, {
61
+ style: styles.flowDescription,
62
+ children: "The screens are designed with intuitive navigation patterns:"
63
+ }), /*#__PURE__*/_jsxs(View, {
64
+ style: styles.flowItem,
65
+ children: [/*#__PURE__*/_jsx(Text, {
66
+ style: styles.flowStep,
67
+ children: "1. Entry Point"
68
+ }), /*#__PURE__*/_jsx(Text, {
69
+ style: styles.flowText,
70
+ children: "Users typically start at AccountCenterScreen"
71
+ })]
72
+ }), /*#__PURE__*/_jsxs(View, {
73
+ style: styles.flowItem,
74
+ children: [/*#__PURE__*/_jsx(Text, {
75
+ style: styles.flowStep,
76
+ children: "2. Explore"
77
+ }), /*#__PURE__*/_jsx(Text, {
78
+ style: styles.flowText,
79
+ children: "Navigate to specific screens based on needs"
80
+ })]
81
+ }), /*#__PURE__*/_jsxs(View, {
82
+ style: styles.flowItem,
83
+ children: [/*#__PURE__*/_jsx(Text, {
84
+ style: styles.flowStep,
85
+ children: "3. Manage"
86
+ }), /*#__PURE__*/_jsx(Text, {
87
+ style: styles.flowText,
88
+ children: "Perform account actions in specialized screens"
89
+ })]
90
+ }), /*#__PURE__*/_jsxs(View, {
91
+ style: styles.flowItem,
92
+ children: [/*#__PURE__*/_jsx(Text, {
93
+ style: styles.flowStep,
94
+ children: "4. Return"
95
+ }), /*#__PURE__*/_jsx(Text, {
96
+ style: styles.flowText,
97
+ children: "Navigate back or to related screens seamlessly"
98
+ })]
99
+ })]
100
+ }), /*#__PURE__*/_jsxs(View, {
101
+ style: styles.demoSection,
102
+ children: [/*#__PURE__*/_jsx(Text, {
103
+ style: styles.sectionTitle,
104
+ children: "Try the Demo"
105
+ }), /*#__PURE__*/_jsx(TouchableOpacity, {
106
+ style: styles.demoButton,
107
+ children: /*#__PURE__*/_jsx(Text, {
108
+ style: styles.demoButtonText,
109
+ children: "Launch Account Center"
110
+ })
111
+ })]
112
+ })]
113
+ }), /*#__PURE__*/_jsx(OxyProvider, {
114
+ oxyServices: oxyServices,
115
+ initialScreen: "AccountCenter",
116
+ theme: "light",
117
+ autoPresent: false
118
+ })]
119
+ });
120
+ };
121
+ const ScreenCard = ({
122
+ title,
123
+ description,
124
+ features,
125
+ navigatesTo
126
+ }) => /*#__PURE__*/_jsxs(View, {
127
+ style: styles.screenCard,
128
+ children: [/*#__PURE__*/_jsx(Text, {
129
+ style: styles.screenTitle,
130
+ children: title
131
+ }), /*#__PURE__*/_jsx(Text, {
132
+ style: styles.screenDescription,
133
+ children: description
134
+ }), /*#__PURE__*/_jsx(Text, {
135
+ style: styles.featuresTitle,
136
+ children: "Features:"
137
+ }), features.map((feature, index) => /*#__PURE__*/_jsxs(Text, {
138
+ style: styles.feature,
139
+ children: ["\u2022 ", feature]
140
+ }, index)), /*#__PURE__*/_jsx(Text, {
141
+ style: styles.navigationTitle,
142
+ children: "Navigates to:"
143
+ }), navigatesTo.map((nav, index) => /*#__PURE__*/_jsxs(Text, {
144
+ style: styles.navigationItem,
145
+ children: ["\u2192 ", nav]
146
+ }, index))]
147
+ });
148
+ const styles = StyleSheet.create({
149
+ container: {
150
+ flex: 1,
151
+ backgroundColor: '#F5F5F5'
152
+ },
153
+ content: {
154
+ flex: 1,
155
+ padding: 20
156
+ },
157
+ title: {
158
+ fontSize: 28,
159
+ fontWeight: 'bold',
160
+ color: '#333',
161
+ marginBottom: 10,
162
+ textAlign: 'center'
163
+ },
164
+ description: {
165
+ fontSize: 16,
166
+ color: '#666',
167
+ marginBottom: 20,
168
+ textAlign: 'center',
169
+ lineHeight: 22
170
+ },
171
+ screensList: {
172
+ marginBottom: 30
173
+ },
174
+ screenCard: {
175
+ backgroundColor: '#FFFFFF',
176
+ borderRadius: 12,
177
+ padding: 20,
178
+ marginBottom: 16,
179
+ shadowColor: '#000',
180
+ shadowOffset: {
181
+ width: 0,
182
+ height: 2
183
+ },
184
+ shadowOpacity: 0.1,
185
+ shadowRadius: 4,
186
+ elevation: 3
187
+ },
188
+ screenTitle: {
189
+ fontSize: 20,
190
+ fontWeight: 'bold',
191
+ color: '#0066CC',
192
+ marginBottom: 8
193
+ },
194
+ screenDescription: {
195
+ fontSize: 14,
196
+ color: '#666',
197
+ marginBottom: 12,
198
+ lineHeight: 20
199
+ },
200
+ featuresTitle: {
201
+ fontSize: 16,
202
+ fontWeight: '600',
203
+ color: '#333',
204
+ marginBottom: 8
205
+ },
206
+ feature: {
207
+ fontSize: 14,
208
+ color: '#555',
209
+ marginBottom: 4,
210
+ marginLeft: 10
211
+ },
212
+ navigationTitle: {
213
+ fontSize: 16,
214
+ fontWeight: '600',
215
+ color: '#333',
216
+ marginTop: 12,
217
+ marginBottom: 8
218
+ },
219
+ navigationItem: {
220
+ fontSize: 14,
221
+ color: '#0066CC',
222
+ marginBottom: 4,
223
+ marginLeft: 10
224
+ },
225
+ navigationFlow: {
226
+ backgroundColor: '#FFFFFF',
227
+ borderRadius: 12,
228
+ padding: 20,
229
+ marginBottom: 30,
230
+ shadowColor: '#000',
231
+ shadowOffset: {
232
+ width: 0,
233
+ height: 2
234
+ },
235
+ shadowOpacity: 0.1,
236
+ shadowRadius: 4,
237
+ elevation: 3
238
+ },
239
+ sectionTitle: {
240
+ fontSize: 22,
241
+ fontWeight: 'bold',
242
+ color: '#333',
243
+ marginBottom: 12
244
+ },
245
+ flowDescription: {
246
+ fontSize: 14,
247
+ color: '#666',
248
+ marginBottom: 16,
249
+ lineHeight: 20
250
+ },
251
+ flowItem: {
252
+ flexDirection: 'row',
253
+ alignItems: 'flex-start',
254
+ marginBottom: 12
255
+ },
256
+ flowStep: {
257
+ fontSize: 14,
258
+ fontWeight: 'bold',
259
+ color: '#0066CC',
260
+ minWidth: 80
261
+ },
262
+ flowText: {
263
+ fontSize: 14,
264
+ color: '#555',
265
+ flex: 1,
266
+ lineHeight: 20
267
+ },
268
+ demoSection: {
269
+ backgroundColor: '#FFFFFF',
270
+ borderRadius: 12,
271
+ padding: 20,
272
+ alignItems: 'center',
273
+ shadowColor: '#000',
274
+ shadowOffset: {
275
+ width: 0,
276
+ height: 2
277
+ },
278
+ shadowOpacity: 0.1,
279
+ shadowRadius: 4,
280
+ elevation: 3
281
+ },
282
+ demoButton: {
283
+ backgroundColor: '#0066CC',
284
+ borderRadius: 25,
285
+ paddingHorizontal: 30,
286
+ paddingVertical: 12,
287
+ marginTop: 10
288
+ },
289
+ demoButtonText: {
290
+ color: '#FFFFFF',
291
+ fontSize: 16,
292
+ fontWeight: '600'
293
+ }
294
+ });
295
+ export default AccountManagementDemo;
296
+ //# sourceMappingURL=AccountManagementDemo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","View","Text","TouchableOpacity","StyleSheet","ScrollView","OxyProvider","OxyServices","jsx","_jsx","jsxs","_jsxs","AccountManagementDemo","oxyServices","baseURL","style","styles","container","children","content","title","description","screensList","ScreenCard","features","navigatesTo","navigationFlow","sectionTitle","flowDescription","flowItem","flowStep","flowText","demoSection","demoButton","demoButtonText","initialScreen","theme","autoPresent","screenCard","screenTitle","screenDescription","featuresTitle","map","feature","index","navigationTitle","nav","navigationItem","create","flex","backgroundColor","padding","fontSize","fontWeight","color","marginBottom","textAlign","lineHeight","borderRadius","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","marginLeft","marginTop","flexDirection","alignItems","minWidth","paddingHorizontal","paddingVertical"],"sourceRoot":"../../../../src","sources":["ui/screens/AccountManagementDemo.tsx"],"mappings":"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","ignoreList":[]}