@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,462 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import { useCallback, useMemo, useRef, useState } from 'react';
|
|
4
|
-
import { View, StyleSheet, Platform, Animated } from 'react-native';
|
|
5
|
-
import { Avatar } from '@oxyhq/bloom/avatar';
|
|
6
|
-
import Ionicons from '@expo/vector-icons/Ionicons';
|
|
7
|
-
import { toast } from '@oxyhq/bloom/toast';
|
|
8
|
-
import { useTheme } from '@oxyhq/bloom/theme';
|
|
9
|
-
import { Button } from '@oxyhq/bloom/button';
|
|
10
|
-
import { H1, Text } from '@oxyhq/bloom/typography';
|
|
11
|
-
import { TextField, TextFieldInput } from '@oxyhq/bloom/text-field';
|
|
12
|
-
import { useI18n } from "../hooks/useI18n.js";
|
|
13
|
-
import { useSurfaceHeader } from "../hooks/useSurfaceHeader.js";
|
|
14
|
-
import { useOxy } from "../context/OxyContext.js";
|
|
15
|
-
import { useUpdateProfile } from "../hooks/mutations/useAccountMutations.js";
|
|
16
|
-
import { getNormalizedUserHandle } from '@oxyhq/core';
|
|
17
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
18
|
-
const GAP = 12;
|
|
19
|
-
const INNER_GAP = 8;
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Post-signup welcome & onboarding screen.
|
|
23
|
-
* - Greets the newly registered user
|
|
24
|
-
* - Lets them immediately set / change their avatar using existing FileManagement picker
|
|
25
|
-
* - Only when the user presses "Continue" do we invoke onAuthenticated to finish flow & close sheet
|
|
26
|
-
*/
|
|
27
|
-
const WelcomeNewUserScreen = ({
|
|
28
|
-
onAuthenticated,
|
|
29
|
-
theme,
|
|
30
|
-
newUser
|
|
31
|
-
}) => {
|
|
32
|
-
// Use useOxy() hook for OxyContext values. The greeting/avatar identity is
|
|
33
|
-
// the ACTIVE account (the personal user during onboarding, but read through
|
|
34
|
-
// `user` so this stays correct everywhere), with the freshly
|
|
35
|
-
// registered `newUser` as the pre-store-hydration fallback.
|
|
36
|
-
const {
|
|
37
|
-
user,
|
|
38
|
-
oxyServices,
|
|
39
|
-
openAvatarPicker: openChangeAvatarSurface
|
|
40
|
-
} = useOxy();
|
|
41
|
-
const {
|
|
42
|
-
t,
|
|
43
|
-
locale
|
|
44
|
-
} = useI18n();
|
|
45
|
-
const updateProfileMutation = useUpdateProfile();
|
|
46
|
-
const currentUser = user || newUser; // fallback
|
|
47
|
-
const bloomTheme = useTheme();
|
|
48
|
-
const colors = {
|
|
49
|
-
primary: bloomTheme.colors.primary,
|
|
50
|
-
border: bloomTheme.colors.border,
|
|
51
|
-
text: bloomTheme.colors.text
|
|
52
|
-
};
|
|
53
|
-
const styles = useMemo(() => createStyles(), []);
|
|
54
|
-
|
|
55
|
-
// Animation state
|
|
56
|
-
const fadeAnim = useRef(new Animated.Value(1)).current;
|
|
57
|
-
const slideAnim = useRef(new Animated.Value(0)).current;
|
|
58
|
-
const [currentStep, setCurrentStep] = useState(0);
|
|
59
|
-
// Name form state for the conditional "set your name" step. Lazy initializers
|
|
60
|
-
// seed from the current user once; no useEffect prop→state sync.
|
|
61
|
-
const [firstName, setFirstName] = useState(() => (currentUser?.name?.first ?? '').trim());
|
|
62
|
-
const [lastName, setLastName] = useState(() => (currentUser?.name?.last ?? '').trim());
|
|
63
|
-
const [savingName, setSavingName] = useState(false);
|
|
64
|
-
|
|
65
|
-
// Derived, not mirrored: `openAvatarPicker` writes through the shared avatar
|
|
66
|
-
// path, which updates the active account — including CLEARING it when the
|
|
67
|
-
// user removes their photo, which a "last non-empty value" mirror could not
|
|
68
|
-
// represent.
|
|
69
|
-
const avatarUri = currentUser?.avatar ? oxyServices.getFileDownloadUrl(currentUser.avatar, 'thumb') : undefined;
|
|
70
|
-
|
|
71
|
-
// API DTO contract: explicit displayName, else the normalized handle.
|
|
72
|
-
const welcomeName = currentUser?.name?.displayName ?? getNormalizedUserHandle(currentUser) ?? '';
|
|
73
|
-
const welcomeTitle = currentUser && welcomeName ? t('welcomeNew.welcome.titleWithName', {
|
|
74
|
-
username: welcomeName
|
|
75
|
-
}) || `Welcome, ${welcomeName} 👋` : t('welcomeNew.welcome.title') || 'Welcome 👋';
|
|
76
|
-
// Only ask the user for their name during onboarding when they don't have a
|
|
77
|
-
// first name yet. publicKey-only / minimal accounts surface this step.
|
|
78
|
-
const needsName = !!currentUser && !(currentUser.name?.first ?? '').trim();
|
|
79
|
-
const steps = [{
|
|
80
|
-
key: 'welcome',
|
|
81
|
-
title: welcomeTitle,
|
|
82
|
-
body: t('welcomeNew.welcome.body') || "You just created an account in a calm, ethical space. A few quick things — then you're in."
|
|
83
|
-
}, {
|
|
84
|
-
key: 'account',
|
|
85
|
-
title: t('welcomeNew.account.title') || 'One Account. Simple.',
|
|
86
|
-
bullets: [t('welcomeNew.account.bullets.0') || 'One identity across everything', t('welcomeNew.account.bullets.1') || 'No re‑signing in all the time', t('welcomeNew.account.bullets.2') || 'Your preferences stay with you']
|
|
87
|
-
}, {
|
|
88
|
-
key: 'principles',
|
|
89
|
-
title: t('welcomeNew.principles.title') || 'What We Stand For',
|
|
90
|
-
bullets: [t('welcomeNew.principles.bullets.0') || 'Privacy by default', t('welcomeNew.principles.bullets.1') || 'No manipulative feeds', t('welcomeNew.principles.bullets.2') || 'You decide what to share', t('welcomeNew.principles.bullets.3') || 'No selling your data']
|
|
91
|
-
}, {
|
|
92
|
-
key: 'trust',
|
|
93
|
-
title: t('welcomeNew.trust.title') || 'Oxy Trust = Trust & Growth',
|
|
94
|
-
body: t('welcomeNew.trust.body') || 'Oxy Trust is a reputation system that reacts to what you do. Helpful, respectful, constructive actions earn reputation. Harmful or low‑effort stuff chips it away. More reputation raises your trust tier and can unlock benefits; low reputation can limit features. It keeps things fair and rewards real contribution.'
|
|
95
|
-
}, {
|
|
96
|
-
key: 'avatar',
|
|
97
|
-
title: t('welcomeNew.avatar.title') || 'Make It Yours',
|
|
98
|
-
body: t('welcomeNew.avatar.body') || 'Add an avatar so people recognize you. It will show anywhere you show up here. Skip if you want — you can add it later.',
|
|
99
|
-
showAvatar: true
|
|
100
|
-
}, {
|
|
101
|
-
key: 'ready',
|
|
102
|
-
title: t('welcomeNew.ready.title') || "You're Ready",
|
|
103
|
-
body: t('welcomeNew.ready.body') || 'Explore. Contribute. Earn reputation. Stay in control.'
|
|
104
|
-
}];
|
|
105
|
-
if (needsName) {
|
|
106
|
-
// Inject the required name step immediately BEFORE the avatar step:
|
|
107
|
-
// …trust, name, avatar, ready.
|
|
108
|
-
const insertAt = steps.findIndex(s => s.showAvatar);
|
|
109
|
-
const nameStep = {
|
|
110
|
-
key: 'name',
|
|
111
|
-
title: t('welcomeNew.name.title') || "What's your name?",
|
|
112
|
-
body: t('welcomeNew.name.body') || 'Add your name so people know who you are.',
|
|
113
|
-
showNameForm: true
|
|
114
|
-
};
|
|
115
|
-
if (insertAt >= 0) {
|
|
116
|
-
steps.splice(insertAt, 0, nameStep);
|
|
117
|
-
} else {
|
|
118
|
-
steps.push(nameStep);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
const totalSteps = steps.length;
|
|
122
|
-
const avatarStepIndex = steps.findIndex(s => s.showAvatar);
|
|
123
|
-
const nameStepIndex = steps.findIndex(s => s.showNameForm);
|
|
124
|
-
const animateToStepCallback = useCallback(next => {
|
|
125
|
-
Animated.timing(fadeAnim, {
|
|
126
|
-
toValue: 0,
|
|
127
|
-
duration: 180,
|
|
128
|
-
useNativeDriver: Platform.OS !== 'web'
|
|
129
|
-
}).start(() => {
|
|
130
|
-
setCurrentStep(next);
|
|
131
|
-
slideAnim.setValue(-40);
|
|
132
|
-
Animated.parallel([Animated.timing(fadeAnim, {
|
|
133
|
-
toValue: 1,
|
|
134
|
-
duration: 220,
|
|
135
|
-
useNativeDriver: Platform.OS !== 'web'
|
|
136
|
-
}), Animated.spring(slideAnim, {
|
|
137
|
-
toValue: 0,
|
|
138
|
-
useNativeDriver: Platform.OS !== 'web',
|
|
139
|
-
friction: 9
|
|
140
|
-
})]).start();
|
|
141
|
-
});
|
|
142
|
-
}, [fadeAnim, slideAnim]);
|
|
143
|
-
const nextStep = useCallback(() => {
|
|
144
|
-
if (currentStep < totalSteps - 1) animateToStepCallback(currentStep + 1);
|
|
145
|
-
}, [currentStep, totalSteps, animateToStepCallback]);
|
|
146
|
-
const prevStep = useCallback(() => {
|
|
147
|
-
if (currentStep > 0) animateToStepCallback(currentStep - 1);
|
|
148
|
-
}, [currentStep, animateToStepCallback]);
|
|
149
|
-
// Skip from the intro step lands on the FIRST personalization step that
|
|
150
|
-
// exists — the required name step when present, otherwise the avatar step —
|
|
151
|
-
// so the required name step can never be bypassed.
|
|
152
|
-
const skipToAvatar = useCallback(() => {
|
|
153
|
-
const personalizeIndex = nameStepIndex >= 0 ? nameStepIndex : avatarStepIndex;
|
|
154
|
-
if (personalizeIndex >= 0) animateToStepCallback(personalizeIndex);
|
|
155
|
-
}, [nameStepIndex, avatarStepIndex, animateToStepCallback]);
|
|
156
|
-
const finish = useCallback(() => {
|
|
157
|
-
if (onAuthenticated && currentUser) onAuthenticated(currentUser);
|
|
158
|
-
}, [onAuthenticated, currentUser]);
|
|
159
|
-
const submitName = useCallback(async () => {
|
|
160
|
-
const f = firstName.trim();
|
|
161
|
-
if (!f) return;
|
|
162
|
-
setSavingName(true);
|
|
163
|
-
try {
|
|
164
|
-
await updateProfileMutation.mutateAsync({
|
|
165
|
-
name: {
|
|
166
|
-
first: f,
|
|
167
|
-
last: lastName.trim()
|
|
168
|
-
}
|
|
169
|
-
});
|
|
170
|
-
animateToStepCallback(currentStep + 1);
|
|
171
|
-
} catch (e) {
|
|
172
|
-
toast.error((e instanceof Error ? e.message : null) || t('welcomeNew.name.saveFailed') || 'Could not save your name');
|
|
173
|
-
} finally {
|
|
174
|
-
setSavingName(false);
|
|
175
|
-
}
|
|
176
|
-
}, [firstName, lastName, updateProfileMutation, animateToStepCallback, currentStep, t]);
|
|
177
|
-
/**
|
|
178
|
-
* Onboarding uses the SAME avatar flow as everywhere else — the ChangeAvatar
|
|
179
|
-
* surface (source list → crop → upload). It used to run its own
|
|
180
|
-
* pick-a-file-and-set-it path, which bypassed the cropper entirely.
|
|
181
|
-
*/
|
|
182
|
-
const openAvatarPicker = useCallback(() => {
|
|
183
|
-
// Ensure we're on the avatar step, so the wizard shows the new photo
|
|
184
|
-
// when the surface closes.
|
|
185
|
-
if (avatarStepIndex >= 0 && currentStep !== avatarStepIndex) {
|
|
186
|
-
animateToStepCallback(avatarStepIndex);
|
|
187
|
-
}
|
|
188
|
-
openChangeAvatarSurface();
|
|
189
|
-
}, [openChangeAvatarSurface, currentStep, avatarStepIndex, animateToStepCallback]);
|
|
190
|
-
|
|
191
|
-
// Shared Dialog nav header: a stable "Welcome" title, the wizard `progress`
|
|
192
|
-
// bar (replacing the old in-content dots), and a back affordance that steps the
|
|
193
|
-
// wizard back once past the intro (the step CTAs keep their own
|
|
194
|
-
// Back/Skip/Next/Enter buttons as content; the header's close dismisses,
|
|
195
|
-
// matching the pre-existing backdrop-dismiss).
|
|
196
|
-
const progress = useMemo(() => ({
|
|
197
|
-
step: currentStep + 1,
|
|
198
|
-
total: totalSteps
|
|
199
|
-
}), [currentStep, totalSteps]);
|
|
200
|
-
useSurfaceHeader({
|
|
201
|
-
title: t('welcomeNew.navTitle'),
|
|
202
|
-
largeTitle: false,
|
|
203
|
-
onBack: currentStep > 0 ? prevStep : undefined,
|
|
204
|
-
progress
|
|
205
|
-
});
|
|
206
|
-
const step = steps[currentStep];
|
|
207
|
-
const renderActionButtons = useCallback(() => {
|
|
208
|
-
if (currentStep === totalSteps - 1) {
|
|
209
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
210
|
-
style: {
|
|
211
|
-
flexDirection: 'row',
|
|
212
|
-
gap: 8,
|
|
213
|
-
justifyContent: 'flex-end'
|
|
214
|
-
},
|
|
215
|
-
children: [/*#__PURE__*/_jsx(Button, {
|
|
216
|
-
variant: "secondary",
|
|
217
|
-
onPress: prevStep,
|
|
218
|
-
size: "small",
|
|
219
|
-
children: t('welcomeNew.actions.back') || 'Back'
|
|
220
|
-
}), /*#__PURE__*/_jsx(Button, {
|
|
221
|
-
variant: "primary",
|
|
222
|
-
onPress: finish,
|
|
223
|
-
size: "small",
|
|
224
|
-
children: t('welcomeNew.actions.enter') || 'Enter'
|
|
225
|
-
})]
|
|
226
|
-
});
|
|
227
|
-
}
|
|
228
|
-
if (currentStep === 0) {
|
|
229
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
230
|
-
style: {
|
|
231
|
-
flexDirection: 'row',
|
|
232
|
-
gap: 8,
|
|
233
|
-
justifyContent: 'flex-end'
|
|
234
|
-
},
|
|
235
|
-
children: [avatarStepIndex > 0 && /*#__PURE__*/_jsx(Button, {
|
|
236
|
-
variant: "secondary",
|
|
237
|
-
onPress: skipToAvatar,
|
|
238
|
-
size: "small",
|
|
239
|
-
children: t('welcomeNew.actions.skip') || 'Skip'
|
|
240
|
-
}), /*#__PURE__*/_jsx(Button, {
|
|
241
|
-
variant: "primary",
|
|
242
|
-
onPress: nextStep,
|
|
243
|
-
size: "small",
|
|
244
|
-
children: t('welcomeNew.actions.next') || 'Next'
|
|
245
|
-
})]
|
|
246
|
-
});
|
|
247
|
-
}
|
|
248
|
-
if (nameStepIndex >= 0 && currentStep === nameStepIndex) {
|
|
249
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
250
|
-
style: {
|
|
251
|
-
flexDirection: 'row',
|
|
252
|
-
gap: 8,
|
|
253
|
-
justifyContent: 'flex-end'
|
|
254
|
-
},
|
|
255
|
-
children: [/*#__PURE__*/_jsx(Button, {
|
|
256
|
-
variant: "secondary",
|
|
257
|
-
onPress: prevStep,
|
|
258
|
-
size: "small",
|
|
259
|
-
children: t('welcomeNew.actions.back') || 'Back'
|
|
260
|
-
}), /*#__PURE__*/_jsx(Button, {
|
|
261
|
-
variant: "primary",
|
|
262
|
-
onPress: submitName,
|
|
263
|
-
size: "small",
|
|
264
|
-
disabled: !firstName.trim() || savingName,
|
|
265
|
-
loading: savingName,
|
|
266
|
-
children: t('welcomeNew.actions.continue') || 'Continue'
|
|
267
|
-
})]
|
|
268
|
-
});
|
|
269
|
-
}
|
|
270
|
-
if (step.showAvatar) {
|
|
271
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
272
|
-
style: {
|
|
273
|
-
flexDirection: 'row',
|
|
274
|
-
gap: 8,
|
|
275
|
-
justifyContent: 'flex-end'
|
|
276
|
-
},
|
|
277
|
-
children: [/*#__PURE__*/_jsx(Button, {
|
|
278
|
-
variant: "secondary",
|
|
279
|
-
onPress: prevStep,
|
|
280
|
-
size: "small",
|
|
281
|
-
children: t('welcomeNew.actions.back') || 'Back'
|
|
282
|
-
}), /*#__PURE__*/_jsx(Button, {
|
|
283
|
-
variant: "primary",
|
|
284
|
-
onPress: nextStep,
|
|
285
|
-
size: "small",
|
|
286
|
-
children: avatarUri ? t('welcomeNew.actions.continue') || 'Continue' : t('welcomeNew.actions.skip') || 'Skip'
|
|
287
|
-
})]
|
|
288
|
-
});
|
|
289
|
-
}
|
|
290
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
291
|
-
style: {
|
|
292
|
-
flexDirection: 'row',
|
|
293
|
-
gap: 8,
|
|
294
|
-
justifyContent: 'flex-end'
|
|
295
|
-
},
|
|
296
|
-
children: [/*#__PURE__*/_jsx(Button, {
|
|
297
|
-
variant: "secondary",
|
|
298
|
-
onPress: prevStep,
|
|
299
|
-
size: "small",
|
|
300
|
-
children: t('welcomeNew.actions.back') || 'Back'
|
|
301
|
-
}), /*#__PURE__*/_jsx(Button, {
|
|
302
|
-
variant: "primary",
|
|
303
|
-
onPress: nextStep,
|
|
304
|
-
size: "small",
|
|
305
|
-
children: t('welcomeNew.actions.next') || 'Next'
|
|
306
|
-
})]
|
|
307
|
-
});
|
|
308
|
-
}, [currentStep, totalSteps, prevStep, nextStep, finish, skipToAvatar, avatarStepIndex, nameStepIndex, submitName, firstName, savingName, step.showAvatar, avatarUri, t]);
|
|
309
|
-
return /*#__PURE__*/_jsx(View, {
|
|
310
|
-
style: styles.container,
|
|
311
|
-
children: /*#__PURE__*/_jsx(Animated.View, {
|
|
312
|
-
style: {
|
|
313
|
-
opacity: fadeAnim,
|
|
314
|
-
transform: [{
|
|
315
|
-
translateX: slideAnim
|
|
316
|
-
}]
|
|
317
|
-
},
|
|
318
|
-
children: /*#__PURE__*/_jsxs(View, {
|
|
319
|
-
style: [styles.scrollInner, styles.contentContainer],
|
|
320
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
321
|
-
style: [styles.header, styles.sectionSpacing],
|
|
322
|
-
children: [/*#__PURE__*/_jsx(H1, {
|
|
323
|
-
style: styles.title,
|
|
324
|
-
className: "text-text",
|
|
325
|
-
children: step.title
|
|
326
|
-
}), step.body && /*#__PURE__*/_jsx(Text, {
|
|
327
|
-
style: styles.body,
|
|
328
|
-
className: "text-text-secondary",
|
|
329
|
-
children: step.body
|
|
330
|
-
})]
|
|
331
|
-
}), Array.isArray(step.bullets) && step.bullets.length > 0 && /*#__PURE__*/_jsx(View, {
|
|
332
|
-
style: [styles.bulletContainer, styles.sectionSpacing],
|
|
333
|
-
children: step.bullets.map(b => /*#__PURE__*/_jsxs(View, {
|
|
334
|
-
style: styles.bulletRow,
|
|
335
|
-
children: [/*#__PURE__*/_jsx(Ionicons, {
|
|
336
|
-
name: "ellipse",
|
|
337
|
-
size: 8,
|
|
338
|
-
color: colors.primary,
|
|
339
|
-
style: {
|
|
340
|
-
marginTop: 6
|
|
341
|
-
}
|
|
342
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
343
|
-
style: styles.bulletText,
|
|
344
|
-
className: "text-text-secondary",
|
|
345
|
-
children: b
|
|
346
|
-
})]
|
|
347
|
-
}, b))
|
|
348
|
-
}), step.showNameForm && /*#__PURE__*/_jsxs(View, {
|
|
349
|
-
style: [styles.nameForm, styles.sectionSpacing],
|
|
350
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
351
|
-
style: styles.nameField,
|
|
352
|
-
children: /*#__PURE__*/_jsx(TextField, {
|
|
353
|
-
children: /*#__PURE__*/_jsx(TextFieldInput, {
|
|
354
|
-
floatingLabel: true,
|
|
355
|
-
label: t('welcomeNew.name.firstLabel') || 'First name',
|
|
356
|
-
value: firstName,
|
|
357
|
-
onChangeText: setFirstName,
|
|
358
|
-
autoFocus: true,
|
|
359
|
-
autoCapitalize: "words"
|
|
360
|
-
})
|
|
361
|
-
})
|
|
362
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
363
|
-
style: styles.nameField,
|
|
364
|
-
children: /*#__PURE__*/_jsx(TextField, {
|
|
365
|
-
children: /*#__PURE__*/_jsx(TextFieldInput, {
|
|
366
|
-
floatingLabel: true,
|
|
367
|
-
label: t('welcomeNew.name.lastLabel') || 'Last name',
|
|
368
|
-
value: lastName,
|
|
369
|
-
onChangeText: setLastName,
|
|
370
|
-
autoCapitalize: "words"
|
|
371
|
-
})
|
|
372
|
-
})
|
|
373
|
-
})]
|
|
374
|
-
}), step.showAvatar && /*#__PURE__*/_jsxs(View, {
|
|
375
|
-
style: [styles.avatarSection, styles.sectionSpacing],
|
|
376
|
-
children: [/*#__PURE__*/_jsx(Avatar, {
|
|
377
|
-
size: 120,
|
|
378
|
-
name: welcomeName,
|
|
379
|
-
source: avatarUri,
|
|
380
|
-
placeholderColor: `${colors.primary}20`,
|
|
381
|
-
style: styles.avatar
|
|
382
|
-
}), /*#__PURE__*/_jsx(Button, {
|
|
383
|
-
variant: "primary",
|
|
384
|
-
size: "small",
|
|
385
|
-
onPress: openAvatarPicker,
|
|
386
|
-
children: avatarUri ? t('welcomeNew.avatar.change') || 'Change Avatar' : t('welcomeNew.avatar.add') || 'Add Avatar'
|
|
387
|
-
})]
|
|
388
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
389
|
-
style: styles.sectionSpacing,
|
|
390
|
-
children: renderActionButtons()
|
|
391
|
-
})]
|
|
392
|
-
})
|
|
393
|
-
})
|
|
394
|
-
});
|
|
395
|
-
};
|
|
396
|
-
const createStyles = () => {
|
|
397
|
-
return StyleSheet.create({
|
|
398
|
-
container: {
|
|
399
|
-
width: '100%',
|
|
400
|
-
paddingHorizontal: 20
|
|
401
|
-
},
|
|
402
|
-
scrollInner: {
|
|
403
|
-
paddingTop: 0
|
|
404
|
-
},
|
|
405
|
-
contentContainer: {
|
|
406
|
-
width: '100%',
|
|
407
|
-
maxWidth: 420,
|
|
408
|
-
alignSelf: 'center'
|
|
409
|
-
},
|
|
410
|
-
sectionSpacing: {
|
|
411
|
-
marginBottom: GAP
|
|
412
|
-
},
|
|
413
|
-
header: {
|
|
414
|
-
alignItems: 'flex-start',
|
|
415
|
-
width: '100%',
|
|
416
|
-
gap: INNER_GAP / 2
|
|
417
|
-
},
|
|
418
|
-
title: {
|
|
419
|
-
fontSize: 42,
|
|
420
|
-
letterSpacing: -1,
|
|
421
|
-
textAlign: 'left'
|
|
422
|
-
},
|
|
423
|
-
body: {
|
|
424
|
-
fontSize: 16,
|
|
425
|
-
lineHeight: 22,
|
|
426
|
-
textAlign: 'left',
|
|
427
|
-
maxWidth: 320,
|
|
428
|
-
alignSelf: 'flex-start'
|
|
429
|
-
},
|
|
430
|
-
bulletContainer: {
|
|
431
|
-
gap: INNER_GAP,
|
|
432
|
-
width: '100%'
|
|
433
|
-
},
|
|
434
|
-
bulletRow: {
|
|
435
|
-
flexDirection: 'row',
|
|
436
|
-
alignItems: 'flex-start',
|
|
437
|
-
gap: 10
|
|
438
|
-
},
|
|
439
|
-
bulletText: {
|
|
440
|
-
flex: 1,
|
|
441
|
-
fontSize: 15,
|
|
442
|
-
lineHeight: 20
|
|
443
|
-
},
|
|
444
|
-
nameForm: {
|
|
445
|
-
width: '100%',
|
|
446
|
-
gap: GAP
|
|
447
|
-
},
|
|
448
|
-
nameField: {
|
|
449
|
-
width: '100%',
|
|
450
|
-
gap: INNER_GAP / 2
|
|
451
|
-
},
|
|
452
|
-
avatarSection: {
|
|
453
|
-
width: '100%',
|
|
454
|
-
alignItems: 'center'
|
|
455
|
-
},
|
|
456
|
-
avatar: {
|
|
457
|
-
marginBottom: INNER_GAP
|
|
458
|
-
}
|
|
459
|
-
});
|
|
460
|
-
};
|
|
461
|
-
export default WelcomeNewUserScreen;
|
|
462
|
-
//# sourceMappingURL=WelcomeNewUserScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["useCallback","useMemo","useRef","useState","View","StyleSheet","Platform","Animated","Avatar","Ionicons","toast","useTheme","Button","H1","Text","TextField","TextFieldInput","useI18n","useSurfaceHeader","useOxy","useUpdateProfile","getNormalizedUserHandle","jsx","_jsx","jsxs","_jsxs","GAP","INNER_GAP","WelcomeNewUserScreen","onAuthenticated","theme","newUser","user","oxyServices","openAvatarPicker","openChangeAvatarSurface","t","locale","updateProfileMutation","currentUser","bloomTheme","colors","primary","border","text","styles","createStyles","fadeAnim","Value","current","slideAnim","currentStep","setCurrentStep","firstName","setFirstName","name","first","trim","lastName","setLastName","last","savingName","setSavingName","avatarUri","avatar","getFileDownloadUrl","undefined","welcomeName","displayName","welcomeTitle","username","needsName","steps","key","title","body","bullets","showAvatar","insertAt","findIndex","s","nameStep","showNameForm","splice","push","totalSteps","length","avatarStepIndex","nameStepIndex","animateToStepCallback","next","timing","toValue","duration","useNativeDriver","OS","start","setValue","parallel","spring","friction","nextStep","prevStep","skipToAvatar","personalizeIndex","finish","submitName","f","mutateAsync","e","error","Error","message","progress","step","total","largeTitle","onBack","renderActionButtons","style","flexDirection","gap","justifyContent","children","variant","onPress","size","disabled","loading","container","opacity","transform","translateX","scrollInner","contentContainer","header","sectionSpacing","className","Array","isArray","bulletContainer","map","b","bulletRow","color","marginTop","bulletText","nameForm","nameField","floatingLabel","label","value","onChangeText","autoFocus","autoCapitalize","avatarSection","source","placeholderColor","create","width","paddingHorizontal","paddingTop","maxWidth","alignSelf","marginBottom","alignItems","fontSize","letterSpacing","textAlign","lineHeight","flex"],"sourceRoot":"../../../../src","sources":["ui/screens/WelcomeNewUserScreen.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import { View, Text, TouchableOpacity } from 'react-native';
|
|
4
|
-
import Ionicons from '@expo/vector-icons/Ionicons';
|
|
5
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
-
/**
|
|
7
|
-
* Terminal load-failure surface for the file library — rendered (INSTEAD of the
|
|
8
|
-
* "no files yet" empty state) when the list query errors with nothing cached, so
|
|
9
|
-
* a failed load never masquerades as an empty library. Pure presentational; the
|
|
10
|
-
* Retry action is wired to the query's `refetch()` by the caller. Themed via
|
|
11
|
-
* color props so it fits both the browse chrome and the dark picker backdrop.
|
|
12
|
-
*/
|
|
13
|
-
const FileLibraryError = ({
|
|
14
|
-
title,
|
|
15
|
-
description,
|
|
16
|
-
retryLabel,
|
|
17
|
-
onRetry,
|
|
18
|
-
iconColor,
|
|
19
|
-
titleColor,
|
|
20
|
-
descriptionColor,
|
|
21
|
-
buttonColor
|
|
22
|
-
}) => /*#__PURE__*/_jsxs(View, {
|
|
23
|
-
className: "items-center py-[40px] px-[24px]",
|
|
24
|
-
children: [/*#__PURE__*/_jsx(Ionicons, {
|
|
25
|
-
name: "cloud-offline-outline",
|
|
26
|
-
size: 64,
|
|
27
|
-
color: iconColor
|
|
28
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
29
|
-
className: "text-[24px] font-bold mt-[16px] mb-[8px] text-center",
|
|
30
|
-
style: {
|
|
31
|
-
color: titleColor
|
|
32
|
-
},
|
|
33
|
-
children: title
|
|
34
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
35
|
-
className: "text-[16px] text-center leading-[24px] mb-[32px]",
|
|
36
|
-
style: {
|
|
37
|
-
color: descriptionColor
|
|
38
|
-
},
|
|
39
|
-
children: description
|
|
40
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
41
|
-
className: "flex-row items-center px-[24px] py-[12px] rounded-[24px] gap-[8px]",
|
|
42
|
-
style: {
|
|
43
|
-
backgroundColor: buttonColor
|
|
44
|
-
},
|
|
45
|
-
onPress: onRetry,
|
|
46
|
-
accessibilityRole: "button",
|
|
47
|
-
accessibilityLabel: retryLabel,
|
|
48
|
-
children: [/*#__PURE__*/_jsx(Ionicons, {
|
|
49
|
-
name: "refresh",
|
|
50
|
-
size: 20,
|
|
51
|
-
color: "#FFFFFF"
|
|
52
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
53
|
-
className: "text-white text-[16px] font-semibold",
|
|
54
|
-
children: retryLabel
|
|
55
|
-
})]
|
|
56
|
-
})]
|
|
57
|
-
});
|
|
58
|
-
export default FileLibraryError;
|
|
59
|
-
//# sourceMappingURL=FileLibraryError.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["View","Text","TouchableOpacity","Ionicons","jsx","_jsx","jsxs","_jsxs","FileLibraryError","title","description","retryLabel","onRetry","iconColor","titleColor","descriptionColor","buttonColor","className","children","name","size","color","style","backgroundColor","onPress","accessibilityRole","accessibilityLabel"],"sourceRoot":"../../../../../src","sources":["ui/screens/fileManagement/FileLibraryError.tsx"],"mappings":";;AACA,SAASA,IAAI,EAAEC,IAAI,EAAEC,gBAAgB,QAAQ,cAAc;AAC3D,OAAOC,QAAQ,MAAM,6BAA6B;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAenD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,gBAAiD,GAAGA,CAAC;EACvDC,KAAK;EACLC,WAAW;EACXC,UAAU;EACVC,OAAO;EACPC,SAAS;EACTC,UAAU;EACVC,gBAAgB;EAChBC;AACJ,CAAC,kBACGT,KAAA,CAACP,IAAI;EAACiB,SAAS,EAAC,kCAAkC;EAAAC,QAAA,gBAC9Cb,IAAA,CAACF,QAAQ;IAACgB,IAAI,EAAC,uBAAuB;IAACC,IAAI,EAAE,EAAG;IAACC,KAAK,EAAER;EAAU,CAAE,CAAC,eACrER,IAAA,CAACJ,IAAI;IAACgB,SAAS,EAAC,sDAAsD;IAACK,KAAK,EAAE;MAAED,KAAK,EAAEP;IAAW,CAAE;IAAAI,QAAA,EAC/FT;EAAK,CACJ,CAAC,eACPJ,IAAA,CAACJ,IAAI;IAACgB,SAAS,EAAC,kDAAkD;IAACK,KAAK,EAAE;MAAED,KAAK,EAAEN;IAAiB,CAAE;IAAAG,QAAA,EACjGR;EAAW,CACV,CAAC,eACPH,KAAA,CAACL,gBAAgB;IACbe,SAAS,EAAC,oEAAoE;IAC9EK,KAAK,EAAE;MAAEC,eAAe,EAAEP;IAAY,CAAE;IACxCQ,OAAO,EAAEZ,OAAQ;IACjBa,iBAAiB,EAAC,QAAQ;IAC1BC,kBAAkB,EAAEf,UAAW;IAAAO,QAAA,gBAE/Bb,IAAA,CAACF,QAAQ;MAACgB,IAAI,EAAC,SAAS;MAACC,IAAI,EAAE,EAAG;MAACC,KAAK,EAAC;IAAS,CAAE,CAAC,eACrDhB,IAAA,CAACJ,IAAI;MAACgB,SAAS,EAAC,sCAAsC;MAAAC,QAAA,EAAEP;IAAU,CAAO,CAAC;EAAA,CAC5D,CAAC;AAAA,CACjB,CACT;AAED,eAAeH,gBAAgB","ignoreList":[]}
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import { View, Text, TouchableOpacity, ScrollView, RefreshControl, ActivityIndicator } from 'react-native';
|
|
4
|
-
import Ionicons from '@expo/vector-icons/Ionicons';
|
|
5
|
-
import { SettingsListGroup, SettingsListItem } from '@oxyhq/bloom/settings-list';
|
|
6
|
-
|
|
7
|
-
/** A pre-built list row descriptor (produced by the orchestrator's memo). */
|
|
8
|
-
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
9
|
-
/**
|
|
10
|
-
* The non-photo file list (list-style `all`/`videos`/`documents`/`audio`
|
|
11
|
-
* views). Extracted verbatim from FileManagementScreen — the orchestrator
|
|
12
|
-
* still owns the item construction and pagination logic and threads them in.
|
|
13
|
-
*/
|
|
14
|
-
const FileListSection = ({
|
|
15
|
-
scrollViewRef,
|
|
16
|
-
filteredFiles,
|
|
17
|
-
searchQuery,
|
|
18
|
-
items,
|
|
19
|
-
paging,
|
|
20
|
-
refreshing,
|
|
21
|
-
colors,
|
|
22
|
-
t,
|
|
23
|
-
onRefresh,
|
|
24
|
-
onLoadMore,
|
|
25
|
-
onClearSearch,
|
|
26
|
-
renderEmptyState
|
|
27
|
-
}) => {
|
|
28
|
-
return /*#__PURE__*/_jsx(ScrollView, {
|
|
29
|
-
ref: scrollViewRef,
|
|
30
|
-
className: "flex-1",
|
|
31
|
-
style: {
|
|
32
|
-
flex: 1
|
|
33
|
-
},
|
|
34
|
-
contentContainerClassName: "px-space-12 pt-0 pb-space-12",
|
|
35
|
-
refreshControl: /*#__PURE__*/_jsx(RefreshControl, {
|
|
36
|
-
refreshing: refreshing,
|
|
37
|
-
onRefresh: onRefresh,
|
|
38
|
-
tintColor: colors.primary
|
|
39
|
-
}),
|
|
40
|
-
onScroll: ({
|
|
41
|
-
nativeEvent
|
|
42
|
-
}) => {
|
|
43
|
-
const {
|
|
44
|
-
layoutMeasurement,
|
|
45
|
-
contentOffset,
|
|
46
|
-
contentSize
|
|
47
|
-
} = nativeEvent;
|
|
48
|
-
const distanceFromBottom = contentSize.height - (contentOffset.y + layoutMeasurement.height);
|
|
49
|
-
if (distanceFromBottom < 200 && !paging.loadingMore && paging.hasMore) {
|
|
50
|
-
onLoadMore();
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
scrollEventThrottle: 250,
|
|
54
|
-
children: filteredFiles.length === 0 && searchQuery.length > 0 ? /*#__PURE__*/_jsxs(View, {
|
|
55
|
-
className: "items-center py-10 px-space-24",
|
|
56
|
-
children: [/*#__PURE__*/_jsx(Ionicons, {
|
|
57
|
-
name: "search",
|
|
58
|
-
size: 64,
|
|
59
|
-
color: colors.textTertiary
|
|
60
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
61
|
-
className: "text-[24px] font-bold mt-space-16 mb-space-8",
|
|
62
|
-
style: {
|
|
63
|
-
color: colors.text
|
|
64
|
-
},
|
|
65
|
-
children: t('fileManagement.noResults.title')
|
|
66
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
67
|
-
className: "text-[16px] text-center leading-[24px] mb-space-32",
|
|
68
|
-
style: {
|
|
69
|
-
color: colors.textSecondary
|
|
70
|
-
},
|
|
71
|
-
children: t('fileManagement.noResults.description', {
|
|
72
|
-
query: searchQuery
|
|
73
|
-
})
|
|
74
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
75
|
-
className: "flex-row items-center px-space-24 py-space-12 rounded-[24px] gap-space-8",
|
|
76
|
-
style: {
|
|
77
|
-
backgroundColor: colors.primary
|
|
78
|
-
},
|
|
79
|
-
onPress: onClearSearch,
|
|
80
|
-
children: [/*#__PURE__*/_jsx(Ionicons, {
|
|
81
|
-
name: "refresh",
|
|
82
|
-
size: 20,
|
|
83
|
-
color: "#FFFFFF"
|
|
84
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
85
|
-
className: "text-white text-[16px] font-semibold",
|
|
86
|
-
children: t('fileManagement.clearSearch')
|
|
87
|
-
})]
|
|
88
|
-
})]
|
|
89
|
-
}) : filteredFiles.length === 0 ? renderEmptyState() : /*#__PURE__*/_jsxs(_Fragment, {
|
|
90
|
-
children: [/*#__PURE__*/_jsx(SettingsListGroup, {
|
|
91
|
-
children: items.map(item => /*#__PURE__*/_jsx(SettingsListItem, {
|
|
92
|
-
icon: item.icon,
|
|
93
|
-
title: item.title,
|
|
94
|
-
description: item.description,
|
|
95
|
-
onPress: item.onPress,
|
|
96
|
-
showChevron: false,
|
|
97
|
-
rightElement: item.rightElement
|
|
98
|
-
}, item.id))
|
|
99
|
-
}), paging.loadingMore && /*#__PURE__*/_jsxs(View, {
|
|
100
|
-
className: "flex-row items-center justify-center py-space-12 gap-space-8",
|
|
101
|
-
children: [/*#__PURE__*/_jsx(ActivityIndicator, {
|
|
102
|
-
size: "small",
|
|
103
|
-
color: colors.primary
|
|
104
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
105
|
-
className: "text-[13px] font-medium",
|
|
106
|
-
style: {
|
|
107
|
-
color: colors.text
|
|
108
|
-
},
|
|
109
|
-
children: t('fileManagement.loadingMore')
|
|
110
|
-
})]
|
|
111
|
-
})]
|
|
112
|
-
})
|
|
113
|
-
});
|
|
114
|
-
};
|
|
115
|
-
export default FileListSection;
|
|
116
|
-
//# sourceMappingURL=FileListSection.js.map
|