@oxyhq/services 28.0.0 → 30.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +10 -9
- package/README.md +65 -2
- package/android/src/main/java/so/oxy/devicesession/OxyDeviceSessionModule.kt +178 -0
- package/android/src/main/java/so/oxy/devicesession/OxyDeviceSessionProvider.kt +99 -0
- package/android/src/main/java/so/oxy/devicesession/OxyDeviceSessionStore.kt +115 -0
- package/expo-module.config.json +1 -0
- package/package.json +8 -8
- package/plugins/withSharedDeviceSessionProvider.js +102 -0
- package/plugins/withSharedDeviceSessionReader.js +57 -0
- package/src/__tests__/esmSourcePurity.test.ts +61 -0
- package/src/index.ts +31 -9
- package/src/ui/boot/runProviderColdBoot.ts +7 -0
- package/src/ui/client.ts +1 -2
- package/src/ui/components/FollowTargetButton.tsx +31 -27
- package/src/ui/components/OxyAccountDialogScreen.tsx +10 -29
- package/src/ui/components/OxyAuthChooser.tsx +149 -50
- package/src/ui/components/OxyConsentScreen.tsx +7 -2
- package/src/ui/components/OxyProvider.tsx +25 -26
- package/src/ui/components/SurfaceScreen.tsx +28 -4
- package/src/ui/components/authChooser/AccountsMenuView.tsx +246 -96
- package/src/ui/components/authChooser/SignInEntryView.tsx +31 -8
- package/src/ui/components/authChooser/TroubleDisclosure.tsx +26 -11
- package/src/ui/components/authChooser/primitives.tsx +37 -23
- package/src/ui/components/authChooser/types.ts +34 -1
- package/src/ui/context/OxyContext.tsx +269 -324
- package/src/ui/context/hooks/useAuthOperations.ts +32 -35
- package/src/ui/context/oxyContextHelpers.ts +0 -30
- package/src/ui/context/oxyContextTypes.ts +9 -1
- package/src/ui/context/useOxyAccountGraph.ts +5 -19
- package/src/ui/hooks/accountDialogSnapshot.ts +37 -0
- package/src/ui/hooks/mutations/useAccountMutations.ts +0 -19
- package/src/ui/hooks/queries/__tests__/userCache.test.ts +12 -1
- package/src/ui/hooks/useDeviceSwitcher.ts +110 -0
- package/src/ui/hooks/useI18n.ts +23 -3
- package/src/ui/hooks/useSessionManagement.ts +62 -211
- package/src/ui/index.ts +1 -2
- package/src/ui/navigation/routes.ts +85 -75
- package/src/ui/navigation/surfaces.ts +6 -9
- package/src/ui/runtime/createOxyRuntime.ts +623 -0
- package/src/ui/runtime/index.ts +34 -0
- package/src/ui/runtime/runtimeContext.tsx +111 -0
- package/src/ui/runtime/types.ts +110 -0
- package/src/ui/runtime/useRuntimeSnapshot.ts +52 -0
- package/src/ui/screens/AccountMembersScreen.tsx +2 -2
- package/src/ui/screens/AccountSettingsScreen.tsx +1 -1
- package/src/ui/screens/AccountVerificationScreen.tsx +1 -1
- package/src/ui/screens/ChangeAvatarScreen.tsx +1 -1
- package/src/ui/screens/ConnectedAppsScreen.tsx +1 -1
- package/src/ui/screens/FileManagementScreen.tsx +2 -2
- package/src/ui/screens/HistoryViewScreen.tsx +2 -2
- package/src/ui/screens/ManageAccountScreen.tsx +3 -3
- package/src/ui/screens/PremiumSubscriptionScreen.tsx +2 -2
- package/src/ui/screens/trust/TrustCenterScreen.tsx +2 -2
- package/src/ui/screens/trust/TrustLeaderboardScreen.tsx +1 -1
- package/src/ui/screens/trust/TrustRulesScreen.tsx +1 -1
- package/src/ui/server.ts +0 -1
- package/src/ui/session/__tests__/authStore.test.ts +90 -0
- package/src/ui/session/__tests__/sharedDeviceCredentialStore.test.ts +289 -0
- package/src/ui/session/authStore.ts +78 -9
- package/src/ui/session/sharedDeviceCredentialStore.ts +318 -0
- package/src/ui/stores/authStore.ts +171 -43
- package/src/ui/types/navigation.ts +26 -0
- package/src/ui/utils/avatarUtils.ts +2 -37
- package/lib/commonjs/assets/OxyLogo.svg +0 -1
- package/lib/commonjs/assets/assets/OxyLogo.svg +0 -1
- package/lib/commonjs/assets/assets/icons/OxyServices.tsx +0 -60
- package/lib/commonjs/assets/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/commonjs/assets/assets/illustrations/HighFive.tsx +0 -39
- package/lib/commonjs/assets/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/commonjs/assets/icons/OxyServices.js +0 -51
- package/lib/commonjs/assets/icons/OxyServices.js.map +0 -1
- package/lib/commonjs/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/commonjs/assets/illustrations/HighFive.js +0 -58
- package/lib/commonjs/assets/illustrations/HighFive.js.map +0 -1
- package/lib/commonjs/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/commonjs/index.js +0 -994
- package/lib/commonjs/index.js.map +0 -1
- package/lib/commonjs/notifications/deviceNotifications.js +0 -443
- package/lib/commonjs/notifications/deviceNotifications.js.map +0 -1
- package/lib/commonjs/package.json +0 -1
- package/lib/commonjs/ui/boot/runProviderColdBoot.js +0 -198
- package/lib/commonjs/ui/boot/runProviderColdBoot.js.map +0 -1
- package/lib/commonjs/ui/client.js +0 -137
- package/lib/commonjs/ui/client.js.map +0 -1
- package/lib/commonjs/ui/components/AvatarCameraBadge.js +0 -43
- package/lib/commonjs/ui/components/AvatarCameraBadge.js.map +0 -1
- package/lib/commonjs/ui/components/FollowButton.js +0 -255
- package/lib/commonjs/ui/components/FollowButton.js.map +0 -1
- package/lib/commonjs/ui/components/FollowTargetButton.js +0 -363
- package/lib/commonjs/ui/components/FollowTargetButton.js.map +0 -1
- package/lib/commonjs/ui/components/OxyAccountDialogScreen.js +0 -195
- package/lib/commonjs/ui/components/OxyAccountDialogScreen.js.map +0 -1
- package/lib/commonjs/ui/components/OxyAuthChooser.js +0 -405
- package/lib/commonjs/ui/components/OxyAuthChooser.js.map +0 -1
- package/lib/commonjs/ui/components/OxyAuthPrompt.js +0 -124
- package/lib/commonjs/ui/components/OxyAuthPrompt.js.map +0 -1
- package/lib/commonjs/ui/components/OxyConsentScreen.js +0 -497
- package/lib/commonjs/ui/components/OxyConsentScreen.js.map +0 -1
- package/lib/commonjs/ui/components/OxyOAuthCallback.js +0 -44
- package/lib/commonjs/ui/components/OxyOAuthCallback.js.map +0 -1
- package/lib/commonjs/ui/components/OxyPayButton.js +0 -66
- package/lib/commonjs/ui/components/OxyPayButton.js.map +0 -1
- package/lib/commonjs/ui/components/OxyProvider.js +0 -315
- package/lib/commonjs/ui/components/OxyProvider.js.map +0 -1
- package/lib/commonjs/ui/components/OxySignInButton.js +0 -321
- package/lib/commonjs/ui/components/OxySignInButton.js.map +0 -1
- package/lib/commonjs/ui/components/OxySignInRequestSurface.js +0 -147
- package/lib/commonjs/ui/components/OxySignInRequestSurface.js.map +0 -1
- package/lib/commonjs/ui/components/ProfileButton.js +0 -342
- package/lib/commonjs/ui/components/ProfileButton.js.map +0 -1
- package/lib/commonjs/ui/components/ProfileSummaryCard.js +0 -79
- package/lib/commonjs/ui/components/ProfileSummaryCard.js.map +0 -1
- package/lib/commonjs/ui/components/RequireOxyAuth.js +0 -296
- package/lib/commonjs/ui/components/RequireOxyAuth.js.map +0 -1
- package/lib/commonjs/ui/components/SettingsIcon.js +0 -45
- package/lib/commonjs/ui/components/SettingsIcon.js.map +0 -1
- package/lib/commonjs/ui/components/SurfaceHeaderAction.js +0 -63
- package/lib/commonjs/ui/components/SurfaceHeaderAction.js.map +0 -1
- package/lib/commonjs/ui/components/SurfaceScreen.js +0 -229
- package/lib/commonjs/ui/components/SurfaceScreen.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/AccountsMenuView.js +0 -542
- package/lib/commonjs/ui/components/authChooser/AccountsMenuView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/SignInEntryView.js +0 -90
- package/lib/commonjs/ui/components/authChooser/SignInEntryView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/SignInRequestView.js +0 -106
- package/lib/commonjs/ui/components/authChooser/SignInRequestView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/SignUpView.js +0 -188
- package/lib/commonjs/ui/components/authChooser/SignUpView.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/TroubleDisclosure.js +0 -61
- package/lib/commonjs/ui/components/authChooser/TroubleDisclosure.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/primitives.js +0 -170
- package/lib/commonjs/ui/components/authChooser/primitives.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/requestSurfaces.js +0 -161
- package/lib/commonjs/ui/components/authChooser/requestSurfaces.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/signInProgress.js +0 -59
- package/lib/commonjs/ui/components/authChooser/signInProgress.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/styles.js +0 -219
- package/lib/commonjs/ui/components/authChooser/styles.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/types.js +0 -70
- package/lib/commonjs/ui/components/authChooser/types.js.map +0 -1
- package/lib/commonjs/ui/components/authChooser/useUsernameAvailability.js +0 -50
- package/lib/commonjs/ui/components/authChooser/useUsernameAvailability.js.map +0 -1
- package/lib/commonjs/ui/components/feedback/constants.js +0 -59
- package/lib/commonjs/ui/components/feedback/constants.js.map +0 -1
- package/lib/commonjs/ui/components/feedback/types.js +0 -6
- package/lib/commonjs/ui/components/feedback/types.js.map +0 -1
- package/lib/commonjs/ui/components/feedback/useFeedbackForm.js +0 -52
- package/lib/commonjs/ui/components/feedback/useFeedbackForm.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/AnimatedButton.js +0 -61
- package/lib/commonjs/ui/components/fileManagement/AnimatedButton.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js +0 -125
- package/lib/commonjs/ui/components/fileManagement/FileDetailsModal.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/FileViewer.js +0 -431
- package/lib/commonjs/ui/components/fileManagement/FileViewer.js.map +0 -1
- package/lib/commonjs/ui/components/fileManagement/UploadPreview.js +0 -172
- package/lib/commonjs/ui/components/fileManagement/UploadPreview.js.map +0 -1
- package/lib/commonjs/ui/components/icon/FAIRWalletIcon.js +0 -64
- package/lib/commonjs/ui/components/icon/FAIRWalletIcon.js.map +0 -1
- package/lib/commonjs/ui/components/internal/PinInput.js +0 -118
- package/lib/commonjs/ui/components/internal/PinInput.js.map +0 -1
- package/lib/commonjs/ui/components/logo/LogoIcon.js +0 -61
- package/lib/commonjs/ui/components/logo/LogoIcon.js.map +0 -1
- package/lib/commonjs/ui/components/logo/LogoText.js +0 -48
- package/lib/commonjs/ui/components/logo/LogoText.js.map +0 -1
- package/lib/commonjs/ui/components/modals/DeleteAccountModal.js +0 -133
- package/lib/commonjs/ui/components/modals/DeleteAccountModal.js.map +0 -1
- package/lib/commonjs/ui/components/oauthNavigation.js +0 -83
- package/lib/commonjs/ui/components/oauthNavigation.js.map +0 -1
- package/lib/commonjs/ui/components/passkeyHubPopup.js +0 -33
- package/lib/commonjs/ui/components/passkeyHubPopup.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentDetailsStep.js +0 -327
- package/lib/commonjs/ui/components/payment/PaymentDetailsStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentMethodStep.js +0 -105
- package/lib/commonjs/ui/components/payment/PaymentMethodStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentReviewStep.js +0 -149
- package/lib/commonjs/ui/components/payment/PaymentReviewStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentSuccessStep.js +0 -84
- package/lib/commonjs/ui/components/payment/PaymentSuccessStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/PaymentSummaryStep.js +0 -195
- package/lib/commonjs/ui/components/payment/PaymentSummaryStep.js.map +0 -1
- package/lib/commonjs/ui/components/payment/constants.js +0 -53
- package/lib/commonjs/ui/components/payment/constants.js.map +0 -1
- package/lib/commonjs/ui/components/payment/paymentStyles.js +0 -401
- package/lib/commonjs/ui/components/payment/paymentStyles.js.map +0 -1
- package/lib/commonjs/ui/components/payment/types.js +0 -6
- package/lib/commonjs/ui/components/payment/types.js.map +0 -1
- package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js +0 -223
- package/lib/commonjs/ui/components/photogrid/JustifiedPhotoGrid.js.map +0 -1
- package/lib/commonjs/ui/components/styles/overlay.js +0 -83
- package/lib/commonjs/ui/components/styles/overlay.js.map +0 -1
- package/lib/commonjs/ui/components/styles/shadow.js +0 -127
- package/lib/commonjs/ui/components/styles/shadow.js.map +0 -1
- package/lib/commonjs/ui/components/surfaces/ActionSheetSurface.js +0 -83
- package/lib/commonjs/ui/components/surfaces/ActionSheetSurface.js.map +0 -1
- package/lib/commonjs/ui/components/utils/hasTouchHandler.js +0 -13
- package/lib/commonjs/ui/components/utils/hasTouchHandler.js.map +0 -1
- package/lib/commonjs/ui/components/utils/roundLayoutSize.js +0 -9
- package/lib/commonjs/ui/components/utils/roundLayoutSize.js.map +0 -1
- package/lib/commonjs/ui/components/utils/splitStyles.js +0 -50
- package/lib/commonjs/ui/components/utils/splitStyles.js.map +0 -1
- package/lib/commonjs/ui/constants/spacing.js +0 -50
- package/lib/commonjs/ui/constants/spacing.js.map +0 -1
- package/lib/commonjs/ui/context/OxyContext.js +0 -1248
- package/lib/commonjs/ui/context/OxyContext.js.map +0 -1
- package/lib/commonjs/ui/context/commitSessionFlow.js +0 -104
- package/lib/commonjs/ui/context/commitSessionFlow.js.map +0 -1
- package/lib/commonjs/ui/context/hooks/useAuthOperations.js +0 -316
- package/lib/commonjs/ui/context/hooks/useAuthOperations.js.map +0 -1
- package/lib/commonjs/ui/context/oxyContextHelpers.js +0 -64
- package/lib/commonjs/ui/context/oxyContextHelpers.js.map +0 -1
- package/lib/commonjs/ui/context/oxyContextTypes.js +0 -6
- package/lib/commonjs/ui/context/oxyContextTypes.js.map +0 -1
- package/lib/commonjs/ui/context/passkeyFlow.js +0 -118
- package/lib/commonjs/ui/context/passkeyFlow.js.map +0 -1
- package/lib/commonjs/ui/context/useOxyAccountGraph.js +0 -111
- package/lib/commonjs/ui/context/useOxyAccountGraph.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/mutationFactory.js +0 -182
- package/lib/commonjs/ui/hooks/mutations/mutationFactory.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/mutationKeys.js +0 -40
- package/lib/commonjs/ui/hooks/mutations/mutationKeys.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js +0 -694
- package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js.map +0 -1
- package/lib/commonjs/ui/hooks/mutations/useServicesMutations.js +0 -197
- package/lib/commonjs/ui/hooks/mutations/useServicesMutations.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/paymentTypes.js +0 -2
- package/lib/commonjs/ui/hooks/queries/paymentTypes.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/queryKeys.js +0 -222
- package/lib/commonjs/ui/hooks/queries/queryKeys.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js +0 -326
- package/lib/commonjs/ui/hooks/queries/useAccountQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useAuthMethods.js +0 -49
- package/lib/commonjs/ui/hooks/queries/useAuthMethods.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useFileQueries.js +0 -129
- package/lib/commonjs/ui/hooks/queries/useFileQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/usePaymentQueries.js +0 -145
- package/lib/commonjs/ui/hooks/queries/usePaymentQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useSecurityQueries.js +0 -93
- package/lib/commonjs/ui/hooks/queries/useSecurityQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js +0 -170
- package/lib/commonjs/ui/hooks/queries/useServicesQueries.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/userCache.js +0 -440
- package/lib/commonjs/ui/hooks/queries/userCache.js.map +0 -1
- package/lib/commonjs/ui/hooks/queries/userCacheRelationship.js +0 -31
- package/lib/commonjs/ui/hooks/queries/userCacheRelationship.js.map +0 -1
- package/lib/commonjs/ui/hooks/queryClient.js +0 -208
- package/lib/commonjs/ui/hooks/queryClient.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAssets.js +0 -227
- package/lib/commonjs/ui/hooks/useAssets.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAsyncAction.js +0 -95
- package/lib/commonjs/ui/hooks/useAsyncAction.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAuth.js +0 -127
- package/lib/commonjs/ui/hooks/useAuth.js.map +0 -1
- package/lib/commonjs/ui/hooks/useAvatarPicker.js +0 -106
- package/lib/commonjs/ui/hooks/useAvatarPicker.js.map +0 -1
- package/lib/commonjs/ui/hooks/useDeviceManagement.js +0 -73
- package/lib/commonjs/ui/hooks/useDeviceManagement.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFileDownloadUrl.js +0 -71
- package/lib/commonjs/ui/hooks/useFileDownloadUrl.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFileFiltering.js +0 -76
- package/lib/commonjs/ui/hooks/useFileFiltering.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFollow.js +0 -331
- package/lib/commonjs/ui/hooks/useFollow.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFollow.types.js +0 -6
- package/lib/commonjs/ui/hooks/useFollow.types.js.map +0 -1
- package/lib/commonjs/ui/hooks/useFollowTarget.js +0 -160
- package/lib/commonjs/ui/hooks/useFollowTarget.js.map +0 -1
- package/lib/commonjs/ui/hooks/useI18n.js +0 -22
- package/lib/commonjs/ui/hooks/useI18n.js.map +0 -1
- package/lib/commonjs/ui/hooks/useLanguageManagement.js +0 -193
- package/lib/commonjs/ui/hooks/useLanguageManagement.js.map +0 -1
- package/lib/commonjs/ui/hooks/useMutationStatus.js +0 -86
- package/lib/commonjs/ui/hooks/useMutationStatus.js.map +0 -1
- package/lib/commonjs/ui/hooks/useOnlineStatus.js +0 -34
- package/lib/commonjs/ui/hooks/useOnlineStatus.js.map +0 -1
- package/lib/commonjs/ui/hooks/useOxyEvent.js +0 -28
- package/lib/commonjs/ui/hooks/useOxyEvent.js.map +0 -1
- package/lib/commonjs/ui/hooks/useProfileEditing.js +0 -134
- package/lib/commonjs/ui/hooks/useProfileEditing.js.map +0 -1
- package/lib/commonjs/ui/hooks/useQueryClient.js +0 -20
- package/lib/commonjs/ui/hooks/useQueryClient.js.map +0 -1
- package/lib/commonjs/ui/hooks/useReduceMotion.js +0 -57
- package/lib/commonjs/ui/hooks/useReduceMotion.js.map +0 -1
- package/lib/commonjs/ui/hooks/useResolvedFileUrls.js +0 -163
- package/lib/commonjs/ui/hooks/useResolvedFileUrls.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSessionManagement.js +0 -290
- package/lib/commonjs/ui/hooks/useSessionManagement.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSettingToggle.js +0 -132
- package/lib/commonjs/ui/hooks/useSettingToggle.js.map +0 -1
- package/lib/commonjs/ui/hooks/useStorage.js +0 -45
- package/lib/commonjs/ui/hooks/useStorage.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSurfaceHeader.js +0 -142
- package/lib/commonjs/ui/hooks/useSurfaceHeader.js.map +0 -1
- package/lib/commonjs/ui/hooks/useSwitchableAccounts.js +0 -64
- package/lib/commonjs/ui/hooks/useSwitchableAccounts.js.map +0 -1
- package/lib/commonjs/ui/index.js +0 -178
- package/lib/commonjs/ui/index.js.map +0 -1
- package/lib/commonjs/ui/isFrontend.js +0 -10
- package/lib/commonjs/ui/isFrontend.js.map +0 -1
- package/lib/commonjs/ui/navigation/accountDialogManager.js +0 -105
- package/lib/commonjs/ui/navigation/accountDialogManager.js.map +0 -1
- package/lib/commonjs/ui/navigation/bottomSheetManager.js +0 -62
- package/lib/commonjs/ui/navigation/bottomSheetManager.js.map +0 -1
- package/lib/commonjs/ui/navigation/routes.js +0 -98
- package/lib/commonjs/ui/navigation/routes.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaceBackBridge.js +0 -68
- package/lib/commonjs/ui/navigation/surfaceBackBridge.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaceNavStack.js +0 -146
- package/lib/commonjs/ui/navigation/surfaceNavStack.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaceRegistry.js +0 -147
- package/lib/commonjs/ui/navigation/surfaceRegistry.js.map +0 -1
- package/lib/commonjs/ui/navigation/surfaces.js +0 -338
- package/lib/commonjs/ui/navigation/surfaces.js.map +0 -1
- package/lib/commonjs/ui/oauth/browserAuthTransport.js +0 -170
- package/lib/commonjs/ui/oauth/browserAuthTransport.js.map +0 -1
- package/lib/commonjs/ui/oauth/completeOAuthCode.js +0 -78
- package/lib/commonjs/ui/oauth/completeOAuthCode.js.map +0 -1
- package/lib/commonjs/ui/oauth/oauthHandshake.js +0 -53
- package/lib/commonjs/ui/oauth/oauthHandshake.js.map +0 -1
- package/lib/commonjs/ui/oauth/oauthPopup.js +0 -276
- package/lib/commonjs/ui/oauth/oauthPopup.js.map +0 -1
- package/lib/commonjs/ui/oauth/oauthPopupMessages.js +0 -141
- package/lib/commonjs/ui/oauth/oauthPopupMessages.js.map +0 -1
- package/lib/commonjs/ui/oauth/types.js +0 -2
- package/lib/commonjs/ui/oauth/types.js.map +0 -1
- package/lib/commonjs/ui/screens/AccountMembersScreen.js +0 -443
- package/lib/commonjs/ui/screens/AccountMembersScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js +0 -264
- package/lib/commonjs/ui/screens/AccountSettingsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js +0 -184
- package/lib/commonjs/ui/screens/AccountVerificationScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AppInfoScreen.js +0 -373
- package/lib/commonjs/ui/screens/AppInfoScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/AvatarCropScreen.js +0 -987
- package/lib/commonjs/ui/screens/AvatarCropScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ChangeAvatarScreen.js +0 -306
- package/lib/commonjs/ui/screens/ChangeAvatarScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ConnectedAppsScreen.js +0 -169
- package/lib/commonjs/ui/screens/ConnectedAppsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/CreateAccountScreen.js +0 -387
- package/lib/commonjs/ui/screens/CreateAccountScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/EditProfileFieldScreen.js +0 -546
- package/lib/commonjs/ui/screens/EditProfileFieldScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/EditProfileScreen.js +0 -167
- package/lib/commonjs/ui/screens/EditProfileScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FAQScreen.js +0 -162
- package/lib/commonjs/ui/screens/FAQScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FeedbackScreen.js +0 -592
- package/lib/commonjs/ui/screens/FeedbackScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FileManagementScreen.js +0 -1529
- package/lib/commonjs/ui/screens/FileManagementScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FollowersListScreen.js +0 -17
- package/lib/commonjs/ui/screens/FollowersListScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/FollowingListScreen.js +0 -17
- package/lib/commonjs/ui/screens/FollowingListScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/HelpSupportScreen.js +0 -123
- package/lib/commonjs/ui/screens/HelpSupportScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/HistoryViewScreen.js +0 -165
- package/lib/commonjs/ui/screens/HistoryViewScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +0 -235
- package/lib/commonjs/ui/screens/LanguageSelectorScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/LearnMoreUsernamesScreen.js +0 -127
- package/lib/commonjs/ui/screens/LearnMoreUsernamesScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +0 -188
- package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ManageAccountScreen.js +0 -647
- package/lib/commonjs/ui/screens/ManageAccountScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/NotificationsScreen.js +0 -150
- package/lib/commonjs/ui/screens/NotificationsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js +0 -278
- package/lib/commonjs/ui/screens/PaymentGatewayScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PreferencesScreen.js +0 -194
- package/lib/commonjs/ui/screens/PreferencesScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +0 -958
- package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +0 -501
- package/lib/commonjs/ui/screens/PrivacySettingsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/ProfileScreen.js +0 -473
- package/lib/commonjs/ui/screens/ProfileScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js +0 -132
- package/lib/commonjs/ui/screens/SavesCollectionsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js +0 -138
- package/lib/commonjs/ui/screens/SearchSettingsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/UserLinksScreen.js +0 -61
- package/lib/commonjs/ui/screens/UserLinksScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/UserListScreen.js +0 -301
- package/lib/commonjs/ui/screens/UserListScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +0 -467
- package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/FileLibraryError.js +0 -64
- package/lib/commonjs/ui/screens/fileManagement/FileLibraryError.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/FileListSection.js +0 -121
- package/lib/commonjs/ui/screens/fileManagement/FileListSection.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js +0 -552
- package/lib/commonjs/ui/screens/fileManagement/PhotoPickerSection.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/UploadBar.js +0 -85
- package/lib/commonjs/ui/screens/fileManagement/UploadBar.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.js +0 -506
- package/lib/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/photoGridLayout.js +0 -44
- package/lib/commonjs/ui/screens/fileManagement/photoGridLayout.js.map +0 -1
- package/lib/commonjs/ui/screens/fileManagement/shared.js +0 -79
- package/lib/commonjs/ui/screens/fileManagement/shared.js.map +0 -1
- package/lib/commonjs/ui/screens/linkFormat.js +0 -38
- package/lib/commonjs/ui/screens/linkFormat.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustAboutScreen.js +0 -94
- package/lib/commonjs/ui/screens/trust/TrustAboutScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustCenterScreen.js +0 -185
- package/lib/commonjs/ui/screens/trust/TrustCenterScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustFAQScreen.js +0 -86
- package/lib/commonjs/ui/screens/trust/TrustFAQScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustLeaderboardScreen.js +0 -222
- package/lib/commonjs/ui/screens/trust/TrustLeaderboardScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustRewardsScreen.js +0 -512
- package/lib/commonjs/ui/screens/trust/TrustRewardsScreen.js.map +0 -1
- package/lib/commonjs/ui/screens/trust/TrustRulesScreen.js +0 -92
- package/lib/commonjs/ui/screens/trust/TrustRulesScreen.js.map +0 -1
- package/lib/commonjs/ui/server.js +0 -86
- package/lib/commonjs/ui/server.js.map +0 -1
- package/lib/commonjs/ui/session/authStore.js +0 -39
- package/lib/commonjs/ui/session/authStore.js.map +0 -1
- package/lib/commonjs/ui/session/backgroundSession.js +0 -258
- package/lib/commonjs/ui/session/backgroundSession.js.map +0 -1
- package/lib/commonjs/ui/session/createSessionClient.js +0 -58
- package/lib/commonjs/ui/session/createSessionClient.js.map +0 -1
- package/lib/commonjs/ui/session/identityBinding.js +0 -95
- package/lib/commonjs/ui/session/identityBinding.js.map +0 -1
- package/lib/commonjs/ui/session/index.js +0 -78
- package/lib/commonjs/ui/session/index.js.map +0 -1
- package/lib/commonjs/ui/session/nativeSecureStorage.js +0 -90
- package/lib/commonjs/ui/session/nativeSecureStorage.js.map +0 -1
- package/lib/commonjs/ui/session/tokenTransport.js +0 -75
- package/lib/commonjs/ui/session/tokenTransport.js.map +0 -1
- package/lib/commonjs/ui/session/useBackgroundSessionSync.js +0 -81
- package/lib/commonjs/ui/session/useBackgroundSessionSync.js.map +0 -1
- package/lib/commonjs/ui/stores/accountStore.js +0 -221
- package/lib/commonjs/ui/stores/accountStore.js.map +0 -1
- package/lib/commonjs/ui/stores/assetStore.js +0 -225
- package/lib/commonjs/ui/stores/assetStore.js.map +0 -1
- package/lib/commonjs/ui/stores/authStore.js +0 -70
- package/lib/commonjs/ui/stores/authStore.js.map +0 -1
- package/lib/commonjs/ui/stores/followStore.js +0 -551
- package/lib/commonjs/ui/stores/followStore.js.map +0 -1
- package/lib/commonjs/ui/stores/followTargetStore.js +0 -152
- package/lib/commonjs/ui/stores/followTargetStore.js.map +0 -1
- package/lib/commonjs/ui/stores/resetSessionScopedStores.js +0 -21
- package/lib/commonjs/ui/stores/resetSessionScopedStores.js.map +0 -1
- package/lib/commonjs/ui/types/fileManagement.js +0 -6
- package/lib/commonjs/ui/types/fileManagement.js.map +0 -1
- package/lib/commonjs/ui/types/navigation.js +0 -6
- package/lib/commonjs/ui/types/navigation.js.map +0 -1
- package/lib/commonjs/ui/types/surfaceScreen.js +0 -6
- package/lib/commonjs/ui/types/surfaceScreen.js.map +0 -1
- package/lib/commonjs/ui/utils/avatarUtils.js +0 -77
- package/lib/commonjs/ui/utils/avatarUtils.js.map +0 -1
- package/lib/commonjs/ui/utils/colorUtils.js +0 -49
- package/lib/commonjs/ui/utils/colorUtils.js.map +0 -1
- package/lib/commonjs/ui/utils/commonsStoreLinks.js +0 -42
- package/lib/commonjs/ui/utils/commonsStoreLinks.js.map +0 -1
- package/lib/commonjs/ui/utils/deliveryPlatform.js +0 -58
- package/lib/commonjs/ui/utils/deliveryPlatform.js.map +0 -1
- package/lib/commonjs/ui/utils/deviceCredential.js +0 -23
- package/lib/commonjs/ui/utils/deviceCredential.js.map +0 -1
- package/lib/commonjs/ui/utils/errorHandlers.js +0 -137
- package/lib/commonjs/ui/utils/errorHandlers.js.map +0 -1
- package/lib/commonjs/ui/utils/fileManagement.js +0 -147
- package/lib/commonjs/ui/utils/fileManagement.js.map +0 -1
- package/lib/commonjs/ui/utils/iconNames.js +0 -133
- package/lib/commonjs/ui/utils/iconNames.js.map +0 -1
- package/lib/commonjs/ui/utils/isWebBrowser.js +0 -13
- package/lib/commonjs/ui/utils/isWebBrowser.js.map +0 -1
- package/lib/commonjs/ui/utils/netConnectivity.js +0 -28
- package/lib/commonjs/ui/utils/netConnectivity.js.map +0 -1
- package/lib/commonjs/ui/utils/oauthReturn.js +0 -126
- package/lib/commonjs/ui/utils/oauthReturn.js.map +0 -1
- package/lib/commonjs/ui/utils/sessionHelpers.js +0 -61
- package/lib/commonjs/ui/utils/sessionHelpers.js.map +0 -1
- package/lib/commonjs/ui/utils/storageHelpers.js +0 -119
- package/lib/commonjs/ui/utils/storageHelpers.js.map +0 -1
- package/lib/commonjs/ui/utils/userUtils.js +0 -69
- package/lib/commonjs/ui/utils/userUtils.js.map +0 -1
- package/lib/commonjs/utils/hookUtils.js +0 -421
- package/lib/commonjs/utils/hookUtils.js.map +0 -1
- package/lib/commonjs/webauthn/passkeyClient.js +0 -39
- package/lib/commonjs/webauthn/passkeyClient.js.map +0 -1
- package/lib/commonjs/webauthn/passkeyClient.native.js +0 -34
- package/lib/commonjs/webauthn/passkeyClient.native.js.map +0 -1
- package/lib/commonjs/webauthn/passkeyClient.web.js +0 -57
- package/lib/commonjs/webauthn/passkeyClient.web.js.map +0 -1
- package/lib/module/assets/OxyLogo.svg +0 -1
- package/lib/module/assets/assets/OxyLogo.svg +0 -1
- package/lib/module/assets/assets/icons/OxyServices.tsx +0 -60
- package/lib/module/assets/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/module/assets/assets/illustrations/HighFive.tsx +0 -39
- package/lib/module/assets/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/module/assets/icons/OxyServices.js +0 -45
- package/lib/module/assets/icons/OxyServices.js.map +0 -1
- package/lib/module/assets/icons/logo_OxyServices.svg +0 -1
- package/lib/module/assets/illustrations/HighFive.js +0 -53
- package/lib/module/assets/illustrations/HighFive.js.map +0 -1
- package/lib/module/assets/lottie/welcomeheader_background_op1.json +0 -1
- package/lib/module/index.js +0 -222
- package/lib/module/index.js.map +0 -1
- package/lib/module/notifications/deviceNotifications.js +0 -433
- package/lib/module/notifications/deviceNotifications.js.map +0 -1
- package/lib/module/package.json +0 -1
- package/lib/module/ui/boot/runProviderColdBoot.js +0 -192
- package/lib/module/ui/boot/runProviderColdBoot.js.map +0 -1
- package/lib/module/ui/client.js +0 -39
- package/lib/module/ui/client.js.map +0 -1
- package/lib/module/ui/components/AvatarCameraBadge.js +0 -40
- package/lib/module/ui/components/AvatarCameraBadge.js.map +0 -1
- package/lib/module/ui/components/FollowButton.js +0 -251
- package/lib/module/ui/components/FollowButton.js.map +0 -1
- package/lib/module/ui/components/FollowTargetButton.js +0 -357
- package/lib/module/ui/components/FollowTargetButton.js.map +0 -1
- package/lib/module/ui/components/OxyAccountDialogScreen.js +0 -190
- package/lib/module/ui/components/OxyAccountDialogScreen.js.map +0 -1
- package/lib/module/ui/components/OxyAuthChooser.js +0 -400
- package/lib/module/ui/components/OxyAuthChooser.js.map +0 -1
- package/lib/module/ui/components/OxyAuthPrompt.js +0 -118
- package/lib/module/ui/components/OxyAuthPrompt.js.map +0 -1
- package/lib/module/ui/components/OxyConsentScreen.js +0 -491
- package/lib/module/ui/components/OxyConsentScreen.js.map +0 -1
- package/lib/module/ui/components/OxyOAuthCallback.js +0 -40
- package/lib/module/ui/components/OxyOAuthCallback.js.map +0 -1
- package/lib/module/ui/components/OxyPayButton.js +0 -62
- package/lib/module/ui/components/OxyPayButton.js.map +0 -1
- package/lib/module/ui/components/OxyProvider.js +0 -312
- package/lib/module/ui/components/OxyProvider.js.map +0 -1
- package/lib/module/ui/components/OxySignInButton.js +0 -316
- package/lib/module/ui/components/OxySignInButton.js.map +0 -1
- package/lib/module/ui/components/OxySignInRequestSurface.js +0 -141
- package/lib/module/ui/components/OxySignInRequestSurface.js.map +0 -1
- package/lib/module/ui/components/ProfileButton.js +0 -336
- package/lib/module/ui/components/ProfileButton.js.map +0 -1
- package/lib/module/ui/components/ProfileSummaryCard.js +0 -74
- package/lib/module/ui/components/ProfileSummaryCard.js.map +0 -1
- package/lib/module/ui/components/RequireOxyAuth.js +0 -292
- package/lib/module/ui/components/RequireOxyAuth.js.map +0 -1
- package/lib/module/ui/components/SettingsIcon.js +0 -40
- package/lib/module/ui/components/SettingsIcon.js.map +0 -1
- package/lib/module/ui/components/SurfaceHeaderAction.js +0 -58
- package/lib/module/ui/components/SurfaceHeaderAction.js.map +0 -1
- package/lib/module/ui/components/SurfaceScreen.js +0 -224
- package/lib/module/ui/components/SurfaceScreen.js.map +0 -1
- package/lib/module/ui/components/authChooser/AccountsMenuView.js +0 -538
- package/lib/module/ui/components/authChooser/AccountsMenuView.js.map +0 -1
- package/lib/module/ui/components/authChooser/SignInEntryView.js +0 -85
- package/lib/module/ui/components/authChooser/SignInEntryView.js.map +0 -1
- package/lib/module/ui/components/authChooser/SignInRequestView.js +0 -101
- package/lib/module/ui/components/authChooser/SignInRequestView.js.map +0 -1
- package/lib/module/ui/components/authChooser/SignUpView.js +0 -184
- package/lib/module/ui/components/authChooser/SignUpView.js.map +0 -1
- package/lib/module/ui/components/authChooser/TroubleDisclosure.js +0 -57
- package/lib/module/ui/components/authChooser/TroubleDisclosure.js.map +0 -1
- package/lib/module/ui/components/authChooser/primitives.js +0 -163
- package/lib/module/ui/components/authChooser/primitives.js.map +0 -1
- package/lib/module/ui/components/authChooser/requestSurfaces.js +0 -151
- package/lib/module/ui/components/authChooser/requestSurfaces.js.map +0 -1
- package/lib/module/ui/components/authChooser/signInProgress.js +0 -55
- package/lib/module/ui/components/authChooser/signInProgress.js.map +0 -1
- package/lib/module/ui/components/authChooser/styles.js +0 -216
- package/lib/module/ui/components/authChooser/styles.js.map +0 -1
- package/lib/module/ui/components/authChooser/types.js +0 -66
- package/lib/module/ui/components/authChooser/types.js.map +0 -1
- package/lib/module/ui/components/authChooser/useUsernameAvailability.js +0 -46
- package/lib/module/ui/components/authChooser/useUsernameAvailability.js.map +0 -1
- package/lib/module/ui/components/feedback/constants.js +0 -55
- package/lib/module/ui/components/feedback/constants.js.map +0 -1
- package/lib/module/ui/components/feedback/types.js +0 -4
- package/lib/module/ui/components/feedback/types.js.map +0 -1
- package/lib/module/ui/components/feedback/useFeedbackForm.js +0 -47
- package/lib/module/ui/components/feedback/useFeedbackForm.js.map +0 -1
- package/lib/module/ui/components/fileManagement/AnimatedButton.js +0 -55
- package/lib/module/ui/components/fileManagement/AnimatedButton.js.map +0 -1
- package/lib/module/ui/components/fileManagement/FileDetailsModal.js +0 -119
- package/lib/module/ui/components/fileManagement/FileDetailsModal.js.map +0 -1
- package/lib/module/ui/components/fileManagement/FileViewer.js +0 -425
- package/lib/module/ui/components/fileManagement/FileViewer.js.map +0 -1
- package/lib/module/ui/components/fileManagement/UploadPreview.js +0 -166
- package/lib/module/ui/components/fileManagement/UploadPreview.js.map +0 -1
- package/lib/module/ui/components/icon/FAIRWalletIcon.js +0 -59
- package/lib/module/ui/components/icon/FAIRWalletIcon.js.map +0 -1
- package/lib/module/ui/components/internal/PinInput.js +0 -113
- package/lib/module/ui/components/internal/PinInput.js.map +0 -1
- package/lib/module/ui/components/logo/LogoIcon.js +0 -55
- package/lib/module/ui/components/logo/LogoIcon.js.map +0 -1
- package/lib/module/ui/components/logo/LogoText.js +0 -42
- package/lib/module/ui/components/logo/LogoText.js.map +0 -1
- package/lib/module/ui/components/modals/DeleteAccountModal.js +0 -127
- package/lib/module/ui/components/modals/DeleteAccountModal.js.map +0 -1
- package/lib/module/ui/components/oauthNavigation.js +0 -80
- package/lib/module/ui/components/oauthNavigation.js.map +0 -1
- package/lib/module/ui/components/passkeyHubPopup.js +0 -29
- package/lib/module/ui/components/passkeyHubPopup.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentDetailsStep.js +0 -322
- package/lib/module/ui/components/payment/PaymentDetailsStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentMethodStep.js +0 -100
- package/lib/module/ui/components/payment/PaymentMethodStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentReviewStep.js +0 -144
- package/lib/module/ui/components/payment/PaymentReviewStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentSuccessStep.js +0 -79
- package/lib/module/ui/components/payment/PaymentSuccessStep.js.map +0 -1
- package/lib/module/ui/components/payment/PaymentSummaryStep.js +0 -190
- package/lib/module/ui/components/payment/PaymentSummaryStep.js.map +0 -1
- package/lib/module/ui/components/payment/constants.js +0 -47
- package/lib/module/ui/components/payment/constants.js.map +0 -1
- package/lib/module/ui/components/payment/paymentStyles.js +0 -396
- package/lib/module/ui/components/payment/paymentStyles.js.map +0 -1
- package/lib/module/ui/components/payment/types.js +0 -4
- package/lib/module/ui/components/payment/types.js.map +0 -1
- package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js +0 -216
- package/lib/module/ui/components/photogrid/JustifiedPhotoGrid.js.map +0 -1
- package/lib/module/ui/components/styles/overlay.js +0 -80
- package/lib/module/ui/components/styles/overlay.js.map +0 -1
- package/lib/module/ui/components/styles/shadow.js +0 -123
- package/lib/module/ui/components/styles/shadow.js.map +0 -1
- package/lib/module/ui/components/surfaces/ActionSheetSurface.js +0 -78
- package/lib/module/ui/components/surfaces/ActionSheetSurface.js.map +0 -1
- package/lib/module/ui/components/utils/hasTouchHandler.js +0 -9
- package/lib/module/ui/components/utils/hasTouchHandler.js.map +0 -1
- package/lib/module/ui/components/utils/roundLayoutSize.js +0 -4
- package/lib/module/ui/components/utils/roundLayoutSize.js.map +0 -1
- package/lib/module/ui/components/utils/splitStyles.js +0 -46
- package/lib/module/ui/components/utils/splitStyles.js.map +0 -1
- package/lib/module/ui/constants/spacing.js +0 -45
- package/lib/module/ui/constants/spacing.js.map +0 -1
- package/lib/module/ui/context/OxyContext.js +0 -1243
- package/lib/module/ui/context/OxyContext.js.map +0 -1
- package/lib/module/ui/context/commitSessionFlow.js +0 -100
- package/lib/module/ui/context/commitSessionFlow.js.map +0 -1
- package/lib/module/ui/context/hooks/useAuthOperations.js +0 -311
- package/lib/module/ui/context/hooks/useAuthOperations.js.map +0 -1
- package/lib/module/ui/context/oxyContextHelpers.js +0 -57
- package/lib/module/ui/context/oxyContextHelpers.js.map +0 -1
- package/lib/module/ui/context/oxyContextTypes.js +0 -4
- package/lib/module/ui/context/oxyContextTypes.js.map +0 -1
- package/lib/module/ui/context/passkeyFlow.js +0 -111
- package/lib/module/ui/context/passkeyFlow.js.map +0 -1
- package/lib/module/ui/context/useOxyAccountGraph.js +0 -107
- package/lib/module/ui/context/useOxyAccountGraph.js.map +0 -1
- package/lib/module/ui/hooks/mutations/mutationFactory.js +0 -178
- package/lib/module/ui/hooks/mutations/mutationFactory.js.map +0 -1
- package/lib/module/ui/hooks/mutations/mutationKeys.js +0 -36
- package/lib/module/ui/hooks/mutations/mutationKeys.js.map +0 -1
- package/lib/module/ui/hooks/mutations/useAccountMutations.js +0 -685
- package/lib/module/ui/hooks/mutations/useAccountMutations.js.map +0 -1
- package/lib/module/ui/hooks/mutations/useServicesMutations.js +0 -189
- package/lib/module/ui/hooks/mutations/useServicesMutations.js.map +0 -1
- package/lib/module/ui/hooks/queries/paymentTypes.js +0 -2
- package/lib/module/ui/hooks/queries/paymentTypes.js.map +0 -1
- package/lib/module/ui/hooks/queries/queryKeys.js +0 -207
- package/lib/module/ui/hooks/queries/queryKeys.js.map +0 -1
- package/lib/module/ui/hooks/queries/useAccountQueries.js +0 -315
- package/lib/module/ui/hooks/queries/useAccountQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/useAuthMethods.js +0 -45
- package/lib/module/ui/hooks/queries/useAuthMethods.js.map +0 -1
- package/lib/module/ui/hooks/queries/useFileQueries.js +0 -120
- package/lib/module/ui/hooks/queries/useFileQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/usePaymentQueries.js +0 -137
- package/lib/module/ui/hooks/queries/usePaymentQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/useSecurityQueries.js +0 -86
- package/lib/module/ui/hooks/queries/useSecurityQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/useServicesQueries.js +0 -161
- package/lib/module/ui/hooks/queries/useServicesQueries.js.map +0 -1
- package/lib/module/ui/hooks/queries/userCache.js +0 -433
- package/lib/module/ui/hooks/queries/userCache.js.map +0 -1
- package/lib/module/ui/hooks/queries/userCacheRelationship.js +0 -27
- package/lib/module/ui/hooks/queries/userCacheRelationship.js.map +0 -1
- package/lib/module/ui/hooks/queryClient.js +0 -201
- package/lib/module/ui/hooks/queryClient.js.map +0 -1
- package/lib/module/ui/hooks/useAssets.js +0 -221
- package/lib/module/ui/hooks/useAssets.js.map +0 -1
- package/lib/module/ui/hooks/useAsyncAction.js +0 -89
- package/lib/module/ui/hooks/useAsyncAction.js.map +0 -1
- package/lib/module/ui/hooks/useAuth.js +0 -123
- package/lib/module/ui/hooks/useAuth.js.map +0 -1
- package/lib/module/ui/hooks/useAvatarPicker.js +0 -103
- package/lib/module/ui/hooks/useAvatarPicker.js.map +0 -1
- package/lib/module/ui/hooks/useDeviceManagement.js +0 -68
- package/lib/module/ui/hooks/useDeviceManagement.js.map +0 -1
- package/lib/module/ui/hooks/useFileDownloadUrl.js +0 -66
- package/lib/module/ui/hooks/useFileDownloadUrl.js.map +0 -1
- package/lib/module/ui/hooks/useFileFiltering.js +0 -72
- package/lib/module/ui/hooks/useFileFiltering.js.map +0 -1
- package/lib/module/ui/hooks/useFollow.js +0 -324
- package/lib/module/ui/hooks/useFollow.js.map +0 -1
- package/lib/module/ui/hooks/useFollow.types.js +0 -4
- package/lib/module/ui/hooks/useFollow.types.js.map +0 -1
- package/lib/module/ui/hooks/useFollowTarget.js +0 -156
- package/lib/module/ui/hooks/useFollowTarget.js.map +0 -1
- package/lib/module/ui/hooks/useI18n.js +0 -18
- package/lib/module/ui/hooks/useI18n.js.map +0 -1
- package/lib/module/ui/hooks/useLanguageManagement.js +0 -185
- package/lib/module/ui/hooks/useLanguageManagement.js.map +0 -1
- package/lib/module/ui/hooks/useMutationStatus.js +0 -82
- package/lib/module/ui/hooks/useMutationStatus.js.map +0 -1
- package/lib/module/ui/hooks/useOnlineStatus.js +0 -30
- package/lib/module/ui/hooks/useOnlineStatus.js.map +0 -1
- package/lib/module/ui/hooks/useOxyEvent.js +0 -25
- package/lib/module/ui/hooks/useOxyEvent.js.map +0 -1
- package/lib/module/ui/hooks/useProfileEditing.js +0 -129
- package/lib/module/ui/hooks/useProfileEditing.js.map +0 -1
- package/lib/module/ui/hooks/useQueryClient.js +0 -15
- package/lib/module/ui/hooks/useQueryClient.js.map +0 -1
- package/lib/module/ui/hooks/useReduceMotion.js +0 -53
- package/lib/module/ui/hooks/useReduceMotion.js.map +0 -1
- package/lib/module/ui/hooks/useResolvedFileUrls.js +0 -157
- package/lib/module/ui/hooks/useResolvedFileUrls.js.map +0 -1
- package/lib/module/ui/hooks/useSessionManagement.js +0 -286
- package/lib/module/ui/hooks/useSessionManagement.js.map +0 -1
- package/lib/module/ui/hooks/useSettingToggle.js +0 -126
- package/lib/module/ui/hooks/useSettingToggle.js.map +0 -1
- package/lib/module/ui/hooks/useStorage.js +0 -40
- package/lib/module/ui/hooks/useStorage.js.map +0 -1
- package/lib/module/ui/hooks/useSurfaceHeader.js +0 -138
- package/lib/module/ui/hooks/useSurfaceHeader.js.map +0 -1
- package/lib/module/ui/hooks/useSwitchableAccounts.js +0 -60
- package/lib/module/ui/hooks/useSwitchableAccounts.js.map +0 -1
- package/lib/module/ui/index.js +0 -49
- package/lib/module/ui/index.js.map +0 -1
- package/lib/module/ui/isFrontend.js +0 -6
- package/lib/module/ui/isFrontend.js.map +0 -1
- package/lib/module/ui/navigation/accountDialogManager.js +0 -94
- package/lib/module/ui/navigation/accountDialogManager.js.map +0 -1
- package/lib/module/ui/navigation/bottomSheetManager.js +0 -56
- package/lib/module/ui/navigation/bottomSheetManager.js.map +0 -1
- package/lib/module/ui/navigation/routes.js +0 -92
- package/lib/module/ui/navigation/routes.js.map +0 -1
- package/lib/module/ui/navigation/surfaceBackBridge.js +0 -63
- package/lib/module/ui/navigation/surfaceBackBridge.js.map +0 -1
- package/lib/module/ui/navigation/surfaceNavStack.js +0 -143
- package/lib/module/ui/navigation/surfaceNavStack.js.map +0 -1
- package/lib/module/ui/navigation/surfaceRegistry.js +0 -141
- package/lib/module/ui/navigation/surfaceRegistry.js.map +0 -1
- package/lib/module/ui/navigation/surfaces.js +0 -325
- package/lib/module/ui/navigation/surfaces.js.map +0 -1
- package/lib/module/ui/oauth/browserAuthTransport.js +0 -167
- package/lib/module/ui/oauth/browserAuthTransport.js.map +0 -1
- package/lib/module/ui/oauth/completeOAuthCode.js +0 -75
- package/lib/module/ui/oauth/completeOAuthCode.js.map +0 -1
- package/lib/module/ui/oauth/oauthHandshake.js +0 -50
- package/lib/module/ui/oauth/oauthHandshake.js.map +0 -1
- package/lib/module/ui/oauth/oauthPopup.js +0 -268
- package/lib/module/ui/oauth/oauthPopup.js.map +0 -1
- package/lib/module/ui/oauth/oauthPopupMessages.js +0 -135
- package/lib/module/ui/oauth/oauthPopupMessages.js.map +0 -1
- package/lib/module/ui/oauth/types.js +0 -2
- package/lib/module/ui/oauth/types.js.map +0 -1
- package/lib/module/ui/screens/AccountMembersScreen.js +0 -438
- package/lib/module/ui/screens/AccountMembersScreen.js.map +0 -1
- package/lib/module/ui/screens/AccountSettingsScreen.js +0 -260
- package/lib/module/ui/screens/AccountSettingsScreen.js.map +0 -1
- package/lib/module/ui/screens/AccountVerificationScreen.js +0 -179
- package/lib/module/ui/screens/AccountVerificationScreen.js.map +0 -1
- package/lib/module/ui/screens/AppInfoScreen.js +0 -368
- package/lib/module/ui/screens/AppInfoScreen.js.map +0 -1
- package/lib/module/ui/screens/AvatarCropScreen.js +0 -984
- package/lib/module/ui/screens/AvatarCropScreen.js.map +0 -1
- package/lib/module/ui/screens/ChangeAvatarScreen.js +0 -303
- package/lib/module/ui/screens/ChangeAvatarScreen.js.map +0 -1
- package/lib/module/ui/screens/ConnectedAppsScreen.js +0 -164
- package/lib/module/ui/screens/ConnectedAppsScreen.js.map +0 -1
- package/lib/module/ui/screens/CreateAccountScreen.js +0 -382
- package/lib/module/ui/screens/CreateAccountScreen.js.map +0 -1
- package/lib/module/ui/screens/EditProfileFieldScreen.js +0 -541
- package/lib/module/ui/screens/EditProfileFieldScreen.js.map +0 -1
- package/lib/module/ui/screens/EditProfileScreen.js +0 -162
- package/lib/module/ui/screens/EditProfileScreen.js.map +0 -1
- package/lib/module/ui/screens/FAQScreen.js +0 -157
- package/lib/module/ui/screens/FAQScreen.js.map +0 -1
- package/lib/module/ui/screens/FeedbackScreen.js +0 -590
- package/lib/module/ui/screens/FeedbackScreen.js.map +0 -1
- package/lib/module/ui/screens/FileManagementScreen.js +0 -1525
- package/lib/module/ui/screens/FileManagementScreen.js.map +0 -1
- package/lib/module/ui/screens/FollowersListScreen.js +0 -12
- package/lib/module/ui/screens/FollowersListScreen.js.map +0 -1
- package/lib/module/ui/screens/FollowingListScreen.js +0 -12
- package/lib/module/ui/screens/FollowingListScreen.js.map +0 -1
- package/lib/module/ui/screens/HelpSupportScreen.js +0 -118
- package/lib/module/ui/screens/HelpSupportScreen.js.map +0 -1
- package/lib/module/ui/screens/HistoryViewScreen.js +0 -160
- package/lib/module/ui/screens/HistoryViewScreen.js.map +0 -1
- package/lib/module/ui/screens/LanguageSelectorScreen.js +0 -229
- package/lib/module/ui/screens/LanguageSelectorScreen.js.map +0 -1
- package/lib/module/ui/screens/LearnMoreUsernamesScreen.js +0 -122
- package/lib/module/ui/screens/LearnMoreUsernamesScreen.js.map +0 -1
- package/lib/module/ui/screens/LegalDocumentsScreen.js +0 -185
- package/lib/module/ui/screens/LegalDocumentsScreen.js.map +0 -1
- package/lib/module/ui/screens/ManageAccountScreen.js +0 -642
- package/lib/module/ui/screens/ManageAccountScreen.js.map +0 -1
- package/lib/module/ui/screens/NotificationsScreen.js +0 -145
- package/lib/module/ui/screens/NotificationsScreen.js.map +0 -1
- package/lib/module/ui/screens/PaymentGatewayScreen.js +0 -273
- package/lib/module/ui/screens/PaymentGatewayScreen.js.map +0 -1
- package/lib/module/ui/screens/PreferencesScreen.js +0 -189
- package/lib/module/ui/screens/PreferencesScreen.js.map +0 -1
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js +0 -953
- package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +0 -1
- package/lib/module/ui/screens/PrivacySettingsScreen.js +0 -496
- package/lib/module/ui/screens/PrivacySettingsScreen.js.map +0 -1
- package/lib/module/ui/screens/ProfileScreen.js +0 -468
- package/lib/module/ui/screens/ProfileScreen.js.map +0 -1
- package/lib/module/ui/screens/SavesCollectionsScreen.js +0 -127
- package/lib/module/ui/screens/SavesCollectionsScreen.js.map +0 -1
- package/lib/module/ui/screens/SearchSettingsScreen.js +0 -133
- package/lib/module/ui/screens/SearchSettingsScreen.js.map +0 -1
- package/lib/module/ui/screens/UserLinksScreen.js +0 -57
- package/lib/module/ui/screens/UserLinksScreen.js.map +0 -1
- package/lib/module/ui/screens/UserListScreen.js +0 -296
- package/lib/module/ui/screens/UserListScreen.js.map +0 -1
- package/lib/module/ui/screens/WelcomeNewUserScreen.js +0 -462
- package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/FileLibraryError.js +0 -59
- package/lib/module/ui/screens/fileManagement/FileLibraryError.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/FileListSection.js +0 -116
- package/lib/module/ui/screens/fileManagement/FileListSection.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js +0 -548
- package/lib/module/ui/screens/fileManagement/PhotoPickerSection.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/UploadBar.js +0 -80
- package/lib/module/ui/screens/fileManagement/UploadBar.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/hooks/useFileUploadState.js +0 -502
- package/lib/module/ui/screens/fileManagement/hooks/useFileUploadState.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/photoGridLayout.js +0 -39
- package/lib/module/ui/screens/fileManagement/photoGridLayout.js.map +0 -1
- package/lib/module/ui/screens/fileManagement/shared.js +0 -70
- package/lib/module/ui/screens/fileManagement/shared.js.map +0 -1
- package/lib/module/ui/screens/linkFormat.js +0 -31
- package/lib/module/ui/screens/linkFormat.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustAboutScreen.js +0 -89
- package/lib/module/ui/screens/trust/TrustAboutScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustCenterScreen.js +0 -180
- package/lib/module/ui/screens/trust/TrustCenterScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustFAQScreen.js +0 -81
- package/lib/module/ui/screens/trust/TrustFAQScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustLeaderboardScreen.js +0 -217
- package/lib/module/ui/screens/trust/TrustLeaderboardScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustRewardsScreen.js +0 -507
- package/lib/module/ui/screens/trust/TrustRewardsScreen.js.map +0 -1
- package/lib/module/ui/screens/trust/TrustRulesScreen.js +0 -90
- package/lib/module/ui/screens/trust/TrustRulesScreen.js.map +0 -1
- package/lib/module/ui/server.js +0 -56
- package/lib/module/ui/server.js.map +0 -1
- package/lib/module/ui/session/authStore.js +0 -35
- package/lib/module/ui/session/authStore.js.map +0 -1
- package/lib/module/ui/session/backgroundSession.js +0 -252
- package/lib/module/ui/session/backgroundSession.js.map +0 -1
- package/lib/module/ui/session/createSessionClient.js +0 -55
- package/lib/module/ui/session/createSessionClient.js.map +0 -1
- package/lib/module/ui/session/identityBinding.js +0 -89
- package/lib/module/ui/session/identityBinding.js.map +0 -1
- package/lib/module/ui/session/index.js +0 -21
- package/lib/module/ui/session/index.js.map +0 -1
- package/lib/module/ui/session/nativeSecureStorage.js +0 -88
- package/lib/module/ui/session/nativeSecureStorage.js.map +0 -1
- package/lib/module/ui/session/tokenTransport.js +0 -71
- package/lib/module/ui/session/tokenTransport.js.map +0 -1
- package/lib/module/ui/session/useBackgroundSessionSync.js +0 -76
- package/lib/module/ui/session/useBackgroundSessionSync.js.map +0 -1
- package/lib/module/ui/stores/accountStore.js +0 -213
- package/lib/module/ui/stores/accountStore.js.map +0 -1
- package/lib/module/ui/stores/assetStore.js +0 -212
- package/lib/module/ui/stores/assetStore.js.map +0 -1
- package/lib/module/ui/stores/authStore.js +0 -66
- package/lib/module/ui/stores/authStore.js.map +0 -1
- package/lib/module/ui/stores/followStore.js +0 -546
- package/lib/module/ui/stores/followStore.js.map +0 -1
- package/lib/module/ui/stores/followTargetStore.js +0 -143
- package/lib/module/ui/stores/followTargetStore.js.map +0 -1
- package/lib/module/ui/stores/resetSessionScopedStores.js +0 -18
- package/lib/module/ui/stores/resetSessionScopedStores.js.map +0 -1
- package/lib/module/ui/types/fileManagement.js +0 -4
- package/lib/module/ui/types/fileManagement.js.map +0 -1
- package/lib/module/ui/types/navigation.js +0 -4
- package/lib/module/ui/types/navigation.js.map +0 -1
- package/lib/module/ui/types/surfaceScreen.js +0 -4
- package/lib/module/ui/types/surfaceScreen.js.map +0 -1
- package/lib/module/ui/utils/avatarUtils.js +0 -73
- package/lib/module/ui/utils/avatarUtils.js.map +0 -1
- package/lib/module/ui/utils/colorUtils.js +0 -13
- package/lib/module/ui/utils/colorUtils.js.map +0 -1
- package/lib/module/ui/utils/commonsStoreLinks.js +0 -37
- package/lib/module/ui/utils/commonsStoreLinks.js.map +0 -1
- package/lib/module/ui/utils/deliveryPlatform.js +0 -55
- package/lib/module/ui/utils/deliveryPlatform.js.map +0 -1
- package/lib/module/ui/utils/deviceCredential.js +0 -18
- package/lib/module/ui/utils/deviceCredential.js.map +0 -1
- package/lib/module/ui/utils/errorHandlers.js +0 -129
- package/lib/module/ui/utils/errorHandlers.js.map +0 -1
- package/lib/module/ui/utils/fileManagement.js +0 -140
- package/lib/module/ui/utils/fileManagement.js.map +0 -1
- package/lib/module/ui/utils/iconNames.js +0 -124
- package/lib/module/ui/utils/iconNames.js.map +0 -1
- package/lib/module/ui/utils/isWebBrowser.js +0 -11
- package/lib/module/ui/utils/isWebBrowser.js.map +0 -1
- package/lib/module/ui/utils/netConnectivity.js +0 -23
- package/lib/module/ui/utils/netConnectivity.js.map +0 -1
- package/lib/module/ui/utils/oauthReturn.js +0 -122
- package/lib/module/ui/utils/oauthReturn.js.map +0 -1
- package/lib/module/ui/utils/sessionHelpers.js +0 -55
- package/lib/module/ui/utils/sessionHelpers.js.map +0 -1
- package/lib/module/ui/utils/storageHelpers.js +0 -111
- package/lib/module/ui/utils/storageHelpers.js.map +0 -1
- package/lib/module/ui/utils/userUtils.js +0 -63
- package/lib/module/ui/utils/userUtils.js.map +0 -1
- package/lib/module/utils/hookUtils.js +0 -403
- package/lib/module/utils/hookUtils.js.map +0 -1
- package/lib/module/webauthn/passkeyClient.js +0 -33
- package/lib/module/webauthn/passkeyClient.js.map +0 -1
- package/lib/module/webauthn/passkeyClient.native.js +0 -28
- package/lib/module/webauthn/passkeyClient.native.js.map +0 -1
- package/lib/module/webauthn/passkeyClient.web.js +0 -52
- package/lib/module/webauthn/passkeyClient.web.js.map +0 -1
- package/lib/typescript/commonjs/assets/icons/OxyServices.d.ts +0 -24
- package/lib/typescript/commonjs/assets/icons/OxyServices.d.ts.map +0 -1
- package/lib/typescript/commonjs/assets/illustrations/HighFive.d.ts +0 -8
- package/lib/typescript/commonjs/assets/illustrations/HighFive.d.ts.map +0 -1
- package/lib/typescript/commonjs/index.d.ts +0 -106
- package/lib/typescript/commonjs/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/notifications/deviceNotifications.d.ts +0 -192
- package/lib/typescript/commonjs/notifications/deviceNotifications.d.ts.map +0 -1
- package/lib/typescript/commonjs/package.json +0 -1
- package/lib/typescript/commonjs/ui/boot/runProviderColdBoot.d.ts +0 -60
- package/lib/typescript/commonjs/ui/boot/runProviderColdBoot.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/client.d.ts +0 -30
- package/lib/typescript/commonjs/ui/client.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/AvatarCameraBadge.d.ts +0 -4
- package/lib/typescript/commonjs/ui/components/AvatarCameraBadge.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/FollowButton.d.ts +0 -39
- package/lib/typescript/commonjs/ui/components/FollowButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/FollowTargetButton.d.ts +0 -158
- package/lib/typescript/commonjs/ui/components/FollowTargetButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyAccountDialogScreen.d.ts +0 -40
- package/lib/typescript/commonjs/ui/components/OxyAccountDialogScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyAuthChooser.d.ts +0 -54
- package/lib/typescript/commonjs/ui/components/OxyAuthChooser.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyAuthPrompt.d.ts +0 -59
- package/lib/typescript/commonjs/ui/components/OxyAuthPrompt.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyConsentScreen.d.ts +0 -45
- package/lib/typescript/commonjs/ui/components/OxyConsentScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyOAuthCallback.d.ts +0 -11
- package/lib/typescript/commonjs/ui/components/OxyOAuthCallback.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyPayButton.d.ts +0 -29
- package/lib/typescript/commonjs/ui/components/OxyPayButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxyProvider.d.ts +0 -40
- package/lib/typescript/commonjs/ui/components/OxyProvider.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts +0 -113
- package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/OxySignInRequestSurface.d.ts +0 -108
- package/lib/typescript/commonjs/ui/components/OxySignInRequestSurface.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/ProfileButton.d.ts +0 -59
- package/lib/typescript/commonjs/ui/components/ProfileButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/ProfileSummaryCard.d.ts +0 -33
- package/lib/typescript/commonjs/ui/components/ProfileSummaryCard.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/RequireOxyAuth.d.ts +0 -55
- package/lib/typescript/commonjs/ui/components/RequireOxyAuth.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/SettingsIcon.d.ts +0 -15
- package/lib/typescript/commonjs/ui/components/SettingsIcon.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/SurfaceHeaderAction.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/SurfaceHeaderAction.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/SurfaceScreen.d.ts +0 -23
- package/lib/typescript/commonjs/ui/components/SurfaceScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/AccountsMenuView.d.ts +0 -38
- package/lib/typescript/commonjs/ui/components/authChooser/AccountsMenuView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/SignInEntryView.d.ts +0 -32
- package/lib/typescript/commonjs/ui/components/authChooser/SignInEntryView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/SignInRequestView.d.ts +0 -34
- package/lib/typescript/commonjs/ui/components/authChooser/SignInRequestView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/SignUpView.d.ts +0 -34
- package/lib/typescript/commonjs/ui/components/authChooser/SignUpView.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/TroubleDisclosure.d.ts +0 -36
- package/lib/typescript/commonjs/ui/components/authChooser/TroubleDisclosure.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/primitives.d.ts +0 -55
- package/lib/typescript/commonjs/ui/components/authChooser/primitives.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/requestSurfaces.d.ts +0 -63
- package/lib/typescript/commonjs/ui/components/authChooser/requestSurfaces.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/signInProgress.d.ts +0 -26
- package/lib/typescript/commonjs/ui/components/authChooser/signInProgress.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/styles.d.ts +0 -209
- package/lib/typescript/commonjs/ui/components/authChooser/styles.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/types.d.ts +0 -109
- package/lib/typescript/commonjs/ui/components/authChooser/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/authChooser/useUsernameAvailability.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/authChooser/useUsernameAvailability.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/feedback/constants.d.ts +0 -5
- package/lib/typescript/commonjs/ui/components/feedback/constants.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/feedback/types.d.ts +0 -46
- package/lib/typescript/commonjs/ui/components/feedback/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/feedback/useFeedbackForm.d.ts +0 -9
- package/lib/typescript/commonjs/ui/components/feedback/useFeedbackForm.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/AnimatedButton.d.ts +0 -17
- package/lib/typescript/commonjs/ui/components/fileManagement/AnimatedButton.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/FileDetailsModal.d.ts +0 -24
- package/lib/typescript/commonjs/ui/components/fileManagement/FileDetailsModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/FileViewer.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/fileManagement/FileViewer.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/fileManagement/UploadPreview.d.ts +0 -14
- package/lib/typescript/commonjs/ui/components/fileManagement/UploadPreview.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/icon/FAIRWalletIcon.d.ts +0 -9
- package/lib/typescript/commonjs/ui/components/icon/FAIRWalletIcon.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/internal/PinInput.d.ts +0 -23
- package/lib/typescript/commonjs/ui/components/internal/PinInput.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/logo/LogoIcon.d.ts +0 -22
- package/lib/typescript/commonjs/ui/components/logo/LogoIcon.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/logo/LogoText.d.ts +0 -22
- package/lib/typescript/commonjs/ui/components/logo/LogoText.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/modals/DeleteAccountModal.d.ts +0 -26
- package/lib/typescript/commonjs/ui/components/modals/DeleteAccountModal.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/oauthNavigation.d.ts +0 -43
- package/lib/typescript/commonjs/ui/components/oauthNavigation.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/passkeyHubPopup.d.ts +0 -23
- package/lib/typescript/commonjs/ui/components/passkeyHubPopup.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentDetailsStep.d.ts +0 -21
- package/lib/typescript/commonjs/ui/components/payment/PaymentDetailsStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentMethodStep.d.ts +0 -14
- package/lib/typescript/commonjs/ui/components/payment/PaymentMethodStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentReviewStep.d.ts +0 -16
- package/lib/typescript/commonjs/ui/components/payment/PaymentReviewStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentSuccessStep.d.ts +0 -10
- package/lib/typescript/commonjs/ui/components/payment/PaymentSuccessStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/PaymentSummaryStep.d.ts +0 -15
- package/lib/typescript/commonjs/ui/components/payment/PaymentSummaryStep.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/constants.d.ts +0 -7
- package/lib/typescript/commonjs/ui/components/payment/constants.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/paymentStyles.d.ts +0 -389
- package/lib/typescript/commonjs/ui/components/payment/paymentStyles.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/payment/types.d.ts +0 -40
- package/lib/typescript/commonjs/ui/components/payment/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/photogrid/JustifiedPhotoGrid.d.ts +0 -28
- package/lib/typescript/commonjs/ui/components/photogrid/JustifiedPhotoGrid.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/styles/overlay.d.ts +0 -6
- package/lib/typescript/commonjs/ui/components/styles/overlay.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/styles/shadow.d.ts +0 -3
- package/lib/typescript/commonjs/ui/components/styles/shadow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/surfaces/ActionSheetSurface.d.ts +0 -38
- package/lib/typescript/commonjs/ui/components/surfaces/ActionSheetSurface.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/utils/hasTouchHandler.d.ts +0 -6
- package/lib/typescript/commonjs/ui/components/utils/hasTouchHandler.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/utils/roundLayoutSize.d.ts +0 -2
- package/lib/typescript/commonjs/ui/components/utils/roundLayoutSize.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/components/utils/splitStyles.d.ts +0 -20
- package/lib/typescript/commonjs/ui/components/utils/splitStyles.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/constants/spacing.d.ts +0 -33
- package/lib/typescript/commonjs/ui/constants/spacing.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/OxyContext.d.ts +0 -7
- package/lib/typescript/commonjs/ui/context/OxyContext.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/commitSessionFlow.d.ts +0 -39
- package/lib/typescript/commonjs/ui/context/commitSessionFlow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/hooks/useAuthOperations.d.ts +0 -74
- package/lib/typescript/commonjs/ui/context/hooks/useAuthOperations.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/oxyContextHelpers.d.ts +0 -7
- package/lib/typescript/commonjs/ui/context/oxyContextHelpers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/oxyContextTypes.d.ts +0 -211
- package/lib/typescript/commonjs/ui/context/oxyContextTypes.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/passkeyFlow.d.ts +0 -96
- package/lib/typescript/commonjs/ui/context/passkeyFlow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/context/useOxyAccountGraph.d.ts +0 -32
- package/lib/typescript/commonjs/ui/context/useOxyAccountGraph.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationFactory.d.ts +0 -87
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationFactory.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationKeys.d.ts +0 -30
- package/lib/typescript/commonjs/ui/hooks/mutations/mutationKeys.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/useAccountMutations.d.ts +0 -301
- package/lib/typescript/commonjs/ui/hooks/mutations/useAccountMutations.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/mutations/useServicesMutations.d.ts +0 -23
- package/lib/typescript/commonjs/ui/hooks/mutations/useServicesMutations.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/paymentTypes.d.ts +0 -138
- package/lib/typescript/commonjs/ui/hooks/queries/paymentTypes.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/queryKeys.d.ts +0 -137
- package/lib/typescript/commonjs/ui/hooks/queries/queryKeys.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useAccountQueries.d.ts +0 -87
- package/lib/typescript/commonjs/ui/hooks/queries/useAccountQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useAuthMethods.d.ts +0 -212
- package/lib/typescript/commonjs/ui/hooks/queries/useAuthMethods.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useFileQueries.d.ts +0 -50
- package/lib/typescript/commonjs/ui/hooks/queries/useFileQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/usePaymentQueries.d.ts +0 -64
- package/lib/typescript/commonjs/ui/hooks/queries/usePaymentQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useSecurityQueries.d.ts +0 -25
- package/lib/typescript/commonjs/ui/hooks/queries/useSecurityQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/useServicesQueries.d.ts +0 -44
- package/lib/typescript/commonjs/ui/hooks/queries/useServicesQueries.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/userCache.d.ts +0 -173
- package/lib/typescript/commonjs/ui/hooks/queries/userCache.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queries/userCacheRelationship.d.ts +0 -9
- package/lib/typescript/commonjs/ui/hooks/queries/userCacheRelationship.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/queryClient.d.ts +0 -66
- package/lib/typescript/commonjs/ui/hooks/queryClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAssets.d.ts +0 -35
- package/lib/typescript/commonjs/ui/hooks/useAssets.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAsyncAction.d.ts +0 -51
- package/lib/typescript/commonjs/ui/hooks/useAsyncAction.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAuth.d.ts +0 -109
- package/lib/typescript/commonjs/ui/hooks/useAuth.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useAvatarPicker.d.ts +0 -34
- package/lib/typescript/commonjs/ui/hooks/useAvatarPicker.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useDeviceManagement.d.ts +0 -27
- package/lib/typescript/commonjs/ui/hooks/useDeviceManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFileDownloadUrl.d.ts +0 -19
- package/lib/typescript/commonjs/ui/hooks/useFileDownloadUrl.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFileFiltering.d.ts +0 -29
- package/lib/typescript/commonjs/ui/hooks/useFileFiltering.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFollow.d.ts +0 -108
- package/lib/typescript/commonjs/ui/hooks/useFollow.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFollow.types.d.ts +0 -35
- package/lib/typescript/commonjs/ui/hooks/useFollow.types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useFollowTarget.d.ts +0 -50
- package/lib/typescript/commonjs/ui/hooks/useFollowTarget.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useI18n.d.ts +0 -5
- package/lib/typescript/commonjs/ui/hooks/useI18n.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useLanguageManagement.d.ts +0 -69
- package/lib/typescript/commonjs/ui/hooks/useLanguageManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useMutationStatus.d.ts +0 -23
- package/lib/typescript/commonjs/ui/hooks/useMutationStatus.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useOnlineStatus.d.ts +0 -14
- package/lib/typescript/commonjs/ui/hooks/useOnlineStatus.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useOxyEvent.d.ts +0 -8
- package/lib/typescript/commonjs/ui/hooks/useOxyEvent.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useProfileEditing.d.ts +0 -42
- package/lib/typescript/commonjs/ui/hooks/useProfileEditing.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useQueryClient.d.ts +0 -7
- package/lib/typescript/commonjs/ui/hooks/useQueryClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useReduceMotion.d.ts +0 -14
- package/lib/typescript/commonjs/ui/hooks/useReduceMotion.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useResolvedFileUrls.d.ts +0 -48
- package/lib/typescript/commonjs/ui/hooks/useResolvedFileUrls.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSessionManagement.d.ts +0 -41
- package/lib/typescript/commonjs/ui/hooks/useSessionManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSettingToggle.d.ts +0 -57
- package/lib/typescript/commonjs/ui/hooks/useSettingToggle.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useStorage.d.ts +0 -16
- package/lib/typescript/commonjs/ui/hooks/useStorage.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSurfaceHeader.d.ts +0 -45
- package/lib/typescript/commonjs/ui/hooks/useSurfaceHeader.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/hooks/useSwitchableAccounts.d.ts +0 -23
- package/lib/typescript/commonjs/ui/hooks/useSwitchableAccounts.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/index.d.ts +0 -39
- package/lib/typescript/commonjs/ui/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/isFrontend.d.ts +0 -3
- package/lib/typescript/commonjs/ui/isFrontend.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/accountDialogManager.d.ts +0 -54
- package/lib/typescript/commonjs/ui/navigation/accountDialogManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/bottomSheetManager.d.ts +0 -34
- package/lib/typescript/commonjs/ui/navigation/bottomSheetManager.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/routes.d.ts +0 -6
- package/lib/typescript/commonjs/ui/navigation/routes.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaceBackBridge.d.ts +0 -16
- package/lib/typescript/commonjs/ui/navigation/surfaceBackBridge.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaceNavStack.d.ts +0 -75
- package/lib/typescript/commonjs/ui/navigation/surfaceNavStack.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaceRegistry.d.ts +0 -194
- package/lib/typescript/commonjs/ui/navigation/surfaceRegistry.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/navigation/surfaces.d.ts +0 -110
- package/lib/typescript/commonjs/ui/navigation/surfaces.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/browserAuthTransport.d.ts +0 -56
- package/lib/typescript/commonjs/ui/oauth/browserAuthTransport.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/completeOAuthCode.d.ts +0 -49
- package/lib/typescript/commonjs/ui/oauth/completeOAuthCode.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/oauthHandshake.d.ts +0 -50
- package/lib/typescript/commonjs/ui/oauth/oauthHandshake.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/oauthPopup.d.ts +0 -83
- package/lib/typescript/commonjs/ui/oauth/oauthPopup.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/oauthPopupMessages.d.ts +0 -67
- package/lib/typescript/commonjs/ui/oauth/oauthPopupMessages.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/oauth/types.d.ts +0 -176
- package/lib/typescript/commonjs/ui/oauth/types.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AccountMembersScreen.d.ts +0 -10
- package/lib/typescript/commonjs/ui/screens/AccountMembersScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AccountSettingsScreen.d.ts +0 -12
- package/lib/typescript/commonjs/ui/screens/AccountSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AccountVerificationScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/AccountVerificationScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AppInfoScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/AppInfoScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/AvatarCropScreen.d.ts +0 -58
- package/lib/typescript/commonjs/ui/screens/AvatarCropScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ChangeAvatarScreen.d.ts +0 -38
- package/lib/typescript/commonjs/ui/screens/ChangeAvatarScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ConnectedAppsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/ConnectedAppsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/CreateAccountScreen.d.ts +0 -11
- package/lib/typescript/commonjs/ui/screens/CreateAccountScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/EditProfileFieldScreen.d.ts +0 -13
- package/lib/typescript/commonjs/ui/screens/EditProfileFieldScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/EditProfileScreen.d.ts +0 -14
- package/lib/typescript/commonjs/ui/screens/EditProfileScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FAQScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/FAQScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FeedbackScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/FeedbackScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FileManagementScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/FileManagementScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FollowersListScreen.d.ts +0 -12
- package/lib/typescript/commonjs/ui/screens/FollowersListScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/FollowingListScreen.d.ts +0 -12
- package/lib/typescript/commonjs/ui/screens/FollowingListScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/HelpSupportScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/HelpSupportScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/HistoryViewScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/HistoryViewScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/LanguageSelectorScreen.d.ts +0 -7
- package/lib/typescript/commonjs/ui/screens/LanguageSelectorScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/LearnMoreUsernamesScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/LearnMoreUsernamesScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/LegalDocumentsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/LegalDocumentsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ManageAccountScreen.d.ts +0 -13
- package/lib/typescript/commonjs/ui/screens/ManageAccountScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/NotificationsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/NotificationsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PaymentGatewayScreen.d.ts +0 -15
- package/lib/typescript/commonjs/ui/screens/PaymentGatewayScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PreferencesScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/PreferencesScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PremiumSubscriptionScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/PremiumSubscriptionScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/PrivacySettingsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/PrivacySettingsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/ProfileScreen.d.ts +0 -9
- package/lib/typescript/commonjs/ui/screens/ProfileScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/SavesCollectionsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/SavesCollectionsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/SearchSettingsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/SearchSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/UserLinksScreen.d.ts +0 -15
- package/lib/typescript/commonjs/ui/screens/UserLinksScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/UserListScreen.d.ts +0 -18
- package/lib/typescript/commonjs/ui/screens/UserListScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/WelcomeNewUserScreen.d.ts +0 -14
- package/lib/typescript/commonjs/ui/screens/WelcomeNewUserScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileLibraryError.d.ts +0 -23
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileLibraryError.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileListSection.d.ts +0 -40
- package/lib/typescript/commonjs/ui/screens/fileManagement/FileListSection.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/PhotoPickerSection.d.ts +0 -43
- package/lib/typescript/commonjs/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/UploadBar.d.ts +0 -25
- package/lib/typescript/commonjs/ui/screens/fileManagement/UploadBar.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.d.ts +0 -51
- package/lib/typescript/commonjs/ui/screens/fileManagement/hooks/useFileUploadState.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/photoGridLayout.d.ts +0 -37
- package/lib/typescript/commonjs/ui/screens/fileManagement/photoGridLayout.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/fileManagement/shared.d.ts +0 -38
- package/lib/typescript/commonjs/ui/screens/fileManagement/shared.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/linkFormat.d.ts +0 -23
- package/lib/typescript/commonjs/ui/screens/linkFormat.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustAboutScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustAboutScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustCenterScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustCenterScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustFAQScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustFAQScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustLeaderboardScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustLeaderboardScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustRewardsScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustRewardsScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/screens/trust/TrustRulesScreen.d.ts +0 -5
- package/lib/typescript/commonjs/ui/screens/trust/TrustRulesScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/server.d.ts +0 -36
- package/lib/typescript/commonjs/ui/server.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/authStore.d.ts +0 -25
- package/lib/typescript/commonjs/ui/session/authStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/backgroundSession.d.ts +0 -42
- package/lib/typescript/commonjs/ui/session/backgroundSession.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/createSessionClient.d.ts +0 -40
- package/lib/typescript/commonjs/ui/session/createSessionClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/identityBinding.d.ts +0 -66
- package/lib/typescript/commonjs/ui/session/identityBinding.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/index.d.ts +0 -20
- package/lib/typescript/commonjs/ui/session/index.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/nativeSecureStorage.d.ts +0 -25
- package/lib/typescript/commonjs/ui/session/nativeSecureStorage.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/tokenTransport.d.ts +0 -33
- package/lib/typescript/commonjs/ui/session/tokenTransport.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/session/useBackgroundSessionSync.d.ts +0 -23
- package/lib/typescript/commonjs/ui/session/useBackgroundSessionSync.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/accountStore.d.ts +0 -27
- package/lib/typescript/commonjs/ui/stores/accountStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/assetStore.d.ts +0 -54
- package/lib/typescript/commonjs/ui/stores/assetStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/authStore.d.ts +0 -17
- package/lib/typescript/commonjs/ui/stores/authStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/followStore.d.ts +0 -30
- package/lib/typescript/commonjs/ui/stores/followStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/followTargetStore.d.ts +0 -84
- package/lib/typescript/commonjs/ui/stores/followTargetStore.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/stores/resetSessionScopedStores.d.ts +0 -10
- package/lib/typescript/commonjs/ui/stores/resetSessionScopedStores.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/types/fileManagement.d.ts +0 -51
- package/lib/typescript/commonjs/ui/types/fileManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/types/navigation.d.ts +0 -127
- package/lib/typescript/commonjs/ui/types/navigation.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/types/surfaceScreen.d.ts +0 -38
- package/lib/typescript/commonjs/ui/types/surfaceScreen.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/avatarUtils.d.ts +0 -24
- package/lib/typescript/commonjs/ui/utils/avatarUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/colorUtils.d.ts +0 -10
- package/lib/typescript/commonjs/ui/utils/colorUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/commonsStoreLinks.d.ts +0 -24
- package/lib/typescript/commonjs/ui/utils/commonsStoreLinks.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/deliveryPlatform.d.ts +0 -33
- package/lib/typescript/commonjs/ui/utils/deliveryPlatform.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/deviceCredential.d.ts +0 -8
- package/lib/typescript/commonjs/ui/utils/deviceCredential.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/errorHandlers.d.ts +0 -35
- package/lib/typescript/commonjs/ui/utils/errorHandlers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/fileManagement.d.ts +0 -55
- package/lib/typescript/commonjs/ui/utils/fileManagement.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/iconNames.d.ts +0 -112
- package/lib/typescript/commonjs/ui/utils/iconNames.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/isWebBrowser.d.ts +0 -9
- package/lib/typescript/commonjs/ui/utils/isWebBrowser.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/netConnectivity.d.ts +0 -17
- package/lib/typescript/commonjs/ui/utils/netConnectivity.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/oauthReturn.d.ts +0 -48
- package/lib/typescript/commonjs/ui/utils/oauthReturn.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/sessionHelpers.d.ts +0 -48
- package/lib/typescript/commonjs/ui/utils/sessionHelpers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/storageHelpers.d.ts +0 -28
- package/lib/typescript/commonjs/ui/utils/storageHelpers.d.ts.map +0 -1
- package/lib/typescript/commonjs/ui/utils/userUtils.d.ts +0 -23
- package/lib/typescript/commonjs/ui/utils/userUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/utils/hookUtils.d.ts +0 -102
- package/lib/typescript/commonjs/utils/hookUtils.d.ts.map +0 -1
- package/lib/typescript/commonjs/webauthn/passkeyClient.d.ts +0 -20
- package/lib/typescript/commonjs/webauthn/passkeyClient.d.ts.map +0 -1
- package/lib/typescript/commonjs/webauthn/passkeyClient.native.d.ts +0 -15
- package/lib/typescript/commonjs/webauthn/passkeyClient.native.d.ts.map +0 -1
- package/lib/typescript/commonjs/webauthn/passkeyClient.web.d.ts +0 -36
- package/lib/typescript/commonjs/webauthn/passkeyClient.web.d.ts.map +0 -1
- package/lib/typescript/module/assets/icons/OxyServices.d.ts +0 -24
- package/lib/typescript/module/assets/icons/OxyServices.d.ts.map +0 -1
- package/lib/typescript/module/assets/illustrations/HighFive.d.ts +0 -8
- package/lib/typescript/module/assets/illustrations/HighFive.d.ts.map +0 -1
- package/lib/typescript/module/index.d.ts +0 -106
- package/lib/typescript/module/index.d.ts.map +0 -1
- package/lib/typescript/module/notifications/deviceNotifications.d.ts +0 -192
- package/lib/typescript/module/notifications/deviceNotifications.d.ts.map +0 -1
- package/lib/typescript/module/package.json +0 -1
- package/lib/typescript/module/ui/boot/runProviderColdBoot.d.ts +0 -60
- package/lib/typescript/module/ui/boot/runProviderColdBoot.d.ts.map +0 -1
- package/lib/typescript/module/ui/client.d.ts +0 -30
- package/lib/typescript/module/ui/client.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/AvatarCameraBadge.d.ts +0 -4
- package/lib/typescript/module/ui/components/AvatarCameraBadge.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/FollowButton.d.ts +0 -39
- package/lib/typescript/module/ui/components/FollowButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/FollowTargetButton.d.ts +0 -158
- package/lib/typescript/module/ui/components/FollowTargetButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyAccountDialogScreen.d.ts +0 -40
- package/lib/typescript/module/ui/components/OxyAccountDialogScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyAuthChooser.d.ts +0 -54
- package/lib/typescript/module/ui/components/OxyAuthChooser.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyAuthPrompt.d.ts +0 -59
- package/lib/typescript/module/ui/components/OxyAuthPrompt.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyConsentScreen.d.ts +0 -45
- package/lib/typescript/module/ui/components/OxyConsentScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyOAuthCallback.d.ts +0 -11
- package/lib/typescript/module/ui/components/OxyOAuthCallback.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyPayButton.d.ts +0 -29
- package/lib/typescript/module/ui/components/OxyPayButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxyProvider.d.ts +0 -40
- package/lib/typescript/module/ui/components/OxyProvider.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxySignInButton.d.ts +0 -113
- package/lib/typescript/module/ui/components/OxySignInButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/OxySignInRequestSurface.d.ts +0 -108
- package/lib/typescript/module/ui/components/OxySignInRequestSurface.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/ProfileButton.d.ts +0 -59
- package/lib/typescript/module/ui/components/ProfileButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/ProfileSummaryCard.d.ts +0 -33
- package/lib/typescript/module/ui/components/ProfileSummaryCard.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/RequireOxyAuth.d.ts +0 -55
- package/lib/typescript/module/ui/components/RequireOxyAuth.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/SettingsIcon.d.ts +0 -15
- package/lib/typescript/module/ui/components/SettingsIcon.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/SurfaceHeaderAction.d.ts +0 -16
- package/lib/typescript/module/ui/components/SurfaceHeaderAction.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/SurfaceScreen.d.ts +0 -23
- package/lib/typescript/module/ui/components/SurfaceScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/AccountsMenuView.d.ts +0 -38
- package/lib/typescript/module/ui/components/authChooser/AccountsMenuView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/SignInEntryView.d.ts +0 -32
- package/lib/typescript/module/ui/components/authChooser/SignInEntryView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/SignInRequestView.d.ts +0 -34
- package/lib/typescript/module/ui/components/authChooser/SignInRequestView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/SignUpView.d.ts +0 -34
- package/lib/typescript/module/ui/components/authChooser/SignUpView.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/TroubleDisclosure.d.ts +0 -36
- package/lib/typescript/module/ui/components/authChooser/TroubleDisclosure.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/primitives.d.ts +0 -55
- package/lib/typescript/module/ui/components/authChooser/primitives.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/requestSurfaces.d.ts +0 -63
- package/lib/typescript/module/ui/components/authChooser/requestSurfaces.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/signInProgress.d.ts +0 -26
- package/lib/typescript/module/ui/components/authChooser/signInProgress.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/styles.d.ts +0 -209
- package/lib/typescript/module/ui/components/authChooser/styles.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/types.d.ts +0 -109
- package/lib/typescript/module/ui/components/authChooser/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/authChooser/useUsernameAvailability.d.ts +0 -16
- package/lib/typescript/module/ui/components/authChooser/useUsernameAvailability.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/feedback/constants.d.ts +0 -5
- package/lib/typescript/module/ui/components/feedback/constants.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/feedback/types.d.ts +0 -46
- package/lib/typescript/module/ui/components/feedback/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/feedback/useFeedbackForm.d.ts +0 -9
- package/lib/typescript/module/ui/components/feedback/useFeedbackForm.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/AnimatedButton.d.ts +0 -17
- package/lib/typescript/module/ui/components/fileManagement/AnimatedButton.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/FileDetailsModal.d.ts +0 -24
- package/lib/typescript/module/ui/components/fileManagement/FileDetailsModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/FileViewer.d.ts +0 -16
- package/lib/typescript/module/ui/components/fileManagement/FileViewer.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/fileManagement/UploadPreview.d.ts +0 -14
- package/lib/typescript/module/ui/components/fileManagement/UploadPreview.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/icon/FAIRWalletIcon.d.ts +0 -9
- package/lib/typescript/module/ui/components/icon/FAIRWalletIcon.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/internal/PinInput.d.ts +0 -23
- package/lib/typescript/module/ui/components/internal/PinInput.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/logo/LogoIcon.d.ts +0 -22
- package/lib/typescript/module/ui/components/logo/LogoIcon.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/logo/LogoText.d.ts +0 -22
- package/lib/typescript/module/ui/components/logo/LogoText.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/modals/DeleteAccountModal.d.ts +0 -26
- package/lib/typescript/module/ui/components/modals/DeleteAccountModal.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/oauthNavigation.d.ts +0 -43
- package/lib/typescript/module/ui/components/oauthNavigation.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/passkeyHubPopup.d.ts +0 -23
- package/lib/typescript/module/ui/components/passkeyHubPopup.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentDetailsStep.d.ts +0 -21
- package/lib/typescript/module/ui/components/payment/PaymentDetailsStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentMethodStep.d.ts +0 -14
- package/lib/typescript/module/ui/components/payment/PaymentMethodStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentReviewStep.d.ts +0 -16
- package/lib/typescript/module/ui/components/payment/PaymentReviewStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentSuccessStep.d.ts +0 -10
- package/lib/typescript/module/ui/components/payment/PaymentSuccessStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/PaymentSummaryStep.d.ts +0 -15
- package/lib/typescript/module/ui/components/payment/PaymentSummaryStep.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/constants.d.ts +0 -7
- package/lib/typescript/module/ui/components/payment/constants.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/paymentStyles.d.ts +0 -389
- package/lib/typescript/module/ui/components/payment/paymentStyles.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/payment/types.d.ts +0 -40
- package/lib/typescript/module/ui/components/payment/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/photogrid/JustifiedPhotoGrid.d.ts +0 -28
- package/lib/typescript/module/ui/components/photogrid/JustifiedPhotoGrid.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/styles/overlay.d.ts +0 -6
- package/lib/typescript/module/ui/components/styles/overlay.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/styles/shadow.d.ts +0 -3
- package/lib/typescript/module/ui/components/styles/shadow.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/surfaces/ActionSheetSurface.d.ts +0 -38
- package/lib/typescript/module/ui/components/surfaces/ActionSheetSurface.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/utils/hasTouchHandler.d.ts +0 -6
- package/lib/typescript/module/ui/components/utils/hasTouchHandler.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/utils/roundLayoutSize.d.ts +0 -2
- package/lib/typescript/module/ui/components/utils/roundLayoutSize.d.ts.map +0 -1
- package/lib/typescript/module/ui/components/utils/splitStyles.d.ts +0 -20
- package/lib/typescript/module/ui/components/utils/splitStyles.d.ts.map +0 -1
- package/lib/typescript/module/ui/constants/spacing.d.ts +0 -33
- package/lib/typescript/module/ui/constants/spacing.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/OxyContext.d.ts +0 -7
- package/lib/typescript/module/ui/context/OxyContext.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/commitSessionFlow.d.ts +0 -39
- package/lib/typescript/module/ui/context/commitSessionFlow.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/hooks/useAuthOperations.d.ts +0 -74
- package/lib/typescript/module/ui/context/hooks/useAuthOperations.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/oxyContextHelpers.d.ts +0 -7
- package/lib/typescript/module/ui/context/oxyContextHelpers.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/oxyContextTypes.d.ts +0 -211
- package/lib/typescript/module/ui/context/oxyContextTypes.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/passkeyFlow.d.ts +0 -96
- package/lib/typescript/module/ui/context/passkeyFlow.d.ts.map +0 -1
- package/lib/typescript/module/ui/context/useOxyAccountGraph.d.ts +0 -32
- package/lib/typescript/module/ui/context/useOxyAccountGraph.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/mutationFactory.d.ts +0 -87
- package/lib/typescript/module/ui/hooks/mutations/mutationFactory.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/mutationKeys.d.ts +0 -30
- package/lib/typescript/module/ui/hooks/mutations/mutationKeys.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/useAccountMutations.d.ts +0 -301
- package/lib/typescript/module/ui/hooks/mutations/useAccountMutations.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/mutations/useServicesMutations.d.ts +0 -23
- package/lib/typescript/module/ui/hooks/mutations/useServicesMutations.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/paymentTypes.d.ts +0 -138
- package/lib/typescript/module/ui/hooks/queries/paymentTypes.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/queryKeys.d.ts +0 -137
- package/lib/typescript/module/ui/hooks/queries/queryKeys.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useAccountQueries.d.ts +0 -87
- package/lib/typescript/module/ui/hooks/queries/useAccountQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useAuthMethods.d.ts +0 -212
- package/lib/typescript/module/ui/hooks/queries/useAuthMethods.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useFileQueries.d.ts +0 -50
- package/lib/typescript/module/ui/hooks/queries/useFileQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/usePaymentQueries.d.ts +0 -64
- package/lib/typescript/module/ui/hooks/queries/usePaymentQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useSecurityQueries.d.ts +0 -25
- package/lib/typescript/module/ui/hooks/queries/useSecurityQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/useServicesQueries.d.ts +0 -44
- package/lib/typescript/module/ui/hooks/queries/useServicesQueries.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/userCache.d.ts +0 -173
- package/lib/typescript/module/ui/hooks/queries/userCache.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queries/userCacheRelationship.d.ts +0 -9
- package/lib/typescript/module/ui/hooks/queries/userCacheRelationship.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/queryClient.d.ts +0 -66
- package/lib/typescript/module/ui/hooks/queryClient.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAssets.d.ts +0 -35
- package/lib/typescript/module/ui/hooks/useAssets.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAsyncAction.d.ts +0 -51
- package/lib/typescript/module/ui/hooks/useAsyncAction.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAuth.d.ts +0 -109
- package/lib/typescript/module/ui/hooks/useAuth.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useAvatarPicker.d.ts +0 -34
- package/lib/typescript/module/ui/hooks/useAvatarPicker.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useDeviceManagement.d.ts +0 -27
- package/lib/typescript/module/ui/hooks/useDeviceManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFileDownloadUrl.d.ts +0 -19
- package/lib/typescript/module/ui/hooks/useFileDownloadUrl.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFileFiltering.d.ts +0 -29
- package/lib/typescript/module/ui/hooks/useFileFiltering.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFollow.d.ts +0 -108
- package/lib/typescript/module/ui/hooks/useFollow.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFollow.types.d.ts +0 -35
- package/lib/typescript/module/ui/hooks/useFollow.types.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useFollowTarget.d.ts +0 -50
- package/lib/typescript/module/ui/hooks/useFollowTarget.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useI18n.d.ts +0 -5
- package/lib/typescript/module/ui/hooks/useI18n.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useLanguageManagement.d.ts +0 -69
- package/lib/typescript/module/ui/hooks/useLanguageManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useMutationStatus.d.ts +0 -23
- package/lib/typescript/module/ui/hooks/useMutationStatus.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useOnlineStatus.d.ts +0 -14
- package/lib/typescript/module/ui/hooks/useOnlineStatus.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useOxyEvent.d.ts +0 -8
- package/lib/typescript/module/ui/hooks/useOxyEvent.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useProfileEditing.d.ts +0 -42
- package/lib/typescript/module/ui/hooks/useProfileEditing.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useQueryClient.d.ts +0 -7
- package/lib/typescript/module/ui/hooks/useQueryClient.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useReduceMotion.d.ts +0 -14
- package/lib/typescript/module/ui/hooks/useReduceMotion.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useResolvedFileUrls.d.ts +0 -48
- package/lib/typescript/module/ui/hooks/useResolvedFileUrls.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSessionManagement.d.ts +0 -41
- package/lib/typescript/module/ui/hooks/useSessionManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSettingToggle.d.ts +0 -57
- package/lib/typescript/module/ui/hooks/useSettingToggle.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useStorage.d.ts +0 -16
- package/lib/typescript/module/ui/hooks/useStorage.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSurfaceHeader.d.ts +0 -45
- package/lib/typescript/module/ui/hooks/useSurfaceHeader.d.ts.map +0 -1
- package/lib/typescript/module/ui/hooks/useSwitchableAccounts.d.ts +0 -23
- package/lib/typescript/module/ui/hooks/useSwitchableAccounts.d.ts.map +0 -1
- package/lib/typescript/module/ui/index.d.ts +0 -39
- package/lib/typescript/module/ui/index.d.ts.map +0 -1
- package/lib/typescript/module/ui/isFrontend.d.ts +0 -3
- package/lib/typescript/module/ui/isFrontend.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/accountDialogManager.d.ts +0 -54
- package/lib/typescript/module/ui/navigation/accountDialogManager.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/bottomSheetManager.d.ts +0 -34
- package/lib/typescript/module/ui/navigation/bottomSheetManager.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/routes.d.ts +0 -6
- package/lib/typescript/module/ui/navigation/routes.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaceBackBridge.d.ts +0 -16
- package/lib/typescript/module/ui/navigation/surfaceBackBridge.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaceNavStack.d.ts +0 -75
- package/lib/typescript/module/ui/navigation/surfaceNavStack.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaceRegistry.d.ts +0 -194
- package/lib/typescript/module/ui/navigation/surfaceRegistry.d.ts.map +0 -1
- package/lib/typescript/module/ui/navigation/surfaces.d.ts +0 -110
- package/lib/typescript/module/ui/navigation/surfaces.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/browserAuthTransport.d.ts +0 -56
- package/lib/typescript/module/ui/oauth/browserAuthTransport.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/completeOAuthCode.d.ts +0 -49
- package/lib/typescript/module/ui/oauth/completeOAuthCode.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/oauthHandshake.d.ts +0 -50
- package/lib/typescript/module/ui/oauth/oauthHandshake.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/oauthPopup.d.ts +0 -83
- package/lib/typescript/module/ui/oauth/oauthPopup.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/oauthPopupMessages.d.ts +0 -67
- package/lib/typescript/module/ui/oauth/oauthPopupMessages.d.ts.map +0 -1
- package/lib/typescript/module/ui/oauth/types.d.ts +0 -176
- package/lib/typescript/module/ui/oauth/types.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AccountMembersScreen.d.ts +0 -10
- package/lib/typescript/module/ui/screens/AccountMembersScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AccountSettingsScreen.d.ts +0 -12
- package/lib/typescript/module/ui/screens/AccountSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AccountVerificationScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/AccountVerificationScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AppInfoScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/AppInfoScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/AvatarCropScreen.d.ts +0 -58
- package/lib/typescript/module/ui/screens/AvatarCropScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ChangeAvatarScreen.d.ts +0 -38
- package/lib/typescript/module/ui/screens/ChangeAvatarScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ConnectedAppsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/ConnectedAppsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/CreateAccountScreen.d.ts +0 -11
- package/lib/typescript/module/ui/screens/CreateAccountScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/EditProfileFieldScreen.d.ts +0 -13
- package/lib/typescript/module/ui/screens/EditProfileFieldScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/EditProfileScreen.d.ts +0 -14
- package/lib/typescript/module/ui/screens/EditProfileScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FAQScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/FAQScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FeedbackScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/FeedbackScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FileManagementScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/FileManagementScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FollowersListScreen.d.ts +0 -12
- package/lib/typescript/module/ui/screens/FollowersListScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/FollowingListScreen.d.ts +0 -12
- package/lib/typescript/module/ui/screens/FollowingListScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/HelpSupportScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/HelpSupportScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/HistoryViewScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/HistoryViewScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/LanguageSelectorScreen.d.ts +0 -7
- package/lib/typescript/module/ui/screens/LanguageSelectorScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/LearnMoreUsernamesScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/LearnMoreUsernamesScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/LegalDocumentsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/LegalDocumentsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ManageAccountScreen.d.ts +0 -13
- package/lib/typescript/module/ui/screens/ManageAccountScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/NotificationsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/NotificationsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PaymentGatewayScreen.d.ts +0 -15
- package/lib/typescript/module/ui/screens/PaymentGatewayScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PreferencesScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/PreferencesScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PremiumSubscriptionScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/PremiumSubscriptionScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/PrivacySettingsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/PrivacySettingsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/ProfileScreen.d.ts +0 -9
- package/lib/typescript/module/ui/screens/ProfileScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/SavesCollectionsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/SavesCollectionsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/SearchSettingsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/SearchSettingsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/UserLinksScreen.d.ts +0 -15
- package/lib/typescript/module/ui/screens/UserLinksScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/UserListScreen.d.ts +0 -18
- package/lib/typescript/module/ui/screens/UserListScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/WelcomeNewUserScreen.d.ts +0 -14
- package/lib/typescript/module/ui/screens/WelcomeNewUserScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/FileLibraryError.d.ts +0 -23
- package/lib/typescript/module/ui/screens/fileManagement/FileLibraryError.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/FileListSection.d.ts +0 -40
- package/lib/typescript/module/ui/screens/fileManagement/FileListSection.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/PhotoPickerSection.d.ts +0 -43
- package/lib/typescript/module/ui/screens/fileManagement/PhotoPickerSection.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/UploadBar.d.ts +0 -25
- package/lib/typescript/module/ui/screens/fileManagement/UploadBar.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/hooks/useFileUploadState.d.ts +0 -51
- package/lib/typescript/module/ui/screens/fileManagement/hooks/useFileUploadState.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/photoGridLayout.d.ts +0 -37
- package/lib/typescript/module/ui/screens/fileManagement/photoGridLayout.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/fileManagement/shared.d.ts +0 -38
- package/lib/typescript/module/ui/screens/fileManagement/shared.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/linkFormat.d.ts +0 -23
- package/lib/typescript/module/ui/screens/linkFormat.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustAboutScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustAboutScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustCenterScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustCenterScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustFAQScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustFAQScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustLeaderboardScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustLeaderboardScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustRewardsScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustRewardsScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/screens/trust/TrustRulesScreen.d.ts +0 -5
- package/lib/typescript/module/ui/screens/trust/TrustRulesScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/server.d.ts +0 -36
- package/lib/typescript/module/ui/server.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/authStore.d.ts +0 -25
- package/lib/typescript/module/ui/session/authStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/backgroundSession.d.ts +0 -42
- package/lib/typescript/module/ui/session/backgroundSession.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/createSessionClient.d.ts +0 -40
- package/lib/typescript/module/ui/session/createSessionClient.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/identityBinding.d.ts +0 -66
- package/lib/typescript/module/ui/session/identityBinding.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/index.d.ts +0 -20
- package/lib/typescript/module/ui/session/index.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/nativeSecureStorage.d.ts +0 -25
- package/lib/typescript/module/ui/session/nativeSecureStorage.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/tokenTransport.d.ts +0 -33
- package/lib/typescript/module/ui/session/tokenTransport.d.ts.map +0 -1
- package/lib/typescript/module/ui/session/useBackgroundSessionSync.d.ts +0 -23
- package/lib/typescript/module/ui/session/useBackgroundSessionSync.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/accountStore.d.ts +0 -27
- package/lib/typescript/module/ui/stores/accountStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/assetStore.d.ts +0 -54
- package/lib/typescript/module/ui/stores/assetStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/authStore.d.ts +0 -17
- package/lib/typescript/module/ui/stores/authStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/followStore.d.ts +0 -30
- package/lib/typescript/module/ui/stores/followStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/followTargetStore.d.ts +0 -84
- package/lib/typescript/module/ui/stores/followTargetStore.d.ts.map +0 -1
- package/lib/typescript/module/ui/stores/resetSessionScopedStores.d.ts +0 -10
- package/lib/typescript/module/ui/stores/resetSessionScopedStores.d.ts.map +0 -1
- package/lib/typescript/module/ui/types/fileManagement.d.ts +0 -51
- package/lib/typescript/module/ui/types/fileManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/types/navigation.d.ts +0 -127
- package/lib/typescript/module/ui/types/navigation.d.ts.map +0 -1
- package/lib/typescript/module/ui/types/surfaceScreen.d.ts +0 -38
- package/lib/typescript/module/ui/types/surfaceScreen.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/avatarUtils.d.ts +0 -24
- package/lib/typescript/module/ui/utils/avatarUtils.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/colorUtils.d.ts +0 -10
- package/lib/typescript/module/ui/utils/colorUtils.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/commonsStoreLinks.d.ts +0 -24
- package/lib/typescript/module/ui/utils/commonsStoreLinks.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/deliveryPlatform.d.ts +0 -33
- package/lib/typescript/module/ui/utils/deliveryPlatform.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/deviceCredential.d.ts +0 -8
- package/lib/typescript/module/ui/utils/deviceCredential.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/errorHandlers.d.ts +0 -35
- package/lib/typescript/module/ui/utils/errorHandlers.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/fileManagement.d.ts +0 -55
- package/lib/typescript/module/ui/utils/fileManagement.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/iconNames.d.ts +0 -112
- package/lib/typescript/module/ui/utils/iconNames.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/isWebBrowser.d.ts +0 -9
- package/lib/typescript/module/ui/utils/isWebBrowser.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/netConnectivity.d.ts +0 -17
- package/lib/typescript/module/ui/utils/netConnectivity.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/oauthReturn.d.ts +0 -48
- package/lib/typescript/module/ui/utils/oauthReturn.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/sessionHelpers.d.ts +0 -48
- package/lib/typescript/module/ui/utils/sessionHelpers.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/storageHelpers.d.ts +0 -28
- package/lib/typescript/module/ui/utils/storageHelpers.d.ts.map +0 -1
- package/lib/typescript/module/ui/utils/userUtils.d.ts +0 -23
- package/lib/typescript/module/ui/utils/userUtils.d.ts.map +0 -1
- package/lib/typescript/module/utils/hookUtils.d.ts +0 -102
- package/lib/typescript/module/utils/hookUtils.d.ts.map +0 -1
- package/lib/typescript/module/webauthn/passkeyClient.d.ts +0 -20
- package/lib/typescript/module/webauthn/passkeyClient.d.ts.map +0 -1
- package/lib/typescript/module/webauthn/passkeyClient.native.d.ts +0 -15
- package/lib/typescript/module/webauthn/passkeyClient.native.d.ts.map +0 -1
- package/lib/typescript/module/webauthn/passkeyClient.web.d.ts +0 -36
- package/lib/typescript/module/webauthn/passkeyClient.web.d.ts.map +0 -1
- package/lib/typescript/nativewind-env.d.ts +0 -1
- package/lib/typescript/types/expo-crypto.d.ts +0 -29
- package/lib/typescript/types/expo-document-picker.d.ts +0 -36
- package/lib/typescript/types/expo-haptics.d.ts +0 -42
- package/lib/typescript/types/expo-image-picker.d.ts +0 -35
- package/lib/typescript/types/expo-secure-store.d.ts +0 -22
- package/lib/typescript/types/express.d.ts +0 -24
- package/lib/typescript/types/react-native-classname.d.ts +0 -39
- package/lib/typescript/types/react-native-web-style.d.ts +0 -27
- package/src/ui/hooks/useSwitchableAccounts.ts +0 -75
- package/src/ui/stores/accountStore.ts +0 -264
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactQuery","_toast","_queryKeys","_useFileQueries","_fileManagement","_shared","MIN_BANNER_MS","revokePreviewUrl","preview","startsWith","URL","revokeObjectURL","useFileUploadState","targetUserId","uploadFileMutation","defaultVisibility","selectMode","multiSelect","afterSelect","onSelect","onPicked","goBack","onClose","imagesOnly","selectedIds","setSelectedIds","t","isPickingDocument","setIsPickingDocument","useState","pendingFiles","setPendingFiles","showUploadPreview","setShowUploadPreview","uploading","setUploading","uploadProgress","setUploadProgress","queryClient","useQueryClient","uploadStartRef","useRef","postSelectTimerRef","endUploadTimerRef","isActiveRef","clearPostSelectTimer","useCallback","current","clearTimeout","clearEndUploadTimer","useEffect","endUpload","started","elapsed","Date","now","remaining","setTimeout","processFileUploads","selectedFiles","length","uploadedFiles","total","maxSize","oversizedFiles","filter","file","candidateSize","fileList","map","f","candidateName","join","toast","error","files","successCount","failureCount","errors","i","raw","fileName","fileSize","fileType","candidateType","optimisticId","Math","random","toString","slice","push","previewUri","candidateUri","optimisticMetadata","localPreviewUri","optimisticFile","id","filename","contentType","chunkSize","uploadDate","toISOString","metadata","variants","prependFileToCache","result","mutateAsync","visibility","merged","originalName","sha256","mime","size","createdAt","replaceFileInCache","removeFileFromCache","errorMessage","getErrorMessage","success","count","errorDetails","invalidateQueries","queryKey","queryKeys","list","handleFileSelection","MAX_FILE_SIZE","processedFiles","name","undefined","Number","isNaN","formatFileSize","fileUri","File","Blob","createObjectURL","createPendingUploadFile","handleConfirmUpload","filesToUpload","pf","fileToSelect","has","prev","Set","add","handleCancelUpload","removePendingFile","find","updated","handleFileUpload","picker","loadDocumentPicker","getDocumentAsync","type","multiple","copyToCacheDirectory","canceled","assets","conversionPromises","doc","index","convertDocumentPickerAssetToFile","then","catch","convertedFiles","Promise","all","includes","exports","_default","default"],"sourceRoot":"../../../../../../src","sources":["ui/screens/fileManagement/hooks/useFileUploadState.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.PHOTO_GRID_WIDE_BREAKPOINT = exports.PHOTO_GRID_GUTTER = void 0;
|
|
7
|
-
exports.computePhotoGridLayout = computePhotoGridLayout;
|
|
8
|
-
/**
|
|
9
|
-
* Column / tile geometry for the "Choose photo" grid.
|
|
10
|
-
*
|
|
11
|
-
* CRITICAL: the grid MUST size its tiles from the width of the bottom-sheet
|
|
12
|
-
* container it actually renders in — NOT the device screen. On wide viewports
|
|
13
|
-
* the sheet is centered and narrower than the screen (Bloom `<Dialog>` centers
|
|
14
|
-
* on `md+`), so deriving columns/tiles from `Dimensions.get('window').width`
|
|
15
|
-
* (or `useWindowDimensions`) overflows / mis-sizes the tiles. The caller
|
|
16
|
-
* therefore measures the grid container (`onLayout` on a `style`-only wrapper —
|
|
17
|
-
* RN-Web does not fire `onLayout` for `className`'d nodes) and passes that
|
|
18
|
-
* measured width here.
|
|
19
|
-
*
|
|
20
|
-
* Pure and side-effect free so it is unit-testable in Jest (which cannot catch
|
|
21
|
-
* layout bugs in the rendered tree).
|
|
22
|
-
*/
|
|
23
|
-
|
|
24
|
-
/** Inter-tile gutter, in px. Apple Photos-style hairline gap. */
|
|
25
|
-
const PHOTO_GRID_GUTTER = exports.PHOTO_GRID_GUTTER = 2;
|
|
26
|
-
|
|
27
|
-
/** Container width (px) at/above which the grid switches to 4 columns. */
|
|
28
|
-
const PHOTO_GRID_WIDE_BREAKPOINT = exports.PHOTO_GRID_WIDE_BREAKPOINT = 600;
|
|
29
|
-
/**
|
|
30
|
-
* Derive the column count + square tile size from the measured grid-container
|
|
31
|
-
* width. Returns `cellSize: 0` for a not-yet-measured (`<= 0`) width so callers
|
|
32
|
-
* can gate rendering until a real measurement arrives.
|
|
33
|
-
*/
|
|
34
|
-
function computePhotoGridLayout(containerWidth) {
|
|
35
|
-
const columns = containerWidth >= PHOTO_GRID_WIDE_BREAKPOINT ? 4 : 3;
|
|
36
|
-
const usable = containerWidth - PHOTO_GRID_GUTTER * (columns - 1);
|
|
37
|
-
const cellSize = usable > 0 ? Math.floor(usable / columns) : 0;
|
|
38
|
-
return {
|
|
39
|
-
columns,
|
|
40
|
-
cellSize,
|
|
41
|
-
gutter: PHOTO_GRID_GUTTER
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
//# sourceMappingURL=photoGridLayout.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["PHOTO_GRID_GUTTER","exports","PHOTO_GRID_WIDE_BREAKPOINT","computePhotoGridLayout","containerWidth","columns","usable","cellSize","Math","floor","gutter"],"sourceRoot":"../../../../../src","sources":["ui/screens/fileManagement/photoGridLayout.ts"],"mappings":";;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACO,MAAMA,iBAAiB,GAAAC,OAAA,CAAAD,iBAAA,GAAG,CAAC;;AAElC;AACO,MAAME,0BAA0B,GAAAD,OAAA,CAAAC,0BAAA,GAAG,GAAG;AAc7C;AACA;AACA;AACA;AACA;AACO,SAASC,sBAAsBA,CAACC,cAAsB,EAAmB;EAC5E,MAAMC,OAAO,GAAGD,cAAc,IAAIF,0BAA0B,GAAG,CAAC,GAAG,CAAC;EACpE,MAAMI,MAAM,GAAGF,cAAc,GAAGJ,iBAAiB,IAAIK,OAAO,GAAG,CAAC,CAAC;EACjE,MAAME,QAAQ,GAAGD,MAAM,GAAG,CAAC,GAAGE,IAAI,CAACC,KAAK,CAACH,MAAM,GAAGD,OAAO,CAAC,GAAG,CAAC;EAC9D,OAAO;IAAEA,OAAO;IAAEE,QAAQ;IAAEG,MAAM,EAAEV;EAAkB,CAAC;AAC3D","ignoreList":[]}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.loadDocumentPicker = exports.getErrorMessage = exports.createPendingUploadFile = exports.candidateUri = exports.candidateType = exports.candidateSize = exports.candidateName = void 0;
|
|
7
|
-
var _core = require("@oxyhq/core");
|
|
8
|
-
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); }
|
|
9
|
-
// Lazy load expo-document-picker (optional dependency).
|
|
10
|
-
// This allows the screen to work even if expo-document-picker is not installed.
|
|
11
|
-
let DocumentPicker = null;
|
|
12
|
-
const loadDocumentPicker = async () => {
|
|
13
|
-
if (DocumentPicker) return DocumentPicker;
|
|
14
|
-
try {
|
|
15
|
-
DocumentPicker = await Promise.resolve().then(() => _interopRequireWildcard(require('expo-document-picker')));
|
|
16
|
-
return DocumentPicker;
|
|
17
|
-
} catch (error) {
|
|
18
|
-
throw new Error('expo-document-picker is not installed. Please install it: npx expo install expo-document-picker');
|
|
19
|
-
}
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* Extract error message from unknown error type.
|
|
24
|
-
* Delegates to the canonical `getErrorMessage` in `@oxyhq/core` and returns
|
|
25
|
-
* `undefined` for empty results (so callers can fall back to a translated
|
|
26
|
-
* message via `||`).
|
|
27
|
-
*/
|
|
28
|
-
exports.loadDocumentPicker = loadDocumentPicker;
|
|
29
|
-
const getErrorMessage = error => {
|
|
30
|
-
if (error == null) return undefined;
|
|
31
|
-
const message = (0, _core.getErrorMessage)(error, '');
|
|
32
|
-
return message ? message : undefined;
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* A picker-produced file ready to upload. On web this is a real `File`
|
|
37
|
-
* (carrying an optional `uri` for preview). On native, it's an
|
|
38
|
-
* {@link RNFileDescriptor} — passed straight to FormData by `assetUpload`.
|
|
39
|
-
*/
|
|
40
|
-
exports.getErrorMessage = getErrorMessage;
|
|
41
|
-
/** Returns the display name for either a web File or an RN descriptor. */
|
|
42
|
-
const candidateName = (candidate, fallback) => candidate.name && typeof candidate.name === 'string' ? candidate.name : fallback;
|
|
43
|
-
|
|
44
|
-
/** Returns the byte size for either a web File or an RN descriptor (0 if unknown). */
|
|
45
|
-
exports.candidateName = candidateName;
|
|
46
|
-
const candidateSize = candidate => {
|
|
47
|
-
const size = candidate.size;
|
|
48
|
-
return typeof size === 'number' && Number.isFinite(size) ? size : 0;
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
/** Returns the mime type for either a web File or an RN descriptor. */
|
|
52
|
-
exports.candidateSize = candidateSize;
|
|
53
|
-
const candidateType = candidate => {
|
|
54
|
-
const value = candidate.type;
|
|
55
|
-
return typeof value === 'string' && value.length > 0 ? value : 'application/octet-stream';
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
/** Returns the preview URI for an upload candidate, if available. */
|
|
59
|
-
exports.candidateType = candidateType;
|
|
60
|
-
const candidateUri = candidate => {
|
|
61
|
-
const uri = candidate.uri;
|
|
62
|
-
return typeof uri === 'string' && uri.length > 0 ? uri : undefined;
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
/** A processed file ready for review in the upload preview modal. */
|
|
66
|
-
exports.candidateUri = candidateUri;
|
|
67
|
-
const createPendingUploadId = () => typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function' ? crypto.randomUUID() : `${Date.now()}-${Math.random().toString(36).slice(2)}`;
|
|
68
|
-
|
|
69
|
-
/** Mint a {@link PendingUploadFile} row from a validated upload candidate. */
|
|
70
|
-
const createPendingUploadFile = (file, preview, size, name, type) => ({
|
|
71
|
-
id: createPendingUploadId(),
|
|
72
|
-
file,
|
|
73
|
-
preview,
|
|
74
|
-
size,
|
|
75
|
-
name,
|
|
76
|
-
type
|
|
77
|
-
});
|
|
78
|
-
exports.createPendingUploadFile = createPendingUploadFile;
|
|
79
|
-
//# sourceMappingURL=shared.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_core","require","_interopRequireWildcard","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","DocumentPicker","loadDocumentPicker","Promise","resolve","then","error","Error","exports","getErrorMessage","undefined","message","getOxyErrorMessage","candidateName","candidate","fallback","name","candidateSize","size","Number","isFinite","candidateType","value","type","length","candidateUri","uri","createPendingUploadId","crypto","randomUUID","Date","now","Math","random","toString","slice","createPendingUploadFile","file","preview","id"],"sourceRoot":"../../../../../src","sources":["ui/screens/fileManagement/shared.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.getLinkTitle = exports.getLinkDescription = void 0;
|
|
7
|
-
exports.linksToListItems = linksToListItems;
|
|
8
|
-
/**
|
|
9
|
-
* Pure link-display helpers for the profile "links" editor. Kept out of the
|
|
10
|
-
* screen component so the string-coercion guard can be unit-tested without
|
|
11
|
-
* rendering the whole React Native screen.
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
/** Strip the protocol and any trailing slash from a link URL for display. */
|
|
15
|
-
const getLinkTitle = url => url.replace(/^https?:\/\//, '').replace(/\/$/, '');
|
|
16
|
-
|
|
17
|
-
/** Human-readable description for a link URL. */
|
|
18
|
-
exports.getLinkTitle = getLinkTitle;
|
|
19
|
-
const getLinkDescription = url => `Link to ${url}`;
|
|
20
|
-
exports.getLinkDescription = getLinkDescription;
|
|
21
|
-
/**
|
|
22
|
-
* Build editable list items from a raw links array. The array can come from
|
|
23
|
-
* legacy or untrusted profile data whose elements are not guaranteed to be
|
|
24
|
-
* strings, so each entry is coerced with `String(item ?? '')` before formatting
|
|
25
|
-
* — a non-string element must never crash the editor.
|
|
26
|
-
*/
|
|
27
|
-
function linksToListItems(links) {
|
|
28
|
-
return links.map((item, i) => {
|
|
29
|
-
const url = String(item ?? '');
|
|
30
|
-
return {
|
|
31
|
-
id: `link-${i}`,
|
|
32
|
-
url,
|
|
33
|
-
title: getLinkTitle(url),
|
|
34
|
-
description: getLinkDescription(url)
|
|
35
|
-
};
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
//# sourceMappingURL=linkFormat.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["getLinkTitle","url","replace","exports","getLinkDescription","linksToListItems","links","map","item","i","String","id","title","description"],"sourceRoot":"../../../../src","sources":["ui/screens/linkFormat.ts"],"mappings":";;;;;;;AAAA;AACA;AACA;AACA;AACA;;AAEA;AACO,MAAMA,YAAY,GAAIC,GAAW,IACpCA,GAAG,CAACC,OAAO,CAAC,cAAc,EAAE,EAAE,CAAC,CAACA,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC;;AAEtD;AAAAC,OAAA,CAAAH,YAAA,GAAAA,YAAA;AACO,MAAMI,kBAAkB,GAAIH,GAAW,IAAa,WAAWA,GAAG,EAAE;AAACE,OAAA,CAAAC,kBAAA,GAAAA,kBAAA;AAS5E;AACA;AACA;AACA;AACA;AACA;AACO,SAASC,gBAAgBA,CAACC,KAAyB,EAAkB;EACxE,OAAOA,KAAK,CAACC,GAAG,CAAC,CAACC,IAAI,EAAEC,CAAC,KAAK;IAC1B,MAAMR,GAAG,GAAGS,MAAM,CAACF,IAAI,IAAI,EAAE,CAAC;IAC9B,OAAO;MACHG,EAAE,EAAE,QAAQF,CAAC,EAAE;MACfR,GAAG;MACHW,KAAK,EAAEZ,YAAY,CAACC,GAAG,CAAC;MACxBY,WAAW,EAAET,kBAAkB,CAACH,GAAG;IACvC,CAAC;EACL,CAAC,CAAC;AACN","ignoreList":[]}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _theme = require("@oxyhq/bloom/theme");
|
|
9
|
-
var _typography = require("@oxyhq/bloom/typography");
|
|
10
|
-
var _iconCircle = require("@oxyhq/bloom/icon-circle");
|
|
11
|
-
var _benefitList = require("@oxyhq/bloom/benefit-list");
|
|
12
|
-
var Icons = _interopRequireWildcard(require("@oxyhq/bloom/icons"));
|
|
13
|
-
var _useI18n = require("../../hooks/useI18n.js");
|
|
14
|
-
var _useSurfaceHeader = require("../../hooks/useSurfaceHeader.js");
|
|
15
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
16
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
17
|
-
const TrustAboutScreen = () => {
|
|
18
|
-
const {
|
|
19
|
-
t
|
|
20
|
-
} = (0, _useI18n.useI18n)();
|
|
21
|
-
const bloomTheme = (0, _theme.useTheme)();
|
|
22
|
-
const iconColor = bloomTheme.colors.primary;
|
|
23
|
-
(0, _useSurfaceHeader.useSurfaceHeader)({
|
|
24
|
-
title: t('trust.about.title') || 'About Oxy Trust',
|
|
25
|
-
subtitle: t('trust.about.subtitle') || 'Learn about the reputation system'
|
|
26
|
-
});
|
|
27
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
28
|
-
className: "px-screen-margin pt-space-16 pb-space-32",
|
|
29
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
30
|
-
className: "items-center py-space-24 gap-space-12",
|
|
31
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_iconCircle.IconCircle, {
|
|
32
|
-
icon: Icons.ShieldCheck_Stroke2_Corner0_Rounded
|
|
33
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
34
|
-
className: "font-sans text-body text-text-secondary text-center",
|
|
35
|
-
children: t('trust.about.intro') || 'Oxy Trust is a recognition of your positive actions in the Oxy Ecosystem. Reputation cannot be sent or received directly, only earned by contributing to the community.'
|
|
36
|
-
})]
|
|
37
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.H4, {
|
|
38
|
-
className: "text-sectionTitle font-sectionTitle text-text-secondary mb-space-12",
|
|
39
|
-
children: t('trust.about.how.title') || 'How to Earn Reputation'
|
|
40
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_benefitList.BenefitList, {
|
|
41
|
-
className: "mb-space-24",
|
|
42
|
-
accessibilityLabel: t('trust.about.how.title') || 'How to Earn Reputation',
|
|
43
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_benefitList.BenefitRow, {
|
|
44
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(Icons.UserCircle_Stroke2_Corner0_Rounded, {
|
|
45
|
-
size: "sm",
|
|
46
|
-
style: {
|
|
47
|
-
color: iconColor
|
|
48
|
-
}
|
|
49
|
-
}),
|
|
50
|
-
label: t('trust.about.how.help') || 'Helping other users'
|
|
51
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_benefitList.BenefitRow, {
|
|
52
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(Icons.Flag_Stroke2_Corner0_Rounded, {
|
|
53
|
-
size: "sm",
|
|
54
|
-
style: {
|
|
55
|
-
color: iconColor
|
|
56
|
-
}
|
|
57
|
-
}),
|
|
58
|
-
label: t('trust.about.how.report') || 'Reporting bugs'
|
|
59
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_benefitList.BenefitRow, {
|
|
60
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(Icons.PencilLine_Stroke2_Corner0_Rounded, {
|
|
61
|
-
size: "sm",
|
|
62
|
-
style: {
|
|
63
|
-
color: iconColor
|
|
64
|
-
}
|
|
65
|
-
}),
|
|
66
|
-
label: t('trust.about.how.contribute') || 'Contributing content'
|
|
67
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_benefitList.BenefitRow, {
|
|
68
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(Icons.Calendar_Stroke2_Corner0_Rounded, {
|
|
69
|
-
size: "sm",
|
|
70
|
-
style: {
|
|
71
|
-
color: iconColor
|
|
72
|
-
}
|
|
73
|
-
}),
|
|
74
|
-
label: t('trust.about.how.participate') || 'Participating in events'
|
|
75
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_benefitList.BenefitRow, {
|
|
76
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(Icons.Sparkle_Stroke2_Corner0_Rounded, {
|
|
77
|
-
size: "sm",
|
|
78
|
-
style: {
|
|
79
|
-
color: iconColor
|
|
80
|
-
}
|
|
81
|
-
}),
|
|
82
|
-
label: t('trust.about.how.other') || 'Other positive actions'
|
|
83
|
-
})]
|
|
84
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.H4, {
|
|
85
|
-
className: "text-sectionTitle font-sectionTitle text-text-secondary mb-space-12",
|
|
86
|
-
children: t('trust.about.why.title') || 'Why Oxy Trust?'
|
|
87
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
88
|
-
className: "font-sans text-body text-text-secondary",
|
|
89
|
-
children: t('trust.about.why.text') || 'Your reputation and trust tier unlock special features and recognition in the Oxy Ecosystem. The more you contribute, the more you earn!'
|
|
90
|
-
})]
|
|
91
|
-
});
|
|
92
|
-
};
|
|
93
|
-
var _default = exports.default = TrustAboutScreen;
|
|
94
|
-
//# sourceMappingURL=TrustAboutScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_theme","_typography","_iconCircle","_benefitList","Icons","_interopRequireWildcard","_useI18n","_useSurfaceHeader","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","TrustAboutScreen","useI18n","bloomTheme","useTheme","iconColor","colors","primary","useSurfaceHeader","title","subtitle","jsxs","View","className","children","jsx","IconCircle","icon","ShieldCheck_Stroke2_Corner0_Rounded","Text","H4","BenefitList","accessibilityLabel","BenefitRow","UserCircle_Stroke2_Corner0_Rounded","size","style","color","label","Flag_Stroke2_Corner0_Rounded","PencilLine_Stroke2_Corner0_Rounded","Calendar_Stroke2_Corner0_Rounded","Sparkle_Stroke2_Corner0_Rounded","_default","exports"],"sourceRoot":"../../../../../src","sources":["ui/screens/trust/TrustAboutScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = require("react");
|
|
8
|
-
var _reactNative = require("react-native");
|
|
9
|
-
var _Ionicons = _interopRequireDefault(require("@expo/vector-icons/Ionicons"));
|
|
10
|
-
var _chip = require("@oxyhq/bloom/chip");
|
|
11
|
-
var _theme = require("@oxyhq/bloom/theme");
|
|
12
|
-
var _typography = require("@oxyhq/bloom/typography");
|
|
13
|
-
var _settingsList = require("@oxyhq/bloom/settings-list");
|
|
14
|
-
var _SettingsIcon = require("../../components/SettingsIcon.js");
|
|
15
|
-
var _loading = require("@oxyhq/bloom/loading");
|
|
16
|
-
var _useI18n = require("../../hooks/useI18n.js");
|
|
17
|
-
var _useSurfaceHeader = require("../../hooks/useSurfaceHeader.js");
|
|
18
|
-
var _OxyContext = require("../../context/OxyContext.js");
|
|
19
|
-
var _core = require("@oxyhq/core");
|
|
20
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
21
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
22
|
-
const TrustCenterScreen = ({
|
|
23
|
-
navigate
|
|
24
|
-
}) => {
|
|
25
|
-
// Reputation/trust is the ACTIVE account's standing (the org/project/bot
|
|
26
|
-
// when switched, else the personal user).
|
|
27
|
-
const {
|
|
28
|
-
user,
|
|
29
|
-
oxyServices,
|
|
30
|
-
isAuthenticated
|
|
31
|
-
} = (0, _OxyContext.useOxy)();
|
|
32
|
-
const {
|
|
33
|
-
t,
|
|
34
|
-
locale
|
|
35
|
-
} = (0, _useI18n.useI18n)();
|
|
36
|
-
const [reputationTotal, setReputationTotal] = (0, _react.useState)(null);
|
|
37
|
-
const [trustTier, setTrustTier] = (0, _react.useState)(null);
|
|
38
|
-
const [transactions, setTransactions] = (0, _react.useState)([]);
|
|
39
|
-
const [isLoading, setIsLoading] = (0, _react.useState)(true);
|
|
40
|
-
const [error, setError] = (0, _react.useState)(null);
|
|
41
|
-
const bloomTheme = (0, _theme.useTheme)();
|
|
42
|
-
const primaryColor = bloomTheme.colors.primary;
|
|
43
|
-
(0, _react.useEffect)(() => {
|
|
44
|
-
if (!user) return;
|
|
45
|
-
setIsLoading(true);
|
|
46
|
-
setError(null);
|
|
47
|
-
Promise.all([oxyServices.getMyReputationBalance(), oxyServices.getReputationTransactions(user.id, 20, 0)]).then(([balance, txns]) => {
|
|
48
|
-
setReputationTotal(balance.total);
|
|
49
|
-
setTrustTier(balance.trustTier);
|
|
50
|
-
setTransactions(Array.isArray(txns) ? txns : []);
|
|
51
|
-
}).catch(err => {
|
|
52
|
-
setError((err instanceof Error ? err.message : null) || t('trust.center.loadError') || 'Failed to load reputation data');
|
|
53
|
-
}).finally(() => setIsLoading(false));
|
|
54
|
-
}, [user, oxyServices, t]);
|
|
55
|
-
const resolvedTrustTierLabel = (0, _react.useMemo)(() => trustTier ? (0, _core.trustTierLabel)(locale, trustTier) : null, [trustTier, locale]);
|
|
56
|
-
const title = t('trust.center.title') || 'Trust Center';
|
|
57
|
-
(0, _useSurfaceHeader.useSurfaceHeader)({
|
|
58
|
-
title
|
|
59
|
-
});
|
|
60
|
-
if (!isAuthenticated) {
|
|
61
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
62
|
-
className: "items-center py-space-40",
|
|
63
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
64
|
-
className: "text-text font-medium text-base",
|
|
65
|
-
children: t('common.status.notSignedIn') || 'Not signed in'
|
|
66
|
-
})
|
|
67
|
-
});
|
|
68
|
-
}
|
|
69
|
-
if (isLoading) {
|
|
70
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
71
|
-
className: "items-center py-space-40",
|
|
72
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_loading.Loading, {
|
|
73
|
-
size: "large",
|
|
74
|
-
color: primaryColor
|
|
75
|
-
})
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
79
|
-
className: "px-screen-margin pt-space-16 pb-space-24",
|
|
80
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
81
|
-
className: "items-center bg-fill-secondary rounded-radius-20 px-space-20 py-space-24 mb-space-16",
|
|
82
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.H1, {
|
|
83
|
-
style: {
|
|
84
|
-
color: primaryColor
|
|
85
|
-
},
|
|
86
|
-
children: reputationTotal ?? 0
|
|
87
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
88
|
-
className: "text-text-tertiary text-base mt-space-2 mb-space-12",
|
|
89
|
-
children: t('trust.center.balance') || 'Reputation Balance'
|
|
90
|
-
}), resolvedTrustTierLabel ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_chip.Chip, {
|
|
91
|
-
variant: "soft",
|
|
92
|
-
color: "primary",
|
|
93
|
-
startIcon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
94
|
-
name: "shield-checkmark-outline",
|
|
95
|
-
size: 14,
|
|
96
|
-
color: primaryColor
|
|
97
|
-
}),
|
|
98
|
-
children: resolvedTrustTierLabel
|
|
99
|
-
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
100
|
-
className: "text-text-tertiary text-sm text-center mt-space-16",
|
|
101
|
-
style: styles.infoText,
|
|
102
|
-
children: t('trust.center.info') || 'Reputation can only be earned by positive actions in the Oxy Ecosystem. It cannot be sent or received directly.'
|
|
103
|
-
})]
|
|
104
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_settingsList.SettingsListGroup, {
|
|
105
|
-
title: t('trust.center.actions.title') || 'Explore',
|
|
106
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
107
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
108
|
-
name: "trophy",
|
|
109
|
-
color: bloomTheme.colors.warning
|
|
110
|
-
}),
|
|
111
|
-
title: t('trust.center.actions.leaderboard') || 'Leaderboard',
|
|
112
|
-
onPress: () => navigate?.('TrustLeaderboard')
|
|
113
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
114
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
115
|
-
name: "file-document",
|
|
116
|
-
color: bloomTheme.colors.info
|
|
117
|
-
}),
|
|
118
|
-
title: t('trust.center.actions.rules') || 'Rules',
|
|
119
|
-
onPress: () => navigate?.('TrustRules')
|
|
120
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
121
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
122
|
-
name: "gift",
|
|
123
|
-
color: bloomTheme.colors.success
|
|
124
|
-
}),
|
|
125
|
-
title: t('trust.center.actions.rewards') || 'Rewards',
|
|
126
|
-
onPress: () => navigate?.('TrustRewards')
|
|
127
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
128
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
129
|
-
name: "star",
|
|
130
|
-
color: bloomTheme.colors.primary
|
|
131
|
-
}),
|
|
132
|
-
title: t('trust.center.actions.about') || 'About',
|
|
133
|
-
onPress: () => navigate?.('AboutTrust')
|
|
134
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
135
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
136
|
-
name: "help-circle",
|
|
137
|
-
color: bloomTheme.colors.secondary
|
|
138
|
-
}),
|
|
139
|
-
title: t('trust.center.actions.faq') || 'FAQ',
|
|
140
|
-
onPress: () => navigate?.('TrustFAQ')
|
|
141
|
-
})]
|
|
142
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListGroup, {
|
|
143
|
-
title: t('trust.center.history') || 'Reputation History',
|
|
144
|
-
children: transactions.length === 0 ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
145
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
146
|
-
name: "history",
|
|
147
|
-
color: bloomTheme.colors.textTertiary
|
|
148
|
-
}),
|
|
149
|
-
title: t('trust.center.noHistory') || 'No reputation history yet.',
|
|
150
|
-
showChevron: false,
|
|
151
|
-
disabled: true
|
|
152
|
-
}) : transactions.map(entry => /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
153
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
154
|
-
name: entry.points > 0 ? 'plus-circle' : 'minus-circle',
|
|
155
|
-
color: entry.points > 0 ? bloomTheme.colors.success : bloomTheme.colors.error
|
|
156
|
-
}),
|
|
157
|
-
title: entry.reason || entry.actionType || t('trust.center.noDescription') || 'No description',
|
|
158
|
-
description: `${entry.category}${entry.createdAt ? ` · ${new Date(entry.createdAt).toLocaleString()}` : ''}`,
|
|
159
|
-
rightElement: /*#__PURE__*/(0, _jsxRuntime.jsx)(_chip.Chip, {
|
|
160
|
-
variant: "soft",
|
|
161
|
-
size: "small",
|
|
162
|
-
color: entry.points > 0 ? 'success' : 'error',
|
|
163
|
-
children: `${entry.points > 0 ? '+' : ''}${entry.points}`
|
|
164
|
-
}),
|
|
165
|
-
showChevron: false
|
|
166
|
-
}, entry.id))
|
|
167
|
-
}), error ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
168
|
-
className: "text-sm text-center mt-space-16",
|
|
169
|
-
style: {
|
|
170
|
-
color: bloomTheme.colors.error
|
|
171
|
-
},
|
|
172
|
-
children: error
|
|
173
|
-
}) : null]
|
|
174
|
-
});
|
|
175
|
-
};
|
|
176
|
-
|
|
177
|
-
// Layout-only styles: the info caption's measured max width. No color, spacing,
|
|
178
|
-
// radius, or typography roles live here — those use Bloom token classes.
|
|
179
|
-
const styles = _reactNative.StyleSheet.create({
|
|
180
|
-
infoText: {
|
|
181
|
-
maxWidth: 320
|
|
182
|
-
}
|
|
183
|
-
});
|
|
184
|
-
var _default = exports.default = TrustCenterScreen;
|
|
185
|
-
//# sourceMappingURL=TrustCenterScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_reactNative","_Ionicons","_interopRequireDefault","_chip","_theme","_typography","_settingsList","_SettingsIcon","_loading","_useI18n","_useSurfaceHeader","_OxyContext","_core","_jsxRuntime","e","__esModule","default","TrustCenterScreen","navigate","user","oxyServices","isAuthenticated","useOxy","t","locale","useI18n","reputationTotal","setReputationTotal","useState","trustTier","setTrustTier","transactions","setTransactions","isLoading","setIsLoading","error","setError","bloomTheme","useTheme","primaryColor","colors","primary","useEffect","Promise","all","getMyReputationBalance","getReputationTransactions","id","then","balance","txns","total","Array","isArray","catch","err","Error","message","finally","resolvedTrustTierLabel","useMemo","trustTierLabel","title","useSurfaceHeader","jsx","View","className","children","Text","Loading","size","color","jsxs","H1","style","Chip","variant","startIcon","name","styles","infoText","SettingsListGroup","SettingsListItem","icon","SettingsIcon","warning","onPress","info","success","secondary","length","textTertiary","showChevron","disabled","map","entry","points","reason","actionType","description","category","createdAt","Date","toLocaleString","rightElement","StyleSheet","create","maxWidth","_default","exports"],"sourceRoot":"../../../../../src","sources":["ui/screens/trust/TrustCenterScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var _reactNative = require("react-native");
|
|
9
|
-
var _useSurfaceHeader = require("../../hooks/useSurfaceHeader.js");
|
|
10
|
-
var _search = require("@oxyhq/bloom/search");
|
|
11
|
-
var _accordion = require("@oxyhq/bloom/accordion");
|
|
12
|
-
var _typography = require("@oxyhq/bloom/typography");
|
|
13
|
-
var _useI18n = require("../../hooks/useI18n.js");
|
|
14
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
15
|
-
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); }
|
|
16
|
-
const FAQ_KEYS = ['what', 'earn', 'lose', 'use', 'transfer', 'support'];
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* TrustFAQScreen
|
|
20
|
-
*
|
|
21
|
-
* Frequently asked questions about Oxy Trust, rendered with the shared Bloom
|
|
22
|
-
* Accordion (single-expand) + Search. Styling is centralized Bloom token
|
|
23
|
-
* classes; the Bloom Accordion owns its own expand/collapse animation, so no
|
|
24
|
-
* `LayoutAnimation` is used here.
|
|
25
|
-
*/
|
|
26
|
-
const TrustFAQScreen = () => {
|
|
27
|
-
const {
|
|
28
|
-
t
|
|
29
|
-
} = (0, _useI18n.useI18n)();
|
|
30
|
-
(0, _useSurfaceHeader.useSurfaceHeader)({
|
|
31
|
-
title: t('trust.faq.title') || 'Trust FAQ',
|
|
32
|
-
subtitle: t('trust.faq.subtitle') || 'Frequently asked questions about Oxy Trust'
|
|
33
|
-
});
|
|
34
|
-
const [search, setSearch] = (0, _react.useState)('');
|
|
35
|
-
const [expanded, setExpanded] = (0, _react.useState)(undefined);
|
|
36
|
-
const faqs = (0, _react.useMemo)(() => FAQ_KEYS.map(key => ({
|
|
37
|
-
id: key,
|
|
38
|
-
q: t(`trust.faq.items.${key}.q`) || '',
|
|
39
|
-
a: t(`trust.faq.items.${key}.a`) || ''
|
|
40
|
-
})), [t]);
|
|
41
|
-
const filteredFaqs = (0, _react.useMemo)(() => {
|
|
42
|
-
if (!search.trim()) return faqs;
|
|
43
|
-
const searchLower = search.toLowerCase();
|
|
44
|
-
return faqs.filter(faq => faq.q.toLowerCase().includes(searchLower) || faq.a.toLowerCase().includes(searchLower));
|
|
45
|
-
}, [search, faqs]);
|
|
46
|
-
const handleAccordionChange = (0, _react.useCallback)(value => {
|
|
47
|
-
setExpanded(Array.isArray(value) ? value[0] : value);
|
|
48
|
-
}, []);
|
|
49
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
50
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
51
|
-
className: "px-screen-margin pt-space-20 pb-space-12",
|
|
52
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_search.Search, {
|
|
53
|
-
label: t('trust.faq.search') || 'Search FAQ...',
|
|
54
|
-
value: search,
|
|
55
|
-
onChangeText: setSearch,
|
|
56
|
-
onClearText: () => setSearch(''),
|
|
57
|
-
accessibilityLabel: "Search Trust FAQ"
|
|
58
|
-
})
|
|
59
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
60
|
-
className: "px-screen-margin",
|
|
61
|
-
children: filteredFaqs.length === 0 ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
62
|
-
className: "text-text-secondary text-center p-space-40",
|
|
63
|
-
children: t('trust.faq.noResults', {
|
|
64
|
-
query: search
|
|
65
|
-
}) || `No FAQ items found matching "${search}"`
|
|
66
|
-
}) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_accordion.Accordion, {
|
|
67
|
-
type: "single",
|
|
68
|
-
value: expanded,
|
|
69
|
-
onValueChange: handleAccordionChange,
|
|
70
|
-
children: filteredFaqs.map(faq => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_accordion.AccordionItem, {
|
|
71
|
-
value: faq.id,
|
|
72
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_accordion.AccordionTrigger, {
|
|
73
|
-
children: faq.q
|
|
74
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_accordion.AccordionContent, {
|
|
75
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
76
|
-
className: "font-sans text-bodyMedium text-text-secondary",
|
|
77
|
-
children: faq.a
|
|
78
|
-
})
|
|
79
|
-
})]
|
|
80
|
-
}, faq.id))
|
|
81
|
-
})
|
|
82
|
-
})]
|
|
83
|
-
});
|
|
84
|
-
};
|
|
85
|
-
var _default = exports.default = /*#__PURE__*/_react.default.memo(TrustFAQScreen);
|
|
86
|
-
//# sourceMappingURL=TrustFAQScreen.js.map
|