@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,592 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
var _Ionicons = _interopRequireDefault(require("@expo/vector-icons/Ionicons"));
|
|
8
|
-
var _button = require("@oxyhq/bloom/button");
|
|
9
|
-
var _settingsList = require("@oxyhq/bloom/settings-list");
|
|
10
|
-
var _switch = require("@oxyhq/bloom/switch");
|
|
11
|
-
var _textField = require("@oxyhq/bloom/text-field");
|
|
12
|
-
var _theme = require("@oxyhq/bloom/theme");
|
|
13
|
-
var _toast = require("@oxyhq/bloom/toast");
|
|
14
|
-
var _typography = require("@oxyhq/bloom/typography");
|
|
15
|
-
var _core = require("@oxyhq/core");
|
|
16
|
-
var _react = require("react");
|
|
17
|
-
var _reactNative = require("react-native");
|
|
18
|
-
var _SettingsIcon = require("../components/SettingsIcon.js");
|
|
19
|
-
var _OxyContext = require("../context/OxyContext.js");
|
|
20
|
-
var _useI18n = require("../hooks/useI18n.js");
|
|
21
|
-
var _useSurfaceHeader = require("../hooks/useSurfaceHeader.js");
|
|
22
|
-
var _constants = require("../components/feedback/constants.js");
|
|
23
|
-
var _useFeedbackForm = require("../components/feedback/useFeedbackForm.js");
|
|
24
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
25
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
26
|
-
/** Step transition timing — measured animation, not a design token. */const STEP_FADE_OUT_MS = 250;
|
|
27
|
-
const STEP_FADE_IN_MS = 250;
|
|
28
|
-
const STEP_SLIDE_IN_MS = 300;
|
|
29
|
-
const STEP_SLIDE_FROM = -100;
|
|
30
|
-
const TOTAL_STEPS = 4;
|
|
31
|
-
const LAST_STEP_INDEX = TOTAL_STEPS - 1;
|
|
32
|
-
const SUCCESS_RESET_DELAY_MS = 3000;
|
|
33
|
-
|
|
34
|
-
/** Maps each feedback type to a Bloom theme role + MaterialCommunityIcons glyph. */
|
|
35
|
-
const TYPE_ICON_GLYPH = {
|
|
36
|
-
bug: "bug",
|
|
37
|
-
feature: "lightbulb-on",
|
|
38
|
-
general: "chat",
|
|
39
|
-
support: "help-circle"
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
/** Maps each priority level to a MaterialCommunityIcons glyph. */
|
|
43
|
-
const PRIORITY_ICON_GLYPH = {
|
|
44
|
-
low: "arrow-down",
|
|
45
|
-
medium: "minus",
|
|
46
|
-
high: "arrow-up",
|
|
47
|
-
critical: "alert"
|
|
48
|
-
};
|
|
49
|
-
const FeedbackScreen = ({
|
|
50
|
-
goBack,
|
|
51
|
-
onClose,
|
|
52
|
-
theme
|
|
53
|
-
}) => {
|
|
54
|
-
const {
|
|
55
|
-
user,
|
|
56
|
-
oxyServices
|
|
57
|
-
} = (0, _OxyContext.useOxy)();
|
|
58
|
-
const normalizedTheme = (0, _core.normalizeTheme)(theme);
|
|
59
|
-
const bloomTheme = (0, _theme.useTheme)();
|
|
60
|
-
const colors = bloomTheme.colors;
|
|
61
|
-
const {
|
|
62
|
-
t
|
|
63
|
-
} = (0, _useI18n.useI18n)();
|
|
64
|
-
(0, _useSurfaceHeader.useSurfaceHeader)({
|
|
65
|
-
title: t("feedback.title") || "Feedback"
|
|
66
|
-
});
|
|
67
|
-
const {
|
|
68
|
-
feedbackData,
|
|
69
|
-
feedbackState,
|
|
70
|
-
setFeedbackState,
|
|
71
|
-
updateField,
|
|
72
|
-
resetForm
|
|
73
|
-
} = (0, _useFeedbackForm.useFeedbackForm)();
|
|
74
|
-
const [currentStep, setCurrentStep] = (0, _react.useState)(0);
|
|
75
|
-
const [, setErrorMessage] = (0, _react.useState)("");
|
|
76
|
-
const fadeAnim = (0, _react.useRef)(new _reactNative.Animated.Value(1)).current;
|
|
77
|
-
const slideAnim = (0, _react.useRef)(new _reactNative.Animated.Value(0)).current;
|
|
78
|
-
|
|
79
|
-
/** Theme-role color for each feedback type pill. */
|
|
80
|
-
const typeColor = (0, _react.useCallback)(id => {
|
|
81
|
-
switch (id) {
|
|
82
|
-
case "bug":
|
|
83
|
-
return colors.negative;
|
|
84
|
-
case "feature":
|
|
85
|
-
return colors.info;
|
|
86
|
-
case "general":
|
|
87
|
-
return colors.success;
|
|
88
|
-
case "support":
|
|
89
|
-
return colors.warning;
|
|
90
|
-
default:
|
|
91
|
-
return colors.primary;
|
|
92
|
-
}
|
|
93
|
-
}, [colors]);
|
|
94
|
-
|
|
95
|
-
/** Theme-role color for each priority level. */
|
|
96
|
-
const priorityColor = (0, _react.useCallback)(id => {
|
|
97
|
-
switch (id) {
|
|
98
|
-
case "low":
|
|
99
|
-
return colors.success;
|
|
100
|
-
case "medium":
|
|
101
|
-
return colors.warning;
|
|
102
|
-
case "high":
|
|
103
|
-
return colors.negative;
|
|
104
|
-
case "critical":
|
|
105
|
-
return colors.negative;
|
|
106
|
-
default:
|
|
107
|
-
return colors.primary;
|
|
108
|
-
}
|
|
109
|
-
}, [colors]);
|
|
110
|
-
const animateTransition = (0, _react.useCallback)(nextStep => {
|
|
111
|
-
_reactNative.Animated.timing(fadeAnim, {
|
|
112
|
-
toValue: 0,
|
|
113
|
-
duration: STEP_FADE_OUT_MS,
|
|
114
|
-
useNativeDriver: _reactNative.Platform.OS !== "web"
|
|
115
|
-
}).start(() => {
|
|
116
|
-
setCurrentStep(nextStep);
|
|
117
|
-
slideAnim.setValue(STEP_SLIDE_FROM);
|
|
118
|
-
_reactNative.Animated.parallel([_reactNative.Animated.timing(fadeAnim, {
|
|
119
|
-
toValue: 1,
|
|
120
|
-
duration: STEP_FADE_IN_MS,
|
|
121
|
-
useNativeDriver: _reactNative.Platform.OS !== "web"
|
|
122
|
-
}), _reactNative.Animated.timing(slideAnim, {
|
|
123
|
-
toValue: 0,
|
|
124
|
-
duration: STEP_SLIDE_IN_MS,
|
|
125
|
-
useNativeDriver: _reactNative.Platform.OS !== "web"
|
|
126
|
-
})]).start();
|
|
127
|
-
});
|
|
128
|
-
}, [fadeAnim, slideAnim]);
|
|
129
|
-
const nextStep = (0, _react.useCallback)(() => {
|
|
130
|
-
if (currentStep < LAST_STEP_INDEX) {
|
|
131
|
-
animateTransition(currentStep + 1);
|
|
132
|
-
}
|
|
133
|
-
}, [currentStep, animateTransition]);
|
|
134
|
-
const prevStep = (0, _react.useCallback)(() => {
|
|
135
|
-
if (currentStep > 0) {
|
|
136
|
-
animateTransition(currentStep - 1);
|
|
137
|
-
}
|
|
138
|
-
}, [currentStep, animateTransition]);
|
|
139
|
-
const isTypeStepValid = (0, _react.useCallback)(() => {
|
|
140
|
-
return Boolean(feedbackData.type && feedbackData.category);
|
|
141
|
-
}, [feedbackData.type, feedbackData.category]);
|
|
142
|
-
const isDetailsStepValid = (0, _react.useCallback)(() => {
|
|
143
|
-
return Boolean(feedbackData.title.trim() && feedbackData.description.trim());
|
|
144
|
-
}, [feedbackData.title, feedbackData.description]);
|
|
145
|
-
const isContactStepValid = (0, _react.useCallback)(() => {
|
|
146
|
-
return Boolean(feedbackData.contactEmail.trim() || user?.email);
|
|
147
|
-
}, [feedbackData.contactEmail, user?.email]);
|
|
148
|
-
const handleSubmitFeedback = (0, _react.useCallback)(async () => {
|
|
149
|
-
if (!isTypeStepValid() || !isDetailsStepValid() || !isContactStepValid()) {
|
|
150
|
-
_toast.toast.error(t("feedback.toasts.fillRequired") || "Please fill in all required fields");
|
|
151
|
-
return;
|
|
152
|
-
}
|
|
153
|
-
try {
|
|
154
|
-
setFeedbackState({
|
|
155
|
-
status: "submitting",
|
|
156
|
-
message: ""
|
|
157
|
-
});
|
|
158
|
-
setErrorMessage("");
|
|
159
|
-
const feedbackPayload = {
|
|
160
|
-
type: feedbackData.type,
|
|
161
|
-
title: feedbackData.title,
|
|
162
|
-
description: feedbackData.description,
|
|
163
|
-
priority: feedbackData.priority,
|
|
164
|
-
category: feedbackData.category,
|
|
165
|
-
contactEmail: feedbackData.contactEmail || user?.email,
|
|
166
|
-
systemInfo: feedbackData.systemInfo ? {
|
|
167
|
-
platform: _reactNative.Platform.OS,
|
|
168
|
-
version: _reactNative.Platform.Version?.toString() || "Unknown",
|
|
169
|
-
appVersion: _core.packageInfo.version,
|
|
170
|
-
userId: user?.id,
|
|
171
|
-
username: user?.username,
|
|
172
|
-
timestamp: new Date().toISOString()
|
|
173
|
-
} : undefined
|
|
174
|
-
};
|
|
175
|
-
await oxyServices.submitFeedback(feedbackPayload);
|
|
176
|
-
setFeedbackState({
|
|
177
|
-
status: "success",
|
|
178
|
-
message: t("feedback.toasts.submitSuccess") || "Feedback submitted successfully!"
|
|
179
|
-
});
|
|
180
|
-
_toast.toast.success(t("feedback.toasts.thanks") || "Thank you for your feedback!");
|
|
181
|
-
setTimeout(() => {
|
|
182
|
-
resetForm();
|
|
183
|
-
setCurrentStep(0);
|
|
184
|
-
}, SUCCESS_RESET_DELAY_MS);
|
|
185
|
-
} catch (error) {
|
|
186
|
-
const message = (error instanceof Error ? error.message : null) || t("feedback.toasts.submitFailed") || "Failed to submit feedback";
|
|
187
|
-
setFeedbackState({
|
|
188
|
-
status: "error",
|
|
189
|
-
message
|
|
190
|
-
});
|
|
191
|
-
_toast.toast.error(message);
|
|
192
|
-
}
|
|
193
|
-
}, [feedbackData, user, oxyServices, isTypeStepValid, isDetailsStepValid, isContactStepValid, resetForm, setFeedbackState, t]);
|
|
194
|
-
const feedbackTypeData = (0, _react.useMemo)(() => _constants.FEEDBACK_TYPES.map(type => ({
|
|
195
|
-
...type,
|
|
196
|
-
isSelected: feedbackData.type === type.id
|
|
197
|
-
})), [feedbackData.type]);
|
|
198
|
-
const categoryData = (0, _react.useMemo)(() => feedbackData.type ? (_constants.CATEGORIES[feedbackData.type] || []).map(cat => ({
|
|
199
|
-
name: cat,
|
|
200
|
-
isSelected: feedbackData.category === cat
|
|
201
|
-
})) : [], [feedbackData.type, feedbackData.category]);
|
|
202
|
-
const priorityData = (0, _react.useMemo)(() => _constants.PRIORITY_LEVELS.map(p => ({
|
|
203
|
-
...p,
|
|
204
|
-
isSelected: feedbackData.priority === p.id
|
|
205
|
-
})), [feedbackData.priority]);
|
|
206
|
-
const renderProgress = () => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
207
|
-
className: "flex-row justify-center gap-space-8 pt-space-8 pb-space-16",
|
|
208
|
-
accessibilityRole: "progressbar",
|
|
209
|
-
accessibilityLabel: `Step ${currentStep + 1} of ${TOTAL_STEPS}`,
|
|
210
|
-
children: Array.from({
|
|
211
|
-
length: TOTAL_STEPS
|
|
212
|
-
}, (_, index) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View
|
|
213
|
-
// biome-ignore lint/suspicious/noArrayIndexKey: fixed step indicators, order never changes
|
|
214
|
-
, {
|
|
215
|
-
className: currentStep === index ? "h-space-8 rounded-radius-max bg-fill-brand" : "h-space-8 rounded-radius-max bg-fill-secondary",
|
|
216
|
-
style: currentStep === index ? styles.progressDotActive : styles.progressDot
|
|
217
|
-
}, index))
|
|
218
|
-
});
|
|
219
|
-
const renderStepHeader = (title, subtitle) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
220
|
-
className: "w-full gap-space-8 mb-space-24",
|
|
221
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.H2, {
|
|
222
|
-
className: "text-headerBold font-headerBold text-text",
|
|
223
|
-
children: title
|
|
224
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
225
|
-
className: "text-body font-body text-text-secondary",
|
|
226
|
-
children: subtitle
|
|
227
|
-
})]
|
|
228
|
-
});
|
|
229
|
-
const renderTypeStep = () => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Animated.View, {
|
|
230
|
-
style: [styles.stepContainer, {
|
|
231
|
-
opacity: fadeAnim,
|
|
232
|
-
transform: [{
|
|
233
|
-
translateX: slideAnim
|
|
234
|
-
}]
|
|
235
|
-
}],
|
|
236
|
-
children: [renderStepHeader(t("feedback.type.title") || "What type of feedback?", t("feedback.type.subtitle") || "Choose the category that best describes your feedback"), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
237
|
-
className: "w-full",
|
|
238
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListGroup, {
|
|
239
|
-
children: feedbackTypeData.map(type => /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
240
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
241
|
-
name: TYPE_ICON_GLYPH[type.id],
|
|
242
|
-
color: typeColor(type.id)
|
|
243
|
-
}),
|
|
244
|
-
title: type.label,
|
|
245
|
-
description: type.description,
|
|
246
|
-
onPress: () => {
|
|
247
|
-
updateField("type", type.id);
|
|
248
|
-
updateField("category", "");
|
|
249
|
-
},
|
|
250
|
-
showChevron: false
|
|
251
|
-
}, type.id))
|
|
252
|
-
})
|
|
253
|
-
}), feedbackData.type ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
254
|
-
className: "w-full mt-space-24",
|
|
255
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
256
|
-
className: "text-caption font-caption text-text-secondary mb-space-8",
|
|
257
|
-
children: t("feedback.category.label") || "Category"
|
|
258
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
259
|
-
className: "w-full",
|
|
260
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListGroup, {
|
|
261
|
-
children: categoryData.map(cat => /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
262
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
263
|
-
name: cat.isSelected ? "check-circle" : "circle-outline",
|
|
264
|
-
color: cat.isSelected ? colors.primary : colors.textSecondary
|
|
265
|
-
}),
|
|
266
|
-
title: cat.name,
|
|
267
|
-
onPress: () => updateField("category", cat.name),
|
|
268
|
-
showChevron: false
|
|
269
|
-
}, cat.name))
|
|
270
|
-
})
|
|
271
|
-
})]
|
|
272
|
-
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
273
|
-
className: "flex-row gap-space-8 mt-space-24 w-full",
|
|
274
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
275
|
-
variant: "secondary",
|
|
276
|
-
onPress: goBack,
|
|
277
|
-
accessibilityLabel: "Go back",
|
|
278
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
279
|
-
name: "arrow-back",
|
|
280
|
-
size: 16,
|
|
281
|
-
color: colors.text
|
|
282
|
-
}),
|
|
283
|
-
style: styles.navButton,
|
|
284
|
-
children: t("common.actions.back") || "Back"
|
|
285
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
286
|
-
variant: "primary",
|
|
287
|
-
onPress: nextStep,
|
|
288
|
-
disabled: !isTypeStepValid(),
|
|
289
|
-
accessibilityLabel: "Continue to next step",
|
|
290
|
-
iconPosition: "right",
|
|
291
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
292
|
-
name: "arrow-forward",
|
|
293
|
-
size: 16,
|
|
294
|
-
color: colors.primaryForeground
|
|
295
|
-
}),
|
|
296
|
-
style: styles.navButton,
|
|
297
|
-
children: t("common.actions.next") || "Next"
|
|
298
|
-
})]
|
|
299
|
-
})]
|
|
300
|
-
});
|
|
301
|
-
const renderDetailsStep = () => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Animated.View, {
|
|
302
|
-
style: [styles.stepContainer, {
|
|
303
|
-
opacity: fadeAnim,
|
|
304
|
-
transform: [{
|
|
305
|
-
translateX: slideAnim
|
|
306
|
-
}]
|
|
307
|
-
}],
|
|
308
|
-
children: [renderStepHeader(t("feedback.details.title") || "Tell us more", t("feedback.details.subtitle") || "Provide details about your feedback"), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
309
|
-
className: "w-full gap-space-16",
|
|
310
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_textField.TextField, {
|
|
311
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_textField.TextFieldInput, {
|
|
312
|
-
floatingLabel: true,
|
|
313
|
-
label: t("feedback.fields.title.label") || "Title",
|
|
314
|
-
value: feedbackData.title,
|
|
315
|
-
onChangeText: text => {
|
|
316
|
-
updateField("title", text);
|
|
317
|
-
setErrorMessage("");
|
|
318
|
-
},
|
|
319
|
-
placeholder: t("feedback.fields.title.placeholder") || "Brief summary of your feedback",
|
|
320
|
-
testID: "feedback-title-input",
|
|
321
|
-
accessibilityLabel: "Feedback title",
|
|
322
|
-
accessibilityHint: "Enter a brief summary of your feedback"
|
|
323
|
-
})
|
|
324
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_textField.TextField, {
|
|
325
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_textField.TextFieldInput, {
|
|
326
|
-
floatingLabel: true,
|
|
327
|
-
multiline: true,
|
|
328
|
-
numberOfLines: 6,
|
|
329
|
-
label: t("feedback.fields.description.label") || "Description",
|
|
330
|
-
value: feedbackData.description,
|
|
331
|
-
onChangeText: text => {
|
|
332
|
-
updateField("description", text);
|
|
333
|
-
setErrorMessage("");
|
|
334
|
-
},
|
|
335
|
-
placeholder: t("feedback.fields.description.placeholder") || "Please provide detailed information...",
|
|
336
|
-
testID: "feedback-description-input",
|
|
337
|
-
accessibilityLabel: "Feedback description",
|
|
338
|
-
accessibilityHint: "Provide detailed information about your feedback"
|
|
339
|
-
})
|
|
340
|
-
})]
|
|
341
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
342
|
-
className: "w-full mt-space-24",
|
|
343
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
344
|
-
className: "text-caption font-caption text-text-secondary mb-space-8",
|
|
345
|
-
children: t("feedback.priority.label") || "Priority Level"
|
|
346
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
347
|
-
className: "w-full",
|
|
348
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListGroup, {
|
|
349
|
-
children: priorityData.map(p => /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
350
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
351
|
-
name: PRIORITY_ICON_GLYPH[p.id],
|
|
352
|
-
color: priorityColor(p.id)
|
|
353
|
-
}),
|
|
354
|
-
title: p.label,
|
|
355
|
-
onPress: () => updateField("priority", p.id),
|
|
356
|
-
showChevron: false
|
|
357
|
-
}, p.id))
|
|
358
|
-
})
|
|
359
|
-
})]
|
|
360
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
361
|
-
className: "flex-row gap-space-8 mt-space-24 w-full",
|
|
362
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
363
|
-
variant: "secondary",
|
|
364
|
-
onPress: prevStep,
|
|
365
|
-
accessibilityLabel: "Go back",
|
|
366
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
367
|
-
name: "arrow-back",
|
|
368
|
-
size: 16,
|
|
369
|
-
color: colors.text
|
|
370
|
-
}),
|
|
371
|
-
style: styles.navButton,
|
|
372
|
-
children: t("common.actions.back") || "Back"
|
|
373
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
374
|
-
variant: "primary",
|
|
375
|
-
onPress: nextStep,
|
|
376
|
-
disabled: !isDetailsStepValid(),
|
|
377
|
-
accessibilityLabel: "Continue to next step",
|
|
378
|
-
iconPosition: "right",
|
|
379
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
380
|
-
name: "arrow-forward",
|
|
381
|
-
size: 16,
|
|
382
|
-
color: colors.primaryForeground
|
|
383
|
-
}),
|
|
384
|
-
style: styles.navButton,
|
|
385
|
-
children: t("common.actions.next") || "Next"
|
|
386
|
-
})]
|
|
387
|
-
})]
|
|
388
|
-
});
|
|
389
|
-
const renderContactStep = () => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Animated.View, {
|
|
390
|
-
style: [styles.stepContainer, {
|
|
391
|
-
opacity: fadeAnim,
|
|
392
|
-
transform: [{
|
|
393
|
-
translateX: slideAnim
|
|
394
|
-
}]
|
|
395
|
-
}],
|
|
396
|
-
children: [renderStepHeader(t("feedback.contact.title") || "Contact Information", t("feedback.contact.subtitle") || "Help us get back to you"), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
397
|
-
className: "w-full",
|
|
398
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_textField.TextField, {
|
|
399
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_textField.TextFieldInput, {
|
|
400
|
-
floatingLabel: true,
|
|
401
|
-
label: t("feedback.fields.email.label") || "Email Address",
|
|
402
|
-
value: feedbackData.contactEmail,
|
|
403
|
-
onChangeText: text => {
|
|
404
|
-
updateField("contactEmail", text);
|
|
405
|
-
setErrorMessage("");
|
|
406
|
-
},
|
|
407
|
-
placeholder: user?.email || t("feedback.fields.email.placeholder") || "Enter your email address",
|
|
408
|
-
keyboardType: "email-address",
|
|
409
|
-
autoCapitalize: "none",
|
|
410
|
-
autoCorrect: false,
|
|
411
|
-
testID: "feedback-email-input",
|
|
412
|
-
accessibilityLabel: "Email address",
|
|
413
|
-
accessibilityHint: "Enter your email so we can respond"
|
|
414
|
-
})
|
|
415
|
-
})
|
|
416
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
417
|
-
className: "w-full mt-space-16",
|
|
418
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListGroup, {
|
|
419
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_settingsList.SettingsListItem, {
|
|
420
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SettingsIcon.SettingsIcon, {
|
|
421
|
-
name: "information",
|
|
422
|
-
color: colors.info
|
|
423
|
-
}),
|
|
424
|
-
title: t("feedback.contact.includeSystemInfo") || "Include system information to help us better understand your issue",
|
|
425
|
-
rightElement: /*#__PURE__*/(0, _jsxRuntime.jsx)(_switch.Switch, {
|
|
426
|
-
value: feedbackData.systemInfo,
|
|
427
|
-
onValueChange: value => updateField("systemInfo", value),
|
|
428
|
-
testID: "feedback-system-info-switch"
|
|
429
|
-
}),
|
|
430
|
-
showChevron: false
|
|
431
|
-
})
|
|
432
|
-
})
|
|
433
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
434
|
-
className: "flex-row gap-space-8 mt-space-24 w-full",
|
|
435
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
436
|
-
variant: "secondary",
|
|
437
|
-
onPress: prevStep,
|
|
438
|
-
accessibilityLabel: "Go back",
|
|
439
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
440
|
-
name: "arrow-back",
|
|
441
|
-
size: 16,
|
|
442
|
-
color: colors.text
|
|
443
|
-
}),
|
|
444
|
-
style: styles.navButton,
|
|
445
|
-
children: t("common.actions.back") || "Back"
|
|
446
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
447
|
-
variant: "primary",
|
|
448
|
-
onPress: nextStep,
|
|
449
|
-
disabled: !isContactStepValid(),
|
|
450
|
-
accessibilityLabel: "Continue to summary",
|
|
451
|
-
iconPosition: "right",
|
|
452
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
453
|
-
name: "arrow-forward",
|
|
454
|
-
size: 16,
|
|
455
|
-
color: colors.primaryForeground
|
|
456
|
-
}),
|
|
457
|
-
style: styles.navButton,
|
|
458
|
-
children: t("common.actions.next") || "Next"
|
|
459
|
-
})]
|
|
460
|
-
})]
|
|
461
|
-
});
|
|
462
|
-
const renderSummaryRow = (label, value) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
463
|
-
className: "flex-row gap-space-12",
|
|
464
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
465
|
-
className: "text-body font-body text-text-secondary",
|
|
466
|
-
style: styles.summaryLabel,
|
|
467
|
-
children: label
|
|
468
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
469
|
-
className: "text-body font-body text-text flex-1",
|
|
470
|
-
children: value
|
|
471
|
-
})]
|
|
472
|
-
});
|
|
473
|
-
const renderSummaryStep = () => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Animated.View, {
|
|
474
|
-
style: [styles.stepContainer, {
|
|
475
|
-
opacity: fadeAnim,
|
|
476
|
-
transform: [{
|
|
477
|
-
translateX: slideAnim
|
|
478
|
-
}]
|
|
479
|
-
}],
|
|
480
|
-
children: [renderStepHeader(t("feedback.summary.title") || "Summary", t("feedback.summary.subtitle") || "Please review your feedback before submitting"), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
481
|
-
className: "w-full gap-space-12 p-space-16 rounded-radius-20 bg-fill mb-space-24",
|
|
482
|
-
children: [renderSummaryRow(t("feedback.summary.type") || "Type:", _constants.FEEDBACK_TYPES.find(ft => ft.id === feedbackData.type)?.label), renderSummaryRow(t("feedback.summary.category") || "Category:", feedbackData.category), renderSummaryRow(t("feedback.summary.priority") || "Priority:", _constants.PRIORITY_LEVELS.find(p => p.id === feedbackData.priority)?.label), renderSummaryRow(t("feedback.summary.titleField") || "Title:", feedbackData.title), renderSummaryRow(t("feedback.summary.contact") || "Contact:", feedbackData.contactEmail || user?.email)]
|
|
483
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
484
|
-
variant: "primary",
|
|
485
|
-
onPress: handleSubmitFeedback,
|
|
486
|
-
disabled: feedbackState.status === "submitting",
|
|
487
|
-
loading: feedbackState.status === "submitting",
|
|
488
|
-
testID: "submit-feedback-button",
|
|
489
|
-
accessibilityLabel: "Submit feedback",
|
|
490
|
-
iconPosition: "right",
|
|
491
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
492
|
-
name: "send",
|
|
493
|
-
size: 18,
|
|
494
|
-
color: colors.primaryForeground
|
|
495
|
-
}),
|
|
496
|
-
style: styles.fullWidthButton,
|
|
497
|
-
children: t("feedback.actions.submit") || "Submit Feedback"
|
|
498
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
499
|
-
className: "flex-row mt-space-16 w-full",
|
|
500
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
501
|
-
variant: "secondary",
|
|
502
|
-
onPress: prevStep,
|
|
503
|
-
accessibilityLabel: "Go back",
|
|
504
|
-
icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
505
|
-
name: "arrow-back",
|
|
506
|
-
size: 16,
|
|
507
|
-
color: colors.text
|
|
508
|
-
}),
|
|
509
|
-
style: styles.navButton,
|
|
510
|
-
children: t("common.actions.back") || "Back"
|
|
511
|
-
})
|
|
512
|
-
})]
|
|
513
|
-
});
|
|
514
|
-
const renderSuccessStep = () => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
|
|
515
|
-
style: [styles.stepContainer, {
|
|
516
|
-
opacity: fadeAnim,
|
|
517
|
-
transform: [{
|
|
518
|
-
translateX: slideAnim
|
|
519
|
-
}]
|
|
520
|
-
}],
|
|
521
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
522
|
-
className: "w-full items-center justify-center p-space-32 gap-space-16",
|
|
523
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
524
|
-
className: "p-space-24 rounded-radius-max bg-fill-secondary",
|
|
525
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Ionicons.default, {
|
|
526
|
-
name: "checkmark-circle",
|
|
527
|
-
size: 48,
|
|
528
|
-
color: colors.success
|
|
529
|
-
})
|
|
530
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.H2, {
|
|
531
|
-
className: "text-headerBold font-headerBold text-text text-center",
|
|
532
|
-
children: t("feedback.success.thanks") || "Thank You!"
|
|
533
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_typography.Text, {
|
|
534
|
-
className: "text-body font-body text-text-secondary text-center",
|
|
535
|
-
children: t("feedback.success.message") || "Your feedback has been submitted successfully. We'll review it and get back to you soon."
|
|
536
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
|
|
537
|
-
variant: "primary",
|
|
538
|
-
onPress: () => {
|
|
539
|
-
resetForm();
|
|
540
|
-
setCurrentStep(0);
|
|
541
|
-
},
|
|
542
|
-
accessibilityLabel: "Submit another feedback",
|
|
543
|
-
style: styles.fullWidthButton,
|
|
544
|
-
children: t("feedback.actions.submitAnother") || "Submit Another"
|
|
545
|
-
})]
|
|
546
|
-
})
|
|
547
|
-
});
|
|
548
|
-
const renderCurrentStep = () => {
|
|
549
|
-
if (feedbackState.status === "success") return renderSuccessStep();
|
|
550
|
-
switch (currentStep) {
|
|
551
|
-
case 0:
|
|
552
|
-
return renderTypeStep();
|
|
553
|
-
case 1:
|
|
554
|
-
return renderDetailsStep();
|
|
555
|
-
case 2:
|
|
556
|
-
return renderContactStep();
|
|
557
|
-
case 3:
|
|
558
|
-
return renderSummaryStep();
|
|
559
|
-
default:
|
|
560
|
-
return renderTypeStep();
|
|
561
|
-
}
|
|
562
|
-
};
|
|
563
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
564
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
565
|
-
className: "px-screen-margin pt-space-24 pb-space-32",
|
|
566
|
-
children: [feedbackState.status !== "success" ? renderProgress() : null, renderCurrentStep()]
|
|
567
|
-
})
|
|
568
|
-
});
|
|
569
|
-
};
|
|
570
|
-
const styles = _reactNative.StyleSheet.create({
|
|
571
|
-
stepContainer: {
|
|
572
|
-
flex: 1,
|
|
573
|
-
alignItems: "flex-start"
|
|
574
|
-
},
|
|
575
|
-
navButton: {
|
|
576
|
-
flex: 1
|
|
577
|
-
},
|
|
578
|
-
fullWidthButton: {
|
|
579
|
-
width: "100%"
|
|
580
|
-
},
|
|
581
|
-
summaryLabel: {
|
|
582
|
-
width: 90
|
|
583
|
-
},
|
|
584
|
-
progressDot: {
|
|
585
|
-
width: 8
|
|
586
|
-
},
|
|
587
|
-
progressDotActive: {
|
|
588
|
-
width: 24
|
|
589
|
-
}
|
|
590
|
-
});
|
|
591
|
-
var _default = exports.default = FeedbackScreen;
|
|
592
|
-
//# sourceMappingURL=FeedbackScreen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_Ionicons","_interopRequireDefault","require","_button","_settingsList","_switch","_textField","_theme","_toast","_typography","_core","_react","_reactNative","_SettingsIcon","_OxyContext","_useI18n","_useSurfaceHeader","_constants","_useFeedbackForm","_jsxRuntime","e","__esModule","default","STEP_FADE_OUT_MS","STEP_FADE_IN_MS","STEP_SLIDE_IN_MS","STEP_SLIDE_FROM","TOTAL_STEPS","LAST_STEP_INDEX","SUCCESS_RESET_DELAY_MS","TYPE_ICON_GLYPH","bug","feature","general","support","PRIORITY_ICON_GLYPH","low","medium","high","critical","FeedbackScreen","goBack","onClose","theme","user","oxyServices","useOxy","normalizedTheme","normalizeTheme","bloomTheme","useTheme","colors","t","useI18n","useSurfaceHeader","title","feedbackData","feedbackState","setFeedbackState","updateField","resetForm","useFeedbackForm","currentStep","setCurrentStep","useState","setErrorMessage","fadeAnim","useRef","Animated","Value","current","slideAnim","typeColor","useCallback","id","negative","info","success","warning","primary","priorityColor","animateTransition","nextStep","timing","toValue","duration","useNativeDriver","Platform","OS","start","setValue","parallel","prevStep","isTypeStepValid","Boolean","type","category","isDetailsStepValid","trim","description","isContactStepValid","contactEmail","email","handleSubmitFeedback","toast","error","status","message","feedbackPayload","priority","systemInfo","platform","version","Version","toString","appVersion","packageInfo","userId","username","timestamp","Date","toISOString","undefined","submitFeedback","setTimeout","Error","feedbackTypeData","useMemo","FEEDBACK_TYPES","map","isSelected","categoryData","CATEGORIES","cat","name","priorityData","PRIORITY_LEVELS","p","renderProgress","jsx","View","className","accessibilityRole","accessibilityLabel","children","Array","from","length","_","index","style","styles","progressDotActive","progressDot","renderStepHeader","subtitle","jsxs","H2","Text","renderTypeStep","stepContainer","opacity","transform","translateX","SettingsListGroup","SettingsListItem","icon","SettingsIcon","color","label","onPress","showChevron","textSecondary","Button","variant","size","text","navButton","disabled","iconPosition","primaryForeground","renderDetailsStep","TextField","TextFieldInput","floatingLabel","value","onChangeText","placeholder","testID","accessibilityHint","multiline","numberOfLines","renderContactStep","keyboardType","autoCapitalize","autoCorrect","rightElement","Switch","onValueChange","renderSummaryRow","summaryLabel","renderSummaryStep","find","ft","loading","fullWidthButton","renderSuccessStep","renderCurrentStep","Fragment","StyleSheet","create","flex","alignItems","width","_default","exports"],"sourceRoot":"../../../../src","sources":["ui/screens/FeedbackScreen.tsx"],"mappings":"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","ignoreList":[]}
|