@oxyhq/services 5.13.40 → 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 -372
- 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 -377
- 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 -381
- 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 -733
- 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 -729
- 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 -876
- 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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_vectorIcons","_GroupedPillButtons","_interopRequireDefault","_PinInput","_useI18n","_spacing","_jsxRuntime","e","__esModule","default","RecoverVerifyStep","colors","styles","nextStep","prevStep","verificationCode","setVerificationCode","errorMessage","setErrorMessage","successMessage","setSuccessMessage","isLoading","setIsLoading","identifier","t","useI18n","baseStyles","stepStyles","handleVerifyCode","length","jsxs","Fragment","children","View","style","container","sectionSpacing","header","jsx","Text","modernTitle","title","color","text","marginBottom","marginTop","modernSubtitle","subtitle","secondaryText","stylesheet","pinInputWrapper","value","onChange","disabled","autoFocus","messageContainer","backgroundColor","success","borderColor","Ionicons","name","size","footerText","fontSize","error","buttonContainer","buttons","onPress","icon","variant","loading","_default","exports","StyleSheet","create","flexDirection","alignItems","STEP_INNER_GAP","padding","borderRadius","borderWidth","gap"],"sourceRoot":"../../../../../src","sources":["ui/screens/steps/RecoverVerifyStep.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,358 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _reactNative = require("react-native");
|
|
9
|
-
var _vectorIcons = require("@expo/vector-icons");
|
|
10
|
-
var _Avatar = _interopRequireDefault(require("../../components/Avatar"));
|
|
11
|
-
var _GroupedPillButtons = _interopRequireDefault(require("../../components/internal/GroupedPillButtons"));
|
|
12
|
-
var _TextField = _interopRequireDefault(require("../../components/internal/TextField"));
|
|
13
|
-
var _useI18n = require("../../hooks/useI18n");
|
|
14
|
-
var _OxyContext = require("../../context/OxyContext");
|
|
15
|
-
var _spacing = require("../../styles/spacing");
|
|
16
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
18
|
-
const SignInPasswordStep = ({
|
|
19
|
-
colors,
|
|
20
|
-
styles,
|
|
21
|
-
theme,
|
|
22
|
-
navigate,
|
|
23
|
-
nextStep,
|
|
24
|
-
prevStep,
|
|
25
|
-
password,
|
|
26
|
-
setPassword,
|
|
27
|
-
showPassword,
|
|
28
|
-
setShowPassword,
|
|
29
|
-
errorMessage,
|
|
30
|
-
setErrorMessage,
|
|
31
|
-
isLoading,
|
|
32
|
-
userProfile,
|
|
33
|
-
username,
|
|
34
|
-
handleSignIn,
|
|
35
|
-
mfaToken,
|
|
36
|
-
existingSession,
|
|
37
|
-
handleContinueWithExistingAccount
|
|
38
|
-
}) => {
|
|
39
|
-
const inputRef = (0, _react.useRef)(null);
|
|
40
|
-
const {
|
|
41
|
-
t
|
|
42
|
-
} = (0, _useI18n.useI18n)();
|
|
43
|
-
const {
|
|
44
|
-
oxyServices
|
|
45
|
-
} = (0, _OxyContext.useOxy)();
|
|
46
|
-
const baseStyles = _spacing.stepStyles;
|
|
47
|
-
const webShadowReset = _reactNative.Platform.OS === 'web' ? {
|
|
48
|
-
boxShadow: 'none'
|
|
49
|
-
} : null;
|
|
50
|
-
const handlePasswordChange = text => {
|
|
51
|
-
setPassword(text);
|
|
52
|
-
if (errorMessage) setErrorMessage('');
|
|
53
|
-
};
|
|
54
|
-
const handleSignInSubmit = async () => {
|
|
55
|
-
if (!password) {
|
|
56
|
-
setErrorMessage(t('signin.password.required') || 'Please enter your password.');
|
|
57
|
-
setTimeout(() => inputRef.current?.focus(), 0);
|
|
58
|
-
return;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// Call the actual sign-in function passed from props
|
|
62
|
-
await handleSignIn();
|
|
63
|
-
};
|
|
64
|
-
const togglePasswordVisibility = () => {
|
|
65
|
-
setShowPassword(!showPassword);
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
// Focus password input on error
|
|
69
|
-
(0, _react.useEffect)(() => {
|
|
70
|
-
if (errorMessage) {
|
|
71
|
-
setTimeout(() => {
|
|
72
|
-
inputRef.current?.focus();
|
|
73
|
-
}, 0);
|
|
74
|
-
}
|
|
75
|
-
}, [errorMessage]);
|
|
76
|
-
|
|
77
|
-
// Auto-advance when MFA is required
|
|
78
|
-
(0, _react.useEffect)(() => {
|
|
79
|
-
if (mfaToken) {
|
|
80
|
-
// Move to TOTP step when token is available
|
|
81
|
-
nextStep();
|
|
82
|
-
}
|
|
83
|
-
}, [mfaToken, nextStep]);
|
|
84
|
-
|
|
85
|
-
// If account is already signed in, show "continue" UI instead of password
|
|
86
|
-
if (existingSession && handleContinueWithExistingAccount) {
|
|
87
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
88
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
89
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, stylesheet.userProfileContainer],
|
|
90
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Avatar.default, {
|
|
91
|
-
name: userProfile?.displayName || userProfile?.name || username,
|
|
92
|
-
size: 100,
|
|
93
|
-
theme: theme,
|
|
94
|
-
backgroundColor: colors.primary + '20',
|
|
95
|
-
uri: userProfile?.avatar && oxyServices ? oxyServices.getFileDownloadUrl(userProfile.avatar, 'thumb') : undefined
|
|
96
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
97
|
-
style: [styles.modernUserDisplayName, stylesheet.displayName, {
|
|
98
|
-
color: colors.text,
|
|
99
|
-
marginBottom: 0,
|
|
100
|
-
marginTop: 0
|
|
101
|
-
}],
|
|
102
|
-
children: userProfile?.displayName || userProfile?.name || username
|
|
103
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
|
|
104
|
-
style: [styles.modernUsernameSubtext, stylesheet.usernameSubtext, {
|
|
105
|
-
color: colors.secondaryText,
|
|
106
|
-
marginBottom: 0,
|
|
107
|
-
marginTop: 0
|
|
108
|
-
}],
|
|
109
|
-
children: ["@", username]
|
|
110
|
-
})]
|
|
111
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
112
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, stylesheet.alreadySignedInContainer],
|
|
113
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
114
|
-
style: [stylesheet.alreadySignedInCard, {
|
|
115
|
-
backgroundColor: `${colors.primary}08`,
|
|
116
|
-
borderColor: `${colors.primary}25`
|
|
117
|
-
}],
|
|
118
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
119
|
-
style: stylesheet.alreadySignedInContent,
|
|
120
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
121
|
-
style: [stylesheet.alreadySignedInIconWrapper, {
|
|
122
|
-
backgroundColor: `${colors.primary}20`
|
|
123
|
-
}],
|
|
124
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
125
|
-
name: "checkmark-circle",
|
|
126
|
-
size: 28,
|
|
127
|
-
color: colors.primary
|
|
128
|
-
})
|
|
129
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
130
|
-
style: stylesheet.alreadySignedInTextWrapper,
|
|
131
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
132
|
-
style: [stylesheet.alreadySignedInTitle, {
|
|
133
|
-
color: colors.text
|
|
134
|
-
}],
|
|
135
|
-
children: t('signin.alreadySignedIn') || 'Already signed in'
|
|
136
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
137
|
-
style: [stylesheet.alreadySignedInMessage, {
|
|
138
|
-
color: colors.secondaryText
|
|
139
|
-
}],
|
|
140
|
-
children: t('signin.alreadySignedInMessage') || 'This account is already signed in. Tap continue to use it.'
|
|
141
|
-
})]
|
|
142
|
-
})]
|
|
143
|
-
})
|
|
144
|
-
})
|
|
145
|
-
}), errorMessage && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
146
|
-
style: [baseStyles.container, baseStyles.sectionSpacing],
|
|
147
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
148
|
-
style: [stylesheet.errorText, {
|
|
149
|
-
color: colors.error
|
|
150
|
-
}],
|
|
151
|
-
children: errorMessage
|
|
152
|
-
})
|
|
153
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
154
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, baseStyles.buttonContainer],
|
|
155
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_GroupedPillButtons.default, {
|
|
156
|
-
buttons: [{
|
|
157
|
-
text: t('common.actions.back') || 'Back',
|
|
158
|
-
onPress: prevStep,
|
|
159
|
-
icon: 'arrow-back',
|
|
160
|
-
variant: 'transparent'
|
|
161
|
-
}, {
|
|
162
|
-
text: t('signin.continueWithAccount') || 'Continue',
|
|
163
|
-
onPress: handleContinueWithExistingAccount,
|
|
164
|
-
icon: 'log-in',
|
|
165
|
-
variant: 'primary',
|
|
166
|
-
loading: isLoading,
|
|
167
|
-
testID: 'continue-button'
|
|
168
|
-
}],
|
|
169
|
-
colors: colors
|
|
170
|
-
})
|
|
171
|
-
})]
|
|
172
|
-
});
|
|
173
|
-
}
|
|
174
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
175
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
176
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, stylesheet.userProfileContainer],
|
|
177
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Avatar.default, {
|
|
178
|
-
name: userProfile?.displayName || userProfile?.name || username,
|
|
179
|
-
size: 100,
|
|
180
|
-
theme: theme,
|
|
181
|
-
backgroundColor: colors.primary + '20',
|
|
182
|
-
uri: userProfile?.avatar && oxyServices ? oxyServices.getFileDownloadUrl(userProfile.avatar, 'thumb') : undefined
|
|
183
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
184
|
-
style: [styles.modernUserDisplayName, stylesheet.displayName, {
|
|
185
|
-
color: colors.text,
|
|
186
|
-
marginBottom: 0,
|
|
187
|
-
marginTop: 0
|
|
188
|
-
}],
|
|
189
|
-
children: userProfile?.displayName || userProfile?.name || username
|
|
190
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
|
|
191
|
-
style: [styles.modernUsernameSubtext, stylesheet.usernameSubtext, {
|
|
192
|
-
color: colors.secondaryText,
|
|
193
|
-
marginBottom: 0,
|
|
194
|
-
marginTop: 0
|
|
195
|
-
}],
|
|
196
|
-
children: ["@", username]
|
|
197
|
-
})]
|
|
198
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
199
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, stylesheet.inputSection],
|
|
200
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_TextField.default, {
|
|
201
|
-
ref: inputRef,
|
|
202
|
-
label: t('common.labels.password'),
|
|
203
|
-
leading: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
204
|
-
name: "lock-closed-outline",
|
|
205
|
-
size: 24,
|
|
206
|
-
color: colors.secondaryText
|
|
207
|
-
}),
|
|
208
|
-
value: password,
|
|
209
|
-
onChangeText: handlePasswordChange,
|
|
210
|
-
secureTextEntry: !showPassword,
|
|
211
|
-
autoCapitalize: "none",
|
|
212
|
-
autoCorrect: false,
|
|
213
|
-
testID: "password-input",
|
|
214
|
-
variant: "filled",
|
|
215
|
-
error: errorMessage || undefined,
|
|
216
|
-
onSubmitEditing: handleSignInSubmit,
|
|
217
|
-
autoFocus: true,
|
|
218
|
-
accessibilityLabel: t('common.labels.password'),
|
|
219
|
-
accessibilityHint: t('signin.password.hint') || 'Enter your password to sign in',
|
|
220
|
-
style: {
|
|
221
|
-
marginBottom: 0
|
|
222
|
-
}
|
|
223
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
224
|
-
style: [stylesheet.forgotPasswordContainer],
|
|
225
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
|
|
226
|
-
style: [styles.footerText, {
|
|
227
|
-
color: colors.text
|
|
228
|
-
}],
|
|
229
|
-
children: [t('signin.forgotPrompt') || 'Forgot your password?', " "]
|
|
230
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
231
|
-
onPress: () => navigate('RecoverAccount', {
|
|
232
|
-
returnTo: 'SignIn',
|
|
233
|
-
returnStep: 1,
|
|
234
|
-
returnData: {
|
|
235
|
-
username,
|
|
236
|
-
userProfile
|
|
237
|
-
}
|
|
238
|
-
}),
|
|
239
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
240
|
-
style: [styles.modernLinkText, {
|
|
241
|
-
color: colors.primary
|
|
242
|
-
}],
|
|
243
|
-
children: t('common.links.recoverAccount')
|
|
244
|
-
})
|
|
245
|
-
})]
|
|
246
|
-
})]
|
|
247
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
248
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, baseStyles.buttonContainer],
|
|
249
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_GroupedPillButtons.default, {
|
|
250
|
-
buttons: [{
|
|
251
|
-
text: t('common.actions.back') || 'Back',
|
|
252
|
-
onPress: prevStep,
|
|
253
|
-
icon: 'arrow-back',
|
|
254
|
-
variant: 'transparent'
|
|
255
|
-
}, {
|
|
256
|
-
text: t('common.actions.signIn') || 'Sign In',
|
|
257
|
-
onPress: handleSignInSubmit,
|
|
258
|
-
icon: 'log-in',
|
|
259
|
-
variant: 'primary',
|
|
260
|
-
loading: isLoading,
|
|
261
|
-
testID: 'login-button'
|
|
262
|
-
}],
|
|
263
|
-
colors: colors
|
|
264
|
-
})
|
|
265
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
266
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, stylesheet.securityNotice, {
|
|
267
|
-
marginTop: 0
|
|
268
|
-
}],
|
|
269
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
270
|
-
name: "shield-checkmark",
|
|
271
|
-
size: 14,
|
|
272
|
-
color: colors.secondaryText
|
|
273
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
274
|
-
style: [styles.securityText, {
|
|
275
|
-
color: colors.secondaryText
|
|
276
|
-
}],
|
|
277
|
-
children: t('signin.security.dataSecure') || 'Your data is encrypted and secure'
|
|
278
|
-
})]
|
|
279
|
-
})]
|
|
280
|
-
});
|
|
281
|
-
};
|
|
282
|
-
var _default = exports.default = SignInPasswordStep;
|
|
283
|
-
const stylesheet = _reactNative.StyleSheet.create({
|
|
284
|
-
userProfileContainer: {
|
|
285
|
-
alignItems: 'flex-start',
|
|
286
|
-
paddingVertical: 0,
|
|
287
|
-
gap: _spacing.STEP_INNER_GAP
|
|
288
|
-
},
|
|
289
|
-
avatarContainer: {
|
|
290
|
-
position: 'relative',
|
|
291
|
-
marginBottom: 0,
|
|
292
|
-
marginTop: 0
|
|
293
|
-
},
|
|
294
|
-
displayName: {
|
|
295
|
-
marginBottom: 0,
|
|
296
|
-
marginTop: 0
|
|
297
|
-
},
|
|
298
|
-
usernameSubtext: {
|
|
299
|
-
marginBottom: 0,
|
|
300
|
-
marginTop: 0
|
|
301
|
-
},
|
|
302
|
-
inputSection: {
|
|
303
|
-
gap: _spacing.STEP_INNER_GAP
|
|
304
|
-
},
|
|
305
|
-
forgotPasswordContainer: {
|
|
306
|
-
flexDirection: 'row',
|
|
307
|
-
alignItems: 'center',
|
|
308
|
-
marginTop: 0
|
|
309
|
-
},
|
|
310
|
-
securityNotice: {
|
|
311
|
-
flexDirection: 'row',
|
|
312
|
-
alignItems: 'center',
|
|
313
|
-
gap: _spacing.STEP_INNER_GAP
|
|
314
|
-
},
|
|
315
|
-
alreadySignedInContainer: {
|
|
316
|
-
width: '100%'
|
|
317
|
-
},
|
|
318
|
-
alreadySignedInCard: {
|
|
319
|
-
borderRadius: 20,
|
|
320
|
-
borderWidth: 1.5,
|
|
321
|
-
padding: 20,
|
|
322
|
-
width: '100%'
|
|
323
|
-
},
|
|
324
|
-
alreadySignedInContent: {
|
|
325
|
-
flexDirection: 'row',
|
|
326
|
-
alignItems: 'flex-start',
|
|
327
|
-
gap: 16
|
|
328
|
-
},
|
|
329
|
-
alreadySignedInIconWrapper: {
|
|
330
|
-
width: 52,
|
|
331
|
-
height: 52,
|
|
332
|
-
borderRadius: 26,
|
|
333
|
-
alignItems: 'center',
|
|
334
|
-
justifyContent: 'center',
|
|
335
|
-
flexShrink: 0
|
|
336
|
-
},
|
|
337
|
-
alreadySignedInTextWrapper: {
|
|
338
|
-
flex: 1,
|
|
339
|
-
gap: 8,
|
|
340
|
-
paddingTop: 2
|
|
341
|
-
},
|
|
342
|
-
alreadySignedInTitle: {
|
|
343
|
-
fontSize: 18,
|
|
344
|
-
fontWeight: '600',
|
|
345
|
-
lineHeight: 24,
|
|
346
|
-
letterSpacing: -0.2
|
|
347
|
-
},
|
|
348
|
-
alreadySignedInMessage: {
|
|
349
|
-
fontSize: 15,
|
|
350
|
-
lineHeight: 22,
|
|
351
|
-
letterSpacing: -0.1
|
|
352
|
-
},
|
|
353
|
-
errorText: {
|
|
354
|
-
fontSize: 14,
|
|
355
|
-
textAlign: 'center'
|
|
356
|
-
}
|
|
357
|
-
});
|
|
358
|
-
//# sourceMappingURL=SignInPasswordStep.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_vectorIcons","_Avatar","_interopRequireDefault","_GroupedPillButtons","_TextField","_useI18n","_OxyContext","_spacing","_jsxRuntime","e","__esModule","default","SignInPasswordStep","colors","styles","theme","navigate","nextStep","prevStep","password","setPassword","showPassword","setShowPassword","errorMessage","setErrorMessage","isLoading","userProfile","username","handleSignIn","mfaToken","existingSession","handleContinueWithExistingAccount","inputRef","useRef","t","useI18n","oxyServices","useOxy","baseStyles","stepStyles","webShadowReset","Platform","OS","boxShadow","handlePasswordChange","text","handleSignInSubmit","setTimeout","current","focus","togglePasswordVisibility","useEffect","jsxs","Fragment","children","View","style","container","sectionSpacing","stylesheet","userProfileContainer","jsx","name","displayName","size","backgroundColor","primary","uri","avatar","getFileDownloadUrl","undefined","Text","modernUserDisplayName","color","marginBottom","marginTop","modernUsernameSubtext","usernameSubtext","secondaryText","alreadySignedInContainer","alreadySignedInCard","borderColor","alreadySignedInContent","alreadySignedInIconWrapper","Ionicons","alreadySignedInTextWrapper","alreadySignedInTitle","alreadySignedInMessage","errorText","error","buttonContainer","buttons","onPress","icon","variant","loading","testID","inputSection","ref","label","leading","value","onChangeText","secureTextEntry","autoCapitalize","autoCorrect","onSubmitEditing","autoFocus","accessibilityLabel","accessibilityHint","forgotPasswordContainer","footerText","TouchableOpacity","returnTo","returnStep","returnData","modernLinkText","securityNotice","securityText","_default","exports","StyleSheet","create","alignItems","paddingVertical","gap","STEP_INNER_GAP","avatarContainer","position","flexDirection","width","borderRadius","borderWidth","padding","height","justifyContent","flexShrink","flex","paddingTop","fontSize","fontWeight","lineHeight","letterSpacing","textAlign"],"sourceRoot":"../../../../../src","sources":["ui/screens/steps/SignInPasswordStep.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,188 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _reactNative = require("react-native");
|
|
9
|
-
var _vectorIcons = require("@expo/vector-icons");
|
|
10
|
-
var _GroupedPillButtons = _interopRequireDefault(require("../../components/internal/GroupedPillButtons"));
|
|
11
|
-
var _PinInput = _interopRequireDefault(require("../../components/internal/PinInput"));
|
|
12
|
-
var _useI18n = require("../../hooks/useI18n");
|
|
13
|
-
var _spacing = require("../../styles/spacing");
|
|
14
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
-
const SignInTotpStep = ({
|
|
17
|
-
colors,
|
|
18
|
-
styles,
|
|
19
|
-
navigate,
|
|
20
|
-
prevStep,
|
|
21
|
-
nextStep,
|
|
22
|
-
username,
|
|
23
|
-
mfaToken,
|
|
24
|
-
completeMfaLogin,
|
|
25
|
-
errorMessage,
|
|
26
|
-
setErrorMessage,
|
|
27
|
-
isLoading
|
|
28
|
-
}) => {
|
|
29
|
-
const [code, setCode] = (0, _react.useState)('');
|
|
30
|
-
const inputRef = (0, _react.useRef)(null);
|
|
31
|
-
const {
|
|
32
|
-
t
|
|
33
|
-
} = (0, _useI18n.useI18n)();
|
|
34
|
-
const baseStyles = _spacing.stepStyles;
|
|
35
|
-
const webShadowReset = _reactNative.Platform.OS === 'web' ? {
|
|
36
|
-
boxShadow: 'none'
|
|
37
|
-
} : null;
|
|
38
|
-
const handleVerify = async () => {
|
|
39
|
-
if (!code || code.length !== 6) {
|
|
40
|
-
setErrorMessage?.(t('recover.enterCode'));
|
|
41
|
-
return;
|
|
42
|
-
}
|
|
43
|
-
try {
|
|
44
|
-
setErrorMessage?.('');
|
|
45
|
-
await completeMfaLogin?.(mfaToken, code);
|
|
46
|
-
// Login completed; higher-level navigation should continue automatically
|
|
47
|
-
} catch (e) {
|
|
48
|
-
setErrorMessage?.(e?.message || t('signin.totp.invalidCode') || 'Invalid code. Please try again.');
|
|
49
|
-
setTimeout(() => inputRef.current?.focus(), 0);
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
53
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
54
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, baseStyles.header],
|
|
55
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
56
|
-
style: [styles.modernTitle, baseStyles.title, {
|
|
57
|
-
color: colors.text,
|
|
58
|
-
marginBottom: 0,
|
|
59
|
-
marginTop: 0
|
|
60
|
-
}],
|
|
61
|
-
children: t('signin.totp.title') || 'Two‑Factor Code'
|
|
62
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
63
|
-
style: [styles.modernSubtitle, baseStyles.subtitle, {
|
|
64
|
-
color: colors.secondaryText,
|
|
65
|
-
marginBottom: 0,
|
|
66
|
-
marginTop: 0
|
|
67
|
-
}],
|
|
68
|
-
children: t('signin.totp.subtitle', {
|
|
69
|
-
username
|
|
70
|
-
}) || `Enter the 6‑digit code from your authenticator app for @${username}`
|
|
71
|
-
})]
|
|
72
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
73
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, stylesheet.inputSection],
|
|
74
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
75
|
-
style: stylesheet.pinInputWrapper,
|
|
76
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_PinInput.default, {
|
|
77
|
-
ref: inputRef,
|
|
78
|
-
value: code,
|
|
79
|
-
onChange: setCode,
|
|
80
|
-
length: 6,
|
|
81
|
-
disabled: isLoading,
|
|
82
|
-
autoFocus: true,
|
|
83
|
-
colors: colors
|
|
84
|
-
})
|
|
85
|
-
}), errorMessage ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
86
|
-
style: [stylesheet.errorContainer, {
|
|
87
|
-
backgroundColor: colors.error + '10',
|
|
88
|
-
borderColor: colors.error + '30'
|
|
89
|
-
}, webShadowReset],
|
|
90
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
91
|
-
name: "alert-circle",
|
|
92
|
-
size: 20,
|
|
93
|
-
color: colors.error
|
|
94
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
95
|
-
style: [styles.footerText, {
|
|
96
|
-
color: colors.error,
|
|
97
|
-
fontSize: 14
|
|
98
|
-
}],
|
|
99
|
-
children: errorMessage
|
|
100
|
-
})]
|
|
101
|
-
}) : null]
|
|
102
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
103
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, baseStyles.buttonContainer],
|
|
104
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_GroupedPillButtons.default, {
|
|
105
|
-
buttons: [{
|
|
106
|
-
text: t('common.actions.back'),
|
|
107
|
-
onPress: prevStep,
|
|
108
|
-
icon: 'arrow-back',
|
|
109
|
-
variant: 'transparent'
|
|
110
|
-
}, {
|
|
111
|
-
text: t('signin.actions.verify'),
|
|
112
|
-
onPress: handleVerify,
|
|
113
|
-
icon: 'shield-checkmark',
|
|
114
|
-
variant: 'primary',
|
|
115
|
-
loading: isLoading,
|
|
116
|
-
disabled: isLoading || code.length !== 6
|
|
117
|
-
}],
|
|
118
|
-
colors: colors
|
|
119
|
-
})
|
|
120
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
121
|
-
style: [baseStyles.container, baseStyles.sectionSpacing, stylesheet.footerContainer],
|
|
122
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
123
|
-
style: [styles.footerText, {
|
|
124
|
-
color: colors.secondaryText
|
|
125
|
-
}],
|
|
126
|
-
children: t('signin.totp.noAccess') || 'No access to your authenticator?'
|
|
127
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
128
|
-
style: stylesheet.footerLinks,
|
|
129
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
130
|
-
onPress: () => navigate('RecoverAccount', {
|
|
131
|
-
prefillUsername: username
|
|
132
|
-
}),
|
|
133
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
134
|
-
style: [styles.linkText, {
|
|
135
|
-
color: colors.primary
|
|
136
|
-
}],
|
|
137
|
-
children: t('signin.totp.useBackupCode') || 'Use backup code'
|
|
138
|
-
})
|
|
139
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
140
|
-
style: [styles.footerText, {
|
|
141
|
-
color: colors.secondaryText
|
|
142
|
-
}],
|
|
143
|
-
children: "\u2022"
|
|
144
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
145
|
-
onPress: () => navigate('RecoverAccount', {
|
|
146
|
-
prefillUsername: username
|
|
147
|
-
}),
|
|
148
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
149
|
-
style: [styles.linkText, {
|
|
150
|
-
color: colors.primary
|
|
151
|
-
}],
|
|
152
|
-
children: t('signin.totp.useRecoveryKey') || 'Use recovery key'
|
|
153
|
-
})
|
|
154
|
-
})]
|
|
155
|
-
})]
|
|
156
|
-
})]
|
|
157
|
-
});
|
|
158
|
-
};
|
|
159
|
-
var _default = exports.default = SignInTotpStep;
|
|
160
|
-
const stylesheet = _reactNative.StyleSheet.create({
|
|
161
|
-
inputSection: {
|
|
162
|
-
gap: _spacing.STEP_INNER_GAP
|
|
163
|
-
},
|
|
164
|
-
pinInputWrapper: {
|
|
165
|
-
marginBottom: 0,
|
|
166
|
-
marginTop: 0
|
|
167
|
-
},
|
|
168
|
-
errorContainer: {
|
|
169
|
-
flexDirection: 'row',
|
|
170
|
-
alignItems: 'center',
|
|
171
|
-
marginTop: 0,
|
|
172
|
-
padding: _spacing.STEP_INNER_GAP,
|
|
173
|
-
borderRadius: 8,
|
|
174
|
-
borderWidth: 1,
|
|
175
|
-
shadowColor: 'transparent',
|
|
176
|
-
gap: _spacing.STEP_INNER_GAP
|
|
177
|
-
},
|
|
178
|
-
footerContainer: {
|
|
179
|
-
alignItems: 'center',
|
|
180
|
-
gap: _spacing.STEP_INNER_GAP
|
|
181
|
-
},
|
|
182
|
-
footerLinks: {
|
|
183
|
-
flexDirection: 'row',
|
|
184
|
-
gap: _spacing.STEP_INNER_GAP,
|
|
185
|
-
marginTop: 0
|
|
186
|
-
}
|
|
187
|
-
});
|
|
188
|
-
//# sourceMappingURL=SignInTotpStep.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_vectorIcons","_GroupedPillButtons","_interopRequireDefault","_PinInput","_useI18n","_spacing","_jsxRuntime","e","__esModule","default","SignInTotpStep","colors","styles","navigate","prevStep","nextStep","username","mfaToken","completeMfaLogin","errorMessage","setErrorMessage","isLoading","code","setCode","useState","inputRef","useRef","t","useI18n","baseStyles","stepStyles","webShadowReset","Platform","OS","boxShadow","handleVerify","length","message","setTimeout","current","focus","jsxs","Fragment","children","View","style","container","sectionSpacing","header","jsx","Text","modernTitle","title","color","text","marginBottom","marginTop","modernSubtitle","subtitle","secondaryText","stylesheet","inputSection","pinInputWrapper","ref","value","onChange","disabled","autoFocus","errorContainer","backgroundColor","error","borderColor","Ionicons","name","size","footerText","fontSize","buttonContainer","buttons","onPress","icon","variant","loading","footerContainer","footerLinks","TouchableOpacity","prefillUsername","linkText","primary","_default","exports","StyleSheet","create","gap","STEP_INNER_GAP","flexDirection","alignItems","padding","borderRadius","borderWidth","shadowColor"],"sourceRoot":"../../../../../src","sources":["ui/screens/steps/SignInTotpStep.tsx"],"mappings":"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","ignoreList":[]}
|