@oxyhq/services 5.16.23 → 5.16.25
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 +403 -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 +815 -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 +552 -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 +220 -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 +495 -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 +479 -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 +399 -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 +809 -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 +544 -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 +210 -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 +490 -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 +474 -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/core/mixins/OxyServices.user.ts +14 -4
- package/src/ui/context/OxyContext.tsx +40 -75
- package/src/ui/hooks/mutations/useAccountMutations.ts +8 -6
- package/src/ui/hooks/queries/useAccountQueries.ts +4 -2
- package/src/ui/hooks/useSessionSocket.ts +156 -153
- package/src/ui/screens/PrivacySettingsScreen.tsx +12 -6
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = exports.GroupedItem = void 0;
|
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _vectorIcons = require("@expo/vector-icons");
|
|
10
|
+
var _useColorScheme = require("../hooks/use-color-scheme");
|
|
11
|
+
var _useHapticPress = require("../hooks/use-haptic-press");
|
|
12
|
+
var _colorUtils = require("../utils/colorUtils");
|
|
13
|
+
var _themeUtils = require("../utils/themeUtils");
|
|
14
|
+
var _theme = require("../constants/theme");
|
|
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
|
+
// @ts-ignore - MaterialCommunityIcons is available at runtime
|
|
18
|
+
|
|
19
|
+
const GroupedItemComponent = ({
|
|
20
|
+
icon,
|
|
21
|
+
iconColor,
|
|
22
|
+
title,
|
|
23
|
+
subtitle,
|
|
24
|
+
onPress,
|
|
25
|
+
isFirst = false,
|
|
26
|
+
isLast = false,
|
|
27
|
+
showChevron = false,
|
|
28
|
+
disabled = false,
|
|
29
|
+
customContent,
|
|
30
|
+
customIcon
|
|
31
|
+
}) => {
|
|
32
|
+
const hookColorScheme = (0, _useColorScheme.useColorScheme)();
|
|
33
|
+
const colorScheme = (0, _themeUtils.normalizeColorScheme)(hookColorScheme);
|
|
34
|
+
// GroupedItem is a leaf component without a theme prop, so it should directly use Colors
|
|
35
|
+
// instead of useThemeStyles which expects a theme prop from screen components
|
|
36
|
+
const colors = _theme.Colors[colorScheme];
|
|
37
|
+
// Use fallback color when iconColor is not provided
|
|
38
|
+
const finalIconColor = iconColor || colors.iconSecurity;
|
|
39
|
+
const itemStyles = (0, _react.useMemo)(() => [styles.groupedItem, isFirst && styles.firstGroupedItem, isLast && styles.lastGroupedItem, {
|
|
40
|
+
backgroundColor: colors.card
|
|
41
|
+
}], [colors.card, isFirst, isLast]);
|
|
42
|
+
const content = /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
43
|
+
style: styles.groupedItemContent,
|
|
44
|
+
children: [customIcon ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
45
|
+
style: styles.actionIcon,
|
|
46
|
+
children: customIcon
|
|
47
|
+
}) : icon ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
48
|
+
style: [styles.iconContainer, {
|
|
49
|
+
backgroundColor: finalIconColor
|
|
50
|
+
}],
|
|
51
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.MaterialCommunityIcons, {
|
|
52
|
+
name: icon,
|
|
53
|
+
size: 22,
|
|
54
|
+
color: (0, _colorUtils.darkenColor)(finalIconColor)
|
|
55
|
+
})
|
|
56
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
57
|
+
style: styles.actionTextContainer,
|
|
58
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
59
|
+
style: [styles.actionButtonText, {
|
|
60
|
+
color: colors.text
|
|
61
|
+
}],
|
|
62
|
+
children: title
|
|
63
|
+
}), subtitle && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
64
|
+
style: [styles.actionButtonSubtext, {
|
|
65
|
+
color: colors.secondaryText
|
|
66
|
+
}],
|
|
67
|
+
children: subtitle
|
|
68
|
+
})]
|
|
69
|
+
}), customContent, showChevron && /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
70
|
+
name: "chevron-forward",
|
|
71
|
+
size: 20,
|
|
72
|
+
color: colors.icon
|
|
73
|
+
})]
|
|
74
|
+
});
|
|
75
|
+
const handlePressIn = (0, _useHapticPress.useHapticPress)();
|
|
76
|
+
if (onPress && !disabled) {
|
|
77
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
78
|
+
style: itemStyles,
|
|
79
|
+
onPressIn: disabled ? undefined : handlePressIn,
|
|
80
|
+
onPress: onPress,
|
|
81
|
+
activeOpacity: 0.7,
|
|
82
|
+
children: content
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
86
|
+
style: itemStyles,
|
|
87
|
+
children: content
|
|
88
|
+
});
|
|
89
|
+
};
|
|
90
|
+
GroupedItemComponent.displayName = 'GroupedItem';
|
|
91
|
+
const GroupedItem = exports.GroupedItem = /*#__PURE__*/(0, _react.memo)(GroupedItemComponent);
|
|
92
|
+
const styles = _reactNative.StyleSheet.create({
|
|
93
|
+
groupedItem: {
|
|
94
|
+
flexDirection: 'row',
|
|
95
|
+
alignItems: 'center',
|
|
96
|
+
justifyContent: 'space-between',
|
|
97
|
+
overflow: 'hidden',
|
|
98
|
+
width: '100%'
|
|
99
|
+
},
|
|
100
|
+
firstGroupedItem: {
|
|
101
|
+
borderTopLeftRadius: 18,
|
|
102
|
+
borderTopRightRadius: 18
|
|
103
|
+
},
|
|
104
|
+
lastGroupedItem: {
|
|
105
|
+
borderBottomLeftRadius: 18,
|
|
106
|
+
borderBottomRightRadius: 18
|
|
107
|
+
},
|
|
108
|
+
groupedItemContent: {
|
|
109
|
+
flexDirection: 'row',
|
|
110
|
+
alignItems: 'center',
|
|
111
|
+
paddingVertical: 8,
|
|
112
|
+
paddingHorizontal: 10,
|
|
113
|
+
width: '100%',
|
|
114
|
+
gap: 10
|
|
115
|
+
},
|
|
116
|
+
actionIcon: {
|
|
117
|
+
// marginRight handled by gap
|
|
118
|
+
},
|
|
119
|
+
iconContainer: {
|
|
120
|
+
width: 36,
|
|
121
|
+
height: 36,
|
|
122
|
+
borderRadius: 18,
|
|
123
|
+
alignItems: 'center',
|
|
124
|
+
justifyContent: 'center'
|
|
125
|
+
// marginRight handled by gap
|
|
126
|
+
},
|
|
127
|
+
actionTextContainer: {
|
|
128
|
+
flex: 1
|
|
129
|
+
},
|
|
130
|
+
actionButtonText: {
|
|
131
|
+
fontSize: 14,
|
|
132
|
+
fontWeight: '400'
|
|
133
|
+
},
|
|
134
|
+
actionButtonSubtext: {
|
|
135
|
+
fontSize: 12,
|
|
136
|
+
marginTop: 2
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
var _default = exports.default = GroupedItem;
|
|
140
|
+
//# sourceMappingURL=GroupedItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_vectorIcons","_useColorScheme","_useHapticPress","_colorUtils","_themeUtils","_theme","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","GroupedItemComponent","icon","iconColor","title","subtitle","onPress","isFirst","isLast","showChevron","disabled","customContent","customIcon","hookColorScheme","useColorScheme","colorScheme","normalizeColorScheme","colors","Colors","finalIconColor","iconSecurity","itemStyles","useMemo","styles","groupedItem","firstGroupedItem","lastGroupedItem","backgroundColor","card","content","jsxs","View","style","groupedItemContent","children","jsx","actionIcon","iconContainer","MaterialCommunityIcons","name","size","color","darkenColor","actionTextContainer","Text","actionButtonText","text","actionButtonSubtext","secondaryText","Ionicons","handlePressIn","useHapticPress","TouchableOpacity","onPressIn","undefined","activeOpacity","displayName","GroupedItem","exports","memo","StyleSheet","create","flexDirection","alignItems","justifyContent","overflow","width","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","paddingVertical","paddingHorizontal","gap","height","borderRadius","flex","fontSize","fontWeight","marginTop","_default"],"sourceRoot":"../../../../src","sources":["ui/components/GroupedItem.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = exports.GroupedSection = void 0;
|
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactNative = require("react-native");
|
|
9
|
+
var _GroupedItem = require("./GroupedItem");
|
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
+
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); }
|
|
12
|
+
const GroupedSectionComponent = ({
|
|
13
|
+
items
|
|
14
|
+
}) => {
|
|
15
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
16
|
+
style: {
|
|
17
|
+
width: '100%'
|
|
18
|
+
},
|
|
19
|
+
children: items.map((item, index) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
20
|
+
style: {
|
|
21
|
+
marginBottom: index < items.length - 1 ? 4 : 0
|
|
22
|
+
},
|
|
23
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_GroupedItem.GroupedItem, {
|
|
24
|
+
icon: item.icon,
|
|
25
|
+
iconColor: item.iconColor,
|
|
26
|
+
title: item.title,
|
|
27
|
+
subtitle: item.subtitle,
|
|
28
|
+
onPress: item.onPress,
|
|
29
|
+
isFirst: index === 0,
|
|
30
|
+
isLast: index === items.length - 1,
|
|
31
|
+
showChevron: item.showChevron,
|
|
32
|
+
disabled: item.disabled,
|
|
33
|
+
customContent: item.customContent,
|
|
34
|
+
customIcon: item.customIcon
|
|
35
|
+
})
|
|
36
|
+
}, `${item.id}-${index}`))
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
GroupedSectionComponent.displayName = 'GroupedSection';
|
|
40
|
+
const GroupedSection = exports.GroupedSection = /*#__PURE__*/(0, _react.memo)(GroupedSectionComponent);
|
|
41
|
+
var _default = exports.default = GroupedSection;
|
|
42
|
+
//# sourceMappingURL=GroupedSection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_GroupedItem","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","GroupedSectionComponent","items","jsx","View","style","width","children","map","item","index","marginBottom","length","GroupedItem","icon","iconColor","title","subtitle","onPress","isFirst","isLast","showChevron","disabled","customContent","customIcon","id","displayName","GroupedSection","exports","memo","_default"],"sourceRoot":"../../../../src","sources":["ui/components/GroupedSection.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,YAAA,GAAAF,OAAA;AAA4C,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,wBAAAK,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAP,uBAAA,YAAAA,CAAAK,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAuB5C,MAAMkB,uBAAuB,GAAGA,CAAC;EAAEC;AAA2B,CAAC,KAAK;EAChE,oBACI,IAAArB,WAAA,CAAAsB,GAAA,EAACxB,YAAA,CAAAyB,IAAI;IAACC,KAAK,EAAE;MAAEC,KAAK,EAAE;IAAO,CAAE;IAAAC,QAAA,EAC1BL,KAAK,CAACM,GAAG,CAAC,CAACC,IAAI,EAAEC,KAAK,kBACnB,IAAA7B,WAAA,CAAAsB,GAAA,EAACxB,YAAA,CAAAyB,IAAI;MAA6BC,KAAK,EAAE;QAAEM,YAAY,EAAED,KAAK,GAAGR,KAAK,CAACU,MAAM,GAAG,CAAC,GAAG,CAAC,GAAG;MAAE,CAAE;MAAAL,QAAA,eACxF,IAAA1B,WAAA,CAAAsB,GAAA,EAACvB,YAAA,CAAAiC,WAAW;QACRC,IAAI,EAAEL,IAAI,CAACK,IAAK;QAChBC,SAAS,EAAEN,IAAI,CAACM,SAAU;QAC1BC,KAAK,EAAEP,IAAI,CAACO,KAAM;QAClBC,QAAQ,EAAER,IAAI,CAACQ,QAAS;QACxBC,OAAO,EAAET,IAAI,CAACS,OAAQ;QACtBC,OAAO,EAAET,KAAK,KAAK,CAAE;QACrBU,MAAM,EAAEV,KAAK,KAAKR,KAAK,CAACU,MAAM,GAAG,CAAE;QACnCS,WAAW,EAAEZ,IAAI,CAACY,WAAY;QAC9BC,QAAQ,EAAEb,IAAI,CAACa,QAAS;QACxBC,aAAa,EAAEd,IAAI,CAACc,aAAc;QAClCC,UAAU,EAAEf,IAAI,CAACe;MAAW,CAC/B;IAAC,GAbK,GAAGf,IAAI,CAACgB,EAAE,IAAIf,KAAK,EAcxB,CACT;EAAC,CACA,CAAC;AAEf,CAAC;AAEDT,uBAAuB,CAACyB,WAAW,GAAG,gBAAgB;AAE/C,MAAMC,cAAc,GAAAC,OAAA,CAAAD,cAAA,gBAAG,IAAAE,WAAI,EAAC5B,uBAAuB,CAAC;AAAC,IAAA6B,QAAA,GAAAF,OAAA,CAAApC,OAAA,GAE7CmC,cAAc","ignoreList":[]}
|
|
@@ -0,0 +1,434 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.getHeaderHeight = exports.default = void 0;
|
|
7
|
+
var _reactNative = require("react-native");
|
|
8
|
+
var _react = require("react");
|
|
9
|
+
var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
|
|
10
|
+
var _reactNativeSafeAreaContext = require("react-native-safe-area-context");
|
|
11
|
+
var _vectorIcons = require("@expo/vector-icons");
|
|
12
|
+
var _OxyIcon = _interopRequireDefault(require("./icon/OxyIcon"));
|
|
13
|
+
var _fonts = require("../styles/fonts");
|
|
14
|
+
var _useColorScheme = require("../hooks/use-color-scheme");
|
|
15
|
+
var _themeUtils = require("../utils/themeUtils");
|
|
16
|
+
var _theme = require("../constants/theme");
|
|
17
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
18
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
19
|
+
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); }
|
|
20
|
+
// Calculate header height based on platform and variant
|
|
21
|
+
const getHeaderHeight = (variant = 'default', safeAreaTop = 0) => {
|
|
22
|
+
const paddingTop = _reactNative.Platform.OS === 'ios' ? Math.max(safeAreaTop, 50) : 16;
|
|
23
|
+
const paddingBottom = 12;
|
|
24
|
+
const contentHeight = variant === 'minimal' ? 36 : 40;
|
|
25
|
+
return paddingTop + contentHeight + paddingBottom;
|
|
26
|
+
};
|
|
27
|
+
exports.getHeaderHeight = getHeaderHeight;
|
|
28
|
+
const Header = ({
|
|
29
|
+
title,
|
|
30
|
+
subtitle,
|
|
31
|
+
onBack,
|
|
32
|
+
onClose,
|
|
33
|
+
rightAction,
|
|
34
|
+
rightActions,
|
|
35
|
+
theme,
|
|
36
|
+
showBackButton = true,
|
|
37
|
+
showCloseButton = false,
|
|
38
|
+
showThemeToggle = false,
|
|
39
|
+
onThemeToggle,
|
|
40
|
+
variant = 'default',
|
|
41
|
+
elevation = 'subtle',
|
|
42
|
+
subtitleVariant = 'default',
|
|
43
|
+
titleAlignment = 'left',
|
|
44
|
+
scrollY
|
|
45
|
+
}) => {
|
|
46
|
+
// Use theme colors directly from Colors constant (like Accounts sidebar)
|
|
47
|
+
// Ensure colorScheme is always 'light' or 'dark' with proper fallback chain
|
|
48
|
+
const colorScheme = (0, _themeUtils.normalizeColorScheme)((0, _useColorScheme.useColorScheme)(), theme);
|
|
49
|
+
const colors = _theme.Colors[colorScheme];
|
|
50
|
+
const insets = (0, _reactNativeSafeAreaContext.useSafeAreaInsets)();
|
|
51
|
+
const headerHeight = getHeaderHeight(variant, insets.top);
|
|
52
|
+
|
|
53
|
+
// Animated style for sticky behavior on native
|
|
54
|
+
// Only create animated style if scrollY is provided and we're on native platform
|
|
55
|
+
const animatedHeaderStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => {
|
|
56
|
+
if (_reactNative.Platform.OS === 'web' || !scrollY) {
|
|
57
|
+
return {};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Sticky behavior: header scrolls with content initially, then sticks at top
|
|
61
|
+
// When scrollY = 0, translateY = 0 (header at normal position)
|
|
62
|
+
// When scrollY > 0, translateY becomes negative to keep header at top
|
|
63
|
+
// Clamp to prevent header from going above viewport
|
|
64
|
+
const translateY = (0, _reactNativeReanimated.interpolate)(scrollY.value, [0, headerHeight], [0, -headerHeight], _reactNativeReanimated.Extrapolation.CLAMP);
|
|
65
|
+
return {
|
|
66
|
+
transform: [{
|
|
67
|
+
translateY
|
|
68
|
+
}]
|
|
69
|
+
};
|
|
70
|
+
}, [scrollY, headerHeight]);
|
|
71
|
+
const handleBackPress = () => {
|
|
72
|
+
if (!onBack) return;
|
|
73
|
+
|
|
74
|
+
// Navigate immediately and synchronously - this prioritizes navigation
|
|
75
|
+
// over keyboard dismiss. The keyboard will close naturally after screen changes.
|
|
76
|
+
onBack();
|
|
77
|
+
};
|
|
78
|
+
const renderBackButton = () => {
|
|
79
|
+
if (!showBackButton || !onBack) return null;
|
|
80
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
81
|
+
style: [styles.backButton, {
|
|
82
|
+
backgroundColor: colors.card
|
|
83
|
+
}],
|
|
84
|
+
onPress: handleBackPress,
|
|
85
|
+
activeOpacity: 0.7,
|
|
86
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_OxyIcon.default, {
|
|
87
|
+
name: "chevron-back",
|
|
88
|
+
size: 18,
|
|
89
|
+
color: colors.tint
|
|
90
|
+
})
|
|
91
|
+
});
|
|
92
|
+
};
|
|
93
|
+
const renderCloseButton = () => {
|
|
94
|
+
if (!showCloseButton || !onClose) return null;
|
|
95
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
96
|
+
style: [styles.closeButton, {
|
|
97
|
+
backgroundColor: colors.card
|
|
98
|
+
}],
|
|
99
|
+
onPress: onClose,
|
|
100
|
+
activeOpacity: 0.7,
|
|
101
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
102
|
+
name: "close",
|
|
103
|
+
size: 18,
|
|
104
|
+
color: colors.text
|
|
105
|
+
})
|
|
106
|
+
});
|
|
107
|
+
};
|
|
108
|
+
const renderRightActionButton = (action, idx) => {
|
|
109
|
+
const isTextAction = action.text;
|
|
110
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
|
111
|
+
style: [styles.rightActionButton, isTextAction ? styles.textActionButton : styles.iconActionButton, {
|
|
112
|
+
backgroundColor: isTextAction ? colors.tint : colors.card,
|
|
113
|
+
opacity: action.disabled ? 0.5 : 1
|
|
114
|
+
}],
|
|
115
|
+
onPress: action.onPress,
|
|
116
|
+
disabled: action.disabled || action.loading,
|
|
117
|
+
activeOpacity: 0.7,
|
|
118
|
+
children: action.loading ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
119
|
+
style: styles.loadingContainer,
|
|
120
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
121
|
+
style: [styles.loadingDot, {
|
|
122
|
+
backgroundColor: isTextAction ? '#FFFFFF' : colors.tint
|
|
123
|
+
}]
|
|
124
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
125
|
+
style: [styles.loadingDot, {
|
|
126
|
+
backgroundColor: isTextAction ? '#FFFFFF' : colors.tint
|
|
127
|
+
}]
|
|
128
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
129
|
+
style: [styles.loadingDot, {
|
|
130
|
+
backgroundColor: isTextAction ? '#FFFFFF' : colors.tint
|
|
131
|
+
}]
|
|
132
|
+
})]
|
|
133
|
+
}) : isTextAction ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
134
|
+
style: [styles.actionText, {
|
|
135
|
+
color: '#FFFFFF'
|
|
136
|
+
}],
|
|
137
|
+
children: action.text
|
|
138
|
+
}) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.Ionicons, {
|
|
139
|
+
name: action.icon,
|
|
140
|
+
size: 18,
|
|
141
|
+
color: colors.tint
|
|
142
|
+
})
|
|
143
|
+
}, action.key || idx);
|
|
144
|
+
};
|
|
145
|
+
const renderRightActions = () => {
|
|
146
|
+
const actions = [];
|
|
147
|
+
|
|
148
|
+
// Add existing right actions
|
|
149
|
+
if (rightActions?.length) {
|
|
150
|
+
actions.push(...rightActions);
|
|
151
|
+
} else if (rightAction) {
|
|
152
|
+
actions.push(rightAction);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// Add theme toggle button if enabled
|
|
156
|
+
if (showThemeToggle && onThemeToggle) {
|
|
157
|
+
actions.push({
|
|
158
|
+
icon: colorScheme === 'dark' ? 'sunny' : 'moon',
|
|
159
|
+
onPress: onThemeToggle,
|
|
160
|
+
key: 'theme-toggle'
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
if (actions.length === 0) return null;
|
|
164
|
+
if (actions.length > 1) {
|
|
165
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
166
|
+
style: styles.rightActionsRow,
|
|
167
|
+
children: actions.map((a, i) => renderRightActionButton(a, i))
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
return renderRightActionButton(actions[0], 0);
|
|
171
|
+
};
|
|
172
|
+
const renderTitle = () => {
|
|
173
|
+
const titleStyle = variant === 'large' ? styles.titleLarge : variant === 'minimal' ? styles.titleMinimal : styles.titleDefault;
|
|
174
|
+
const subtitleStyle = variant === 'large' ? styles.subtitleLarge : variant === 'minimal' ? styles.subtitleMinimal : subtitleVariant === 'small' ? styles.subtitleSmall : subtitleVariant === 'large' ? styles.subtitleLarge : subtitleVariant === 'muted' ? styles.subtitleMuted : styles.subtitleDefault;
|
|
175
|
+
const getTitleAlignment = () => {
|
|
176
|
+
switch (titleAlignment) {
|
|
177
|
+
case 'center':
|
|
178
|
+
return styles.titleContainerCenter;
|
|
179
|
+
case 'right':
|
|
180
|
+
return styles.titleContainerRight;
|
|
181
|
+
default:
|
|
182
|
+
return styles.titleContainerLeft;
|
|
183
|
+
}
|
|
184
|
+
};
|
|
185
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
186
|
+
style: [styles.titleContainer, getTitleAlignment(), variant === 'minimal' && styles.titleContainerMinimal],
|
|
187
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
188
|
+
style: [titleStyle, {
|
|
189
|
+
color: colors.text
|
|
190
|
+
}],
|
|
191
|
+
children: title
|
|
192
|
+
}), subtitle && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
193
|
+
style: [subtitleStyle, {
|
|
194
|
+
color: colors.secondaryText
|
|
195
|
+
}],
|
|
196
|
+
children: subtitle
|
|
197
|
+
})]
|
|
198
|
+
});
|
|
199
|
+
};
|
|
200
|
+
const getElevationStyle = () => {
|
|
201
|
+
const isDark = colorScheme === 'dark';
|
|
202
|
+
switch (elevation) {
|
|
203
|
+
case 'none':
|
|
204
|
+
return {};
|
|
205
|
+
case 'subtle':
|
|
206
|
+
return _reactNative.Platform.select({
|
|
207
|
+
web: {
|
|
208
|
+
boxShadow: isDark ? '0 1px 3px rgba(0,0,0,0.3)' : '0 1px 3px rgba(0,0,0,0.1)'
|
|
209
|
+
},
|
|
210
|
+
default: {
|
|
211
|
+
shadowColor: '#000000',
|
|
212
|
+
shadowOffset: {
|
|
213
|
+
width: 0,
|
|
214
|
+
height: 1
|
|
215
|
+
},
|
|
216
|
+
shadowOpacity: isDark ? 0.3 : 0.1,
|
|
217
|
+
shadowRadius: 3,
|
|
218
|
+
elevation: 2
|
|
219
|
+
}
|
|
220
|
+
});
|
|
221
|
+
case 'prominent':
|
|
222
|
+
return _reactNative.Platform.select({
|
|
223
|
+
web: {
|
|
224
|
+
boxShadow: isDark ? '0 4px 12px rgba(0,0,0,0.4)' : '0 4px 12px rgba(0,0,0,0.15)'
|
|
225
|
+
},
|
|
226
|
+
default: {
|
|
227
|
+
shadowColor: '#000000',
|
|
228
|
+
shadowOffset: {
|
|
229
|
+
width: 0,
|
|
230
|
+
height: 4
|
|
231
|
+
},
|
|
232
|
+
shadowOpacity: isDark ? 0.4 : 0.15,
|
|
233
|
+
shadowRadius: 12,
|
|
234
|
+
elevation: 8
|
|
235
|
+
}
|
|
236
|
+
});
|
|
237
|
+
default:
|
|
238
|
+
return {};
|
|
239
|
+
}
|
|
240
|
+
};
|
|
241
|
+
const getBackgroundStyle = () => {
|
|
242
|
+
if (variant === 'gradient') {
|
|
243
|
+
return {
|
|
244
|
+
backgroundColor: colors.background,
|
|
245
|
+
// Add gradient overlay effect
|
|
246
|
+
borderBottomWidth: 1,
|
|
247
|
+
borderBottomColor: colors.border
|
|
248
|
+
};
|
|
249
|
+
}
|
|
250
|
+
return {
|
|
251
|
+
backgroundColor: colors.background,
|
|
252
|
+
borderBottomWidth: elevation === 'none' ? 0 : 1,
|
|
253
|
+
borderBottomColor: colors.border
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
const backgroundStyle = getBackgroundStyle();
|
|
257
|
+
const elevationStyle = getElevationStyle();
|
|
258
|
+
const containerStyle = (0, _react.useMemo)(() => [styles.container, {
|
|
259
|
+
paddingTop: _reactNative.Platform.OS === 'ios' ? Math.max(insets.top, 50) : 16
|
|
260
|
+
},
|
|
261
|
+
// When header is inside ScrollView (has scrollY), don't use absolute positioning
|
|
262
|
+
!scrollY && _reactNative.Platform.OS !== 'web' ? {
|
|
263
|
+
position: 'absolute',
|
|
264
|
+
top: 0,
|
|
265
|
+
left: 0,
|
|
266
|
+
right: 0
|
|
267
|
+
} : {}, backgroundStyle, elevationStyle], [insets.top, backgroundStyle, elevationStyle, scrollY]);
|
|
268
|
+
const HeaderContainer = _reactNative.Platform.OS === 'web' || !scrollY ? _reactNative.View : _reactNativeReanimated.default.View;
|
|
269
|
+
// Only apply animated styles when HeaderContainer is an animated component
|
|
270
|
+
const shouldUseAnimatedStyle = _reactNative.Platform.OS !== 'web' && scrollY !== undefined;
|
|
271
|
+
const headerStyle = shouldUseAnimatedStyle ? [containerStyle, animatedHeaderStyle] : containerStyle;
|
|
272
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(HeaderContainer, {
|
|
273
|
+
style: headerStyle,
|
|
274
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
275
|
+
style: [styles.content, variant === 'minimal' && styles.contentMinimal],
|
|
276
|
+
children: [renderBackButton(), renderTitle(), renderRightActions(), renderCloseButton()]
|
|
277
|
+
})
|
|
278
|
+
});
|
|
279
|
+
};
|
|
280
|
+
const styles = _reactNative.StyleSheet.create({
|
|
281
|
+
container: {
|
|
282
|
+
paddingBottom: 12,
|
|
283
|
+
zIndex: 1000,
|
|
284
|
+
..._reactNative.Platform.select({
|
|
285
|
+
web: {
|
|
286
|
+
position: 'sticky',
|
|
287
|
+
top: 0,
|
|
288
|
+
left: 0,
|
|
289
|
+
right: 0
|
|
290
|
+
},
|
|
291
|
+
default: {
|
|
292
|
+
// Position will be set dynamically based on scrollY prop
|
|
293
|
+
}
|
|
294
|
+
})
|
|
295
|
+
},
|
|
296
|
+
content: {
|
|
297
|
+
flexDirection: 'row',
|
|
298
|
+
alignItems: 'center',
|
|
299
|
+
paddingHorizontal: 16,
|
|
300
|
+
position: 'relative',
|
|
301
|
+
minHeight: 40
|
|
302
|
+
},
|
|
303
|
+
contentMinimal: {
|
|
304
|
+
paddingHorizontal: 12,
|
|
305
|
+
minHeight: 36
|
|
306
|
+
},
|
|
307
|
+
backButton: {
|
|
308
|
+
width: 32,
|
|
309
|
+
height: 32,
|
|
310
|
+
borderRadius: 16,
|
|
311
|
+
alignItems: 'center',
|
|
312
|
+
justifyContent: 'center',
|
|
313
|
+
marginRight: 10
|
|
314
|
+
},
|
|
315
|
+
closeButton: {
|
|
316
|
+
width: 32,
|
|
317
|
+
height: 32,
|
|
318
|
+
borderRadius: 16,
|
|
319
|
+
alignItems: 'center',
|
|
320
|
+
justifyContent: 'center',
|
|
321
|
+
marginLeft: 10
|
|
322
|
+
},
|
|
323
|
+
titleContainer: {
|
|
324
|
+
flex: 1,
|
|
325
|
+
alignItems: 'flex-start',
|
|
326
|
+
justifyContent: 'center'
|
|
327
|
+
},
|
|
328
|
+
titleContainerLeft: {
|
|
329
|
+
alignItems: 'flex-start'
|
|
330
|
+
},
|
|
331
|
+
titleContainerCenter: {
|
|
332
|
+
alignItems: 'center'
|
|
333
|
+
},
|
|
334
|
+
titleContainerRight: {
|
|
335
|
+
alignItems: 'flex-end'
|
|
336
|
+
},
|
|
337
|
+
titleContainerMinimal: {
|
|
338
|
+
alignItems: 'center',
|
|
339
|
+
marginHorizontal: 16
|
|
340
|
+
},
|
|
341
|
+
titleDefault: {
|
|
342
|
+
fontSize: 18,
|
|
343
|
+
fontWeight: '700',
|
|
344
|
+
fontFamily: _fonts.fontFamilies.phuduBold,
|
|
345
|
+
letterSpacing: -0.5,
|
|
346
|
+
lineHeight: 22
|
|
347
|
+
},
|
|
348
|
+
titleLarge: {
|
|
349
|
+
fontSize: 28,
|
|
350
|
+
fontWeight: '800',
|
|
351
|
+
fontFamily: _fonts.fontFamilies.phuduExtraBold,
|
|
352
|
+
letterSpacing: -1,
|
|
353
|
+
lineHeight: 34,
|
|
354
|
+
marginBottom: 3
|
|
355
|
+
},
|
|
356
|
+
titleMinimal: {
|
|
357
|
+
fontSize: 16,
|
|
358
|
+
fontWeight: '600',
|
|
359
|
+
fontFamily: _fonts.fontFamilies.phuduSemiBold,
|
|
360
|
+
letterSpacing: -0.3,
|
|
361
|
+
lineHeight: 20
|
|
362
|
+
},
|
|
363
|
+
subtitleDefault: {
|
|
364
|
+
fontSize: 14,
|
|
365
|
+
fontWeight: '400',
|
|
366
|
+
lineHeight: 17,
|
|
367
|
+
marginTop: 1
|
|
368
|
+
},
|
|
369
|
+
subtitleLarge: {
|
|
370
|
+
fontSize: 16,
|
|
371
|
+
fontWeight: '400',
|
|
372
|
+
lineHeight: 19,
|
|
373
|
+
marginTop: 3
|
|
374
|
+
},
|
|
375
|
+
subtitleMinimal: {
|
|
376
|
+
fontSize: 13,
|
|
377
|
+
fontWeight: '400',
|
|
378
|
+
lineHeight: 15,
|
|
379
|
+
marginTop: 1
|
|
380
|
+
},
|
|
381
|
+
subtitleSmall: {
|
|
382
|
+
fontSize: 12,
|
|
383
|
+
fontWeight: '400',
|
|
384
|
+
lineHeight: 14,
|
|
385
|
+
marginTop: 0
|
|
386
|
+
},
|
|
387
|
+
subtitleMuted: {
|
|
388
|
+
fontSize: 14,
|
|
389
|
+
fontWeight: '400',
|
|
390
|
+
lineHeight: 17,
|
|
391
|
+
marginTop: 1,
|
|
392
|
+
opacity: 0.7
|
|
393
|
+
},
|
|
394
|
+
rightActionButton: {
|
|
395
|
+
alignItems: 'center',
|
|
396
|
+
justifyContent: 'center',
|
|
397
|
+
marginLeft: 10
|
|
398
|
+
},
|
|
399
|
+
iconActionButton: {
|
|
400
|
+
width: 32,
|
|
401
|
+
height: 32,
|
|
402
|
+
borderRadius: 16
|
|
403
|
+
},
|
|
404
|
+
textActionButton: {
|
|
405
|
+
paddingHorizontal: 14,
|
|
406
|
+
paddingVertical: 6,
|
|
407
|
+
borderRadius: 18,
|
|
408
|
+
minWidth: 56
|
|
409
|
+
},
|
|
410
|
+
actionText: {
|
|
411
|
+
fontSize: 14,
|
|
412
|
+
fontWeight: '600',
|
|
413
|
+
fontFamily: _fonts.fontFamilies.phuduSemiBold,
|
|
414
|
+
letterSpacing: -0.2
|
|
415
|
+
},
|
|
416
|
+
loadingContainer: {
|
|
417
|
+
flexDirection: 'row',
|
|
418
|
+
alignItems: 'center',
|
|
419
|
+
justifyContent: 'center',
|
|
420
|
+
gap: 2
|
|
421
|
+
},
|
|
422
|
+
loadingDot: {
|
|
423
|
+
width: 4,
|
|
424
|
+
height: 4,
|
|
425
|
+
borderRadius: 2,
|
|
426
|
+
opacity: 0.6
|
|
427
|
+
},
|
|
428
|
+
rightActionsRow: {
|
|
429
|
+
flexDirection: 'row',
|
|
430
|
+
alignItems: 'center'
|
|
431
|
+
}
|
|
432
|
+
});
|
|
433
|
+
var _default = exports.default = Header;
|
|
434
|
+
//# sourceMappingURL=Header.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_reactNative","require","_react","_reactNativeReanimated","_interopRequireWildcard","_reactNativeSafeAreaContext","_vectorIcons","_OxyIcon","_interopRequireDefault","_fonts","_useColorScheme","_themeUtils","_theme","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","getHeaderHeight","variant","safeAreaTop","paddingTop","Platform","OS","Math","max","paddingBottom","contentHeight","exports","Header","title","subtitle","onBack","onClose","rightAction","rightActions","theme","showBackButton","showCloseButton","showThemeToggle","onThemeToggle","elevation","subtitleVariant","titleAlignment","scrollY","colorScheme","normalizeColorScheme","useColorScheme","colors","Colors","insets","useSafeAreaInsets","headerHeight","top","animatedHeaderStyle","useAnimatedStyle","translateY","interpolate","value","Extrapolation","CLAMP","transform","handleBackPress","renderBackButton","jsx","TouchableOpacity","style","styles","backButton","backgroundColor","card","onPress","activeOpacity","children","name","size","color","tint","renderCloseButton","closeButton","Ionicons","text","renderRightActionButton","action","idx","isTextAction","rightActionButton","textActionButton","iconActionButton","opacity","disabled","loading","jsxs","View","loadingContainer","loadingDot","Text","actionText","icon","key","renderRightActions","actions","length","push","rightActionsRow","map","a","renderTitle","titleStyle","titleLarge","titleMinimal","titleDefault","subtitleStyle","subtitleLarge","subtitleMinimal","subtitleSmall","subtitleMuted","subtitleDefault","getTitleAlignment","titleContainerCenter","titleContainerRight","titleContainerLeft","titleContainer","titleContainerMinimal","secondaryText","getElevationStyle","isDark","select","web","boxShadow","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","getBackgroundStyle","background","borderBottomWidth","borderBottomColor","border","backgroundStyle","elevationStyle","containerStyle","useMemo","container","position","left","right","HeaderContainer","AnimatedReanimated","shouldUseAnimatedStyle","undefined","headerStyle","content","contentMinimal","StyleSheet","create","zIndex","flexDirection","alignItems","paddingHorizontal","minHeight","borderRadius","justifyContent","marginRight","marginLeft","flex","marginHorizontal","fontSize","fontWeight","fontFamily","fontFamilies","phuduBold","letterSpacing","lineHeight","phuduExtraBold","marginBottom","phuduSemiBold","marginTop","paddingVertical","minWidth","gap","_default"],"sourceRoot":"../../../../src","sources":["ui/components/Header.tsx"],"mappings":"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","ignoreList":[]}
|