@oxyhq/services 5.14.0 → 5.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +130 -54
- package/lib/commonjs/assets/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/commonjs/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/commonjs/core/HttpService.js +94 -4
- package/lib/commonjs/core/HttpService.js.map +1 -1
- package/lib/commonjs/core/OxyServices.base.js +3 -1
- package/lib/commonjs/core/OxyServices.base.js.map +1 -1
- package/lib/commonjs/core/mixins/OxyServices.assets.js +213 -22
- package/lib/commonjs/core/mixins/OxyServices.assets.js.map +1 -1
- package/lib/commonjs/core/mixins/OxyServices.auth.js +70 -99
- package/lib/commonjs/core/mixins/OxyServices.auth.js.map +1 -1
- package/lib/commonjs/crypto/index.js +33 -0
- package/lib/commonjs/crypto/index.js.map +1 -0
- package/lib/commonjs/crypto/keyManager.js +208 -0
- package/lib/commonjs/crypto/keyManager.js.map +1 -0
- package/lib/commonjs/crypto/recoveryPhrase.js +137 -0
- package/lib/commonjs/crypto/recoveryPhrase.js.map +1 -0
- package/lib/commonjs/crypto/signatureService.js +230 -0
- package/lib/commonjs/crypto/signatureService.js.map +1 -0
- package/lib/commonjs/i18n/locales/en-US.json +4 -0
- package/lib/commonjs/index.js +22 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/ui/components/ActivityIndicator.js +203 -0
- package/lib/commonjs/ui/components/ActivityIndicator.js.map +1 -0
- package/lib/commonjs/ui/components/AutoHeightScrollView.js +46 -0
- package/lib/commonjs/ui/components/AutoHeightScrollView.js.map +1 -0
- package/lib/commonjs/ui/components/BottomSheet.js +407 -0
- package/lib/commonjs/ui/components/BottomSheet.js.map +1 -0
- package/lib/commonjs/ui/components/BottomSheetRouter.js +366 -0
- package/lib/commonjs/ui/components/BottomSheetRouter.js.map +1 -0
- package/lib/commonjs/ui/components/CrossFadeIcon.js +106 -0
- package/lib/commonjs/ui/components/CrossFadeIcon.js.map +1 -0
- package/lib/commonjs/ui/components/EmptyState.js +41 -0
- package/lib/commonjs/ui/components/EmptyState.js.map +1 -0
- package/lib/commonjs/ui/components/GroupedItem.js +87 -82
- package/lib/commonjs/ui/components/GroupedItem.js.map +1 -1
- package/lib/commonjs/ui/components/GroupedSection.js +25 -25
- package/lib/commonjs/ui/components/GroupedSection.js.map +1 -1
- package/lib/commonjs/ui/components/Header.js +111 -47
- package/lib/commonjs/ui/components/Header.js.map +1 -1
- package/lib/commonjs/ui/components/HelperText.js +103 -0
- package/lib/commonjs/ui/components/HelperText.js.map +1 -0
- package/lib/commonjs/ui/components/Icon.js +109 -0
- package/lib/commonjs/ui/components/Icon.js.map +1 -0
- package/lib/commonjs/ui/components/IconButton/IconButton.js +159 -0
- package/lib/commonjs/ui/components/IconButton/IconButton.js.map +1 -0
- package/lib/commonjs/ui/components/IconButton/utils.js +155 -0
- package/lib/commonjs/ui/components/IconButton/utils.js.map +1 -0
- package/lib/commonjs/ui/components/LoadingState.js +47 -0
- package/lib/commonjs/ui/components/LoadingState.js.map +1 -0
- package/lib/commonjs/ui/components/OxyPayButton.js +1 -14
- package/lib/commonjs/ui/components/OxyPayButton.js.map +1 -1
- package/lib/commonjs/ui/components/OxyProvider.js +41 -391
- package/lib/commonjs/ui/components/OxyProvider.js.map +1 -1
- package/lib/commonjs/ui/components/OxySignInButton.js +9 -13
- package/lib/commonjs/ui/components/OxySignInButton.js.map +1 -1
- package/lib/commonjs/ui/components/ProfileCard.js +7 -4
- package/lib/commonjs/ui/components/ProfileCard.js.map +1 -1
- package/lib/commonjs/ui/components/QuickActions.js +7 -4
- package/lib/commonjs/ui/components/QuickActions.js.map +1 -1
- package/lib/commonjs/ui/components/Section.js +4 -1
- package/lib/commonjs/ui/components/Section.js.map +1 -1
- package/lib/commonjs/ui/components/SectionTitle.js +6 -3
- package/lib/commonjs/ui/components/SectionTitle.js.map +1 -1
- package/lib/commonjs/ui/components/SettingRow.js +77 -0
- package/lib/commonjs/ui/components/SettingRow.js.map +1 -0
- package/lib/commonjs/ui/components/StepBasedScreen.js +188 -172
- package/lib/commonjs/ui/components/StepBasedScreen.js.map +1 -1
- package/lib/commonjs/ui/components/Surface.js +258 -0
- package/lib/commonjs/ui/components/Surface.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Addons/Outline.js +46 -0
- package/lib/commonjs/ui/components/TextField/Addons/Outline.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Addons/Underline.js +53 -0
- package/lib/commonjs/ui/components/TextField/Addons/Underline.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.js +155 -0
- package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAdornment.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAffix.js +144 -0
- package/lib/commonjs/ui/components/TextField/Adornment/TextFieldAffix.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Adornment/TextFieldIcon.js +137 -0
- package/lib/commonjs/ui/components/TextField/Adornment/TextFieldIcon.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Adornment/enums.js +22 -0
- package/lib/commonjs/ui/components/TextField/Adornment/enums.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Adornment/types.js +6 -0
- package/lib/commonjs/ui/components/TextField/Adornment/types.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Adornment/utils.js +62 -0
- package/lib/commonjs/ui/components/TextField/Adornment/utils.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Label/InputLabel.js +176 -0
- package/lib/commonjs/ui/components/TextField/Label/InputLabel.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/Label/LabelBackground.js +84 -0
- package/lib/commonjs/ui/components/TextField/Label/LabelBackground.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/TextFieldFlat.js +377 -0
- package/lib/commonjs/ui/components/TextField/TextFieldFlat.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/TextFieldOutlined.js +361 -0
- package/lib/commonjs/ui/components/TextField/TextFieldOutlined.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/constants.js +50 -0
- package/lib/commonjs/ui/components/TextField/constants.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/helpers.js +490 -0
- package/lib/commonjs/ui/components/TextField/helpers.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/types.js +6 -0
- package/lib/commonjs/ui/components/TextField/types.js.map +1 -0
- package/lib/commonjs/ui/components/TextField.js +339 -0
- package/lib/commonjs/ui/components/TextField.js.map +1 -0
- package/lib/commonjs/ui/components/TouchableRipple/Pressable.js +12 -0
- package/lib/commonjs/ui/components/TouchableRipple/Pressable.js.map +1 -0
- package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.js +258 -0
- package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.js.map +1 -0
- package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.native.js +107 -0
- package/lib/commonjs/ui/components/TouchableRipple/TouchableRipple.native.js.map +1 -0
- package/lib/commonjs/ui/components/TouchableRipple/utils.js +56 -0
- package/lib/commonjs/ui/components/TouchableRipple/utils.js.map +1 -0
- package/lib/commonjs/ui/components/Typography/AnimatedText.js +62 -0
- package/lib/commonjs/ui/components/Typography/AnimatedText.js.map +1 -0
- package/lib/commonjs/ui/components/Typography/types.js +26 -0
- package/lib/commonjs/ui/components/Typography/types.js.map +1 -0
- package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js +171 -0
- package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js.map +1 -0
- package/lib/commonjs/ui/components/fileManagement/FileViewer.js +409 -0
- package/lib/commonjs/ui/components/fileManagement/FileViewer.js.map +1 -0
- package/lib/commonjs/ui/components/fileManagement/UploadPreview.js +181 -0
- package/lib/commonjs/ui/components/fileManagement/UploadPreview.js.map +1 -0
- package/lib/commonjs/ui/components/fileManagement/styles.js +868 -0
- package/lib/commonjs/ui/components/fileManagement/styles.js.map +1 -0
- package/lib/commonjs/ui/components/index.js +29 -1
- package/lib/commonjs/ui/components/index.js.map +1 -1
- package/lib/commonjs/ui/components/profile/EditBioModal.js +181 -0
- package/lib/commonjs/ui/components/profile/EditBioModal.js.map +1 -0
- package/lib/commonjs/ui/components/profile/EditDisplayNameModal.js +207 -0
- package/lib/commonjs/ui/components/profile/EditDisplayNameModal.js.map +1 -0
- package/lib/commonjs/ui/components/profile/EditEmailModal.js +184 -0
- package/lib/commonjs/ui/components/profile/EditEmailModal.js.map +1 -0
- package/lib/commonjs/ui/components/profile/EditLinksModal.js +315 -0
- package/lib/commonjs/ui/components/profile/EditLinksModal.js.map +1 -0
- package/lib/commonjs/ui/components/profile/EditLocationModal.js +273 -0
- package/lib/commonjs/ui/components/profile/EditLocationModal.js.map +1 -0
- package/lib/commonjs/ui/components/profile/EditUsernameModal.js +180 -0
- package/lib/commonjs/ui/components/profile/EditUsernameModal.js.map +1 -0
- package/lib/commonjs/ui/components/profile/TwoFactorSetupModal.js +467 -0
- package/lib/commonjs/ui/components/profile/TwoFactorSetupModal.js.map +1 -0
- package/lib/commonjs/ui/components/styles/overlay.js +85 -0
- package/lib/commonjs/ui/components/styles/overlay.js.map +1 -0
- package/lib/commonjs/ui/components/styles/shadow.js +132 -0
- package/lib/commonjs/ui/components/styles/shadow.js.map +1 -0
- package/lib/commonjs/ui/components/theming.js +116 -0
- package/lib/commonjs/ui/components/theming.js.map +1 -0
- package/lib/commonjs/ui/components/types.js +2 -0
- package/lib/commonjs/ui/components/types.js.map +1 -0
- package/lib/commonjs/ui/components/utils/forwardRef.js +18 -0
- package/lib/commonjs/ui/components/utils/forwardRef.js.map +1 -0
- package/lib/commonjs/ui/components/utils/hasTouchHandler.js +13 -0
- package/lib/commonjs/ui/components/utils/hasTouchHandler.js.map +1 -0
- package/lib/commonjs/ui/components/utils/roundLayoutSize.js +9 -0
- package/lib/commonjs/ui/components/utils/roundLayoutSize.js.map +1 -0
- package/lib/commonjs/ui/components/utils/splitStyles.js +50 -0
- package/lib/commonjs/ui/components/utils/splitStyles.js.map +1 -0
- package/lib/commonjs/ui/constants/iconColors.js +84 -0
- package/lib/commonjs/ui/constants/iconColors.js.map +1 -0
- package/lib/commonjs/ui/constants/spacing.js +50 -0
- package/lib/commonjs/ui/constants/spacing.js.map +1 -0
- package/lib/commonjs/ui/constants/theme.js +123 -0
- package/lib/commonjs/ui/constants/theme.js.map +1 -0
- package/lib/commonjs/ui/context/OxyContext.js +198 -853
- package/lib/commonjs/ui/context/OxyContext.js.map +1 -1
- package/lib/commonjs/ui/context/ThemeContext.js +36 -0
- package/lib/commonjs/ui/context/ThemeContext.js.map +1 -0
- package/lib/commonjs/ui/context/hooks/useAuthOperations.js +349 -0
- package/lib/commonjs/ui/context/hooks/useAuthOperations.js.map +1 -0
- package/lib/commonjs/ui/context/hooks/useDeviceManagement.js +73 -0
- package/lib/commonjs/ui/context/hooks/useDeviceManagement.js.map +1 -0
- package/lib/commonjs/ui/context/hooks/useLanguageManagement.js +112 -0
- package/lib/commonjs/ui/context/hooks/useLanguageManagement.js.map +1 -0
- package/lib/commonjs/ui/context/hooks/useSessionManagement.js +261 -0
- package/lib/commonjs/ui/context/hooks/useSessionManagement.js.map +1 -0
- package/lib/commonjs/ui/context/hooks/useStorage.js +79 -0
- package/lib/commonjs/ui/context/hooks/useStorage.js.map +1 -0
- package/lib/commonjs/ui/context/utils/errorHandlers.js +90 -0
- package/lib/commonjs/ui/context/utils/errorHandlers.js.map +1 -0
- package/lib/commonjs/ui/context/utils/sessionHelpers.js +103 -0
- package/lib/commonjs/ui/context/utils/sessionHelpers.js.map +1 -0
- package/lib/commonjs/ui/context/utils/storageHelpers.js +119 -0
- package/lib/commonjs/ui/context/utils/storageHelpers.js.map +1 -0
- package/lib/commonjs/ui/hooks/index.js +14 -0
- package/lib/commonjs/ui/hooks/index.js.map +1 -1
- package/lib/commonjs/ui/hooks/use-color-scheme.js +29 -0
- package/lib/commonjs/ui/hooks/use-color-scheme.js.map +1 -0
- package/lib/commonjs/ui/hooks/use-haptic-press.js +21 -0
- package/lib/commonjs/ui/hooks/use-haptic-press.js.map +1 -0
- package/lib/commonjs/ui/hooks/useAssets.js.map +1 -1
- package/lib/commonjs/ui/hooks/useDeviceManagement.js +73 -0
- package/lib/commonjs/ui/hooks/useDeviceManagement.js.map +1 -0
- package/lib/commonjs/ui/hooks/useLanguageManagement.js +112 -0
- package/lib/commonjs/ui/hooks/useLanguageManagement.js.map +1 -0
- package/lib/commonjs/ui/hooks/useProfileEditing.js +123 -0
- package/lib/commonjs/ui/hooks/useProfileEditing.js.map +1 -0
- package/lib/commonjs/ui/hooks/useSessionManagement.js +261 -0
- package/lib/commonjs/ui/hooks/useSessionManagement.js.map +1 -0
- package/lib/commonjs/ui/hooks/useStorage.js +79 -0
- package/lib/commonjs/ui/hooks/useStorage.js.map +1 -0
- package/lib/commonjs/ui/hooks/useThemeColors.js +31 -0
- package/lib/commonjs/ui/hooks/useThemeColors.js.map +1 -0
- package/lib/commonjs/ui/hooks/useThemeStyles.js +69 -0
- package/lib/commonjs/ui/hooks/useThemeStyles.js.map +1 -0
- package/lib/commonjs/ui/index.js +1 -4
- package/lib/commonjs/ui/index.js.map +1 -1
- package/lib/commonjs/ui/navigation/bottomSheetManager.js +180 -0
- package/lib/commonjs/ui/navigation/bottomSheetManager.js.map +1 -0
- package/lib/commonjs/ui/navigation/routes.js +80 -154
- package/lib/commonjs/ui/navigation/routes.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountCenterScreen.js +67 -67
- package/lib/commonjs/ui/screens/AccountCenterScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountOverviewScreen.js +217 -98
- package/lib/commonjs/ui/screens/AccountOverviewScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js +514 -429
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js +44 -59
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js +12 -19
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/AppInfoScreen.js +36 -43
- package/lib/commonjs/ui/screens/AppInfoScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/FeedbackScreen.js +14 -14
- package/lib/commonjs/ui/screens/FeedbackScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/FileManagementScreen.js +674 -1968
- package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/HelpSupportScreen.js +26 -23
- package/lib/commonjs/ui/screens/HelpSupportScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/HistoryViewScreen.js +19 -59
- package/lib/commonjs/ui/screens/HistoryViewScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +79 -170
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +13 -40
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/OxyAuthScreen.js +436 -0
- package/lib/commonjs/ui/screens/OxyAuthScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js +18 -24
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +21 -9
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +180 -252
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/ProfileScreen.js +7 -5
- package/lib/commonjs/ui/screens/ProfileScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js +32 -70
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js +26 -99
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/SessionManagementScreen.js +24 -16
- package/lib/commonjs/ui/screens/SessionManagementScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/UserLinksScreen.js +8 -10
- package/lib/commonjs/ui/screens/UserLinksScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +64 -67
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js +11 -8
- package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js +124 -122
- package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js +99 -112
- package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js +12 -9
- package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js +552 -79
- package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js.map +1 -1
- package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js +12 -8
- package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js.map +1 -1
- package/lib/commonjs/ui/styles/authStyles.js +5 -11
- package/lib/commonjs/ui/styles/authStyles.js.map +1 -1
- package/lib/commonjs/ui/styles/spacing.js +60 -2
- package/lib/commonjs/ui/styles/spacing.js.map +1 -1
- package/lib/commonjs/ui/styles/theme.js +1 -1
- package/lib/commonjs/ui/types/fileManagement.js +6 -0
- package/lib/commonjs/ui/types/fileManagement.js.map +1 -0
- package/lib/commonjs/ui/types/navigation.js +6 -0
- package/lib/commonjs/ui/types/navigation.js.map +1 -0
- package/lib/commonjs/ui/utils/colorUtils.js +52 -0
- package/lib/commonjs/ui/utils/colorUtils.js.map +1 -0
- package/lib/commonjs/ui/utils/errorHandlers.js +90 -0
- package/lib/commonjs/ui/utils/errorHandlers.js.map +1 -0
- package/lib/commonjs/ui/utils/fileManagement.js +181 -0
- package/lib/commonjs/ui/utils/fileManagement.js.map +1 -0
- package/lib/commonjs/ui/utils/sessionHelpers.js +103 -0
- package/lib/commonjs/ui/utils/sessionHelpers.js.map +1 -0
- package/lib/commonjs/ui/utils/storageHelpers.js +119 -0
- package/lib/commonjs/ui/utils/storageHelpers.js.map +1 -0
- package/lib/commonjs/ui/utils/themeUtils.js +47 -0
- package/lib/commonjs/ui/utils/themeUtils.js.map +1 -0
- package/lib/commonjs/ui/utils/user-utils.js +53 -0
- package/lib/commonjs/ui/utils/user-utils.js.map +1 -0
- package/lib/commonjs/utils/errorUtils.js +14 -4
- package/lib/commonjs/utils/errorUtils.js.map +1 -1
- package/lib/module/assets/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/module/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/module/core/HttpService.js +94 -4
- package/lib/module/core/HttpService.js.map +1 -1
- package/lib/module/core/OxyServices.base.js +3 -1
- package/lib/module/core/OxyServices.base.js.map +1 -1
- package/lib/module/core/mixins/OxyServices.assets.js +212 -20
- package/lib/module/core/mixins/OxyServices.assets.js.map +1 -1
- package/lib/module/core/mixins/OxyServices.auth.js +70 -99
- package/lib/module/core/mixins/OxyServices.auth.js.map +1 -1
- package/lib/module/crypto/index.js +16 -0
- package/lib/module/crypto/index.js.map +1 -0
- package/lib/module/crypto/keyManager.js +204 -0
- package/lib/module/crypto/keyManager.js.map +1 -0
- package/lib/module/crypto/recoveryPhrase.js +131 -0
- package/lib/module/crypto/recoveryPhrase.js.map +1 -0
- package/lib/module/crypto/signatureService.js +227 -0
- package/lib/module/crypto/signatureService.js.map +1 -0
- package/lib/module/i18n/locales/en-US.json +4 -0
- package/lib/module/index.js +2 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/ui/components/ActivityIndicator.js +198 -0
- package/lib/module/ui/components/ActivityIndicator.js.map +1 -0
- package/lib/module/ui/components/AutoHeightScrollView.js +41 -0
- package/lib/module/ui/components/AutoHeightScrollView.js.map +1 -0
- package/lib/module/ui/components/BottomSheet.js +402 -0
- package/lib/module/ui/components/BottomSheet.js.map +1 -0
- package/lib/module/ui/components/BottomSheetRouter.js +356 -0
- package/lib/module/ui/components/BottomSheetRouter.js.map +1 -0
- package/lib/module/ui/components/CrossFadeIcon.js +101 -0
- package/lib/module/ui/components/CrossFadeIcon.js.map +1 -0
- package/lib/module/ui/components/EmptyState.js +36 -0
- package/lib/module/ui/components/EmptyState.js.map +1 -0
- package/lib/module/ui/components/GroupedItem.js +88 -82
- package/lib/module/ui/components/GroupedItem.js.map +1 -1
- package/lib/module/ui/components/GroupedSection.js +23 -23
- package/lib/module/ui/components/GroupedSection.js.map +1 -1
- package/lib/module/ui/components/Header.js +109 -46
- package/lib/module/ui/components/Header.js.map +1 -1
- package/lib/module/ui/components/HelperText.js +99 -0
- package/lib/module/ui/components/HelperText.js.map +1 -0
- package/lib/module/ui/components/Icon.js +102 -0
- package/lib/module/ui/components/Icon.js.map +1 -0
- package/lib/module/ui/components/IconButton/IconButton.js +153 -0
- package/lib/module/ui/components/IconButton/IconButton.js.map +1 -0
- package/lib/module/ui/components/IconButton/utils.js +149 -0
- package/lib/module/ui/components/IconButton/utils.js.map +1 -0
- package/lib/module/ui/components/LoadingState.js +42 -0
- package/lib/module/ui/components/LoadingState.js.map +1 -0
- package/lib/module/ui/components/OxyPayButton.js +1 -14
- package/lib/module/ui/components/OxyPayButton.js.map +1 -1
- package/lib/module/ui/components/OxyProvider.js +45 -396
- package/lib/module/ui/components/OxyProvider.js.map +1 -1
- package/lib/module/ui/components/OxySignInButton.js +9 -13
- package/lib/module/ui/components/OxySignInButton.js.map +1 -1
- package/lib/module/ui/components/ProfileCard.js +7 -4
- package/lib/module/ui/components/ProfileCard.js.map +1 -1
- package/lib/module/ui/components/QuickActions.js +7 -4
- package/lib/module/ui/components/QuickActions.js.map +1 -1
- package/lib/module/ui/components/Section.js +4 -1
- package/lib/module/ui/components/Section.js.map +1 -1
- package/lib/module/ui/components/SectionTitle.js +6 -3
- package/lib/module/ui/components/SectionTitle.js.map +1 -1
- package/lib/module/ui/components/SettingRow.js +72 -0
- package/lib/module/ui/components/SettingRow.js.map +1 -0
- package/lib/module/ui/components/StepBasedScreen.js +190 -174
- package/lib/module/ui/components/StepBasedScreen.js.map +1 -1
- package/lib/module/ui/components/Surface.js +252 -0
- package/lib/module/ui/components/Surface.js.map +1 -0
- package/lib/module/ui/components/TextField/Addons/Outline.js +40 -0
- package/lib/module/ui/components/TextField/Addons/Outline.js.map +1 -0
- package/lib/module/ui/components/TextField/Addons/Underline.js +47 -0
- package/lib/module/ui/components/TextField/Addons/Underline.js.map +1 -0
- package/lib/module/ui/components/TextField/Adornment/TextFieldAdornment.js +148 -0
- package/lib/module/ui/components/TextField/Adornment/TextFieldAdornment.js.map +1 -0
- package/lib/module/ui/components/TextField/Adornment/TextFieldAffix.js +141 -0
- package/lib/module/ui/components/TextField/Adornment/TextFieldAffix.js.map +1 -0
- package/lib/module/ui/components/TextField/Adornment/TextFieldIcon.js +135 -0
- package/lib/module/ui/components/TextField/Adornment/TextFieldIcon.js.map +1 -0
- package/lib/module/ui/components/TextField/Adornment/enums.js +18 -0
- package/lib/module/ui/components/TextField/Adornment/enums.js.map +1 -0
- package/lib/module/ui/components/TextField/Adornment/types.js +4 -0
- package/lib/module/ui/components/TextField/Adornment/types.js.map +1 -0
- package/lib/module/ui/components/TextField/Adornment/utils.js +57 -0
- package/lib/module/ui/components/TextField/Adornment/utils.js.map +1 -0
- package/lib/module/ui/components/TextField/Label/InputLabel.js +171 -0
- package/lib/module/ui/components/TextField/Label/InputLabel.js.map +1 -0
- package/lib/module/ui/components/TextField/Label/LabelBackground.js +78 -0
- package/lib/module/ui/components/TextField/Label/LabelBackground.js.map +1 -0
- package/lib/module/ui/components/TextField/TextFieldFlat.js +372 -0
- package/lib/module/ui/components/TextField/TextFieldFlat.js.map +1 -0
- package/lib/module/ui/components/TextField/TextFieldOutlined.js +355 -0
- package/lib/module/ui/components/TextField/TextFieldOutlined.js.map +1 -0
- package/lib/module/ui/components/TextField/constants.js +46 -0
- package/lib/module/ui/components/TextField/constants.js.map +1 -0
- package/lib/module/ui/components/TextField/helpers.js +472 -0
- package/lib/module/ui/components/TextField/helpers.js.map +1 -0
- package/lib/module/ui/components/TextField/types.js +4 -0
- package/lib/module/ui/components/TextField/types.js.map +1 -0
- package/lib/module/ui/components/TextField.js +333 -0
- package/lib/module/ui/components/TextField.js.map +1 -0
- package/lib/module/ui/components/TouchableRipple/Pressable.js +9 -0
- package/lib/module/ui/components/TouchableRipple/Pressable.js.map +1 -0
- package/lib/module/ui/components/TouchableRipple/TouchableRipple.js +253 -0
- package/lib/module/ui/components/TouchableRipple/TouchableRipple.js.map +1 -0
- package/lib/module/ui/components/TouchableRipple/TouchableRipple.native.js +101 -0
- package/lib/module/ui/components/TouchableRipple/TouchableRipple.native.js.map +1 -0
- package/lib/module/ui/components/TouchableRipple/utils.js +50 -0
- package/lib/module/ui/components/TouchableRipple/utils.js.map +1 -0
- package/lib/module/ui/components/Typography/AnimatedText.js +56 -0
- package/lib/module/ui/components/Typography/AnimatedText.js.map +1 -0
- package/lib/module/ui/components/Typography/types.js +22 -0
- package/lib/module/ui/components/Typography/types.js.map +1 -0
- package/lib/module/ui/components/fileManagement/FileDetailsModal.js +165 -0
- package/lib/module/ui/components/fileManagement/FileDetailsModal.js.map +1 -0
- package/lib/module/ui/components/fileManagement/FileViewer.js +402 -0
- package/lib/module/ui/components/fileManagement/FileViewer.js.map +1 -0
- package/lib/module/ui/components/fileManagement/UploadPreview.js +175 -0
- package/lib/module/ui/components/fileManagement/UploadPreview.js.map +1 -0
- package/lib/module/ui/components/fileManagement/styles.js +864 -0
- package/lib/module/ui/components/fileManagement/styles.js.map +1 -0
- package/lib/module/ui/components/index.js +4 -1
- package/lib/module/ui/components/index.js.map +1 -1
- package/lib/module/ui/components/profile/EditBioModal.js +175 -0
- package/lib/module/ui/components/profile/EditBioModal.js.map +1 -0
- package/lib/module/ui/components/profile/EditDisplayNameModal.js +201 -0
- package/lib/module/ui/components/profile/EditDisplayNameModal.js.map +1 -0
- package/lib/module/ui/components/profile/EditEmailModal.js +178 -0
- package/lib/module/ui/components/profile/EditEmailModal.js.map +1 -0
- package/lib/module/ui/components/profile/EditLinksModal.js +309 -0
- package/lib/module/ui/components/profile/EditLinksModal.js.map +1 -0
- package/lib/module/ui/components/profile/EditLocationModal.js +267 -0
- package/lib/module/ui/components/profile/EditLocationModal.js.map +1 -0
- package/lib/module/ui/components/profile/EditUsernameModal.js +174 -0
- package/lib/module/ui/components/profile/EditUsernameModal.js.map +1 -0
- package/lib/module/ui/components/profile/TwoFactorSetupModal.js +460 -0
- package/lib/module/ui/components/profile/TwoFactorSetupModal.js.map +1 -0
- package/lib/module/ui/components/styles/overlay.js +80 -0
- package/lib/module/ui/components/styles/overlay.js.map +1 -0
- package/lib/module/ui/components/styles/shadow.js +128 -0
- package/lib/module/ui/components/styles/shadow.js.map +1 -0
- package/lib/module/ui/components/theming.js +111 -0
- package/lib/module/ui/components/theming.js.map +1 -0
- package/lib/module/ui/components/types.js +2 -0
- package/lib/module/ui/components/types.js.map +1 -0
- package/lib/module/ui/components/utils/forwardRef.js +13 -0
- package/lib/module/ui/components/utils/forwardRef.js.map +1 -0
- package/lib/module/ui/components/utils/hasTouchHandler.js +9 -0
- package/lib/module/ui/components/utils/hasTouchHandler.js.map +1 -0
- package/lib/module/ui/components/utils/roundLayoutSize.js +4 -0
- package/lib/module/ui/components/utils/roundLayoutSize.js.map +1 -0
- package/lib/module/ui/components/utils/splitStyles.js +46 -0
- package/lib/module/ui/components/utils/splitStyles.js.map +1 -0
- package/lib/module/ui/constants/iconColors.js +78 -0
- package/lib/module/ui/constants/iconColors.js.map +1 -0
- package/lib/module/ui/constants/spacing.js +45 -0
- package/lib/module/ui/constants/spacing.js.map +1 -0
- package/lib/module/ui/constants/theme.js +119 -0
- package/lib/module/ui/constants/theme.js.map +1 -0
- package/lib/module/ui/context/OxyContext.js +199 -855
- package/lib/module/ui/context/OxyContext.js.map +1 -1
- package/lib/module/ui/context/ThemeContext.js +29 -0
- package/lib/module/ui/context/ThemeContext.js.map +1 -0
- package/lib/module/ui/context/hooks/useAuthOperations.js +344 -0
- package/lib/module/ui/context/hooks/useAuthOperations.js.map +1 -0
- package/lib/module/ui/context/hooks/useDeviceManagement.js +68 -0
- package/lib/module/ui/context/hooks/useDeviceManagement.js.map +1 -0
- package/lib/module/ui/context/hooks/useLanguageManagement.js +107 -0
- package/lib/module/ui/context/hooks/useLanguageManagement.js.map +1 -0
- package/lib/module/ui/context/hooks/useSessionManagement.js +256 -0
- package/lib/module/ui/context/hooks/useSessionManagement.js.map +1 -0
- package/lib/module/ui/context/hooks/useStorage.js +74 -0
- package/lib/module/ui/context/hooks/useStorage.js.map +1 -0
- package/lib/module/ui/context/utils/errorHandlers.js +83 -0
- package/lib/module/ui/context/utils/errorHandlers.js.map +1 -0
- package/lib/module/ui/context/utils/sessionHelpers.js +96 -0
- package/lib/module/ui/context/utils/sessionHelpers.js.map +1 -0
- package/lib/module/ui/context/utils/storageHelpers.js +111 -0
- package/lib/module/ui/context/utils/storageHelpers.js.map +1 -0
- package/lib/module/ui/hooks/index.js +2 -0
- package/lib/module/ui/hooks/index.js.map +1 -1
- package/lib/module/ui/hooks/use-color-scheme.js +26 -0
- package/lib/module/ui/hooks/use-color-scheme.js.map +1 -0
- package/lib/module/ui/hooks/use-haptic-press.js +17 -0
- package/lib/module/ui/hooks/use-haptic-press.js.map +1 -0
- package/lib/module/ui/hooks/useAssets.js.map +1 -1
- package/lib/module/ui/hooks/useDeviceManagement.js +68 -0
- package/lib/module/ui/hooks/useDeviceManagement.js.map +1 -0
- package/lib/module/ui/hooks/useLanguageManagement.js +107 -0
- package/lib/module/ui/hooks/useLanguageManagement.js.map +1 -0
- package/lib/module/ui/hooks/useProfileEditing.js +118 -0
- package/lib/module/ui/hooks/useProfileEditing.js.map +1 -0
- package/lib/module/ui/hooks/useSessionManagement.js +256 -0
- package/lib/module/ui/hooks/useSessionManagement.js.map +1 -0
- package/lib/module/ui/hooks/useStorage.js +74 -0
- package/lib/module/ui/hooks/useStorage.js.map +1 -0
- package/lib/module/ui/hooks/useThemeColors.js +27 -0
- package/lib/module/ui/hooks/useThemeColors.js.map +1 -0
- package/lib/module/ui/hooks/useThemeStyles.js +64 -0
- package/lib/module/ui/hooks/useThemeStyles.js.map +1 -0
- package/lib/module/ui/index.js +2 -4
- package/lib/module/ui/index.js.map +1 -1
- package/lib/module/ui/navigation/bottomSheetManager.js +168 -0
- package/lib/module/ui/navigation/bottomSheetManager.js.map +1 -0
- package/lib/module/ui/navigation/routes.js +77 -152
- package/lib/module/ui/navigation/routes.js.map +1 -1
- package/lib/module/ui/screens/AccountCenterScreen.js +67 -67
- package/lib/module/ui/screens/AccountCenterScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountOverviewScreen.js +218 -100
- package/lib/module/ui/screens/AccountOverviewScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountSettingsScreen.js +515 -430
- package/lib/module/ui/screens/AccountSettingsScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountSwitcherScreen.js +45 -60
- package/lib/module/ui/screens/AccountSwitcherScreen.js.map +1 -1
- package/lib/module/ui/screens/AccountVerificationScreen.js +12 -19
- package/lib/module/ui/screens/AccountVerificationScreen.js.map +1 -1
- package/lib/module/ui/screens/AppInfoScreen.js +36 -43
- package/lib/module/ui/screens/AppInfoScreen.js.map +1 -1
- package/lib/module/ui/screens/FeedbackScreen.js +14 -14
- package/lib/module/ui/screens/FeedbackScreen.js.map +1 -1
- package/lib/module/ui/screens/FileManagementScreen.js +670 -1965
- package/lib/module/ui/screens/FileManagementScreen.js.map +1 -1
- package/lib/module/ui/screens/HelpSupportScreen.js +26 -23
- package/lib/module/ui/screens/HelpSupportScreen.js.map +1 -1
- package/lib/module/ui/screens/HistoryViewScreen.js +22 -62
- package/lib/module/ui/screens/HistoryViewScreen.js.map +1 -1
- package/lib/module/ui/screens/LanguageSelectorScreen.js +80 -171
- package/lib/module/ui/screens/LanguageSelectorScreen.js.map +1 -1
- package/lib/module/ui/screens/LegalDocumentsScreen.js +16 -43
- package/lib/module/ui/screens/LegalDocumentsScreen.js.map +1 -1
- package/lib/module/ui/screens/OxyAuthScreen.js +432 -0
- package/lib/module/ui/screens/OxyAuthScreen.js.map +1 -0
- package/lib/module/ui/screens/PaymentGatewayScreen.js +18 -24
- package/lib/module/ui/screens/PaymentGatewayScreen.js.map +1 -1
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js +21 -9
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
- package/lib/module/ui/screens/PrivacySettingsScreen.js +167 -239
- package/lib/module/ui/screens/PrivacySettingsScreen.js.map +1 -1
- package/lib/module/ui/screens/ProfileScreen.js +7 -5
- package/lib/module/ui/screens/ProfileScreen.js.map +1 -1
- package/lib/module/ui/screens/SavesCollectionsScreen.js +35 -73
- package/lib/module/ui/screens/SavesCollectionsScreen.js.map +1 -1
- package/lib/module/ui/screens/SearchSettingsScreen.js +29 -102
- package/lib/module/ui/screens/SearchSettingsScreen.js.map +1 -1
- package/lib/module/ui/screens/SessionManagementScreen.js +24 -16
- package/lib/module/ui/screens/SessionManagementScreen.js.map +1 -1
- package/lib/module/ui/screens/UserLinksScreen.js +8 -10
- package/lib/module/ui/screens/UserLinksScreen.js.map +1 -1
- package/lib/module/ui/screens/WelcomeNewUserScreen.js +65 -68
- package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaAboutScreen.js +11 -8
- package/lib/module/ui/screens/karma/KarmaAboutScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaCenterScreen.js +124 -121
- package/lib/module/ui/screens/karma/KarmaCenterScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaFAQScreen.js +101 -114
- package/lib/module/ui/screens/karma/KarmaFAQScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js +12 -9
- package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaRewardsScreen.js +554 -81
- package/lib/module/ui/screens/karma/KarmaRewardsScreen.js.map +1 -1
- package/lib/module/ui/screens/karma/KarmaRulesScreen.js +12 -8
- package/lib/module/ui/screens/karma/KarmaRulesScreen.js.map +1 -1
- package/lib/module/ui/styles/authStyles.js +5 -11
- package/lib/module/ui/styles/authStyles.js.map +1 -1
- package/lib/module/ui/styles/spacing.js +12 -2
- package/lib/module/ui/styles/spacing.js.map +1 -1
- package/lib/module/ui/styles/theme.js +1 -1
- package/lib/module/ui/types/fileManagement.js +4 -0
- package/lib/module/ui/types/fileManagement.js.map +1 -0
- package/lib/module/ui/types/navigation.js +4 -0
- package/lib/module/ui/types/navigation.js.map +1 -0
- package/lib/module/ui/utils/colorUtils.js +46 -0
- package/lib/module/ui/utils/colorUtils.js.map +1 -0
- package/lib/module/ui/utils/errorHandlers.js +83 -0
- package/lib/module/ui/utils/errorHandlers.js.map +1 -0
- package/lib/module/ui/utils/fileManagement.js +172 -0
- package/lib/module/ui/utils/fileManagement.js.map +1 -0
- package/lib/module/ui/utils/sessionHelpers.js +96 -0
- package/lib/module/ui/utils/sessionHelpers.js.map +1 -0
- package/lib/module/ui/utils/storageHelpers.js +111 -0
- package/lib/module/ui/utils/storageHelpers.js.map +1 -0
- package/lib/module/ui/utils/themeUtils.js +41 -0
- package/lib/module/ui/utils/themeUtils.js.map +1 -0
- package/lib/module/ui/utils/user-utils.js +46 -0
- package/lib/module/ui/utils/user-utils.js.map +1 -0
- package/lib/module/utils/errorUtils.js +14 -4
- package/lib/module/utils/errorUtils.js.map +1 -1
- package/lib/typescript/core/HttpService.d.ts +48 -0
- package/lib/typescript/core/HttpService.d.ts.map +1 -1
- package/lib/typescript/core/OxyServices.base.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.analytics.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.assets.d.ts +23 -1
- package/lib/typescript/core/mixins/OxyServices.assets.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.auth.d.ts +70 -42
- package/lib/typescript/core/mixins/OxyServices.auth.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.developer.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.devices.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.karma.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.language.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.location.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.payment.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.privacy.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.totp.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.user.d.ts.map +1 -1
- package/lib/typescript/core/mixins/OxyServices.utility.d.ts.map +1 -1
- package/lib/typescript/core/mixins/index.d.ts +26 -34
- package/lib/typescript/core/mixins/index.d.ts.map +1 -1
- package/lib/typescript/crypto/index.d.ts +11 -0
- package/lib/typescript/crypto/index.d.ts.map +1 -0
- package/lib/typescript/crypto/keyManager.d.ts +73 -0
- package/lib/typescript/crypto/keyManager.d.ts.map +1 -0
- package/lib/typescript/crypto/recoveryPhrase.d.ts +57 -0
- package/lib/typescript/crypto/recoveryPhrase.d.ts.map +1 -0
- package/lib/typescript/crypto/signatureService.d.ts +80 -0
- package/lib/typescript/crypto/signatureService.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +2 -0
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/models/interfaces.d.ts +1 -0
- package/lib/typescript/models/interfaces.d.ts.map +1 -1
- package/lib/typescript/types/bip39.d.ts +28 -0
- package/lib/typescript/types/color.d.ts +18 -0
- package/lib/typescript/types/elliptic.d.ts +60 -0
- package/lib/typescript/types/expo-crypto.d.ts +28 -0
- package/lib/typescript/types/expo-random.d.ts +8 -0
- package/lib/typescript/types/expo-secure-store.d.ts +20 -0
- package/lib/typescript/types/expo-vector-icons.d.ts +9 -0
- package/lib/typescript/ui/components/ActivityIndicator.d.ts +45 -0
- package/lib/typescript/ui/components/ActivityIndicator.d.ts.map +1 -0
- package/lib/typescript/ui/components/AutoHeightScrollView.d.ts +23 -0
- package/lib/typescript/ui/components/AutoHeightScrollView.d.ts.map +1 -0
- package/lib/typescript/ui/components/BottomSheet.d.ts +29 -0
- package/lib/typescript/ui/components/BottomSheet.d.ts.map +1 -0
- package/lib/typescript/ui/components/BottomSheetRouter.d.ts +14 -0
- package/lib/typescript/ui/components/BottomSheetRouter.d.ts.map +1 -0
- package/lib/typescript/ui/components/CrossFadeIcon.d.ts +27 -0
- package/lib/typescript/ui/components/CrossFadeIcon.d.ts.map +1 -0
- package/lib/typescript/ui/components/EmptyState.d.ts +8 -0
- package/lib/typescript/ui/components/EmptyState.d.ts.map +1 -0
- package/lib/typescript/ui/components/GroupedItem.d.ts +5 -9
- package/lib/typescript/ui/components/GroupedItem.d.ts.map +1 -1
- package/lib/typescript/ui/components/GroupedSection.d.ts +6 -7
- package/lib/typescript/ui/components/GroupedSection.d.ts.map +1 -1
- package/lib/typescript/ui/components/Header.d.ts +6 -1
- package/lib/typescript/ui/components/Header.d.ts.map +1 -1
- package/lib/typescript/ui/components/HelperText.d.ts +47 -0
- package/lib/typescript/ui/components/HelperText.d.ts.map +1 -0
- package/lib/typescript/ui/components/Icon.d.ts +60 -0
- package/lib/typescript/ui/components/Icon.d.ts.map +1 -0
- package/lib/typescript/ui/components/IconButton/IconButton.d.ts +99 -0
- package/lib/typescript/ui/components/IconButton/IconButton.d.ts.map +1 -0
- package/lib/typescript/ui/components/IconButton/utils.d.ts +19 -0
- package/lib/typescript/ui/components/IconButton/utils.d.ts.map +1 -0
- package/lib/typescript/ui/components/LoadingState.d.ts +9 -0
- package/lib/typescript/ui/components/LoadingState.d.ts.map +1 -0
- package/lib/typescript/ui/components/OxyPayButton.d.ts.map +1 -1
- package/lib/typescript/ui/components/OxyProvider.d.ts +4 -5
- package/lib/typescript/ui/components/OxyProvider.d.ts.map +1 -1
- package/lib/typescript/ui/components/OxySignInButton.d.ts +3 -8
- package/lib/typescript/ui/components/OxySignInButton.d.ts.map +1 -1
- package/lib/typescript/ui/components/ProfileCard.d.ts.map +1 -1
- package/lib/typescript/ui/components/QuickActions.d.ts.map +1 -1
- package/lib/typescript/ui/components/Section.d.ts +1 -1
- package/lib/typescript/ui/components/Section.d.ts.map +1 -1
- package/lib/typescript/ui/components/SectionTitle.d.ts +1 -1
- package/lib/typescript/ui/components/SectionTitle.d.ts.map +1 -1
- package/lib/typescript/ui/components/SettingRow.d.ts +14 -0
- package/lib/typescript/ui/components/SettingRow.d.ts.map +1 -0
- package/lib/typescript/ui/components/StepBasedScreen.d.ts +3 -2
- package/lib/typescript/ui/components/StepBasedScreen.d.ts.map +1 -1
- package/lib/typescript/ui/components/Surface.d.ts +76 -0
- package/lib/typescript/ui/components/Surface.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Addons/Outline.d.ts +16 -0
- package/lib/typescript/ui/components/TextField/Addons/Outline.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Addons/Underline.d.ts +19 -0
- package/lib/typescript/ui/components/TextField/Addons/Underline.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Adornment/TextFieldAdornment.d.ts +45 -0
- package/lib/typescript/ui/components/TextField/Adornment/TextFieldAdornment.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Adornment/TextFieldAffix.d.ts +73 -0
- package/lib/typescript/ui/components/TextField/Adornment/TextFieldAffix.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Adornment/TextFieldIcon.d.ts +78 -0
- package/lib/typescript/ui/components/TextField/Adornment/TextFieldIcon.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Adornment/enums.d.ts +13 -0
- package/lib/typescript/ui/components/TextField/Adornment/enums.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Adornment/types.d.ts +12 -0
- package/lib/typescript/ui/components/TextField/Adornment/types.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Adornment/utils.d.ts +12 -0
- package/lib/typescript/ui/components/TextField/Adornment/utils.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Label/InputLabel.d.ts +5 -0
- package/lib/typescript/ui/components/TextField/Label/InputLabel.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/Label/LabelBackground.d.ts +4 -0
- package/lib/typescript/ui/components/TextField/Label/LabelBackground.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/TextFieldFlat.d.ts +4 -0
- package/lib/typescript/ui/components/TextField/TextFieldFlat.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/TextFieldOutlined.d.ts +4 -0
- package/lib/typescript/ui/components/TextField/TextFieldOutlined.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/constants.d.ts +32 -0
- package/lib/typescript/ui/components/TextField/constants.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/helpers.d.ts +97 -0
- package/lib/typescript/ui/components/TextField/helpers.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField/types.d.ts +156 -0
- package/lib/typescript/ui/components/TextField/types.d.ts.map +1 -0
- package/lib/typescript/ui/components/TextField.d.ts +192 -0
- package/lib/typescript/ui/components/TextField.d.ts.map +1 -0
- package/lib/typescript/ui/components/TouchableRipple/Pressable.d.ts +13 -0
- package/lib/typescript/ui/components/TouchableRipple/Pressable.d.ts.map +1 -0
- package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.d.ts +62 -0
- package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.d.ts.map +1 -0
- package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.native.d.ts +25 -0
- package/lib/typescript/ui/components/TouchableRipple/TouchableRipple.native.d.ts.map +1 -0
- package/lib/typescript/ui/components/TouchableRipple/utils.d.ts +11 -0
- package/lib/typescript/ui/components/TouchableRipple/utils.d.ts.map +1 -0
- package/lib/typescript/ui/components/Typography/AnimatedText.d.ts +35 -0
- package/lib/typescript/ui/components/Typography/AnimatedText.d.ts.map +1 -0
- package/lib/typescript/ui/components/Typography/types.d.ts +19 -0
- package/lib/typescript/ui/components/Typography/types.d.ts.map +1 -0
- package/lib/typescript/ui/components/fileManagement/FileDetailsModal.d.ts +15 -0
- package/lib/typescript/ui/components/fileManagement/FileDetailsModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/fileManagement/FileViewer.d.ts +18 -0
- package/lib/typescript/ui/components/fileManagement/FileViewer.d.ts.map +1 -0
- package/lib/typescript/ui/components/fileManagement/UploadPreview.d.ts +21 -0
- package/lib/typescript/ui/components/fileManagement/UploadPreview.d.ts.map +1 -0
- package/lib/typescript/ui/components/fileManagement/styles.d.ts +860 -0
- package/lib/typescript/ui/components/fileManagement/styles.d.ts.map +1 -0
- package/lib/typescript/ui/components/index.d.ts +4 -1
- package/lib/typescript/ui/components/index.d.ts.map +1 -1
- package/lib/typescript/ui/components/profile/EditBioModal.d.ts +11 -0
- package/lib/typescript/ui/components/profile/EditBioModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/profile/EditDisplayNameModal.d.ts +12 -0
- package/lib/typescript/ui/components/profile/EditDisplayNameModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/profile/EditEmailModal.d.ts +11 -0
- package/lib/typescript/ui/components/profile/EditEmailModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/profile/EditLinksModal.d.ts +18 -0
- package/lib/typescript/ui/components/profile/EditLinksModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/profile/EditLocationModal.d.ts +20 -0
- package/lib/typescript/ui/components/profile/EditLocationModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/profile/EditUsernameModal.d.ts +11 -0
- package/lib/typescript/ui/components/profile/EditUsernameModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/profile/TwoFactorSetupModal.d.ts +11 -0
- package/lib/typescript/ui/components/profile/TwoFactorSetupModal.d.ts.map +1 -0
- package/lib/typescript/ui/components/styles/overlay.d.ts +4 -0
- package/lib/typescript/ui/components/styles/overlay.d.ts.map +1 -0
- package/lib/typescript/ui/components/styles/shadow.d.ts +3 -0
- package/lib/typescript/ui/components/styles/shadow.d.ts.map +1 -0
- package/lib/typescript/ui/components/theming.d.ts +8 -0
- package/lib/typescript/ui/components/theming.d.ts.map +1 -0
- package/lib/typescript/ui/components/types.d.ts +80 -0
- package/lib/typescript/ui/components/types.d.ts.map +1 -0
- package/lib/typescript/ui/components/utils/forwardRef.d.ts +12 -0
- package/lib/typescript/ui/components/utils/forwardRef.d.ts.map +1 -0
- package/lib/typescript/ui/components/utils/hasTouchHandler.d.ts +6 -0
- package/lib/typescript/ui/components/utils/hasTouchHandler.d.ts.map +1 -0
- package/lib/typescript/ui/components/utils/roundLayoutSize.d.ts +2 -0
- package/lib/typescript/ui/components/utils/roundLayoutSize.d.ts.map +1 -0
- package/lib/typescript/ui/components/utils/splitStyles.d.ts +20 -0
- package/lib/typescript/ui/components/utils/splitStyles.d.ts.map +1 -0
- package/lib/typescript/ui/constants/iconColors.d.ts +130 -0
- package/lib/typescript/ui/constants/iconColors.d.ts.map +1 -0
- package/lib/typescript/ui/constants/spacing.d.ts +33 -0
- package/lib/typescript/ui/constants/spacing.d.ts.map +1 -0
- package/lib/typescript/ui/constants/theme.d.ts +97 -0
- package/lib/typescript/ui/constants/theme.d.ts.map +1 -0
- package/lib/typescript/ui/context/OxyContext.d.ts +23 -17
- package/lib/typescript/ui/context/OxyContext.d.ts.map +1 -1
- package/lib/typescript/ui/context/ThemeContext.d.ts +19 -0
- package/lib/typescript/ui/context/ThemeContext.d.ts.map +1 -0
- package/lib/typescript/ui/context/hooks/useAuthOperations.d.ts +51 -0
- package/lib/typescript/ui/context/hooks/useAuthOperations.d.ts.map +1 -0
- package/lib/typescript/ui/context/hooks/useDeviceManagement.d.ts +27 -0
- package/lib/typescript/ui/context/hooks/useDeviceManagement.d.ts.map +1 -0
- package/lib/typescript/ui/context/hooks/useLanguageManagement.d.ts +25 -0
- package/lib/typescript/ui/context/hooks/useLanguageManagement.d.ts.map +1 -0
- package/lib/typescript/ui/context/hooks/useSessionManagement.d.ts +39 -0
- package/lib/typescript/ui/context/hooks/useSessionManagement.d.ts.map +1 -0
- package/lib/typescript/ui/context/hooks/useStorage.d.ts +22 -0
- package/lib/typescript/ui/context/hooks/useStorage.d.ts.map +1 -0
- package/lib/typescript/ui/context/utils/errorHandlers.d.ts +30 -0
- package/lib/typescript/ui/context/utils/errorHandlers.d.ts.map +1 -0
- package/lib/typescript/ui/context/utils/sessionHelpers.d.ts +59 -0
- package/lib/typescript/ui/context/utils/sessionHelpers.d.ts.map +1 -0
- package/lib/typescript/ui/context/utils/storageHelpers.d.ts +31 -0
- package/lib/typescript/ui/context/utils/storageHelpers.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/index.d.ts +2 -0
- package/lib/typescript/ui/hooks/index.d.ts.map +1 -1
- package/lib/typescript/ui/hooks/use-color-scheme.d.ts +8 -0
- package/lib/typescript/ui/hooks/use-color-scheme.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/use-haptic-press.d.ts +8 -0
- package/lib/typescript/ui/hooks/use-haptic-press.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useDeviceManagement.d.ts +27 -0
- package/lib/typescript/ui/hooks/useDeviceManagement.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useLanguageManagement.d.ts +25 -0
- package/lib/typescript/ui/hooks/useLanguageManagement.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useProfileEditing.d.ts +36 -0
- package/lib/typescript/ui/hooks/useProfileEditing.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useSessionManagement.d.ts +39 -0
- package/lib/typescript/ui/hooks/useSessionManagement.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useStorage.d.ts +22 -0
- package/lib/typescript/ui/hooks/useStorage.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useThemeColors.d.ts +94 -0
- package/lib/typescript/ui/hooks/useThemeColors.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useThemeStyles.d.ts +45 -0
- package/lib/typescript/ui/hooks/useThemeStyles.d.ts.map +1 -0
- package/lib/typescript/ui/index.d.ts +2 -2
- package/lib/typescript/ui/index.d.ts.map +1 -1
- package/lib/typescript/ui/navigation/bottomSheetManager.d.ts +74 -0
- package/lib/typescript/ui/navigation/bottomSheetManager.d.ts.map +1 -0
- package/lib/typescript/ui/navigation/routes.d.ts +4 -7
- package/lib/typescript/ui/navigation/routes.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AccountCenterScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/AccountCenterScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AccountVerificationScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/AccountVerificationScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/AppInfoScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/AppInfoScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/FeedbackScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/FeedbackScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/FileManagementScreen.d.ts +1 -36
- package/lib/typescript/ui/screens/FileManagementScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/HelpSupportScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/HelpSupportScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/HistoryViewScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/HistoryViewScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/LegalDocumentsScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/LegalDocumentsScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/OxyAuthScreen.d.ts +16 -0
- package/lib/typescript/ui/screens/OxyAuthScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/PaymentGatewayScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/PaymentGatewayScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/PrivacySettingsScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/PrivacySettingsScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/ProfileScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/ProfileScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/SavesCollectionsScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/SavesCollectionsScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/SearchSettingsScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/SearchSettingsScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/SessionManagementScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/SessionManagementScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/UserLinksScreen.d.ts +2 -2
- package/lib/typescript/ui/screens/UserLinksScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/WelcomeNewUserScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/karma/KarmaFAQScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts.map +1 -1
- package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts +1 -1
- package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts.map +1 -1
- package/lib/typescript/ui/stores/authStore.d.ts +1 -2
- package/lib/typescript/ui/stores/authStore.d.ts.map +1 -1
- package/lib/typescript/ui/styles/authStyles.d.ts +0 -10
- package/lib/typescript/ui/styles/authStyles.d.ts.map +1 -1
- package/lib/typescript/ui/styles/spacing.d.ts +7 -1
- package/lib/typescript/ui/styles/spacing.d.ts.map +1 -1
- package/lib/typescript/ui/types/fileManagement.d.ts +41 -0
- package/lib/typescript/ui/types/fileManagement.d.ts.map +1 -0
- package/lib/typescript/ui/types/navigation.d.ts +36 -0
- package/lib/typescript/ui/types/navigation.d.ts.map +1 -0
- package/lib/typescript/ui/utils/colorUtils.d.ts +14 -0
- package/lib/typescript/ui/utils/colorUtils.d.ts.map +1 -0
- package/lib/typescript/ui/utils/errorHandlers.d.ts +30 -0
- package/lib/typescript/ui/utils/errorHandlers.d.ts.map +1 -0
- package/lib/typescript/ui/utils/fileManagement.d.ts +39 -0
- package/lib/typescript/ui/utils/fileManagement.d.ts.map +1 -0
- package/lib/typescript/ui/utils/sessionHelpers.d.ts +59 -0
- package/lib/typescript/ui/utils/sessionHelpers.d.ts.map +1 -0
- package/lib/typescript/ui/utils/storageHelpers.d.ts +31 -0
- package/lib/typescript/ui/utils/storageHelpers.d.ts.map +1 -0
- package/lib/typescript/ui/utils/themeUtils.d.ts +24 -0
- package/lib/typescript/ui/utils/themeUtils.d.ts.map +1 -0
- package/lib/typescript/ui/utils/user-utils.d.ts +29 -0
- package/lib/typescript/ui/utils/user-utils.d.ts.map +1 -0
- package/lib/typescript/utils/errorUtils.d.ts.map +1 -1
- package/package.json +26 -15
- package/src/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/src/core/HttpService.ts +97 -4
- package/src/core/OxyServices.base.ts +3 -1
- package/src/core/mixins/OxyServices.assets.ts +225 -27
- package/src/core/mixins/OxyServices.auth.ts +144 -80
- package/src/crypto/index.ts +20 -0
- package/src/crypto/keyManager.ts +213 -0
- package/src/crypto/recoveryPhrase.ts +146 -0
- package/src/crypto/signatureService.ts +258 -0
- package/src/i18n/locales/en-US.json +4 -0
- package/src/index.ts +13 -0
- package/src/models/interfaces.ts +1 -0
- package/src/types/bip39.d.ts +28 -0
- package/src/types/color.d.ts +18 -0
- package/src/types/elliptic.d.ts +60 -0
- package/src/types/expo-crypto.d.ts +28 -0
- package/src/types/expo-random.d.ts +8 -0
- package/src/types/expo-secure-store.d.ts +20 -0
- package/src/types/expo-vector-icons.d.ts +9 -0
- package/src/ui/components/ActivityIndicator.tsx +254 -0
- package/src/ui/components/AutoHeightScrollView.tsx +50 -0
- package/src/ui/components/BottomSheet.tsx +443 -0
- package/src/ui/components/BottomSheetRouter.tsx +407 -0
- package/src/ui/components/CrossFadeIcon.tsx +140 -0
- package/src/ui/components/EmptyState.tsx +39 -0
- package/src/ui/components/GroupedItem.tsx +98 -96
- package/src/ui/components/GroupedSection.tsx +24 -29
- package/src/ui/components/Header.tsx +129 -49
- package/src/ui/components/HelperText.tsx +160 -0
- package/src/ui/components/Icon.tsx +181 -0
- package/src/ui/components/IconButton/IconButton.tsx +235 -0
- package/src/ui/components/IconButton/utils.ts +190 -0
- package/src/ui/components/LoadingState.tsx +46 -0
- package/src/ui/components/OxyPayButton.tsx +1 -12
- package/src/ui/components/OxyProvider.tsx +49 -409
- package/src/ui/components/OxySignInButton.tsx +11 -18
- package/src/ui/components/ProfileCard.tsx +7 -4
- package/src/ui/components/QuickActions.tsx +7 -4
- package/src/ui/components/Section.tsx +6 -2
- package/src/ui/components/SectionTitle.tsx +7 -4
- package/src/ui/components/SettingRow.tsx +76 -0
- package/src/ui/components/StepBasedScreen.tsx +205 -187
- package/src/ui/components/Surface.tsx +384 -0
- package/src/ui/components/TextField/Addons/Outline.tsx +64 -0
- package/src/ui/components/TextField/Addons/Underline.tsx +78 -0
- package/src/ui/components/TextField/Adornment/TextFieldAdornment.tsx +208 -0
- package/src/ui/components/TextField/Adornment/TextFieldAffix.tsx +212 -0
- package/src/ui/components/TextField/Adornment/TextFieldIcon.tsx +195 -0
- package/src/ui/components/TextField/Adornment/enums.tsx +12 -0
- package/src/ui/components/TextField/Adornment/types.tsx +11 -0
- package/src/ui/components/TextField/Adornment/utils.ts +66 -0
- package/src/ui/components/TextField/Label/InputLabel.tsx +219 -0
- package/src/ui/components/TextField/Label/LabelBackground.tsx +100 -0
- package/src/ui/components/TextField/TextFieldFlat.tsx +488 -0
- package/src/ui/components/TextField/TextFieldOutlined.tsx +464 -0
- package/src/ui/components/TextField/constants.tsx +48 -0
- package/src/ui/components/TextField/helpers.tsx +612 -0
- package/src/ui/components/TextField/types.tsx +156 -0
- package/src/ui/components/TextField.tsx +578 -0
- package/src/ui/components/TouchableRipple/Pressable.tsx +41 -0
- package/src/ui/components/TouchableRipple/TouchableRipple.native.tsx +146 -0
- package/src/ui/components/TouchableRipple/TouchableRipple.tsx +347 -0
- package/src/ui/components/TouchableRipple/utils.ts +66 -0
- package/src/ui/components/Typography/AnimatedText.tsx +107 -0
- package/src/ui/components/Typography/types.tsx +22 -0
- package/src/ui/components/fileManagement/FileDetailsModal.tsx +137 -0
- package/src/ui/components/fileManagement/FileViewer.tsx +380 -0
- package/src/ui/components/fileManagement/UploadPreview.tsx +175 -0
- package/src/ui/components/fileManagement/styles.ts +860 -0
- package/src/ui/components/index.ts +4 -1
- package/src/ui/components/profile/EditBioModal.tsx +184 -0
- package/src/ui/components/profile/EditDisplayNameModal.tsx +205 -0
- package/src/ui/components/profile/EditEmailModal.tsx +188 -0
- package/src/ui/components/profile/EditLinksModal.tsx +316 -0
- package/src/ui/components/profile/EditLocationModal.tsx +278 -0
- package/src/ui/components/profile/EditUsernameModal.tsx +183 -0
- package/src/ui/components/profile/TwoFactorSetupModal.tsx +442 -0
- package/src/ui/components/styles/overlay.tsx +88 -0
- package/src/ui/components/styles/shadow.tsx +136 -0
- package/src/ui/components/theming.tsx +114 -0
- package/src/ui/components/types.tsx +90 -0
- package/src/ui/components/utils/forwardRef.tsx +23 -0
- package/src/ui/components/utils/hasTouchHandler.tsx +23 -0
- package/src/ui/components/utils/roundLayoutSize.ts +2 -0
- package/src/ui/components/utils/splitStyles.ts +60 -0
- package/src/ui/constants/iconColors.ts +88 -0
- package/src/ui/constants/spacing.ts +45 -0
- package/src/ui/constants/theme.ts +120 -0
- package/src/ui/context/OxyContext.tsx +276 -894
- package/src/ui/context/ThemeContext.tsx +41 -0
- package/src/ui/context/hooks/useAuthOperations.ts +400 -0
- package/src/ui/context/hooks/useDeviceManagement.ts +108 -0
- package/src/ui/context/hooks/useLanguageManagement.ts +152 -0
- package/src/ui/context/hooks/useSessionManagement.ts +378 -0
- package/src/ui/context/hooks/useStorage.ts +104 -0
- package/src/ui/context/utils/errorHandlers.ts +136 -0
- package/src/ui/context/utils/sessionHelpers.ts +146 -0
- package/src/ui/context/utils/storageHelpers.ts +134 -0
- package/src/ui/hooks/index.ts +3 -1
- package/src/ui/hooks/use-color-scheme.ts +24 -0
- package/src/ui/hooks/use-haptic-press.ts +15 -0
- package/src/ui/hooks/useAssets.ts +1 -1
- package/src/ui/hooks/useDeviceManagement.ts +108 -0
- package/src/ui/hooks/useLanguageManagement.ts +152 -0
- package/src/ui/hooks/useProfileEditing.ts +151 -0
- package/src/ui/hooks/useSessionManagement.ts +378 -0
- package/src/ui/hooks/useStorage.ts +104 -0
- package/src/ui/hooks/useThemeColors.ts +26 -0
- package/src/ui/hooks/useThemeStyles.ts +85 -0
- package/src/ui/index.ts +1 -4
- package/src/ui/navigation/bottomSheetManager.ts +191 -0
- package/src/ui/navigation/routes.ts +107 -189
- package/src/ui/screens/AccountCenterScreen.tsx +67 -63
- package/src/ui/screens/AccountOverviewScreen.tsx +237 -95
- package/src/ui/screens/AccountSettingsScreen.tsx +546 -474
- package/src/ui/screens/AccountSwitcherScreen.tsx +113 -116
- package/src/ui/screens/AccountVerificationScreen.tsx +18 -20
- package/src/ui/screens/AppInfoScreen.tsx +37 -38
- package/src/ui/screens/FeedbackScreen.tsx +15 -12
- package/src/ui/screens/FileManagementScreen.tsx +764 -2026
- package/src/ui/screens/HelpSupportScreen.tsx +30 -23
- package/src/ui/screens/HistoryViewScreen.tsx +25 -56
- package/src/ui/screens/LanguageSelectorScreen.tsx +84 -170
- package/src/ui/screens/LegalDocumentsScreen.tsx +18 -41
- package/src/ui/screens/OxyAuthScreen.tsx +402 -0
- package/src/ui/screens/PaymentGatewayScreen.tsx +20 -22
- package/src/ui/screens/PremiumSubscriptionScreen.tsx +13 -10
- package/src/ui/screens/PrivacySettingsScreen.tsx +150 -198
- package/src/ui/screens/ProfileScreen.tsx +7 -6
- package/src/ui/screens/SavesCollectionsScreen.tsx +39 -62
- package/src/ui/screens/SearchSettingsScreen.tsx +36 -86
- package/src/ui/screens/SessionManagementScreen.tsx +25 -17
- package/src/ui/screens/UserLinksScreen.tsx +10 -11
- package/src/ui/screens/WelcomeNewUserScreen.tsx +41 -41
- package/src/ui/screens/karma/KarmaAboutScreen.tsx +13 -9
- package/src/ui/screens/karma/KarmaCenterScreen.tsx +70 -70
- package/src/ui/screens/karma/KarmaFAQScreen.tsx +96 -96
- package/src/ui/screens/karma/KarmaLeaderboardScreen.tsx +15 -10
- package/src/ui/screens/karma/KarmaRewardsScreen.tsx +605 -60
- package/src/ui/screens/karma/KarmaRulesScreen.tsx +14 -9
- package/src/ui/stores/authStore.ts +1 -1
- package/src/ui/styles/authStyles.ts +5 -11
- package/src/ui/styles/spacing.ts +21 -2
- package/src/ui/styles/theme.ts +1 -1
- package/src/ui/types/fileManagement.ts +51 -0
- package/src/ui/types/navigation.ts +61 -0
- package/src/ui/utils/colorUtils.ts +46 -0
- package/src/ui/utils/errorHandlers.ts +136 -0
- package/src/ui/utils/fileManagement.ts +190 -0
- package/src/ui/utils/sessionHelpers.ts +146 -0
- package/src/ui/utils/storageHelpers.ts +134 -0
- package/src/ui/utils/themeUtils.ts +43 -0
- package/src/ui/utils/user-utils.ts +58 -0
- package/src/utils/errorUtils.ts +14 -4
- package/lib/commonjs/ui/components/internal/TextField.js +0 -665
- package/lib/commonjs/ui/components/internal/TextField.js.map +0 -1
- package/lib/commonjs/ui/navigation/OxyRouter.js +0 -213
- package/lib/commonjs/ui/navigation/OxyRouter.js.map +0 -1
- package/lib/commonjs/ui/navigation/types.js +0 -13
- package/lib/commonjs/ui/navigation/types.js.map +0 -1
- package/lib/commonjs/ui/screens/AccountManagementDemo.js +0 -298
- package/lib/commonjs/ui/screens/AccountManagementDemo.js.map +0 -1
- package/lib/commonjs/ui/screens/RecoverAccountScreen.js +0 -137
- package/lib/commonjs/ui/screens/RecoverAccountScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/SignInScreen.js +0 -270
- package/lib/commonjs/ui/screens/SignInScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/SignUpScreen.js +0 -229
- package/lib/commonjs/ui/screens/SignUpScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/RecoverRequestStep.js +0 -135
- package/lib/commonjs/ui/screens/steps/RecoverRequestStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/RecoverResetPasswordStep.js +0 -165
- package/lib/commonjs/ui/screens/steps/RecoverResetPasswordStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/RecoverSuccessStep.js +0 -159
- package/lib/commonjs/ui/screens/steps/RecoverSuccessStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/RecoverVerifyStep.js +0 -144
- package/lib/commonjs/ui/screens/steps/RecoverVerifyStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/SignInPasswordStep.js +0 -358
- package/lib/commonjs/ui/screens/steps/SignInPasswordStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/SignInTotpStep.js +0 -188
- package/lib/commonjs/ui/screens/steps/SignInTotpStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/SignInUsernameStep.js +0 -509
- package/lib/commonjs/ui/screens/steps/SignInUsernameStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/SignUpIdentityStep.js +0 -200
- package/lib/commonjs/ui/screens/steps/SignUpIdentityStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/SignUpSecurityStep.js +0 -185
- package/lib/commonjs/ui/screens/steps/SignUpSecurityStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/SignUpSummaryStep.js +0 -138
- package/lib/commonjs/ui/screens/steps/SignUpSummaryStep.js.map +0 -1
- package/lib/commonjs/ui/screens/steps/SignUpWelcomeStep.js +0 -150
- package/lib/commonjs/ui/screens/steps/SignUpWelcomeStep.js.map +0 -1
- package/lib/module/package.json +0 -1
- package/lib/module/ui/components/internal/TextField.js +0 -660
- package/lib/module/ui/components/internal/TextField.js.map +0 -1
- package/lib/module/ui/navigation/OxyRouter.js +0 -209
- package/lib/module/ui/navigation/OxyRouter.js.map +0 -1
- package/lib/module/ui/navigation/types.js +0 -22
- package/lib/module/ui/navigation/types.js.map +0 -1
- package/lib/module/ui/screens/AccountManagementDemo.js +0 -295
- package/lib/module/ui/screens/AccountManagementDemo.js.map +0 -1
- package/lib/module/ui/screens/RecoverAccountScreen.js +0 -133
- package/lib/module/ui/screens/RecoverAccountScreen.js.map +0 -1
- package/lib/module/ui/screens/SignInScreen.js +0 -265
- package/lib/module/ui/screens/SignInScreen.js.map +0 -1
- package/lib/module/ui/screens/SignUpScreen.js +0 -224
- package/lib/module/ui/screens/SignUpScreen.js.map +0 -1
- package/lib/module/ui/screens/steps/RecoverRequestStep.js +0 -130
- package/lib/module/ui/screens/steps/RecoverRequestStep.js.map +0 -1
- package/lib/module/ui/screens/steps/RecoverResetPasswordStep.js +0 -160
- package/lib/module/ui/screens/steps/RecoverResetPasswordStep.js.map +0 -1
- package/lib/module/ui/screens/steps/RecoverSuccessStep.js +0 -154
- package/lib/module/ui/screens/steps/RecoverSuccessStep.js.map +0 -1
- package/lib/module/ui/screens/steps/RecoverVerifyStep.js +0 -139
- package/lib/module/ui/screens/steps/RecoverVerifyStep.js.map +0 -1
- package/lib/module/ui/screens/steps/SignInPasswordStep.js +0 -353
- package/lib/module/ui/screens/steps/SignInPasswordStep.js.map +0 -1
- package/lib/module/ui/screens/steps/SignInTotpStep.js +0 -183
- package/lib/module/ui/screens/steps/SignInTotpStep.js.map +0 -1
- package/lib/module/ui/screens/steps/SignInUsernameStep.js +0 -504
- package/lib/module/ui/screens/steps/SignInUsernameStep.js.map +0 -1
- package/lib/module/ui/screens/steps/SignUpIdentityStep.js +0 -195
- package/lib/module/ui/screens/steps/SignUpIdentityStep.js.map +0 -1
- package/lib/module/ui/screens/steps/SignUpSecurityStep.js +0 -180
- package/lib/module/ui/screens/steps/SignUpSecurityStep.js.map +0 -1
- package/lib/module/ui/screens/steps/SignUpSummaryStep.js +0 -133
- package/lib/module/ui/screens/steps/SignUpSummaryStep.js.map +0 -1
- package/lib/module/ui/screens/steps/SignUpWelcomeStep.js +0 -145
- package/lib/module/ui/screens/steps/SignUpWelcomeStep.js.map +0 -1
- package/lib/typescript/ui/components/internal/TextField.d.ts +0 -41
- package/lib/typescript/ui/components/internal/TextField.d.ts.map +0 -1
- package/lib/typescript/ui/navigation/OxyRouter.d.ts +0 -7
- package/lib/typescript/ui/navigation/OxyRouter.d.ts.map +0 -1
- package/lib/typescript/ui/navigation/types.d.ts +0 -141
- package/lib/typescript/ui/navigation/types.d.ts.map +0 -1
- package/lib/typescript/ui/screens/AccountManagementDemo.d.ts +0 -8
- package/lib/typescript/ui/screens/AccountManagementDemo.d.ts.map +0 -1
- package/lib/typescript/ui/screens/RecoverAccountScreen.d.ts +0 -5
- package/lib/typescript/ui/screens/RecoverAccountScreen.d.ts.map +0 -1
- package/lib/typescript/ui/screens/SignInScreen.d.ts +0 -5
- package/lib/typescript/ui/screens/SignInScreen.d.ts.map +0 -1
- package/lib/typescript/ui/screens/SignUpScreen.d.ts +0 -5
- package/lib/typescript/ui/screens/SignUpScreen.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/RecoverRequestStep.d.ts +0 -24
- package/lib/typescript/ui/screens/steps/RecoverRequestStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/RecoverResetPasswordStep.d.ts +0 -24
- package/lib/typescript/ui/screens/steps/RecoverResetPasswordStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/RecoverSuccessStep.d.ts +0 -19
- package/lib/typescript/ui/screens/steps/RecoverSuccessStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/RecoverVerifyStep.d.ts +0 -26
- package/lib/typescript/ui/screens/steps/RecoverVerifyStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/SignInPasswordStep.d.ts +0 -30
- package/lib/typescript/ui/screens/steps/SignInPasswordStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/SignInTotpStep.d.ts +0 -19
- package/lib/typescript/ui/screens/steps/SignInTotpStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/SignInUsernameStep.d.ts +0 -28
- package/lib/typescript/ui/screens/steps/SignInUsernameStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/SignUpIdentityStep.d.ts +0 -26
- package/lib/typescript/ui/screens/steps/SignUpIdentityStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/SignUpSecurityStep.d.ts +0 -27
- package/lib/typescript/ui/screens/steps/SignUpSecurityStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/SignUpSummaryStep.d.ts +0 -17
- package/lib/typescript/ui/screens/steps/SignUpSummaryStep.d.ts.map +0 -1
- package/lib/typescript/ui/screens/steps/SignUpWelcomeStep.d.ts +0 -14
- package/lib/typescript/ui/screens/steps/SignUpWelcomeStep.d.ts.map +0 -1
- package/src/ui/components/internal/TextField.tsx +0 -808
- package/src/ui/navigation/OxyRouter.tsx +0 -216
- package/src/ui/navigation/types.ts +0 -164
- package/src/ui/screens/AccountManagementDemo.tsx +0 -297
- package/src/ui/screens/RecoverAccountScreen.tsx +0 -141
- package/src/ui/screens/SignInScreen.tsx +0 -297
- package/src/ui/screens/SignUpScreen.tsx +0 -239
- package/src/ui/screens/steps/RecoverRequestStep.tsx +0 -143
- package/src/ui/screens/steps/RecoverResetPasswordStep.tsx +0 -162
- package/src/ui/screens/steps/RecoverSuccessStep.tsx +0 -148
- package/src/ui/screens/steps/RecoverVerifyStep.tsx +0 -154
- package/src/ui/screens/steps/SignInPasswordStep.tsx +0 -343
- package/src/ui/screens/steps/SignInTotpStep.tsx +0 -163
- package/src/ui/screens/steps/SignInUsernameStep.tsx +0 -560
- package/src/ui/screens/steps/SignUpIdentityStep.tsx +0 -217
- package/src/ui/screens/steps/SignUpSecurityStep.tsx +0 -207
- package/src/ui/screens/steps/SignUpSummaryStep.tsx +0 -155
- package/src/ui/screens/steps/SignUpWelcomeStep.tsx +0 -127
|
@@ -6,10 +6,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _react = _interopRequireWildcard(require("react"));
|
|
8
8
|
var _reactNative = require("react-native");
|
|
9
|
-
var _OxyContext = require("../context/OxyContext");
|
|
10
9
|
var _sonner = require("../../lib/sonner");
|
|
11
10
|
var _components = require("../components");
|
|
12
11
|
var _useI18n = require("../hooks/useI18n");
|
|
12
|
+
var _useThemeStyles = require("../hooks/useThemeStyles");
|
|
13
|
+
var _themeUtils = require("../utils/themeUtils");
|
|
14
|
+
var _OxyContext = require("../context/OxyContext");
|
|
13
15
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
16
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
15
17
|
const SearchSettingsScreen = ({
|
|
@@ -17,6 +19,7 @@ const SearchSettingsScreen = ({
|
|
|
17
19
|
theme,
|
|
18
20
|
goBack
|
|
19
21
|
}) => {
|
|
22
|
+
// Use useOxy() hook for OxyContext values
|
|
20
23
|
const {
|
|
21
24
|
oxyServices,
|
|
22
25
|
user
|
|
@@ -93,15 +96,8 @@ const SearchSettingsScreen = ({
|
|
|
93
96
|
setIsSaving(false);
|
|
94
97
|
}
|
|
95
98
|
}, [user?.id, oxyServices, t]);
|
|
96
|
-
const
|
|
97
|
-
|
|
98
|
-
return {
|
|
99
|
-
textColor: isDarkTheme ? '#FFFFFF' : '#000000',
|
|
100
|
-
backgroundColor: isDarkTheme ? '#121212' : '#FFFFFF',
|
|
101
|
-
secondaryBackgroundColor: isDarkTheme ? '#222222' : '#F5F5F5',
|
|
102
|
-
borderColor: isDarkTheme ? '#444444' : '#E0E0E0'
|
|
103
|
-
};
|
|
104
|
-
}, [theme]);
|
|
99
|
+
const normalizedTheme = (0, _themeUtils.normalizeTheme)(theme);
|
|
100
|
+
const themeStyles = (0, _useThemeStyles.useThemeStyles)(normalizedTheme);
|
|
105
101
|
if (isLoading) {
|
|
106
102
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
107
103
|
style: [styles.container, {
|
|
@@ -109,16 +105,11 @@ const SearchSettingsScreen = ({
|
|
|
109
105
|
}],
|
|
110
106
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Header, {
|
|
111
107
|
title: t('searchSettings.title') || 'Search Settings',
|
|
112
|
-
theme: theme,
|
|
113
108
|
onBack: goBack || onClose,
|
|
114
109
|
variant: "minimal",
|
|
115
110
|
elevation: "subtle"
|
|
116
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(
|
|
117
|
-
|
|
118
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
|
|
119
|
-
size: "large",
|
|
120
|
-
color: themeStyles.textColor
|
|
121
|
-
})
|
|
111
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.LoadingState, {
|
|
112
|
+
color: themeStyles.textColor
|
|
122
113
|
})]
|
|
123
114
|
});
|
|
124
115
|
}
|
|
@@ -128,7 +119,6 @@ const SearchSettingsScreen = ({
|
|
|
128
119
|
}],
|
|
129
120
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Header, {
|
|
130
121
|
title: t('searchSettings.title') || 'Search Settings',
|
|
131
|
-
theme: theme,
|
|
132
122
|
onBack: goBack || onClose,
|
|
133
123
|
variant: "minimal",
|
|
134
124
|
elevation: "subtle"
|
|
@@ -136,66 +126,28 @@ const SearchSettingsScreen = ({
|
|
|
136
126
|
style: styles.content,
|
|
137
127
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Section, {
|
|
138
128
|
title: t('searchSettings.safeSearch.title') || 'SafeSearch',
|
|
139
|
-
theme: theme,
|
|
140
129
|
isFirst: true,
|
|
141
|
-
children: /*#__PURE__*/(0, _jsxRuntime.
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}],
|
|
151
|
-
children: t('searchSettings.safeSearch.label') || 'Enable SafeSearch'
|
|
152
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
153
|
-
style: [styles.settingDescription, {
|
|
154
|
-
color: themeStyles.textColor
|
|
155
|
-
}],
|
|
156
|
-
children: t('searchSettings.safeSearch.description') || 'Filter out explicit content from search results'
|
|
157
|
-
})]
|
|
158
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Switch, {
|
|
159
|
-
value: safeSearch,
|
|
160
|
-
onValueChange: handleSafeSearchToggle,
|
|
161
|
-
disabled: isSaving,
|
|
162
|
-
trackColor: {
|
|
163
|
-
false: '#767577',
|
|
164
|
-
true: '#d169e5'
|
|
165
|
-
},
|
|
166
|
-
thumbColor: safeSearch ? '#fff' : '#f4f3f4'
|
|
167
|
-
})]
|
|
130
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.SettingRow, {
|
|
131
|
+
title: t('searchSettings.safeSearch.label') || 'Enable SafeSearch',
|
|
132
|
+
description: t('searchSettings.safeSearch.description') || 'Filter out explicit content from search results',
|
|
133
|
+
value: safeSearch,
|
|
134
|
+
onValueChange: handleSafeSearchToggle,
|
|
135
|
+
disabled: isSaving,
|
|
136
|
+
textColor: themeStyles.textColor,
|
|
137
|
+
mutedTextColor: themeStyles.mutedTextColor,
|
|
138
|
+
borderColor: themeStyles.borderColor
|
|
168
139
|
})
|
|
169
140
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Section, {
|
|
170
141
|
title: t('searchSettings.personalization.title') || 'Search Personalization',
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
color: themeStyles.textColor
|
|
181
|
-
}],
|
|
182
|
-
children: t('searchSettings.personalization.label') || 'Personalized Search'
|
|
183
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
184
|
-
style: [styles.settingDescription, {
|
|
185
|
-
color: themeStyles.textColor
|
|
186
|
-
}],
|
|
187
|
-
children: t('searchSettings.personalization.description') || 'Use your activity to improve search results'
|
|
188
|
-
})]
|
|
189
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Switch, {
|
|
190
|
-
value: searchPersonalization,
|
|
191
|
-
onValueChange: handlePersonalizationToggle,
|
|
192
|
-
disabled: isSaving,
|
|
193
|
-
trackColor: {
|
|
194
|
-
false: '#767577',
|
|
195
|
-
true: '#d169e5'
|
|
196
|
-
},
|
|
197
|
-
thumbColor: searchPersonalization ? '#fff' : '#f4f3f4'
|
|
198
|
-
})]
|
|
142
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.SettingRow, {
|
|
143
|
+
title: t('searchSettings.personalization.label') || 'Personalized Search',
|
|
144
|
+
description: t('searchSettings.personalization.description') || 'Use your activity to improve search results',
|
|
145
|
+
value: searchPersonalization,
|
|
146
|
+
onValueChange: handlePersonalizationToggle,
|
|
147
|
+
disabled: isSaving,
|
|
148
|
+
textColor: themeStyles.textColor,
|
|
149
|
+
mutedTextColor: themeStyles.mutedTextColor,
|
|
150
|
+
borderColor: themeStyles.borderColor
|
|
199
151
|
})
|
|
200
152
|
})]
|
|
201
153
|
})]
|
|
@@ -208,31 +160,6 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
208
160
|
content: {
|
|
209
161
|
flex: 1,
|
|
210
162
|
padding: 16
|
|
211
|
-
},
|
|
212
|
-
loadingContainer: {
|
|
213
|
-
flex: 1,
|
|
214
|
-
alignItems: 'center',
|
|
215
|
-
justifyContent: 'center'
|
|
216
|
-
},
|
|
217
|
-
settingRow: {
|
|
218
|
-
flexDirection: 'row',
|
|
219
|
-
justifyContent: 'space-between',
|
|
220
|
-
alignItems: 'center',
|
|
221
|
-
paddingVertical: 16,
|
|
222
|
-
borderBottomWidth: 1
|
|
223
|
-
},
|
|
224
|
-
settingInfo: {
|
|
225
|
-
flex: 1,
|
|
226
|
-
marginRight: 16
|
|
227
|
-
},
|
|
228
|
-
settingTitle: {
|
|
229
|
-
fontSize: 16,
|
|
230
|
-
fontWeight: '500',
|
|
231
|
-
marginBottom: 4
|
|
232
|
-
},
|
|
233
|
-
settingDescription: {
|
|
234
|
-
fontSize: 14,
|
|
235
|
-
opacity: 0.7
|
|
236
163
|
}
|
|
237
164
|
});
|
|
238
165
|
var _default = exports.default = /*#__PURE__*/_react.default.memo(SearchSettingsScreen);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_sonner","_components","_useI18n","_useThemeStyles","_themeUtils","_OxyContext","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","SearchSettingsScreen","onClose","theme","goBack","oxyServices","user","useOxy","useI18n","safeSearch","setSafeSearch","useState","searchPersonalization","setSearchPersonalization","isLoading","setIsLoading","isSaving","setIsSaving","useEffect","loadSettings","id","userData","getCurrentUser","privacySettings","autoFilter","dataSharing","error","console","handleSafeSearchToggle","useCallback","value","updateProfile","toast","success","handlePersonalizationToggle","normalizedTheme","normalizeTheme","themeStyles","useThemeStyles","jsxs","View","style","styles","container","backgroundColor","children","jsx","Header","title","onBack","variant","elevation","LoadingState","color","textColor","ScrollView","content","Section","isFirst","SettingRow","description","onValueChange","disabled","mutedTextColor","borderColor","StyleSheet","create","flex","padding","_default","exports","React","memo"],"sourceRoot":"../../../../src","sources":["ui/screens/SearchSettingsScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -6,16 +6,20 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _react = require("react");
|
|
8
8
|
var _reactNative = require("react-native");
|
|
9
|
-
var
|
|
9
|
+
var _spacing = require("../constants/spacing");
|
|
10
10
|
var _sonner = require("../../lib/sonner");
|
|
11
11
|
var _confirmAction = require("../utils/confirmAction");
|
|
12
12
|
var _components = require("../components");
|
|
13
|
+
var _useThemeStyles = require("../hooks/useThemeStyles");
|
|
14
|
+
var _themeUtils = require("../utils/themeUtils");
|
|
15
|
+
var _OxyContext = require("../context/OxyContext");
|
|
13
16
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
17
|
const SessionManagementScreen = ({
|
|
15
18
|
onClose,
|
|
16
19
|
theme,
|
|
17
20
|
goBack
|
|
18
21
|
}) => {
|
|
22
|
+
// Use useOxy() hook for OxyContext values
|
|
19
23
|
const {
|
|
20
24
|
sessions: userSessions,
|
|
21
25
|
activeSessionId,
|
|
@@ -29,14 +33,21 @@ const SessionManagementScreen = ({
|
|
|
29
33
|
const [actionLoading, setActionLoading] = (0, _react.useState)(null);
|
|
30
34
|
const [switchLoading, setSwitchLoading] = (0, _react.useState)(null);
|
|
31
35
|
const [lastRefreshed, setLastRefreshed] = (0, _react.useState)(null);
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
const
|
|
35
|
-
const
|
|
36
|
-
|
|
37
|
-
const
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
|
|
37
|
+
// Use centralized theme styles hook for consistency
|
|
38
|
+
const normalizedTheme = (0, _themeUtils.normalizeTheme)(theme);
|
|
39
|
+
const themeStyles = (0, _useThemeStyles.useThemeStyles)(normalizedTheme);
|
|
40
|
+
// Extract commonly used colors for readability
|
|
41
|
+
const {
|
|
42
|
+
textColor,
|
|
43
|
+
backgroundColor,
|
|
44
|
+
secondaryBackgroundColor,
|
|
45
|
+
borderColor,
|
|
46
|
+
primaryColor,
|
|
47
|
+
dangerColor,
|
|
48
|
+
successColor,
|
|
49
|
+
isDarkTheme
|
|
50
|
+
} = themeStyles;
|
|
40
51
|
|
|
41
52
|
// Memoized load sessions function - prevents unnecessary re-renders
|
|
42
53
|
const loadSessions = (0, _react.useCallback)(async (isRefresh = false) => {
|
|
@@ -276,7 +287,6 @@ const SessionManagementScreen = ({
|
|
|
276
287
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Header, {
|
|
277
288
|
title: "Active Sessions",
|
|
278
289
|
subtitle: "Manage your active sessions across all devices",
|
|
279
|
-
theme: theme,
|
|
280
290
|
onBack: goBack || onClose,
|
|
281
291
|
elevation: "subtle"
|
|
282
292
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
|
|
@@ -297,8 +307,7 @@ const SessionManagementScreen = ({
|
|
|
297
307
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
298
308
|
style: styles.fullBleed,
|
|
299
309
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.GroupedSection, {
|
|
300
|
-
items: sessionItems
|
|
301
|
-
theme: theme
|
|
310
|
+
items: sessionItems
|
|
302
311
|
})
|
|
303
312
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
304
313
|
style: {
|
|
@@ -307,8 +316,7 @@ const SessionManagementScreen = ({
|
|
|
307
316
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
308
317
|
style: styles.fullBleed,
|
|
309
318
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.GroupedSection, {
|
|
310
|
-
items: bulkItems
|
|
311
|
-
theme: theme
|
|
319
|
+
items: bulkItems
|
|
312
320
|
})
|
|
313
321
|
})]
|
|
314
322
|
}) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
@@ -349,8 +357,8 @@ const styles = _reactNative.StyleSheet.create({
|
|
|
349
357
|
flex: 1
|
|
350
358
|
},
|
|
351
359
|
scrollContainer: {
|
|
352
|
-
|
|
353
|
-
paddingTop: 0
|
|
360
|
+
..._spacing.screenContentStyle,
|
|
361
|
+
paddingTop: 0 // Header handles top spacing
|
|
354
362
|
},
|
|
355
363
|
// Removed legacy session card & bulk action styles (now using GroupedSection)
|
|
356
364
|
sessionActionsRow: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_OxyContext","_sonner","_confirmAction","_components","_jsxRuntime","SessionManagementScreen","onClose","theme","goBack","sessions","userSessions","activeSessionId","refreshSessions","logout","logoutAll","switchSession","useOxy","loading","setLoading","useState","refreshing","setRefreshing","actionLoading","setActionLoading","switchLoading","setSwitchLoading","lastRefreshed","setLastRefreshed","isDarkTheme","textColor","backgroundColor","secondaryBackgroundColor","borderColor","primaryColor","dangerColor","successColor","loadSessions","useCallback","isRefresh","Date","error","console","Platform","OS","toast","Alert","alert","text","handleLogoutSession","sessionId","confirmAction","success","handleLogoutOtherSessions","otherSessionsCount","filter","s","length","info","session","handleLogoutAllSessions","formatRelative","dateString","date","now","diffMs","getTime","absMin","Math","abs","isFuture","fmt","n","floor","hrs","days","toLocaleDateString","handleSwitchSession","e","useEffect","jsxs","View","style","styles","container","centerContent","children","jsx","ActivityIndicator","size","color","Text","loadingText","sessionItems","useMemo","map","isCurrent","subtitleParts","deviceId","push","substring","lastActive","expiresAt","id","icon","iconColor","title","subtitle","join","showChevron","multiRow","customContentBelow","sessionActionsRow","TouchableOpacity","onPress","sessionPillButton","disabled","sessionPillText","currentBadgeText","selected","dense","bulkItems","customContent","undefined","Header","onBack","elevation","ScrollView","scrollView","contentContainerStyle","scrollContainer","refreshControl","RefreshControl","onRefresh","tintColor","Fragment","metaText","marginBottom","toISOString","fullBleed","GroupedSection","items","height","emptyState","emptyStateText","footer","borderTopColor","closeButton","closeButtonText","StyleSheet","create","flex","justifyContent","alignItems","padding","paddingTop","flexDirection","gap","marginTop","paddingHorizontal","paddingVertical","borderRadius","borderWidth","fontSize","fontWeight","letterSpacing","textTransform","overflow","width","alignSelf","fontStyle","borderTopWidth","_default","exports","default"],"sourceRoot":"../../../../src","sources":["ui/screens/SessionManagementScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_spacing","_sonner","_confirmAction","_components","_useThemeStyles","_themeUtils","_OxyContext","_jsxRuntime","SessionManagementScreen","onClose","theme","goBack","sessions","userSessions","activeSessionId","refreshSessions","logout","logoutAll","switchSession","useOxy","loading","setLoading","useState","refreshing","setRefreshing","actionLoading","setActionLoading","switchLoading","setSwitchLoading","lastRefreshed","setLastRefreshed","normalizedTheme","normalizeTheme","themeStyles","useThemeStyles","textColor","backgroundColor","secondaryBackgroundColor","borderColor","primaryColor","dangerColor","successColor","isDarkTheme","loadSessions","useCallback","isRefresh","Date","error","console","Platform","OS","toast","Alert","alert","text","handleLogoutSession","sessionId","confirmAction","success","handleLogoutOtherSessions","otherSessionsCount","filter","s","length","info","session","handleLogoutAllSessions","formatRelative","dateString","date","now","diffMs","getTime","absMin","Math","abs","isFuture","fmt","n","floor","hrs","days","toLocaleDateString","handleSwitchSession","e","useEffect","jsxs","View","style","styles","container","centerContent","children","jsx","ActivityIndicator","size","color","Text","loadingText","sessionItems","useMemo","map","isCurrent","subtitleParts","deviceId","push","substring","lastActive","expiresAt","id","icon","iconColor","title","subtitle","join","showChevron","multiRow","customContentBelow","sessionActionsRow","TouchableOpacity","onPress","sessionPillButton","disabled","sessionPillText","currentBadgeText","selected","dense","bulkItems","customContent","undefined","Header","onBack","elevation","ScrollView","scrollView","contentContainerStyle","scrollContainer","refreshControl","RefreshControl","onRefresh","tintColor","Fragment","metaText","marginBottom","toISOString","fullBleed","GroupedSection","items","height","emptyState","emptyStateText","footer","borderTopColor","closeButton","closeButtonText","StyleSheet","create","flex","justifyContent","alignItems","screenContentStyle","paddingTop","flexDirection","gap","marginTop","paddingHorizontal","paddingVertical","borderRadius","borderWidth","fontSize","fontWeight","letterSpacing","textTransform","overflow","width","alignSelf","fontStyle","padding","borderTopWidth","_default","exports","default"],"sourceRoot":"../../../../src","sources":["ui/screens/SessionManagementScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -6,20 +6,20 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _reactNative = require("react-native");
|
|
8
8
|
var _components = require("../components");
|
|
9
|
+
var _useThemeStyles = require("../hooks/useThemeStyles");
|
|
10
|
+
var _themeUtils = require("../utils/themeUtils");
|
|
9
11
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
12
|
const UserLinksScreen = ({
|
|
11
13
|
userId,
|
|
12
|
-
links,
|
|
14
|
+
links = [],
|
|
13
15
|
theme,
|
|
14
16
|
goBack,
|
|
15
17
|
navigate
|
|
16
18
|
}) => {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
primaryColor: '#007AFF'
|
|
22
|
-
};
|
|
19
|
+
// Use centralized theme styles hook for consistency
|
|
20
|
+
// primaryColor from hook (#007AFF) is already correct for this screen
|
|
21
|
+
const normalizedTheme = (0, _themeUtils.normalizeTheme)(theme);
|
|
22
|
+
const themeStyles = (0, _useThemeStyles.useThemeStyles)(normalizedTheme);
|
|
23
23
|
const handleLinkPress = async url => {
|
|
24
24
|
try {
|
|
25
25
|
await _reactNative.Linking.openURL(url);
|
|
@@ -45,7 +45,6 @@ const UserLinksScreen = ({
|
|
|
45
45
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Header, {
|
|
46
46
|
title: "Links",
|
|
47
47
|
subtitle: `${links.length} link${links.length !== 1 ? 's' : ''}`,
|
|
48
|
-
theme: theme,
|
|
49
48
|
onBack: goBack,
|
|
50
49
|
elevation: "subtle"
|
|
51
50
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
|
|
@@ -58,8 +57,7 @@ const UserLinksScreen = ({
|
|
|
58
57
|
}],
|
|
59
58
|
children: "Links"
|
|
60
59
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.GroupedSection, {
|
|
61
|
-
items: groupedItems
|
|
62
|
-
theme: theme
|
|
60
|
+
items: groupedItems
|
|
63
61
|
})]
|
|
64
62
|
})
|
|
65
63
|
})]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_components","_jsxRuntime","UserLinksScreen","userId","links","theme","goBack","navigate","
|
|
1
|
+
{"version":3,"names":["_reactNative","require","_components","_useThemeStyles","_themeUtils","_jsxRuntime","UserLinksScreen","userId","links","theme","goBack","navigate","normalizedTheme","normalizeTheme","themeStyles","useThemeStyles","handleLinkPress","url","Linking","openURL","error","console","groupedItems","map","link","id","icon","image","undefined","iconColor","imageSize","title","subtitle","description","onPress","multiRow","jsxs","View","style","styles","container","backgroundColor","children","jsx","Header","length","onBack","elevation","ScrollView","content","section","Text","sectionTitle","color","textColor","GroupedSection","items","StyleSheet","create","flex","padding","marginBottom","fontSize","fontWeight","_default","exports","default"],"sourceRoot":"../../../../src","sources":["ui/screens/UserLinksScreen.tsx"],"mappings":"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","ignoreList":[]}
|