@oxyhq/services 5.16.23 → 5.16.24
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/lib/commonjs/assets/OxyLogo.svg +1 -0
- package/lib/commonjs/assets/assets/OxyLogo.svg +1 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/commonjs/assets/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/commonjs/assets/assets/icons/OxyServices.tsx +67 -0
- package/lib/commonjs/assets/assets/icons/logo_OxyServices.svg +1 -0
- package/lib/commonjs/assets/assets/illustrations/HighFive.tsx +41 -0
- package/lib/commonjs/assets/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/commonjs/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/commonjs/assets/icons/OxyServices.js +51 -0
- package/lib/commonjs/assets/icons/OxyServices.js.map +1 -0
- package/lib/commonjs/assets/icons/logo_OxyServices.svg +1 -0
- package/lib/commonjs/assets/illustrations/HighFive.js +59 -0
- package/lib/commonjs/assets/illustrations/HighFive.js.map +1 -0
- package/lib/commonjs/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/commonjs/constants/version.js +28 -0
- package/lib/commonjs/constants/version.js.map +1 -0
- package/lib/commonjs/core/HttpService.js +507 -0
- package/lib/commonjs/core/HttpService.js.map +1 -0
- package/lib/commonjs/core/OxyServices.base.js +283 -0
- package/lib/commonjs/core/OxyServices.base.js.map +1 -0
- package/lib/commonjs/core/OxyServices.errors.js +26 -0
- package/lib/commonjs/core/OxyServices.errors.js.map +1 -0
- package/lib/commonjs/core/OxyServices.js +146 -0
- package/lib/commonjs/core/OxyServices.js.map +1 -0
- package/lib/commonjs/core/index.js +126 -0
- package/lib/commonjs/core/index.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.analytics.js +60 -0
- package/lib/commonjs/core/mixins/OxyServices.analytics.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.assets.js +375 -0
- package/lib/commonjs/core/mixins/OxyServices.assets.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.auth.js +271 -0
- package/lib/commonjs/core/mixins/OxyServices.auth.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.developer.js +115 -0
- package/lib/commonjs/core/mixins/OxyServices.developer.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.devices.js +133 -0
- package/lib/commonjs/core/mixins/OxyServices.devices.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.karma.js +117 -0
- package/lib/commonjs/core/mixins/OxyServices.karma.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.language.js +124 -0
- package/lib/commonjs/core/mixins/OxyServices.language.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.location.js +55 -0
- package/lib/commonjs/core/mixins/OxyServices.location.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.payment.js +168 -0
- package/lib/commonjs/core/mixins/OxyServices.payment.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.privacy.js +174 -0
- package/lib/commonjs/core/mixins/OxyServices.privacy.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.security.js +96 -0
- package/lib/commonjs/core/mixins/OxyServices.security.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.user.js +393 -0
- package/lib/commonjs/core/mixins/OxyServices.user.js.map +1 -0
- package/lib/commonjs/core/mixins/OxyServices.utility.js +165 -0
- package/lib/commonjs/core/mixins/OxyServices.utility.js.map +1 -0
- package/lib/commonjs/core/mixins/index.js +39 -0
- package/lib/commonjs/core/mixins/index.js.map +1 -0
- package/lib/commonjs/core/mixins/mixinHelpers.js +62 -0
- package/lib/commonjs/core/mixins/mixinHelpers.js.map +1 -0
- package/lib/commonjs/core/services/SessionService.js +163 -0
- package/lib/commonjs/core/services/SessionService.js.map +1 -0
- package/lib/commonjs/core/services/TokenService.js +206 -0
- package/lib/commonjs/core/services/TokenService.js.map +1 -0
- package/lib/commonjs/crypto/index.js +27 -0
- package/lib/commonjs/crypto/index.js.map +1 -0
- package/lib/commonjs/crypto/keyManager.js +511 -0
- package/lib/commonjs/crypto/keyManager.js.map +1 -0
- package/lib/commonjs/crypto/polyfill.js +86 -0
- package/lib/commonjs/crypto/polyfill.js.map +1 -0
- package/lib/commonjs/crypto/signatureService.js +289 -0
- package/lib/commonjs/crypto/signatureService.js.map +1 -0
- package/lib/commonjs/crypto/types.js +2 -0
- package/lib/commonjs/crypto/types.js.map +1 -0
- package/lib/commonjs/i18n/index.js +76 -0
- package/lib/commonjs/i18n/index.js.map +1 -0
- package/lib/commonjs/i18n/locales/ar-SA.json +120 -0
- package/lib/commonjs/i18n/locales/ca-ES.json +120 -0
- package/lib/commonjs/i18n/locales/de-DE.json +120 -0
- package/lib/commonjs/i18n/locales/en-US.json +956 -0
- package/lib/commonjs/i18n/locales/es-ES.json +723 -0
- package/lib/commonjs/i18n/locales/fr-FR.json +120 -0
- package/lib/commonjs/i18n/locales/it-IT.json +120 -0
- package/lib/commonjs/i18n/locales/ja-JP.json +119 -0
- package/lib/commonjs/i18n/locales/ko-KR.json +120 -0
- package/lib/commonjs/i18n/locales/pt-PT.json +120 -0
- package/lib/commonjs/i18n/locales/zh-CN.json +120 -0
- package/lib/commonjs/index.js +601 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/lib/sonner-safe.js +32 -0
- package/lib/commonjs/lib/sonner-safe.js.map +1 -0
- package/lib/commonjs/lib/sonner.js +23 -0
- package/lib/commonjs/lib/sonner.js.map +1 -0
- package/lib/commonjs/models/interfaces.js +76 -0
- package/lib/commonjs/models/interfaces.js.map +1 -0
- package/lib/commonjs/models/session.js +2 -0
- package/lib/commonjs/models/session.js.map +1 -0
- package/lib/commonjs/node/index.js +59 -0
- package/lib/commonjs/node/index.js.map +1 -0
- package/lib/commonjs/ui/components/ActivityIndicator.js +203 -0
- package/lib/commonjs/ui/components/ActivityIndicator.js.map +1 -0
- package/lib/commonjs/ui/components/AnimationExample.js +213 -0
- package/lib/commonjs/ui/components/AnimationExample.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/Avatar.js +172 -0
- package/lib/commonjs/ui/components/Avatar.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/ErrorBoundary.js +145 -0
- package/lib/commonjs/ui/components/ErrorBoundary.js.map +1 -0
- package/lib/commonjs/ui/components/FollowButton.js +230 -0
- package/lib/commonjs/ui/components/FollowButton.js.map +1 -0
- package/lib/commonjs/ui/components/FontLoader.js +162 -0
- package/lib/commonjs/ui/components/FontLoader.js.map +1 -0
- package/lib/commonjs/ui/components/GroupedItem.js +140 -0
- package/lib/commonjs/ui/components/GroupedItem.js.map +1 -0
- package/lib/commonjs/ui/components/GroupedSection.js +42 -0
- package/lib/commonjs/ui/components/GroupedSection.js.map +1 -0
- package/lib/commonjs/ui/components/Header.js +434 -0
- package/lib/commonjs/ui/components/Header.js.map +1 -0
- 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/OxyLogo.js +54 -0
- package/lib/commonjs/ui/components/OxyLogo.js.map +1 -0
- package/lib/commonjs/ui/components/OxyPayButton.js +117 -0
- package/lib/commonjs/ui/components/OxyPayButton.js.map +1 -0
- package/lib/commonjs/ui/components/OxyProvider.js +144 -0
- package/lib/commonjs/ui/components/OxyProvider.js.map +1 -0
- package/lib/commonjs/ui/components/OxySignInButton.js +180 -0
- package/lib/commonjs/ui/components/OxySignInButton.js.map +1 -0
- package/lib/commonjs/ui/components/ProfileCard.js +138 -0
- package/lib/commonjs/ui/components/ProfileCard.js.map +1 -0
- package/lib/commonjs/ui/components/QuickActions.js +88 -0
- package/lib/commonjs/ui/components/QuickActions.js.map +1 -0
- package/lib/commonjs/ui/components/Section.js +39 -0
- package/lib/commonjs/ui/components/Section.js.map +1 -0
- package/lib/commonjs/ui/components/SectionTitle.js +35 -0
- package/lib/commonjs/ui/components/SectionTitle.js.map +1 -0
- 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 +397 -0
- package/lib/commonjs/ui/components/StepBasedScreen.js.map +1 -0
- 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 +379 -0
- package/lib/commonjs/ui/components/TextField/TextFieldFlat.js.map +1 -0
- package/lib/commonjs/ui/components/TextField/TextFieldOutlined.js +363 -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/icon/FAIRWalletIcon.js +64 -0
- package/lib/commonjs/ui/components/icon/FAIRWalletIcon.js.map +1 -0
- package/lib/commonjs/ui/components/icon/OxyIcon.js +25 -0
- package/lib/commonjs/ui/components/icon/OxyIcon.js.map +1 -0
- package/lib/commonjs/ui/components/icon/index.js +21 -0
- package/lib/commonjs/ui/components/icon/index.js.map +1 -0
- package/lib/commonjs/ui/components/index.js +132 -0
- package/lib/commonjs/ui/components/index.js.map +1 -0
- package/lib/commonjs/ui/components/internal/GroupedPillButtons.js +209 -0
- package/lib/commonjs/ui/components/internal/GroupedPillButtons.js.map +1 -0
- package/lib/commonjs/ui/components/internal/PinInput.js +115 -0
- package/lib/commonjs/ui/components/internal/PinInput.js.map +1 -0
- package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js +161 -0
- package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js.map +1 -0
- 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 +204 -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/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 +850 -0
- package/lib/commonjs/ui/context/OxyContext.js.map +1 -0
- 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 +621 -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 +281 -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/hooks/index.js +46 -0
- package/lib/commonjs/ui/hooks/index.js.map +1 -0
- package/lib/commonjs/ui/hooks/mutations/index.js +68 -0
- package/lib/commonjs/ui/hooks/mutations/index.js.map +1 -0
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js +551 -0
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js.map +1 -0
- package/lib/commonjs/ui/hooks/mutations/useServicesMutations.js +193 -0
- package/lib/commonjs/ui/hooks/mutations/useServicesMutations.js.map +1 -0
- package/lib/commonjs/ui/hooks/queries/index.js +118 -0
- package/lib/commonjs/ui/hooks/queries/index.js.map +1 -0
- package/lib/commonjs/ui/hooks/queries/queryKeys.js +96 -0
- package/lib/commonjs/ui/hooks/queries/queryKeys.js.map +1 -0
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js +219 -0
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js.map +1 -0
- package/lib/commonjs/ui/hooks/queries/useSecurityQueries.js +58 -0
- package/lib/commonjs/ui/hooks/queries/useSecurityQueries.js.map +1 -0
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js +186 -0
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js.map +1 -0
- package/lib/commonjs/ui/hooks/queryClient.js +117 -0
- package/lib/commonjs/ui/hooks/queryClient.js.map +1 -0
- 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 +245 -0
- package/lib/commonjs/ui/hooks/useAssets.js.map +1 -0
- package/lib/commonjs/ui/hooks/useDeviceManagement.js +73 -0
- package/lib/commonjs/ui/hooks/useDeviceManagement.js.map +1 -0
- package/lib/commonjs/ui/hooks/useFileDownloadUrl.js +103 -0
- package/lib/commonjs/ui/hooks/useFileDownloadUrl.js.map +1 -0
- package/lib/commonjs/ui/hooks/useFollow.js +167 -0
- package/lib/commonjs/ui/hooks/useFollow.js.map +1 -0
- package/lib/commonjs/ui/hooks/useFollow.types.js +2 -0
- package/lib/commonjs/ui/hooks/useFollow.types.js.map +1 -0
- package/lib/commonjs/ui/hooks/useI18n.js +22 -0
- package/lib/commonjs/ui/hooks/useI18n.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 +107 -0
- package/lib/commonjs/ui/hooks/useProfileEditing.js.map +1 -0
- package/lib/commonjs/ui/hooks/useQueryClient.js +20 -0
- package/lib/commonjs/ui/hooks/useQueryClient.js.map +1 -0
- package/lib/commonjs/ui/hooks/useSessionManagement.js +281 -0
- package/lib/commonjs/ui/hooks/useSessionManagement.js.map +1 -0
- package/lib/commonjs/ui/hooks/useSessionSocket.js +474 -0
- package/lib/commonjs/ui/hooks/useSessionSocket.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 +101 -0
- package/lib/commonjs/ui/index.js.map +1 -0
- package/lib/commonjs/ui/isFrontend.js +10 -0
- package/lib/commonjs/ui/isFrontend.js.map +1 -0
- 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 +88 -0
- package/lib/commonjs/ui/navigation/routes.js.map +1 -0
- package/lib/commonjs/ui/screens/AccountCenterScreen.js +329 -0
- package/lib/commonjs/ui/screens/AccountCenterScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/AccountOverviewScreen.js +752 -0
- package/lib/commonjs/ui/screens/AccountOverviewScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js +2163 -0
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js +703 -0
- package/lib/commonjs/ui/screens/AccountSwitcherScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js +210 -0
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/AppInfoScreen.js +414 -0
- package/lib/commonjs/ui/screens/AppInfoScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/FeedbackScreen.js +1191 -0
- package/lib/commonjs/ui/screens/FeedbackScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/FileManagementScreen.js +2333 -0
- package/lib/commonjs/ui/screens/FileManagementScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/HelpSupportScreen.js +134 -0
- package/lib/commonjs/ui/screens/HelpSupportScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/HistoryViewScreen.js +218 -0
- package/lib/commonjs/ui/screens/HistoryViewScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +218 -0
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +184 -0
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/OxyAuthScreen.js +537 -0
- package/lib/commonjs/ui/screens/OxyAuthScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js +1587 -0
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +1647 -0
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +472 -0
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/ProfileScreen.js +647 -0
- package/lib/commonjs/ui/screens/ProfileScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js +167 -0
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js +166 -0
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/SessionManagementScreen.js +445 -0
- package/lib/commonjs/ui/screens/SessionManagementScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/UserLinksScreen.js +86 -0
- package/lib/commonjs/ui/screens/UserLinksScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +434 -0
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js +98 -0
- package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js +343 -0
- package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js +194 -0
- package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js +151 -0
- package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js +609 -0
- package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js.map +1 -0
- package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js +109 -0
- package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js.map +1 -0
- package/lib/commonjs/ui/stores/accountStore.js +252 -0
- package/lib/commonjs/ui/stores/accountStore.js.map +1 -0
- package/lib/commonjs/ui/stores/assetStore.js +225 -0
- package/lib/commonjs/ui/stores/assetStore.js.map +1 -0
- package/lib/commonjs/ui/stores/authStore.js +85 -0
- package/lib/commonjs/ui/stores/authStore.js.map +1 -0
- package/lib/commonjs/ui/stores/fileStore.js +153 -0
- package/lib/commonjs/ui/stores/fileStore.js.map +1 -0
- package/lib/commonjs/ui/stores/followStore.js +229 -0
- package/lib/commonjs/ui/stores/followStore.js.map +1 -0
- package/lib/commonjs/ui/styles/authStyles.js +338 -0
- package/lib/commonjs/ui/styles/authStyles.js.map +1 -0
- package/lib/commonjs/ui/styles/fonts.js +84 -0
- package/lib/commonjs/ui/styles/fonts.js.map +1 -0
- package/lib/commonjs/ui/styles/index.js +50 -0
- package/lib/commonjs/ui/styles/index.js.map +1 -0
- package/lib/commonjs/ui/styles/spacing.js +109 -0
- package/lib/commonjs/ui/styles/spacing.js.map +1 -0
- package/lib/commonjs/ui/styles/theme.js +121 -0
- package/lib/commonjs/ui/styles/theme.js.map +1 -0
- 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/avatarUtils.js +131 -0
- package/lib/commonjs/ui/utils/avatarUtils.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/confirmAction.js +28 -0
- package/lib/commonjs/ui/utils/confirmAction.js.map +1 -0
- package/lib/commonjs/ui/utils/errorHandlers.js +137 -0
- package/lib/commonjs/ui/utils/errorHandlers.js.map +1 -0
- package/lib/commonjs/ui/utils/fileManagement.js +260 -0
- package/lib/commonjs/ui/utils/fileManagement.js.map +1 -0
- package/lib/commonjs/ui/utils/sessionHelpers.js +101 -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/apiUtils.js +79 -0
- package/lib/commonjs/utils/apiUtils.js.map +1 -0
- package/lib/commonjs/utils/asyncUtils.js +207 -0
- package/lib/commonjs/utils/asyncUtils.js.map +1 -0
- package/lib/commonjs/utils/cache.js +259 -0
- package/lib/commonjs/utils/cache.js.map +1 -0
- package/lib/commonjs/utils/deviceManager.js +177 -0
- package/lib/commonjs/utils/deviceManager.js.map +1 -0
- package/lib/commonjs/utils/errorUtils.js +181 -0
- package/lib/commonjs/utils/errorUtils.js.map +1 -0
- package/lib/commonjs/utils/hookUtils.js +399 -0
- package/lib/commonjs/utils/hookUtils.js.map +1 -0
- package/lib/commonjs/utils/index.js +106 -0
- package/lib/commonjs/utils/index.js.map +1 -0
- package/lib/commonjs/utils/languageUtils.js +159 -0
- package/lib/commonjs/utils/languageUtils.js.map +1 -0
- package/lib/commonjs/utils/loggerUtils.js +160 -0
- package/lib/commonjs/utils/loggerUtils.js.map +1 -0
- package/lib/commonjs/utils/requestUtils.js +217 -0
- package/lib/commonjs/utils/requestUtils.js.map +1 -0
- package/lib/commonjs/utils/sessionUtils.js +191 -0
- package/lib/commonjs/utils/sessionUtils.js.map +1 -0
- package/lib/commonjs/utils/validationUtils.js +191 -0
- package/lib/commonjs/utils/validationUtils.js.map +1 -0
- package/lib/module/assets/OxyLogo.svg +1 -0
- package/lib/module/assets/assets/OxyLogo.svg +1 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/module/assets/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/module/assets/assets/icons/OxyServices.tsx +67 -0
- package/lib/module/assets/assets/icons/logo_OxyServices.svg +1 -0
- package/lib/module/assets/assets/illustrations/HighFive.tsx +41 -0
- package/lib/module/assets/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Black.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Bold.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-ExtraBold.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Light.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Medium.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-Regular.ttf +0 -0
- package/lib/module/assets/fonts/Phudu/Phudu-SemiBold.ttf +0 -0
- package/lib/module/assets/icons/OxyServices.js +45 -0
- package/lib/module/assets/icons/OxyServices.js.map +1 -0
- package/lib/module/assets/icons/logo_OxyServices.svg +1 -0
- package/lib/module/assets/illustrations/HighFive.js +54 -0
- package/lib/module/assets/illustrations/HighFive.js.map +1 -0
- package/lib/module/assets/lottie/welcomeheader_background_op1.json +1 -0
- package/lib/module/constants/version.js +21 -0
- package/lib/module/constants/version.js.map +1 -0
- package/lib/module/core/HttpService.js +502 -0
- package/lib/module/core/HttpService.js.map +1 -0
- package/lib/module/core/OxyServices.base.js +278 -0
- package/lib/module/core/OxyServices.base.js.map +1 -0
- package/lib/module/core/OxyServices.errors.js +20 -0
- package/lib/module/core/OxyServices.errors.js.map +1 -0
- package/lib/module/core/OxyServices.js +131 -0
- package/lib/module/core/OxyServices.js.map +1 -0
- package/lib/module/core/index.js +27 -0
- package/lib/module/core/index.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.analytics.js +56 -0
- package/lib/module/core/mixins/OxyServices.analytics.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.assets.js +371 -0
- package/lib/module/core/mixins/OxyServices.assets.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.auth.js +267 -0
- package/lib/module/core/mixins/OxyServices.auth.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.developer.js +111 -0
- package/lib/module/core/mixins/OxyServices.developer.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.devices.js +129 -0
- package/lib/module/core/mixins/OxyServices.devices.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.karma.js +113 -0
- package/lib/module/core/mixins/OxyServices.karma.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.language.js +120 -0
- package/lib/module/core/mixins/OxyServices.language.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.location.js +51 -0
- package/lib/module/core/mixins/OxyServices.location.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.payment.js +164 -0
- package/lib/module/core/mixins/OxyServices.payment.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.privacy.js +170 -0
- package/lib/module/core/mixins/OxyServices.privacy.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.security.js +92 -0
- package/lib/module/core/mixins/OxyServices.security.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.user.js +389 -0
- package/lib/module/core/mixins/OxyServices.user.js.map +1 -0
- package/lib/module/core/mixins/OxyServices.utility.js +160 -0
- package/lib/module/core/mixins/OxyServices.utility.js.map +1 -0
- package/lib/module/core/mixins/index.js +36 -0
- package/lib/module/core/mixins/index.js.map +1 -0
- package/lib/module/core/mixins/mixinHelpers.js +56 -0
- package/lib/module/core/mixins/mixinHelpers.js.map +1 -0
- package/lib/module/core/services/SessionService.js +159 -0
- package/lib/module/core/services/SessionService.js.map +1 -0
- package/lib/module/core/services/TokenService.js +203 -0
- package/lib/module/core/services/TokenService.js.map +1 -0
- package/lib/module/crypto/index.js +16 -0
- package/lib/module/crypto/index.js.map +1 -0
- package/lib/module/crypto/keyManager.js +508 -0
- package/lib/module/crypto/keyManager.js.map +1 -0
- package/lib/module/crypto/polyfill.js +78 -0
- package/lib/module/crypto/polyfill.js.map +1 -0
- package/lib/module/crypto/signatureService.js +286 -0
- package/lib/module/crypto/signatureService.js.map +1 -0
- package/lib/module/crypto/types.js +2 -0
- package/lib/module/crypto/types.js.map +1 -0
- package/lib/module/i18n/index.js +71 -0
- package/lib/module/i18n/index.js.map +1 -0
- package/lib/module/i18n/locales/ar-SA.json +120 -0
- package/lib/module/i18n/locales/ca-ES.json +120 -0
- package/lib/module/i18n/locales/de-DE.json +120 -0
- package/lib/module/i18n/locales/en-US.json +956 -0
- package/lib/module/i18n/locales/es-ES.json +723 -0
- package/lib/module/i18n/locales/fr-FR.json +120 -0
- package/lib/module/i18n/locales/it-IT.json +120 -0
- package/lib/module/i18n/locales/ja-JP.json +119 -0
- package/lib/module/i18n/locales/ko-KR.json +120 -0
- package/lib/module/i18n/locales/pt-PT.json +120 -0
- package/lib/module/i18n/locales/zh-CN.json +120 -0
- package/lib/module/index.js +74 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/lib/sonner-safe.js +29 -0
- package/lib/module/lib/sonner-safe.js.map +1 -0
- package/lib/module/lib/sonner.js +19 -0
- package/lib/module/lib/sonner.js.map +1 -0
- package/lib/module/models/interfaces.js +72 -0
- package/lib/module/models/interfaces.js.map +1 -0
- package/lib/module/models/session.js +2 -0
- package/lib/module/models/session.js.map +1 -0
- package/lib/module/node/index.js +20 -0
- package/lib/module/node/index.js.map +1 -0
- package/lib/module/ui/components/ActivityIndicator.js +198 -0
- package/lib/module/ui/components/ActivityIndicator.js.map +1 -0
- package/lib/module/ui/components/AnimationExample.js +209 -0
- package/lib/module/ui/components/AnimationExample.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/Avatar.js +168 -0
- package/lib/module/ui/components/Avatar.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/ErrorBoundary.js +139 -0
- package/lib/module/ui/components/ErrorBoundary.js.map +1 -0
- package/lib/module/ui/components/FollowButton.js +226 -0
- package/lib/module/ui/components/FollowButton.js.map +1 -0
- package/lib/module/ui/components/FontLoader.js +157 -0
- package/lib/module/ui/components/FontLoader.js.map +1 -0
- package/lib/module/ui/components/GroupedItem.js +135 -0
- package/lib/module/ui/components/GroupedItem.js.map +1 -0
- package/lib/module/ui/components/GroupedSection.js +37 -0
- package/lib/module/ui/components/GroupedSection.js.map +1 -0
- package/lib/module/ui/components/Header.js +428 -0
- package/lib/module/ui/components/Header.js.map +1 -0
- 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/OxyLogo.js +48 -0
- package/lib/module/ui/components/OxyLogo.js.map +1 -0
- package/lib/module/ui/components/OxyPayButton.js +112 -0
- package/lib/module/ui/components/OxyPayButton.js.map +1 -0
- package/lib/module/ui/components/OxyProvider.js +140 -0
- package/lib/module/ui/components/OxyProvider.js.map +1 -0
- package/lib/module/ui/components/OxySignInButton.js +174 -0
- package/lib/module/ui/components/OxySignInButton.js.map +1 -0
- package/lib/module/ui/components/ProfileCard.js +133 -0
- package/lib/module/ui/components/ProfileCard.js.map +1 -0
- package/lib/module/ui/components/QuickActions.js +84 -0
- package/lib/module/ui/components/QuickActions.js.map +1 -0
- package/lib/module/ui/components/Section.js +34 -0
- package/lib/module/ui/components/Section.js.map +1 -0
- package/lib/module/ui/components/SectionTitle.js +31 -0
- package/lib/module/ui/components/SectionTitle.js.map +1 -0
- 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 +392 -0
- package/lib/module/ui/components/StepBasedScreen.js.map +1 -0
- 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 +374 -0
- package/lib/module/ui/components/TextField/TextFieldFlat.js.map +1 -0
- package/lib/module/ui/components/TextField/TextFieldOutlined.js +357 -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/icon/FAIRWalletIcon.js +59 -0
- package/lib/module/ui/components/icon/FAIRWalletIcon.js.map +1 -0
- package/lib/module/ui/components/icon/OxyIcon.js +21 -0
- package/lib/module/ui/components/icon/OxyIcon.js.map +1 -0
- package/lib/module/ui/components/icon/index.js +5 -0
- package/lib/module/ui/components/icon/index.js.map +1 -0
- package/lib/module/ui/components/index.js +22 -0
- package/lib/module/ui/components/index.js.map +1 -0
- package/lib/module/ui/components/internal/GroupedPillButtons.js +205 -0
- package/lib/module/ui/components/internal/GroupedPillButtons.js.map +1 -0
- package/lib/module/ui/components/internal/PinInput.js +110 -0
- package/lib/module/ui/components/internal/PinInput.js.map +1 -0
- package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js +156 -0
- package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js.map +1 -0
- 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 +198 -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/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 +844 -0
- package/lib/module/ui/context/OxyContext.js.map +1 -0
- 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 +615 -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 +276 -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/hooks/index.js +7 -0
- package/lib/module/ui/hooks/index.js.map +1 -0
- package/lib/module/ui/hooks/mutations/index.js +15 -0
- package/lib/module/ui/hooks/mutations/index.js.map +1 -0
- package/lib/module/ui/hooks/mutations/useAccountMutations.js +543 -0
- package/lib/module/ui/hooks/mutations/useAccountMutations.js.map +1 -0
- package/lib/module/ui/hooks/mutations/useServicesMutations.js +185 -0
- package/lib/module/ui/hooks/mutations/useServicesMutations.js.map +1 -0
- package/lib/module/ui/hooks/queries/index.js +21 -0
- package/lib/module/ui/hooks/queries/index.js.map +1 -0
- package/lib/module/ui/hooks/queries/queryKeys.js +89 -0
- package/lib/module/ui/hooks/queries/queryKeys.js.map +1 -0
- package/lib/module/ui/hooks/queries/useAccountQueries.js +209 -0
- package/lib/module/ui/hooks/queries/useAccountQueries.js.map +1 -0
- package/lib/module/ui/hooks/queries/useSecurityQueries.js +52 -0
- package/lib/module/ui/hooks/queries/useSecurityQueries.js.map +1 -0
- package/lib/module/ui/hooks/queries/useServicesQueries.js +178 -0
- package/lib/module/ui/hooks/queries/useServicesQueries.js.map +1 -0
- package/lib/module/ui/hooks/queryClient.js +110 -0
- package/lib/module/ui/hooks/queryClient.js.map +1 -0
- 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 +239 -0
- package/lib/module/ui/hooks/useAssets.js.map +1 -0
- package/lib/module/ui/hooks/useDeviceManagement.js +68 -0
- package/lib/module/ui/hooks/useDeviceManagement.js.map +1 -0
- package/lib/module/ui/hooks/useFileDownloadUrl.js +97 -0
- package/lib/module/ui/hooks/useFileDownloadUrl.js.map +1 -0
- package/lib/module/ui/hooks/useFollow.js +161 -0
- package/lib/module/ui/hooks/useFollow.js.map +1 -0
- package/lib/module/ui/hooks/useFollow.types.js +2 -0
- package/lib/module/ui/hooks/useFollow.types.js.map +1 -0
- package/lib/module/ui/hooks/useI18n.js +18 -0
- package/lib/module/ui/hooks/useI18n.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 +102 -0
- package/lib/module/ui/hooks/useProfileEditing.js.map +1 -0
- package/lib/module/ui/hooks/useQueryClient.js +15 -0
- package/lib/module/ui/hooks/useQueryClient.js.map +1 -0
- package/lib/module/ui/hooks/useSessionManagement.js +276 -0
- package/lib/module/ui/hooks/useSessionManagement.js.map +1 -0
- package/lib/module/ui/hooks/useSessionSocket.js +469 -0
- package/lib/module/ui/hooks/useSessionSocket.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 +63 -0
- package/lib/module/ui/index.js.map +1 -0
- package/lib/module/ui/isFrontend.js +6 -0
- package/lib/module/ui/isFrontend.js.map +1 -0
- 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 +82 -0
- package/lib/module/ui/navigation/routes.js.map +1 -0
- package/lib/module/ui/screens/AccountCenterScreen.js +324 -0
- package/lib/module/ui/screens/AccountCenterScreen.js.map +1 -0
- package/lib/module/ui/screens/AccountOverviewScreen.js +747 -0
- package/lib/module/ui/screens/AccountOverviewScreen.js.map +1 -0
- package/lib/module/ui/screens/AccountSettingsScreen.js +2158 -0
- package/lib/module/ui/screens/AccountSettingsScreen.js.map +1 -0
- package/lib/module/ui/screens/AccountSwitcherScreen.js +698 -0
- package/lib/module/ui/screens/AccountSwitcherScreen.js.map +1 -0
- package/lib/module/ui/screens/AccountVerificationScreen.js +205 -0
- package/lib/module/ui/screens/AccountVerificationScreen.js.map +1 -0
- package/lib/module/ui/screens/AppInfoScreen.js +409 -0
- package/lib/module/ui/screens/AppInfoScreen.js.map +1 -0
- package/lib/module/ui/screens/FeedbackScreen.js +1186 -0
- package/lib/module/ui/screens/FeedbackScreen.js.map +1 -0
- package/lib/module/ui/screens/FileManagementScreen.js +2327 -0
- package/lib/module/ui/screens/FileManagementScreen.js.map +1 -0
- package/lib/module/ui/screens/HelpSupportScreen.js +129 -0
- package/lib/module/ui/screens/HelpSupportScreen.js.map +1 -0
- package/lib/module/ui/screens/HistoryViewScreen.js +213 -0
- package/lib/module/ui/screens/HistoryViewScreen.js.map +1 -0
- package/lib/module/ui/screens/LanguageSelectorScreen.js +213 -0
- package/lib/module/ui/screens/LanguageSelectorScreen.js.map +1 -0
- package/lib/module/ui/screens/LegalDocumentsScreen.js +179 -0
- package/lib/module/ui/screens/LegalDocumentsScreen.js.map +1 -0
- package/lib/module/ui/screens/OxyAuthScreen.js +533 -0
- package/lib/module/ui/screens/OxyAuthScreen.js.map +1 -0
- package/lib/module/ui/screens/PaymentGatewayScreen.js +1583 -0
- package/lib/module/ui/screens/PaymentGatewayScreen.js.map +1 -0
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js +1643 -0
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +1 -0
- package/lib/module/ui/screens/PrivacySettingsScreen.js +467 -0
- package/lib/module/ui/screens/PrivacySettingsScreen.js.map +1 -0
- package/lib/module/ui/screens/ProfileScreen.js +642 -0
- package/lib/module/ui/screens/ProfileScreen.js.map +1 -0
- package/lib/module/ui/screens/SavesCollectionsScreen.js +162 -0
- package/lib/module/ui/screens/SavesCollectionsScreen.js.map +1 -0
- package/lib/module/ui/screens/SearchSettingsScreen.js +161 -0
- package/lib/module/ui/screens/SearchSettingsScreen.js.map +1 -0
- package/lib/module/ui/screens/SessionManagementScreen.js +442 -0
- package/lib/module/ui/screens/SessionManagementScreen.js.map +1 -0
- package/lib/module/ui/screens/UserLinksScreen.js +82 -0
- package/lib/module/ui/screens/UserLinksScreen.js.map +1 -0
- package/lib/module/ui/screens/WelcomeNewUserScreen.js +428 -0
- package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +1 -0
- package/lib/module/ui/screens/karma/KarmaAboutScreen.js +94 -0
- package/lib/module/ui/screens/karma/KarmaAboutScreen.js.map +1 -0
- package/lib/module/ui/screens/karma/KarmaCenterScreen.js +339 -0
- package/lib/module/ui/screens/karma/KarmaCenterScreen.js.map +1 -0
- package/lib/module/ui/screens/karma/KarmaFAQScreen.js +189 -0
- package/lib/module/ui/screens/karma/KarmaFAQScreen.js.map +1 -0
- package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js +146 -0
- package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -0
- package/lib/module/ui/screens/karma/KarmaRewardsScreen.js +605 -0
- package/lib/module/ui/screens/karma/KarmaRewardsScreen.js.map +1 -0
- package/lib/module/ui/screens/karma/KarmaRulesScreen.js +105 -0
- package/lib/module/ui/screens/karma/KarmaRulesScreen.js.map +1 -0
- package/lib/module/ui/stores/accountStore.js +244 -0
- package/lib/module/ui/stores/accountStore.js.map +1 -0
- package/lib/module/ui/stores/assetStore.js +212 -0
- package/lib/module/ui/stores/assetStore.js.map +1 -0
- package/lib/module/ui/stores/authStore.js +81 -0
- package/lib/module/ui/stores/authStore.js.map +1 -0
- package/lib/module/ui/stores/fileStore.js +145 -0
- package/lib/module/ui/stores/fileStore.js.map +1 -0
- package/lib/module/ui/stores/followStore.js +225 -0
- package/lib/module/ui/stores/followStore.js.map +1 -0
- package/lib/module/ui/styles/authStyles.js +333 -0
- package/lib/module/ui/styles/authStyles.js.map +1 -0
- package/lib/module/ui/styles/fonts.js +81 -0
- package/lib/module/ui/styles/fonts.js.map +1 -0
- package/lib/module/ui/styles/index.js +7 -0
- package/lib/module/ui/styles/index.js.map +1 -0
- package/lib/module/ui/styles/spacing.js +58 -0
- package/lib/module/ui/styles/spacing.js.map +1 -0
- package/lib/module/ui/styles/theme.js +114 -0
- package/lib/module/ui/styles/theme.js.map +1 -0
- 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/avatarUtils.js +126 -0
- package/lib/module/ui/utils/avatarUtils.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/confirmAction.js +25 -0
- package/lib/module/ui/utils/confirmAction.js.map +1 -0
- package/lib/module/ui/utils/errorHandlers.js +129 -0
- package/lib/module/ui/utils/errorHandlers.js.map +1 -0
- package/lib/module/ui/utils/fileManagement.js +251 -0
- package/lib/module/ui/utils/fileManagement.js.map +1 -0
- package/lib/module/ui/utils/sessionHelpers.js +94 -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/apiUtils.js +72 -0
- package/lib/module/utils/apiUtils.js.map +1 -0
- package/lib/module/utils/asyncUtils.js +192 -0
- package/lib/module/utils/asyncUtils.js.map +1 -0
- package/lib/module/utils/cache.js +250 -0
- package/lib/module/utils/cache.js.map +1 -0
- package/lib/module/utils/deviceManager.js +171 -0
- package/lib/module/utils/deviceManager.js.map +1 -0
- package/lib/module/utils/errorUtils.js +167 -0
- package/lib/module/utils/errorUtils.js.map +1 -0
- package/lib/module/utils/hookUtils.js +381 -0
- package/lib/module/utils/hookUtils.js.map +1 -0
- package/lib/module/utils/index.js +11 -0
- package/lib/module/utils/index.js.map +1 -0
- package/lib/module/utils/languageUtils.js +151 -0
- package/lib/module/utils/languageUtils.js.map +1 -0
- package/lib/module/utils/loggerUtils.js +149 -0
- package/lib/module/utils/loggerUtils.js.map +1 -0
- package/lib/module/utils/requestUtils.js +210 -0
- package/lib/module/utils/requestUtils.js.map +1 -0
- package/lib/module/utils/sessionUtils.js +180 -0
- package/lib/module/utils/sessionUtils.js.map +1 -0
- package/lib/module/utils/validationUtils.js +170 -0
- package/lib/module/utils/validationUtils.js.map +1 -0
- package/lib/typescript/assets/icons/OxyServices.d.ts +29 -0
- package/lib/typescript/assets/icons/OxyServices.d.ts.map +1 -0
- package/lib/typescript/assets/illustrations/HighFive.d.ts +9 -0
- package/lib/typescript/assets/illustrations/HighFive.d.ts.map +1 -0
- package/lib/typescript/constants/version.d.ts +14 -0
- package/lib/typescript/constants/version.d.ts.map +1 -0
- package/lib/typescript/core/HttpService.d.ts +159 -0
- package/lib/typescript/core/HttpService.d.ts.map +1 -0
- package/lib/typescript/core/OxyServices.base.d.ts +133 -0
- package/lib/typescript/core/OxyServices.base.d.ts.map +1 -0
- package/lib/typescript/core/OxyServices.d.ts +113 -0
- package/lib/typescript/core/OxyServices.d.ts.map +1 -0
- package/lib/typescript/core/OxyServices.errors.d.ts +12 -0
- package/lib/typescript/core/OxyServices.errors.d.ts.map +1 -0
- package/lib/typescript/core/index.d.ts +17 -0
- package/lib/typescript/core/index.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.analytics.d.ts +67 -0
- package/lib/typescript/core/mixins/OxyServices.analytics.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.assets.d.ts +136 -0
- package/lib/typescript/core/mixins/OxyServices.assets.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.auth.d.ts +192 -0
- package/lib/typescript/core/mixins/OxyServices.auth.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.developer.d.ts +100 -0
- package/lib/typescript/core/mixins/OxyServices.developer.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.devices.d.ts +97 -0
- package/lib/typescript/core/mixins/OxyServices.devices.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.karma.d.ts +86 -0
- package/lib/typescript/core/mixins/OxyServices.karma.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.language.d.ts +82 -0
- package/lib/typescript/core/mixins/OxyServices.language.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.location.d.ts +65 -0
- package/lib/typescript/core/mixins/OxyServices.location.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.payment.d.ts +112 -0
- package/lib/typescript/core/mixins/OxyServices.payment.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.privacy.d.ts +123 -0
- package/lib/typescript/core/mixins/OxyServices.privacy.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.security.d.ts +79 -0
- package/lib/typescript/core/mixins/OxyServices.security.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.user.d.ts +183 -0
- package/lib/typescript/core/mixins/OxyServices.user.d.ts.map +1 -0
- package/lib/typescript/core/mixins/OxyServices.utility.d.ts +94 -0
- package/lib/typescript/core/mixins/OxyServices.utility.d.ts.map +1 -0
- package/lib/typescript/core/mixins/index.d.ts +853 -0
- package/lib/typescript/core/mixins/index.d.ts.map +1 -0
- package/lib/typescript/core/mixins/mixinHelpers.d.ts +32 -0
- package/lib/typescript/core/mixins/mixinHelpers.d.ts.map +1 -0
- package/lib/typescript/core/services/SessionService.d.ts +78 -0
- package/lib/typescript/core/services/SessionService.d.ts.map +1 -0
- package/lib/typescript/core/services/TokenService.d.ts +72 -0
- package/lib/typescript/core/services/TokenService.d.ts.map +1 -0
- package/lib/typescript/crypto/index.d.ts +12 -0
- package/lib/typescript/crypto/index.d.ts.map +1 -0
- package/lib/typescript/crypto/keyManager.d.ts +97 -0
- package/lib/typescript/crypto/keyManager.d.ts.map +1 -0
- package/lib/typescript/crypto/polyfill.d.ts +13 -0
- package/lib/typescript/crypto/polyfill.d.ts.map +1 -0
- package/lib/typescript/crypto/signatureService.d.ts +87 -0
- package/lib/typescript/crypto/signatureService.d.ts.map +1 -0
- package/lib/typescript/crypto/types.d.ts +18 -0
- package/lib/typescript/crypto/types.d.ts.map +1 -0
- package/lib/typescript/i18n/index.d.ts +4 -0
- package/lib/typescript/i18n/index.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +38 -0
- package/lib/typescript/index.d.ts.map +1 -0
- package/lib/typescript/lib/sonner-safe.d.ts +9 -0
- package/lib/typescript/lib/sonner-safe.d.ts.map +1 -0
- package/lib/typescript/lib/sonner.d.ts +15 -0
- package/lib/typescript/lib/sonner.d.ts.map +1 -0
- package/lib/typescript/models/interfaces.d.ts +428 -0
- package/lib/typescript/models/interfaces.d.ts.map +1 -0
- package/lib/typescript/models/session.d.ts +31 -0
- package/lib/typescript/models/session.d.ts.map +1 -0
- package/lib/typescript/node/index.d.ts +10 -0
- package/lib/typescript/node/index.d.ts.map +1 -0
- package/lib/typescript/types/buffer.d.ts +97 -0
- package/lib/typescript/types/color.d.ts +20 -0
- package/lib/typescript/types/elliptic.d.ts +62 -0
- package/lib/typescript/types/expo-crypto.d.ts +30 -0
- package/lib/typescript/types/expo-document-picker.d.ts +36 -0
- package/lib/typescript/types/expo-secure-store.d.ts +22 -0
- package/lib/typescript/types/expo-vector-icons.d.ts +19 -0
- package/lib/typescript/types/express.d.ts +24 -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/AnimationExample.d.ts +4 -0
- package/lib/typescript/ui/components/AnimationExample.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/Avatar.d.ts +61 -0
- package/lib/typescript/ui/components/Avatar.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/ErrorBoundary.d.ts +31 -0
- package/lib/typescript/ui/components/ErrorBoundary.d.ts.map +1 -0
- package/lib/typescript/ui/components/FollowButton.d.ts +18 -0
- package/lib/typescript/ui/components/FollowButton.d.ts.map +1 -0
- package/lib/typescript/ui/components/FontLoader.d.ts +15 -0
- package/lib/typescript/ui/components/FontLoader.d.ts.map +1 -0
- package/lib/typescript/ui/components/GroupedItem.d.ts +20 -0
- package/lib/typescript/ui/components/GroupedItem.d.ts.map +1 -0
- package/lib/typescript/ui/components/GroupedSection.d.ts +25 -0
- package/lib/typescript/ui/components/GroupedSection.d.ts.map +1 -0
- package/lib/typescript/ui/components/Header.d.ts +38 -0
- package/lib/typescript/ui/components/Header.d.ts.map +1 -0
- 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/OxyLogo.d.ts +29 -0
- package/lib/typescript/ui/components/OxyLogo.d.ts.map +1 -0
- package/lib/typescript/ui/components/OxyPayButton.d.ts +29 -0
- package/lib/typescript/ui/components/OxyPayButton.d.ts.map +1 -0
- package/lib/typescript/ui/components/OxyProvider.d.ts +11 -0
- package/lib/typescript/ui/components/OxyProvider.d.ts.map +1 -0
- package/lib/typescript/ui/components/OxySignInButton.d.ts +65 -0
- package/lib/typescript/ui/components/OxySignInButton.d.ts.map +1 -0
- package/lib/typescript/ui/components/ProfileCard.d.ts +18 -0
- package/lib/typescript/ui/components/ProfileCard.d.ts.map +1 -0
- package/lib/typescript/ui/components/QuickActions.d.ts +15 -0
- package/lib/typescript/ui/components/QuickActions.d.ts.map +1 -0
- package/lib/typescript/ui/components/Section.d.ts +12 -0
- package/lib/typescript/ui/components/Section.d.ts.map +1 -0
- package/lib/typescript/ui/components/SectionTitle.d.ts +10 -0
- package/lib/typescript/ui/components/SectionTitle.d.ts.map +1 -0
- 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 +26 -0
- package/lib/typescript/ui/components/StepBasedScreen.d.ts.map +1 -0
- 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/icon/FAIRWalletIcon.d.ts +9 -0
- package/lib/typescript/ui/components/icon/FAIRWalletIcon.d.ts.map +1 -0
- package/lib/typescript/ui/components/icon/OxyIcon.d.ts +10 -0
- package/lib/typescript/ui/components/icon/OxyIcon.d.ts.map +1 -0
- package/lib/typescript/ui/components/icon/index.d.ts +4 -0
- package/lib/typescript/ui/components/icon/index.d.ts.map +1 -0
- package/lib/typescript/ui/components/index.d.ts +17 -0
- package/lib/typescript/ui/components/index.d.ts.map +1 -0
- package/lib/typescript/ui/components/internal/GroupedPillButtons.d.ts +18 -0
- package/lib/typescript/ui/components/internal/GroupedPillButtons.d.ts.map +1 -0
- package/lib/typescript/ui/components/internal/PinInput.d.ts +23 -0
- package/lib/typescript/ui/components/internal/PinInput.d.ts.map +1 -0
- package/lib/typescript/ui/components/photogrid/JustifiedPhotoGrid.d.ts +27 -0
- package/lib/typescript/ui/components/photogrid/JustifiedPhotoGrid.d.ts.map +1 -0
- 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/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 +86 -0
- package/lib/typescript/ui/context/OxyContext.d.ts.map +1 -0
- 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 +59 -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 +41 -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/hooks/index.d.ts +5 -0
- package/lib/typescript/ui/hooks/index.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/mutations/index.d.ts +9 -0
- package/lib/typescript/ui/hooks/mutations/index.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/mutations/useAccountMutations.d.ts +44 -0
- package/lib/typescript/ui/hooks/mutations/useAccountMutations.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/mutations/useServicesMutations.d.ts +23 -0
- package/lib/typescript/ui/hooks/mutations/useServicesMutations.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/queries/index.d.ts +11 -0
- package/lib/typescript/ui/hooks/queries/index.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/queries/queryKeys.d.ts +65 -0
- package/lib/typescript/ui/hooks/queries/queryKeys.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/queries/useAccountQueries.d.ts +47 -0
- package/lib/typescript/ui/hooks/queries/useAccountQueries.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/queries/useSecurityQueries.d.ts +15 -0
- package/lib/typescript/ui/hooks/queries/useSecurityQueries.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/queries/useServicesQueries.d.ts +34 -0
- package/lib/typescript/ui/hooks/queries/useServicesQueries.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/queryClient.d.ts +19 -0
- package/lib/typescript/ui/hooks/queryClient.d.ts.map +1 -0
- 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/useAssets.d.ts +35 -0
- package/lib/typescript/ui/hooks/useAssets.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/useFileDownloadUrl.d.ts +19 -0
- package/lib/typescript/ui/hooks/useFileDownloadUrl.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useFollow.d.ts +62 -0
- package/lib/typescript/ui/hooks/useFollow.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useFollow.types.d.ts +33 -0
- package/lib/typescript/ui/hooks/useFollow.types.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useI18n.d.ts +5 -0
- package/lib/typescript/ui/hooks/useI18n.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/useQueryClient.d.ts +7 -0
- package/lib/typescript/ui/hooks/useQueryClient.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useSessionManagement.d.ts +41 -0
- package/lib/typescript/ui/hooks/useSessionManagement.d.ts.map +1 -0
- package/lib/typescript/ui/hooks/useSessionSocket.d.ts +28 -0
- package/lib/typescript/ui/hooks/useSessionSocket.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 +5 -0
- package/lib/typescript/ui/index.d.ts.map +1 -0
- package/lib/typescript/ui/isFrontend.d.ts +3 -0
- package/lib/typescript/ui/isFrontend.d.ts.map +1 -0
- 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 +6 -0
- package/lib/typescript/ui/navigation/routes.d.ts.map +1 -0
- package/lib/typescript/ui/screens/AccountCenterScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/AccountCenterScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/AccountOverviewScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts +8 -0
- package/lib/typescript/ui/screens/AccountSettingsScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/AccountSwitcherScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/AccountVerificationScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/AccountVerificationScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/AppInfoScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/AppInfoScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/FeedbackScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/FeedbackScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/FileManagementScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/FileManagementScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/HelpSupportScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/HelpSupportScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/HistoryViewScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/HistoryViewScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts +7 -0
- package/lib/typescript/ui/screens/LanguageSelectorScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/LegalDocumentsScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/LegalDocumentsScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/OxyAuthScreen.d.ts +17 -0
- package/lib/typescript/ui/screens/OxyAuthScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/PaymentGatewayScreen.d.ts +27 -0
- package/lib/typescript/ui/screens/PaymentGatewayScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/PremiumSubscriptionScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/PrivacySettingsScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/PrivacySettingsScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/ProfileScreen.d.ts +9 -0
- package/lib/typescript/ui/screens/ProfileScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/SavesCollectionsScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/SavesCollectionsScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/SearchSettingsScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/SearchSettingsScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/SessionManagementScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/SessionManagementScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/UserLinksScreen.d.ts +15 -0
- package/lib/typescript/ui/screens/UserLinksScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/WelcomeNewUserScreen.d.ts +13 -0
- package/lib/typescript/ui/screens/WelcomeNewUserScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/karma/KarmaAboutScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/karma/KarmaCenterScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/karma/KarmaFAQScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/karma/KarmaFAQScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/karma/KarmaLeaderboardScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/karma/KarmaRewardsScreen.d.ts.map +1 -0
- package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts +5 -0
- package/lib/typescript/ui/screens/karma/KarmaRulesScreen.d.ts.map +1 -0
- package/lib/typescript/ui/stores/accountStore.d.ts +34 -0
- package/lib/typescript/ui/stores/accountStore.d.ts.map +1 -0
- package/lib/typescript/ui/stores/assetStore.d.ts +54 -0
- package/lib/typescript/ui/stores/assetStore.d.ts.map +1 -0
- package/lib/typescript/ui/stores/authStore.d.ts +21 -0
- package/lib/typescript/ui/stores/authStore.d.ts.map +1 -0
- package/lib/typescript/ui/stores/fileStore.d.ts +31 -0
- package/lib/typescript/ui/stores/fileStore.d.ts.map +1 -0
- package/lib/typescript/ui/stores/followStore.d.ts +25 -0
- package/lib/typescript/ui/stores/followStore.d.ts.map +1 -0
- package/lib/typescript/ui/styles/authStyles.d.ts +332 -0
- package/lib/typescript/ui/styles/authStyles.d.ts.map +1 -0
- package/lib/typescript/ui/styles/fonts.d.ts +21 -0
- package/lib/typescript/ui/styles/fonts.d.ts.map +1 -0
- package/lib/typescript/ui/styles/index.d.ts +5 -0
- package/lib/typescript/ui/styles/index.d.ts.map +1 -0
- package/lib/typescript/ui/styles/spacing.d.ts +49 -0
- package/lib/typescript/ui/styles/spacing.d.ts.map +1 -0
- package/lib/typescript/ui/styles/theme.d.ts +68 -0
- package/lib/typescript/ui/styles/theme.d.ts.map +1 -0
- 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/avatarUtils.d.ts +34 -0
- package/lib/typescript/ui/utils/avatarUtils.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/confirmAction.d.ts +7 -0
- package/lib/typescript/ui/utils/confirmAction.d.ts.map +1 -0
- package/lib/typescript/ui/utils/errorHandlers.d.ts +35 -0
- package/lib/typescript/ui/utils/errorHandlers.d.ts.map +1 -0
- package/lib/typescript/ui/utils/fileManagement.d.ts +87 -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/apiUtils.d.ts +54 -0
- package/lib/typescript/utils/apiUtils.d.ts.map +1 -0
- package/lib/typescript/utils/asyncUtils.d.ts +59 -0
- package/lib/typescript/utils/asyncUtils.d.ts.map +1 -0
- package/lib/typescript/utils/cache.d.ts +128 -0
- package/lib/typescript/utils/cache.d.ts.map +1 -0
- package/lib/typescript/utils/deviceManager.d.ts +66 -0
- package/lib/typescript/utils/deviceManager.d.ts.map +1 -0
- package/lib/typescript/utils/errorUtils.d.ts +53 -0
- package/lib/typescript/utils/errorUtils.d.ts.map +1 -0
- package/lib/typescript/utils/hookUtils.d.ts +102 -0
- package/lib/typescript/utils/hookUtils.d.ts.map +1 -0
- package/lib/typescript/utils/index.d.ts +7 -0
- package/lib/typescript/utils/index.d.ts.map +1 -0
- package/lib/typescript/utils/languageUtils.d.ts +38 -0
- package/lib/typescript/utils/languageUtils.d.ts.map +1 -0
- package/lib/typescript/utils/loggerUtils.d.ts +49 -0
- package/lib/typescript/utils/loggerUtils.d.ts.map +1 -0
- package/lib/typescript/utils/requestUtils.d.ts +122 -0
- package/lib/typescript/utils/requestUtils.d.ts.map +1 -0
- package/lib/typescript/utils/sessionUtils.d.ts +55 -0
- package/lib/typescript/utils/sessionUtils.d.ts.map +1 -0
- package/lib/typescript/utils/validationUtils.d.ts +86 -0
- package/lib/typescript/utils/validationUtils.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/ui/context/OxyContext.tsx +1 -0
- package/src/ui/hooks/useSessionSocket.ts +13 -8
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","require","_reactNative","_fonts","_sonner","_confirmAction","_OxyIcon","_interopRequireDefault","_components","_useI18n","_useThemeStyles","_useColorScheme","_themeUtils","_OxyContext","_jsxRuntime","e","__esModule","default","ModernAccountSwitcherScreen","onClose","theme","navigate","goBack","oxyServices","user","sessions","activeSessionId","switchSession","removeSession","logoutAll","refreshSessions","isLoading","isAuthenticated","useOxy","sessionsWithUsers","setSessionsWithUsers","useState","switchingToUserId","setSwitchingToUserId","removingUserId","setRemovingUserId","showDeviceManagement","setShowDeviceManagement","deviceSessions","setDeviceSessions","loadingDeviceSessions","setLoadingDeviceSessions","remotingLogoutSessionId","setRemoteLogoutSessionId","loggingOutAllDevices","setLoggingOutAllDevices","screenWidth","Dimensions","get","width","t","useI18n","colorScheme","useColorScheme","normalizedTheme","normalizeTheme","themeStyles","useThemeStyles","colors","useMemo","background","backgroundColor","surface","secondaryBackgroundColor","card","isDarkTheme","text","textColor","secondaryText","accent","primaryColor","destructive","dangerColor","success","successColor","border","borderColor","activeCard","shadow","useEffect","sessionIds","map","s","sessionId","join","cancelled","loadUserProfiles","length","uniqueSessions","session","isLoadingProfile","batchResults","getUsersBySessions","userProfileMap","Map","forEach","set","prev","userProfile","undefined","error","__DEV__","console","handleSwitchSession","useCallback","toast","handleRemoveSession","displayName","confirmAction","handleLogoutAll","errorMessage","Error","message","loadAllDeviceSessions","currentActiveSessionId","allSessions","getDeviceSessions","handleRemoteSessionLogout","deviceName","logoutSession","handleLogoutAllDevices","otherDevicesCount","filter","isCurrent","info","count","logoutAllDeviceSessions","otherSessions","jsxs","View","style","styles","container","children","jsx","Header","title","onBack","showBackButton","showCloseButton","elevation","rightAction","icon","onPress","ScrollView","content","LoadingState","color","Fragment","section","Text","sectionTitle","settingItem","firstSettingItem","lastSettingItem","currentAccountCard","userIcon","avatar","Image","source","uri","getFileDownloadUrl","accountAvatarImage","accountAvatarFallback","accountAvatarText","name","first","username","charAt","toUpperCase","activeBadge","size","settingInfo","settingLabel","full","settingDescription","email","currentBadge","currentBadgeText","sessionWithUser","index","filteredArray","isFirst","isLast","isSwitching","isRemoving","ActivityIndicator","accountActions","TouchableOpacity","switchButton","disabled","switchButtonText","removeButton","GroupedSection","items","id","iconColor","subtitle","customContent","marginRight","date","Date","lastActive","toLocaleDateString","emptyStateContainer","emptyStateTitle","emptyStateDescription","addAccountButton","addAccountButtonText","StyleSheet","create","flex","padding","marginBottom","fontSize","fontWeight","Platform","OS","fontFamily","fontFamilies","phuduSemiBold","flexDirection","alignItems","justifyContent","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","borderWidth","position","height","borderRadius","top","right","paddingHorizontal","paddingVertical","gap","minWidth","marginTop","textAlign","lineHeight","_default","exports"],"sourceRoot":"../../../../src","sources":["ui/screens/AccountSwitcherScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _sonner = require("../../lib/sonner");
|
|
10
|
+
var _components = require("../components");
|
|
11
|
+
var _useI18n = require("../hooks/useI18n");
|
|
12
|
+
var _useThemeStyles = require("../hooks/useThemeStyles");
|
|
13
|
+
var _themeUtils = require("../utils/themeUtils");
|
|
14
|
+
var _OxyContext = require("../context/OxyContext");
|
|
15
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
16
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
17
|
+
const AccountVerificationScreen = ({
|
|
18
|
+
onClose,
|
|
19
|
+
theme,
|
|
20
|
+
goBack
|
|
21
|
+
}) => {
|
|
22
|
+
// Use useOxy() hook for OxyContext values
|
|
23
|
+
const {
|
|
24
|
+
oxyServices,
|
|
25
|
+
user
|
|
26
|
+
} = (0, _OxyContext.useOxy)();
|
|
27
|
+
const {
|
|
28
|
+
t
|
|
29
|
+
} = (0, _useI18n.useI18n)();
|
|
30
|
+
const [reason, setReason] = (0, _react.useState)('');
|
|
31
|
+
const [evidence, setEvidence] = (0, _react.useState)('');
|
|
32
|
+
const [isSubmitting, setIsSubmitting] = (0, _react.useState)(false);
|
|
33
|
+
const normalizedTheme = (0, _themeUtils.normalizeTheme)(theme);
|
|
34
|
+
const baseThemeStyles = (0, _useThemeStyles.useThemeStyles)(normalizedTheme);
|
|
35
|
+
const themeStyles = (0, _react.useMemo)(() => ({
|
|
36
|
+
...baseThemeStyles,
|
|
37
|
+
inputBackgroundColor: baseThemeStyles.isDarkTheme ? '#1C1C1E' : '#F2F2F7',
|
|
38
|
+
inputTextColor: baseThemeStyles.textColor,
|
|
39
|
+
placeholderTextColor: baseThemeStyles.mutedTextColor
|
|
40
|
+
}), [baseThemeStyles]);
|
|
41
|
+
const handleSubmit = (0, _react.useCallback)(async () => {
|
|
42
|
+
if (!reason.trim()) {
|
|
43
|
+
_sonner.toast.error(t('accountVerification.reasonRequired') || 'Please provide a reason for verification');
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
if (!oxyServices) {
|
|
47
|
+
_sonner.toast.error(t('accountVerification.error') || 'Service not available');
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
setIsSubmitting(true);
|
|
51
|
+
try {
|
|
52
|
+
const result = await oxyServices.requestAccountVerification(reason.trim(), evidence.trim() || undefined);
|
|
53
|
+
_reactNative.Alert.alert(t('accountVerification.successTitle') || 'Request Submitted', t('accountVerification.successMessage') || `Your verification request has been submitted. Request ID: ${result.requestId}`, [{
|
|
54
|
+
text: t('accountVerification.ok') || 'OK',
|
|
55
|
+
onPress: () => {
|
|
56
|
+
setReason('');
|
|
57
|
+
setEvidence('');
|
|
58
|
+
goBack?.();
|
|
59
|
+
}
|
|
60
|
+
}]);
|
|
61
|
+
} catch (error) {
|
|
62
|
+
console.error('Failed to submit verification request:', error);
|
|
63
|
+
_sonner.toast.error(error?.message || t('accountVerification.submitError') || 'Failed to submit verification request');
|
|
64
|
+
} finally {
|
|
65
|
+
setIsSubmitting(false);
|
|
66
|
+
}
|
|
67
|
+
}, [reason, evidence, oxyServices, t, goBack]);
|
|
68
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
69
|
+
style: [styles.container, {
|
|
70
|
+
backgroundColor: themeStyles.backgroundColor
|
|
71
|
+
}],
|
|
72
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Header, {
|
|
73
|
+
title: t('accountVerification.title') || 'Account Verification',
|
|
74
|
+
onBack: goBack || onClose,
|
|
75
|
+
variant: "minimal",
|
|
76
|
+
elevation: "subtle"
|
|
77
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
|
|
78
|
+
style: styles.content,
|
|
79
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Section, {
|
|
80
|
+
isFirst: true,
|
|
81
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
82
|
+
style: [styles.description, {
|
|
83
|
+
color: themeStyles.mutedTextColor
|
|
84
|
+
}],
|
|
85
|
+
children: t('accountVerification.description') || 'Request a verified badge for your account. Verified accounts help establish authenticity and credibility.'
|
|
86
|
+
})
|
|
87
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_components.Section, {
|
|
88
|
+
title: t('accountVerification.sections.request') || 'VERIFICATION REQUEST',
|
|
89
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
90
|
+
style: styles.inputGroup,
|
|
91
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
92
|
+
style: [styles.label, {
|
|
93
|
+
color: themeStyles.textColor
|
|
94
|
+
}],
|
|
95
|
+
children: t('accountVerification.reasonLabel') || 'Reason for Verification *'
|
|
96
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TextInput, {
|
|
97
|
+
style: [styles.textInput, styles.textArea, {
|
|
98
|
+
backgroundColor: themeStyles.inputBackgroundColor,
|
|
99
|
+
color: themeStyles.inputTextColor,
|
|
100
|
+
borderColor: themeStyles.borderColor
|
|
101
|
+
}],
|
|
102
|
+
value: reason,
|
|
103
|
+
onChangeText: setReason,
|
|
104
|
+
placeholder: t('accountVerification.reasonPlaceholder') || 'Explain why you need a verified badge (e.g., public figure, brand, organization)',
|
|
105
|
+
placeholderTextColor: themeStyles.placeholderTextColor,
|
|
106
|
+
multiline: true,
|
|
107
|
+
numberOfLines: 4,
|
|
108
|
+
textAlignVertical: "top",
|
|
109
|
+
editable: !isSubmitting
|
|
110
|
+
})]
|
|
111
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
112
|
+
style: styles.inputGroup,
|
|
113
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
114
|
+
style: [styles.label, {
|
|
115
|
+
color: themeStyles.textColor
|
|
116
|
+
}],
|
|
117
|
+
children: t('accountVerification.evidenceLabel') || 'Evidence (Optional)'
|
|
118
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TextInput, {
|
|
119
|
+
style: [styles.textInput, styles.textArea, {
|
|
120
|
+
backgroundColor: themeStyles.inputBackgroundColor,
|
|
121
|
+
color: themeStyles.inputTextColor,
|
|
122
|
+
borderColor: themeStyles.borderColor
|
|
123
|
+
}],
|
|
124
|
+
value: evidence,
|
|
125
|
+
onChangeText: setEvidence,
|
|
126
|
+
placeholder: t('accountVerification.evidencePlaceholder') || 'Provide any supporting documentation or links (e.g., official website, social media profiles)',
|
|
127
|
+
placeholderTextColor: themeStyles.placeholderTextColor,
|
|
128
|
+
multiline: true,
|
|
129
|
+
numberOfLines: 4,
|
|
130
|
+
textAlignVertical: "top",
|
|
131
|
+
editable: !isSubmitting
|
|
132
|
+
})]
|
|
133
|
+
})]
|
|
134
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Section, {
|
|
135
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
136
|
+
style: [styles.submitButton, {
|
|
137
|
+
backgroundColor: isSubmitting ? themeStyles.mutedTextColor : '#007AFF'
|
|
138
|
+
}],
|
|
139
|
+
onPress: handleSubmit,
|
|
140
|
+
disabled: isSubmitting || !reason.trim(),
|
|
141
|
+
children: isSubmitting ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
|
|
142
|
+
color: "#FFFFFF"
|
|
143
|
+
}) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
144
|
+
style: styles.submitButtonText,
|
|
145
|
+
children: t('accountVerification.submit') || 'Submit Request'
|
|
146
|
+
})
|
|
147
|
+
})
|
|
148
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.Section, {
|
|
149
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
150
|
+
style: [styles.note, {
|
|
151
|
+
color: themeStyles.mutedTextColor
|
|
152
|
+
}],
|
|
153
|
+
children: t('accountVerification.note') || 'Note: Verification requests are reviewed manually and may take several days. We will notify you once your request has been reviewed.'
|
|
154
|
+
})
|
|
155
|
+
})]
|
|
156
|
+
})]
|
|
157
|
+
});
|
|
158
|
+
};
|
|
159
|
+
const styles = _reactNative.StyleSheet.create({
|
|
160
|
+
container: {
|
|
161
|
+
flex: 1
|
|
162
|
+
},
|
|
163
|
+
content: {
|
|
164
|
+
flex: 1,
|
|
165
|
+
padding: 16
|
|
166
|
+
},
|
|
167
|
+
description: {
|
|
168
|
+
fontSize: 16,
|
|
169
|
+
lineHeight: 24,
|
|
170
|
+
marginBottom: 8
|
|
171
|
+
},
|
|
172
|
+
inputGroup: {
|
|
173
|
+
marginBottom: 24
|
|
174
|
+
},
|
|
175
|
+
label: {
|
|
176
|
+
fontSize: 16,
|
|
177
|
+
fontWeight: '500',
|
|
178
|
+
marginBottom: 8
|
|
179
|
+
},
|
|
180
|
+
textInput: {
|
|
181
|
+
borderWidth: 1,
|
|
182
|
+
borderRadius: 8,
|
|
183
|
+
padding: 12,
|
|
184
|
+
fontSize: 16,
|
|
185
|
+
minHeight: 44
|
|
186
|
+
},
|
|
187
|
+
textArea: {
|
|
188
|
+
minHeight: 100,
|
|
189
|
+
paddingTop: 12
|
|
190
|
+
},
|
|
191
|
+
submitButton: {
|
|
192
|
+
borderRadius: 8,
|
|
193
|
+
padding: 16,
|
|
194
|
+
alignItems: 'center',
|
|
195
|
+
justifyContent: 'center',
|
|
196
|
+
minHeight: 50
|
|
197
|
+
},
|
|
198
|
+
submitButtonText: {
|
|
199
|
+
color: '#FFFFFF',
|
|
200
|
+
fontSize: 16,
|
|
201
|
+
fontWeight: '600'
|
|
202
|
+
},
|
|
203
|
+
note: {
|
|
204
|
+
fontSize: 14,
|
|
205
|
+
lineHeight: 20,
|
|
206
|
+
fontStyle: 'italic'
|
|
207
|
+
}
|
|
208
|
+
});
|
|
209
|
+
var _default = exports.default = /*#__PURE__*/_react.default.memo(AccountVerificationScreen);
|
|
210
|
+
//# sourceMappingURL=AccountVerificationScreen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_sonner","_components","_useI18n","_useThemeStyles","_themeUtils","_OxyContext","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","AccountVerificationScreen","onClose","theme","goBack","oxyServices","user","useOxy","useI18n","reason","setReason","useState","evidence","setEvidence","isSubmitting","setIsSubmitting","normalizedTheme","normalizeTheme","baseThemeStyles","useThemeStyles","themeStyles","useMemo","inputBackgroundColor","isDarkTheme","inputTextColor","textColor","placeholderTextColor","mutedTextColor","handleSubmit","useCallback","trim","toast","error","result","requestAccountVerification","undefined","Alert","alert","requestId","text","onPress","console","message","jsxs","View","style","styles","container","backgroundColor","children","jsx","Header","title","onBack","variant","elevation","ScrollView","content","Section","isFirst","Text","description","color","inputGroup","label","TextInput","textInput","textArea","borderColor","value","onChangeText","placeholder","multiline","numberOfLines","textAlignVertical","editable","TouchableOpacity","submitButton","disabled","ActivityIndicator","submitButtonText","note","StyleSheet","create","flex","padding","fontSize","lineHeight","marginBottom","fontWeight","borderWidth","borderRadius","minHeight","paddingTop","alignItems","justifyContent","fontStyle","_default","exports","React","memo"],"sourceRoot":"../../../../src","sources":["ui/screens/AccountVerificationScreen.tsx"],"mappings":"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","ignoreList":[]}
|