@bifold/core 1.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/bin/bifold +5 -0
- package/lib/commonjs/App.js +69 -0
- package/lib/commonjs/App.js.map +1 -0
- package/lib/commonjs/animated-components.js +26 -0
- package/lib/commonjs/animated-components.js.map +1 -0
- package/lib/commonjs/assets/fonts/MaterialIcons.ttf +0 -0
- package/lib/commonjs/assets/icons/large-arrow.svg +5 -0
- package/lib/commonjs/assets/icons/pencil.svg +15 -0
- package/lib/commonjs/assets/icons/trash.svg +31 -0
- package/lib/commonjs/assets/img/Artwork_1024x1024.png +0 -0
- package/lib/commonjs/assets/img/HistoryCardAcceptedIcon.svg +4 -0
- package/lib/commonjs/assets/img/HistoryCardExpiredIcon.svg +4 -0
- package/lib/commonjs/assets/img/HistoryCardRevokedIcon.svg +4 -0
- package/lib/commonjs/assets/img/HistoryInformationSentIcon.svg +4 -0
- package/lib/commonjs/assets/img/HistoryPinUpdatedIcon.svg +4 -0
- package/lib/commonjs/assets/img/IconChevronRight.svg +5 -0
- package/lib/commonjs/assets/img/activity-indicator-circle.svg +90 -0
- package/lib/commonjs/assets/img/app-lockout.svg +1 -0
- package/lib/commonjs/assets/img/biometrics.svg +74 -0
- package/lib/commonjs/assets/img/chat-loading.svg +1 -0
- package/lib/commonjs/assets/img/check-in-circle.svg +18 -0
- package/lib/commonjs/assets/img/connection-pending.svg +112 -0
- package/lib/commonjs/assets/img/contact-book.svg +21 -0
- package/lib/commonjs/assets/img/credential-card.svg +18 -0
- package/lib/commonjs/assets/img/credential-declined.svg +28 -0
- package/lib/commonjs/assets/img/credential-in-hand.svg +48 -0
- package/lib/commonjs/assets/img/credential-list.svg +60 -0
- package/lib/commonjs/assets/img/credential-pending.svg +96 -0
- package/lib/commonjs/assets/img/credential-success.svg +48 -0
- package/lib/commonjs/assets/img/delete-notification.svg +1 -0
- package/lib/commonjs/assets/img/empty-wallet.svg +23 -0
- package/lib/commonjs/assets/img/error-filled.svg +12 -0
- package/lib/commonjs/assets/img/exclamation-mark.svg +17 -0
- package/lib/commonjs/assets/img/home-center-img.svg +71 -0
- package/lib/commonjs/assets/img/icon-credential-offer-dark.svg +7 -0
- package/lib/commonjs/assets/img/icon-credential-offer-light.svg +7 -0
- package/lib/commonjs/assets/img/icon-info-recieved-dark.svg +8 -0
- package/lib/commonjs/assets/img/icon-info-recieved-light.svg +8 -0
- package/lib/commonjs/assets/img/icon-info-sent-dark.svg +8 -0
- package/lib/commonjs/assets/img/icon-info-sent-light.svg +8 -0
- package/lib/commonjs/assets/img/icon-proof-request-dark.svg +11 -0
- package/lib/commonjs/assets/img/icon-proof-request-light.svg +11 -0
- package/lib/commonjs/assets/img/information-received.svg +1 -0
- package/lib/commonjs/assets/img/logo-large.png +0 -0
- package/lib/commonjs/assets/img/logo-large@2x.png +0 -0
- package/lib/commonjs/assets/img/logo-large@3x.png +0 -0
- package/lib/commonjs/assets/img/logo.svg +15 -0
- package/lib/commonjs/assets/img/message-text-icon-outline.svg +1 -0
- package/lib/commonjs/assets/img/message-text-icon.svg +1 -0
- package/lib/commonjs/assets/img/no_information_shared.svg +36 -0
- package/lib/commonjs/assets/img/preface.svg +15 -0
- package/lib/commonjs/assets/img/proof-declined.svg +66 -0
- package/lib/commonjs/assets/img/proof-pending.svg +61 -0
- package/lib/commonjs/assets/img/proof-success.svg +72 -0
- package/lib/commonjs/assets/img/push-notifications.svg +1 -0
- package/lib/commonjs/assets/img/qrcode-scan-icon.svg +1 -0
- package/lib/commonjs/assets/img/scan-share.svg +102 -0
- package/lib/commonjs/assets/img/secure-check.svg +4 -0
- package/lib/commonjs/assets/img/secure-image.svg +64 -0
- package/lib/commonjs/assets/img/update-available.svg +26 -0
- package/lib/commonjs/assets/img/verifier-request-declined.svg +34 -0
- package/lib/commonjs/assets/img/wallet-back.svg +20 -0
- package/lib/commonjs/assets/img/wallet-front.svg +32 -0
- package/lib/commonjs/assets/img/wallet-icon-outline.svg +1 -0
- package/lib/commonjs/assets/img/wallet-icon.svg +1 -0
- package/lib/commonjs/assets/img/wallet.svg +43 -0
- package/lib/commonjs/assets/oca-bundles.json +174 -0
- package/lib/commonjs/components/animated/ButtonLoading.js +46 -0
- package/lib/commonjs/components/animated/ButtonLoading.js.map +1 -0
- package/lib/commonjs/components/animated/ConnectionLoading.js +63 -0
- package/lib/commonjs/components/animated/ConnectionLoading.js.map +1 -0
- package/lib/commonjs/components/animated/CredentialAdded.js +88 -0
- package/lib/commonjs/components/animated/CredentialAdded.js.map +1 -0
- package/lib/commonjs/components/animated/CredentialPending.js +76 -0
- package/lib/commonjs/components/animated/CredentialPending.js.map +1 -0
- package/lib/commonjs/components/animated/LoadingIndicator.js +64 -0
- package/lib/commonjs/components/animated/LoadingIndicator.js.map +1 -0
- package/lib/commonjs/components/animated/PresentationLoading.js +62 -0
- package/lib/commonjs/components/animated/PresentationLoading.js.map +1 -0
- package/lib/commonjs/components/animated/RecordLoading.js +107 -0
- package/lib/commonjs/components/animated/RecordLoading.js.map +1 -0
- package/lib/commonjs/components/animated/SendingProof.js +63 -0
- package/lib/commonjs/components/animated/SendingProof.js.map +1 -0
- package/lib/commonjs/components/animated/SentProof.js +83 -0
- package/lib/commonjs/components/animated/SentProof.js.map +1 -0
- package/lib/commonjs/components/buttons/Button-api.js +40 -0
- package/lib/commonjs/components/buttons/Button-api.js.map +1 -0
- package/lib/commonjs/components/buttons/Button.js +103 -0
- package/lib/commonjs/components/buttons/Button.js.map +1 -0
- package/lib/commonjs/components/buttons/HeaderHome.js +35 -0
- package/lib/commonjs/components/buttons/HeaderHome.js.map +1 -0
- package/lib/commonjs/components/buttons/IconButton.js +75 -0
- package/lib/commonjs/components/buttons/IconButton.js.map +1 -0
- package/lib/commonjs/components/buttons/InfoIcon.js +37 -0
- package/lib/commonjs/components/buttons/InfoIcon.js.map +1 -0
- package/lib/commonjs/components/buttons/SettingsMenu.js +32 -0
- package/lib/commonjs/components/buttons/SettingsMenu.js.map +1 -0
- package/lib/commonjs/components/buttons/ToggleButton.js +86 -0
- package/lib/commonjs/components/buttons/ToggleButton.js.map +1 -0
- package/lib/commonjs/components/buttons/index.js +13 -0
- package/lib/commonjs/components/buttons/index.js.map +1 -0
- package/lib/commonjs/components/chat/ActionSlider.js +109 -0
- package/lib/commonjs/components/chat/ActionSlider.js.map +1 -0
- package/lib/commonjs/components/chat/ChatActions.js +29 -0
- package/lib/commonjs/components/chat/ChatActions.js.map +1 -0
- package/lib/commonjs/components/chat/ChatBubble.js +32 -0
- package/lib/commonjs/components/chat/ChatBubble.js.map +1 -0
- package/lib/commonjs/components/chat/ChatEvent.js +35 -0
- package/lib/commonjs/components/chat/ChatEvent.js.map +1 -0
- package/lib/commonjs/components/chat/ChatMessage.js +159 -0
- package/lib/commonjs/components/chat/ChatMessage.js.map +1 -0
- package/lib/commonjs/components/chat/MessageInput.js +52 -0
- package/lib/commonjs/components/chat/MessageInput.js.map +1 -0
- package/lib/commonjs/components/chat/index.js +32 -0
- package/lib/commonjs/components/chat/index.js.map +1 -0
- package/lib/commonjs/components/index.js +13 -0
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/components/inputs/BulletPoint.js +47 -0
- package/lib/commonjs/components/inputs/BulletPoint.js.map +1 -0
- package/lib/commonjs/components/inputs/CheckBoxRow.js +66 -0
- package/lib/commonjs/components/inputs/CheckBoxRow.js.map +1 -0
- package/lib/commonjs/components/inputs/InlineErrorText.js +60 -0
- package/lib/commonjs/components/inputs/InlineErrorText.js.map +1 -0
- package/lib/commonjs/components/inputs/LimitedTextInput.js +70 -0
- package/lib/commonjs/components/inputs/LimitedTextInput.js.map +1 -0
- package/lib/commonjs/components/inputs/PINInput.js +137 -0
- package/lib/commonjs/components/inputs/PINInput.js.map +1 -0
- package/lib/commonjs/components/inputs/SingleSelectBlock.js +58 -0
- package/lib/commonjs/components/inputs/SingleSelectBlock.js.map +1 -0
- package/lib/commonjs/components/listItems/ContactCredentialListItem.js +79 -0
- package/lib/commonjs/components/listItems/ContactCredentialListItem.js.map +1 -0
- package/lib/commonjs/components/listItems/ContactListItem.js +125 -0
- package/lib/commonjs/components/listItems/ContactListItem.js.map +1 -0
- package/lib/commonjs/components/listItems/NotificationListItem.js +471 -0
- package/lib/commonjs/components/listItems/NotificationListItem.js.map +1 -0
- package/lib/commonjs/components/misc/ActivityLogLink.js +44 -0
- package/lib/commonjs/components/misc/ActivityLogLink.js.map +1 -0
- package/lib/commonjs/components/misc/AvatarView.js +39 -0
- package/lib/commonjs/components/misc/AvatarView.js.map +1 -0
- package/lib/commonjs/components/misc/CardWatermark.js +56 -0
- package/lib/commonjs/components/misc/CardWatermark.js.map +1 -0
- package/lib/commonjs/components/misc/ConnectionAlert.js +117 -0
- package/lib/commonjs/components/misc/ConnectionAlert.js.map +1 -0
- package/lib/commonjs/components/misc/ConnectionImage.js +49 -0
- package/lib/commonjs/components/misc/ConnectionImage.js.map +1 -0
- package/lib/commonjs/components/misc/ContentGradient.js +56 -0
- package/lib/commonjs/components/misc/ContentGradient.js.map +1 -0
- package/lib/commonjs/components/misc/CredentialCard.js +133 -0
- package/lib/commonjs/components/misc/CredentialCard.js.map +1 -0
- package/lib/commonjs/components/misc/CredentialCard10.js +271 -0
- package/lib/commonjs/components/misc/CredentialCard10.js.map +1 -0
- package/lib/commonjs/components/misc/CredentialCard11.js +569 -0
- package/lib/commonjs/components/misc/CredentialCard11.js.map +1 -0
- package/lib/commonjs/components/misc/CredentialCard11ActionFooter.js +59 -0
- package/lib/commonjs/components/misc/CredentialCard11ActionFooter.js.map +1 -0
- package/lib/commonjs/components/misc/CredentialCard11Issuer.js +62 -0
- package/lib/commonjs/components/misc/CredentialCard11Issuer.js.map +1 -0
- package/lib/commonjs/components/misc/CredentialCard11Logo.js +56 -0
- package/lib/commonjs/components/misc/CredentialCard11Logo.js.map +1 -0
- package/lib/commonjs/components/misc/EmptyList.js +42 -0
- package/lib/commonjs/components/misc/EmptyList.js.map +1 -0
- package/lib/commonjs/components/misc/EmptyListContacts.js +72 -0
- package/lib/commonjs/components/misc/EmptyListContacts.js.map +1 -0
- package/lib/commonjs/components/misc/InfoBox.js +265 -0
- package/lib/commonjs/components/misc/InfoBox.js.map +1 -0
- package/lib/commonjs/components/misc/NoNewUpdates.js +44 -0
- package/lib/commonjs/components/misc/NoNewUpdates.js.map +1 -0
- package/lib/commonjs/components/misc/PINCreateHeader.js +31 -0
- package/lib/commonjs/components/misc/PINCreateHeader.js.map +1 -0
- package/lib/commonjs/components/misc/Pagination.js +86 -0
- package/lib/commonjs/components/misc/Pagination.js.map +1 -0
- package/lib/commonjs/components/misc/QRRenderer.js +63 -0
- package/lib/commonjs/components/misc/QRRenderer.js.map +1 -0
- package/lib/commonjs/components/misc/QRScanner.js +405 -0
- package/lib/commonjs/components/misc/QRScanner.js.map +1 -0
- package/lib/commonjs/components/misc/QRScannerTorch.js +80 -0
- package/lib/commonjs/components/misc/QRScannerTorch.js.map +1 -0
- package/lib/commonjs/components/misc/ScanCamera.js +86 -0
- package/lib/commonjs/components/misc/ScanCamera.js.map +1 -0
- package/lib/commonjs/components/misc/ScanTab.js +53 -0
- package/lib/commonjs/components/misc/ScanTab.js.map +1 -0
- package/lib/commonjs/components/misc/SharedProofData.js +94 -0
- package/lib/commonjs/components/misc/SharedProofData.js.map +1 -0
- package/lib/commonjs/components/misc/UnorderedList.js +41 -0
- package/lib/commonjs/components/misc/UnorderedList.js.map +1 -0
- package/lib/commonjs/components/misc/VerifierCredentialCard.js +341 -0
- package/lib/commonjs/components/misc/VerifierCredentialCard.js.map +1 -0
- package/lib/commonjs/components/misc/index.js +14 -0
- package/lib/commonjs/components/misc/index.js.map +1 -0
- package/lib/commonjs/components/modals/AlertModal.js +44 -0
- package/lib/commonjs/components/modals/AlertModal.js.map +1 -0
- package/lib/commonjs/components/modals/AppGuideModal.js +137 -0
- package/lib/commonjs/components/modals/AppGuideModal.js.map +1 -0
- package/lib/commonjs/components/modals/CameraDisclosureModal.js +130 -0
- package/lib/commonjs/components/modals/CameraDisclosureModal.js.map +1 -0
- package/lib/commonjs/components/modals/CommonRemoveModal.js +372 -0
- package/lib/commonjs/components/modals/CommonRemoveModal.js.map +1 -0
- package/lib/commonjs/components/modals/DismissiblePopupModal.js +171 -0
- package/lib/commonjs/components/modals/DismissiblePopupModal.js.map +1 -0
- package/lib/commonjs/components/modals/ErrorModal.js +106 -0
- package/lib/commonjs/components/modals/ErrorModal.js.map +1 -0
- package/lib/commonjs/components/modals/ImageModal.js +91 -0
- package/lib/commonjs/components/modals/ImageModal.js.map +1 -0
- package/lib/commonjs/components/modals/NetInfoModal.js +31 -0
- package/lib/commonjs/components/modals/NetInfoModal.js.map +1 -0
- package/lib/commonjs/components/modals/NotificationModal.js +121 -0
- package/lib/commonjs/components/modals/NotificationModal.js.map +1 -0
- package/lib/commonjs/components/modals/PopupModal.js +49 -0
- package/lib/commonjs/components/modals/PopupModal.js.map +1 -0
- package/lib/commonjs/components/modals/ProofCancelModal.js +91 -0
- package/lib/commonjs/components/modals/ProofCancelModal.js.map +1 -0
- package/lib/commonjs/components/modals/SafeAreaModal.js +18 -0
- package/lib/commonjs/components/modals/SafeAreaModal.js.map +1 -0
- package/lib/commonjs/components/network/NetInfo.js +43 -0
- package/lib/commonjs/components/network/NetInfo.js.map +1 -0
- package/lib/commonjs/components/record/Record.js +93 -0
- package/lib/commonjs/components/record/Record.js.map +1 -0
- package/lib/commonjs/components/record/RecordBinaryField.js +60 -0
- package/lib/commonjs/components/record/RecordBinaryField.js.map +1 -0
- package/lib/commonjs/components/record/RecordDateIntField.js +67 -0
- package/lib/commonjs/components/record/RecordDateIntField.js.map +1 -0
- package/lib/commonjs/components/record/RecordField.js +142 -0
- package/lib/commonjs/components/record/RecordField.js.map +1 -0
- package/lib/commonjs/components/record/RecordFooter.js +28 -0
- package/lib/commonjs/components/record/RecordFooter.js.map +1 -0
- package/lib/commonjs/components/record/RecordHeader.js +27 -0
- package/lib/commonjs/components/record/RecordHeader.js.map +1 -0
- package/lib/commonjs/components/record/RecordRemove.js +71 -0
- package/lib/commonjs/components/record/RecordRemove.js.map +1 -0
- package/lib/commonjs/components/texts/HeaderTitle.js +27 -0
- package/lib/commonjs/components/texts/HeaderTitle.js.map +1 -0
- package/lib/commonjs/components/texts/HighlightTextBox.js +50 -0
- package/lib/commonjs/components/texts/HighlightTextBox.js.map +1 -0
- package/lib/commonjs/components/texts/InfoTextBox.js +117 -0
- package/lib/commonjs/components/texts/InfoTextBox.js.map +1 -0
- package/lib/commonjs/components/texts/Label.js +57 -0
- package/lib/commonjs/components/texts/Label.js.map +1 -0
- package/lib/commonjs/components/texts/Link.js +41 -0
- package/lib/commonjs/components/texts/Link.js.map +1 -0
- package/lib/commonjs/components/texts/Text.js +28 -0
- package/lib/commonjs/components/texts/Text.js.map +1 -0
- package/lib/commonjs/components/texts/ThemedText.js +35 -0
- package/lib/commonjs/components/texts/ThemedText.js.map +1 -0
- package/lib/commonjs/components/texts/Title.js +29 -0
- package/lib/commonjs/components/texts/Title.js.map +1 -0
- package/lib/commonjs/components/toast/BaseToast.js +143 -0
- package/lib/commonjs/components/toast/BaseToast.js.map +1 -0
- package/lib/commonjs/components/toast/ToastConfig.js +38 -0
- package/lib/commonjs/components/toast/ToastConfig.js.map +1 -0
- package/lib/commonjs/components/tour/AttachTourStep.js +66 -0
- package/lib/commonjs/components/tour/AttachTourStep.js.map +1 -0
- package/lib/commonjs/components/tour/CredentialOfferTourSteps.js +49 -0
- package/lib/commonjs/components/tour/CredentialOfferTourSteps.js.map +1 -0
- package/lib/commonjs/components/tour/CredentialsTourSteps.js +49 -0
- package/lib/commonjs/components/tour/CredentialsTourSteps.js.map +1 -0
- package/lib/commonjs/components/tour/HomeTourSteps.js +120 -0
- package/lib/commonjs/components/tour/HomeTourSteps.js.map +1 -0
- package/lib/commonjs/components/tour/ProofRequestTourSteps.js +49 -0
- package/lib/commonjs/components/tour/ProofRequestTourSteps.js.map +1 -0
- package/lib/commonjs/components/tour/SpotCutout.js +73 -0
- package/lib/commonjs/components/tour/SpotCutout.js.map +1 -0
- package/lib/commonjs/components/tour/TourBox.js +208 -0
- package/lib/commonjs/components/tour/TourBox.js.map +1 -0
- package/lib/commonjs/components/tour/TourOverlay.js +147 -0
- package/lib/commonjs/components/tour/TourOverlay.js.map +1 -0
- package/lib/commonjs/components/views/CredentialCardLogo.js +72 -0
- package/lib/commonjs/components/views/CredentialCardLogo.js.map +1 -0
- package/lib/commonjs/components/views/CredentialDetailPrimaryHeader.js +86 -0
- package/lib/commonjs/components/views/CredentialDetailPrimaryHeader.js.map +1 -0
- package/lib/commonjs/components/views/CredentialDetailSecondaryHeader.js +46 -0
- package/lib/commonjs/components/views/CredentialDetailSecondaryHeader.js.map +1 -0
- package/lib/commonjs/components/views/HomeFooterView.js +102 -0
- package/lib/commonjs/components/views/HomeFooterView.js.map +1 -0
- package/lib/commonjs/components/views/HomeHeaderView.js +16 -0
- package/lib/commonjs/components/views/HomeHeaderView.js.map +1 -0
- package/lib/commonjs/components/views/KeyboardView.js +40 -0
- package/lib/commonjs/components/views/KeyboardView.js.map +1 -0
- package/lib/commonjs/components/views/LoadingPlaceholder.js +162 -0
- package/lib/commonjs/components/views/LoadingPlaceholder.js.map +1 -0
- package/lib/commonjs/components/views/LoadingView.js +37 -0
- package/lib/commonjs/components/views/LoadingView.js.map +1 -0
- package/lib/commonjs/components/views/ModularView.js +41 -0
- package/lib/commonjs/components/views/ModularView.js.map +1 -0
- package/lib/commonjs/components/views/ProgressBar.js +63 -0
- package/lib/commonjs/components/views/ProgressBar.js.map +1 -0
- package/lib/commonjs/configs/ledgers/indy/index.js +12 -0
- package/lib/commonjs/configs/ledgers/indy/index.js.map +1 -0
- package/lib/commonjs/configs/ledgers/indy/ledgers.json +51 -0
- package/lib/commonjs/constants.js +101 -0
- package/lib/commonjs/constants.js.map +1 -0
- package/lib/commonjs/container-api.js +114 -0
- package/lib/commonjs/container-api.js.map +1 -0
- package/lib/commonjs/container-impl.js +232 -0
- package/lib/commonjs/container-impl.js.map +1 -0
- package/lib/commonjs/contexts/activity.js +157 -0
- package/lib/commonjs/contexts/activity.js.map +1 -0
- package/lib/commonjs/contexts/animated-components.js +13 -0
- package/lib/commonjs/contexts/animated-components.js.map +1 -0
- package/lib/commonjs/contexts/auth.js +149 -0
- package/lib/commonjs/contexts/auth.js.map +1 -0
- package/lib/commonjs/contexts/index.js +13 -0
- package/lib/commonjs/contexts/index.js.map +1 -0
- package/lib/commonjs/contexts/network.js +77 -0
- package/lib/commonjs/contexts/network.js.map +1 -0
- package/lib/commonjs/contexts/reducers/index.js +11 -0
- package/lib/commonjs/contexts/reducers/index.js.map +1 -0
- package/lib/commonjs/contexts/reducers/store.js +664 -0
- package/lib/commonjs/contexts/reducers/store.js.map +1 -0
- package/lib/commonjs/contexts/store.js +102 -0
- package/lib/commonjs/contexts/store.js.map +1 -0
- package/lib/commonjs/contexts/theme.js +13 -0
- package/lib/commonjs/contexts/theme.js.map +1 -0
- package/lib/commonjs/contexts/tour/tour-context.js +53 -0
- package/lib/commonjs/contexts/tour/tour-context.js.map +1 -0
- package/lib/commonjs/contexts/tour/tour-provider.js +94 -0
- package/lib/commonjs/contexts/tour/tour-provider.js.map +1 -0
- package/lib/commonjs/hooks/bundle-resolver.js +63 -0
- package/lib/commonjs/hooks/bundle-resolver.js.map +1 -0
- package/lib/commonjs/hooks/chat-messages.js +253 -0
- package/lib/commonjs/hooks/chat-messages.js.map +1 -0
- package/lib/commonjs/hooks/connections.js +40 -0
- package/lib/commonjs/hooks/connections.js.map +1 -0
- package/lib/commonjs/hooks/credential-card-styles.js +149 -0
- package/lib/commonjs/hooks/credential-card-styles.js.map +1 -0
- package/lib/commonjs/hooks/credentials.js +16 -0
- package/lib/commonjs/hooks/credentials.js.map +1 -0
- package/lib/commonjs/hooks/deep-links.js +57 -0
- package/lib/commonjs/hooks/deep-links.js.map +1 -0
- package/lib/commonjs/hooks/initialize-agent.js +135 -0
- package/lib/commonjs/hooks/initialize-agent.js.map +1 -0
- package/lib/commonjs/hooks/notifications.js +70 -0
- package/lib/commonjs/hooks/notifications.js.map +1 -0
- package/lib/commonjs/hooks/oob.js +24 -0
- package/lib/commonjs/hooks/oob.js.map +1 -0
- package/lib/commonjs/hooks/proof-request-templates.js +45 -0
- package/lib/commonjs/hooks/proof-request-templates.js.map +1 -0
- package/lib/commonjs/hooks/proofs.js +37 -0
- package/lib/commonjs/hooks/proofs.js.map +1 -0
- package/lib/commonjs/hooks/screen-capture.js +57 -0
- package/lib/commonjs/hooks/screen-capture.js.map +1 -0
- package/lib/commonjs/hooks/useOnboardingState.js +36 -0
- package/lib/commonjs/hooks/useOnboardingState.js.map +1 -0
- package/lib/commonjs/index.js +961 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/layout/ScreenLayout.js +48 -0
- package/lib/commonjs/layout/ScreenLayout.js.map +1 -0
- package/lib/commonjs/localization/en/index.js +929 -0
- package/lib/commonjs/localization/en/index.js.map +1 -0
- package/lib/commonjs/localization/fr/index.js +903 -0
- package/lib/commonjs/localization/fr/index.js.map +1 -0
- package/lib/commonjs/localization/index.js +70 -0
- package/lib/commonjs/localization/index.js.map +1 -0
- package/lib/commonjs/localization/pt-br/index.js +886 -0
- package/lib/commonjs/localization/pt-br/index.js.map +1 -0
- package/lib/commonjs/modules/history/context/historyManager.js +256 -0
- package/lib/commonjs/modules/history/context/historyManager.js.map +1 -0
- package/lib/commonjs/modules/history/index.js +6 -0
- package/lib/commonjs/modules/history/index.js.map +1 -0
- package/lib/commonjs/modules/history/navigation/HistoryStack.js +39 -0
- package/lib/commonjs/modules/history/navigation/HistoryStack.js.map +1 -0
- package/lib/commonjs/modules/history/services/queue.service.js +30 -0
- package/lib/commonjs/modules/history/services/queue.service.js.map +1 -0
- package/lib/commonjs/modules/history/types/index.js +38 -0
- package/lib/commonjs/modules/history/types/index.js.map +1 -0
- package/lib/commonjs/modules/history/ui/HistoryPage.js +128 -0
- package/lib/commonjs/modules/history/ui/HistoryPage.js.map +1 -0
- package/lib/commonjs/modules/history/ui/HistorySettings.js +176 -0
- package/lib/commonjs/modules/history/ui/HistorySettings.js.map +1 -0
- package/lib/commonjs/modules/history/ui/assets/img/HistoryCardAcceptedIcon.svg +4 -0
- package/lib/commonjs/modules/history/ui/assets/img/HistoryCardExpiredIcon.svg +4 -0
- package/lib/commonjs/modules/history/ui/assets/img/HistoryCardRevokedIcon.svg +4 -0
- package/lib/commonjs/modules/history/ui/assets/img/HistoryInformationSentIcon.svg +4 -0
- package/lib/commonjs/modules/history/ui/assets/img/HistoryPinUpdatedIcon.svg +4 -0
- package/lib/commonjs/modules/history/ui/assets/img/IconChevronRight.svg +3 -0
- package/lib/commonjs/modules/history/ui/components/BulletPoint.js +53 -0
- package/lib/commonjs/modules/history/ui/components/BulletPoint.js.map +1 -0
- package/lib/commonjs/modules/history/ui/components/HistoryListItem.js +276 -0
- package/lib/commonjs/modules/history/ui/components/HistoryListItem.js.map +1 -0
- package/lib/commonjs/modules/history/ui/components/HistoryMenu.js +32 -0
- package/lib/commonjs/modules/history/ui/components/HistoryMenu.js.map +1 -0
- package/lib/commonjs/modules/history/ui/components/SingleSelectBlock.js +66 -0
- package/lib/commonjs/modules/history/ui/components/SingleSelectBlock.js.map +1 -0
- package/lib/commonjs/modules/openid/components/CredentialRowCard.js +84 -0
- package/lib/commonjs/modules/openid/components/CredentialRowCard.js.map +1 -0
- package/lib/commonjs/modules/openid/components/OpenIDCredentialCard.js +234 -0
- package/lib/commonjs/modules/openid/components/OpenIDCredentialCard.js.map +1 -0
- package/lib/commonjs/modules/openid/context/OpenIDCredentialRecordProvider.js +229 -0
- package/lib/commonjs/modules/openid/context/OpenIDCredentialRecordProvider.js.map +1 -0
- package/lib/commonjs/modules/openid/display.js +364 -0
- package/lib/commonjs/modules/openid/display.js.map +1 -0
- package/lib/commonjs/modules/openid/displayProof.js +54 -0
- package/lib/commonjs/modules/openid/displayProof.js.map +1 -0
- package/lib/commonjs/modules/openid/hooks/openid.js +88 -0
- package/lib/commonjs/modules/openid/hooks/openid.js.map +1 -0
- package/lib/commonjs/modules/openid/metadata.js +38 -0
- package/lib/commonjs/modules/openid/metadata.js.map +1 -0
- package/lib/commonjs/modules/openid/offerResolve.js +189 -0
- package/lib/commonjs/modules/openid/offerResolve.js.map +1 -0
- package/lib/commonjs/modules/openid/resolverProof.js +246 -0
- package/lib/commonjs/modules/openid/resolverProof.js.map +1 -0
- package/lib/commonjs/modules/openid/screens/OpenIDCredentialDetails.js +215 -0
- package/lib/commonjs/modules/openid/screens/OpenIDCredentialDetails.js.map +1 -0
- package/lib/commonjs/modules/openid/screens/OpenIDCredentialOffer.js +178 -0
- package/lib/commonjs/modules/openid/screens/OpenIDCredentialOffer.js.map +1 -0
- package/lib/commonjs/modules/openid/screens/OpenIDProofPresentation.js +274 -0
- package/lib/commonjs/modules/openid/screens/OpenIDProofPresentation.js.map +1 -0
- package/lib/commonjs/modules/openid/types.js +13 -0
- package/lib/commonjs/modules/openid/types.js.map +1 -0
- package/lib/commonjs/modules/openid/utils/utils.js +134 -0
- package/lib/commonjs/modules/openid/utils/utils.js.map +1 -0
- package/lib/commonjs/navigators/ConnectStack.js +65 -0
- package/lib/commonjs/navigators/ConnectStack.js.map +1 -0
- package/lib/commonjs/navigators/ContactStack.js +103 -0
- package/lib/commonjs/navigators/ContactStack.js.map +1 -0
- package/lib/commonjs/navigators/CredentialStack.js +41 -0
- package/lib/commonjs/navigators/CredentialStack.js.map +1 -0
- package/lib/commonjs/navigators/DeliveryStack.js +77 -0
- package/lib/commonjs/navigators/DeliveryStack.js.map +1 -0
- package/lib/commonjs/navigators/HomeStack.js +42 -0
- package/lib/commonjs/navigators/HomeStack.js.map +1 -0
- package/lib/commonjs/navigators/MainStack.js +144 -0
- package/lib/commonjs/navigators/MainStack.js.map +1 -0
- package/lib/commonjs/navigators/NotificationStack.js +69 -0
- package/lib/commonjs/navigators/NotificationStack.js.map +1 -0
- package/lib/commonjs/navigators/OnboardingScreens.js +116 -0
- package/lib/commonjs/navigators/OnboardingScreens.js.map +1 -0
- package/lib/commonjs/navigators/OnboardingStack.js +144 -0
- package/lib/commonjs/navigators/OnboardingStack.js.map +1 -0
- package/lib/commonjs/navigators/ProofRequestStack.js +117 -0
- package/lib/commonjs/navigators/ProofRequestStack.js.map +1 -0
- package/lib/commonjs/navigators/RootStack.js +68 -0
- package/lib/commonjs/navigators/RootStack.js.map +1 -0
- package/lib/commonjs/navigators/SettingStack.js +155 -0
- package/lib/commonjs/navigators/SettingStack.js.map +1 -0
- package/lib/commonjs/navigators/TabStack.js +303 -0
- package/lib/commonjs/navigators/TabStack.js.map +1 -0
- package/lib/commonjs/navigators/defaultLayoutOptions.js +23 -0
- package/lib/commonjs/navigators/defaultLayoutOptions.js.map +1 -0
- package/lib/commonjs/navigators/defaultStackOptions.js +95 -0
- package/lib/commonjs/navigators/defaultStackOptions.js.map +1 -0
- package/lib/commonjs/navigators/index.js +91 -0
- package/lib/commonjs/navigators/index.js.map +1 -0
- package/lib/commonjs/onboarding.js +104 -0
- package/lib/commonjs/onboarding.js.map +1 -0
- package/lib/commonjs/screens/AttemptLockout.js +161 -0
- package/lib/commonjs/screens/AttemptLockout.js.map +1 -0
- package/lib/commonjs/screens/AutoLock.js +141 -0
- package/lib/commonjs/screens/AutoLock.js.map +1 -0
- package/lib/commonjs/screens/Chat.js +150 -0
- package/lib/commonjs/screens/Chat.js.map +1 -0
- package/lib/commonjs/screens/Connection.js +366 -0
- package/lib/commonjs/screens/Connection.js.map +1 -0
- package/lib/commonjs/screens/ContactDetails.js +309 -0
- package/lib/commonjs/screens/ContactDetails.js.map +1 -0
- package/lib/commonjs/screens/CredentialDetails.js +409 -0
- package/lib/commonjs/screens/CredentialDetails.js.map +1 -0
- package/lib/commonjs/screens/CredentialOffer.js +311 -0
- package/lib/commonjs/screens/CredentialOffer.js.map +1 -0
- package/lib/commonjs/screens/CredentialOfferAccept.js +173 -0
- package/lib/commonjs/screens/CredentialOfferAccept.js.map +1 -0
- package/lib/commonjs/screens/DataRetention.js +116 -0
- package/lib/commonjs/screens/DataRetention.js.map +1 -0
- package/lib/commonjs/screens/Developer.js +303 -0
- package/lib/commonjs/screens/Developer.js.map +1 -0
- package/lib/commonjs/screens/Home.js +156 -0
- package/lib/commonjs/screens/Home.js.map +1 -0
- package/lib/commonjs/screens/Language.js +117 -0
- package/lib/commonjs/screens/Language.js.map +1 -0
- package/lib/commonjs/screens/ListContacts.js +121 -0
- package/lib/commonjs/screens/ListContacts.js.map +1 -0
- package/lib/commonjs/screens/ListCredentials.js +130 -0
- package/lib/commonjs/screens/ListCredentials.js.map +1 -0
- package/lib/commonjs/screens/ListProofRequests.js +167 -0
- package/lib/commonjs/screens/ListProofRequests.js.map +1 -0
- package/lib/commonjs/screens/MobileVerifierLoading.js +116 -0
- package/lib/commonjs/screens/MobileVerifierLoading.js.map +1 -0
- package/lib/commonjs/screens/NameWallet.js +160 -0
- package/lib/commonjs/screens/NameWallet.js.map +1 -0
- package/lib/commonjs/screens/Onboarding.js +143 -0
- package/lib/commonjs/screens/Onboarding.js.map +1 -0
- package/lib/commonjs/screens/OnboardingPages.js +201 -0
- package/lib/commonjs/screens/OnboardingPages.js.map +1 -0
- package/lib/commonjs/screens/PINCreate.js +339 -0
- package/lib/commonjs/screens/PINCreate.js.map +1 -0
- package/lib/commonjs/screens/PINEnter.js +531 -0
- package/lib/commonjs/screens/PINEnter.js.map +1 -0
- package/lib/commonjs/screens/PINExplainer.js +99 -0
- package/lib/commonjs/screens/PINExplainer.js.map +1 -0
- package/lib/commonjs/screens/PasteUrl.js +142 -0
- package/lib/commonjs/screens/PasteUrl.js.map +1 -0
- package/lib/commonjs/screens/Preface.js +104 -0
- package/lib/commonjs/screens/Preface.js.map +1 -0
- package/lib/commonjs/screens/ProofChangeCredential.js +152 -0
- package/lib/commonjs/screens/ProofChangeCredential.js.map +1 -0
- package/lib/commonjs/screens/ProofDetails.js +333 -0
- package/lib/commonjs/screens/ProofDetails.js.map +1 -0
- package/lib/commonjs/screens/ProofRequest.js +686 -0
- package/lib/commonjs/screens/ProofRequest.js.map +1 -0
- package/lib/commonjs/screens/ProofRequestAccept.js +128 -0
- package/lib/commonjs/screens/ProofRequestAccept.js.map +1 -0
- package/lib/commonjs/screens/ProofRequestDetails.js +276 -0
- package/lib/commonjs/screens/ProofRequestDetails.js.map +1 -0
- package/lib/commonjs/screens/ProofRequestUsageHistory.js +164 -0
- package/lib/commonjs/screens/ProofRequestUsageHistory.js.map +1 -0
- package/lib/commonjs/screens/ProofRequesting.js +241 -0
- package/lib/commonjs/screens/ProofRequesting.js.map +1 -0
- package/lib/commonjs/screens/PushNotification.js +178 -0
- package/lib/commonjs/screens/PushNotification.js.map +1 -0
- package/lib/commonjs/screens/RenameContact.js +154 -0
- package/lib/commonjs/screens/RenameContact.js.map +1 -0
- package/lib/commonjs/screens/Scan.js +123 -0
- package/lib/commonjs/screens/Scan.js.map +1 -0
- package/lib/commonjs/screens/ScanHelp.js +58 -0
- package/lib/commonjs/screens/ScanHelp.js.map +1 -0
- package/lib/commonjs/screens/Settings.js +451 -0
- package/lib/commonjs/screens/Settings.js.map +1 -0
- package/lib/commonjs/screens/Splash.js +92 -0
- package/lib/commonjs/screens/Splash.js.map +1 -0
- package/lib/commonjs/screens/Terms.js +145 -0
- package/lib/commonjs/screens/Terms.js.map +1 -0
- package/lib/commonjs/screens/Tours.js +107 -0
- package/lib/commonjs/screens/Tours.js.map +1 -0
- package/lib/commonjs/screens/UpdateAvailable.js +128 -0
- package/lib/commonjs/screens/UpdateAvailable.js.map +1 -0
- package/lib/commonjs/screens/UseBiometry.js +315 -0
- package/lib/commonjs/screens/UseBiometry.js.map +1 -0
- package/lib/commonjs/screens/WhatAreContacts.js +78 -0
- package/lib/commonjs/screens/WhatAreContacts.js.map +1 -0
- package/lib/commonjs/services/keychain.js +171 -0
- package/lib/commonjs/services/keychain.js.map +1 -0
- package/lib/commonjs/services/logger.js +70 -0
- package/lib/commonjs/services/logger.js.map +1 -0
- package/lib/commonjs/services/storage.js +130 -0
- package/lib/commonjs/services/storage.js.map +1 -0
- package/lib/commonjs/theme.js +886 -0
- package/lib/commonjs/theme.js.map +1 -0
- package/lib/commonjs/types/attempt-lockout-config.js +2 -0
- package/lib/commonjs/types/attempt-lockout-config.js.map +1 -0
- package/lib/commonjs/types/attestation.js +14 -0
- package/lib/commonjs/types/attestation.js.map +1 -0
- package/lib/commonjs/types/chat.js +12 -0
- package/lib/commonjs/types/chat.js.map +1 -0
- package/lib/commonjs/types/config.js +6 -0
- package/lib/commonjs/types/config.js.map +1 -0
- package/lib/commonjs/types/contact-details.js +2 -0
- package/lib/commonjs/types/contact-details.js.map +1 -0
- package/lib/commonjs/types/credential-list-footer.js +2 -0
- package/lib/commonjs/types/credential-list-footer.js.map +1 -0
- package/lib/commonjs/types/credential-status.js +11 -0
- package/lib/commonjs/types/credential-status.js.map +1 -0
- package/lib/commonjs/types/credentials.js +6 -0
- package/lib/commonjs/types/credentials.js.map +1 -0
- package/lib/commonjs/types/decline.js +13 -0
- package/lib/commonjs/types/decline.js.map +1 -0
- package/lib/commonjs/types/error.js +32 -0
- package/lib/commonjs/types/error.js.map +1 -0
- package/lib/commonjs/types/fn.js +2 -0
- package/lib/commonjs/types/fn.js.map +1 -0
- package/lib/commonjs/types/genesis.js +2 -0
- package/lib/commonjs/types/genesis.js.map +1 -0
- package/lib/commonjs/types/index.js +11 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/commonjs/types/metadata.js +15 -0
- package/lib/commonjs/types/metadata.js.map +1 -0
- package/lib/commonjs/types/navigators.js +77 -0
- package/lib/commonjs/types/navigators.js.map +1 -0
- package/lib/commonjs/types/notification.js +6 -0
- package/lib/commonjs/types/notification.js.map +1 -0
- package/lib/commonjs/types/permissions.js +6 -0
- package/lib/commonjs/types/permissions.js.map +1 -0
- package/lib/commonjs/types/proof-items.js +6 -0
- package/lib/commonjs/types/proof-items.js.map +1 -0
- package/lib/commonjs/types/react-i18next.d.js +4 -0
- package/lib/commonjs/types/react-i18next.d.js.map +1 -0
- package/lib/commonjs/types/remove.js +16 -0
- package/lib/commonjs/types/remove.js.map +1 -0
- package/lib/commonjs/types/security.js +18 -0
- package/lib/commonjs/types/security.js.map +1 -0
- package/lib/commonjs/types/settings.js +6 -0
- package/lib/commonjs/types/settings.js.map +1 -0
- package/lib/commonjs/types/state.js +2 -0
- package/lib/commonjs/types/state.js.map +1 -0
- package/lib/commonjs/types/tour.js +20 -0
- package/lib/commonjs/types/tour.js.map +1 -0
- package/lib/commonjs/types/version-check.js +6 -0
- package/lib/commonjs/types/version-check.js.map +1 -0
- package/lib/commonjs/utils/PINCreationValidation.js +86 -0
- package/lib/commonjs/utils/PINCreationValidation.js.map +1 -0
- package/lib/commonjs/utils/agent.js +93 -0
- package/lib/commonjs/utils/agent.js.map +1 -0
- package/lib/commonjs/utils/anonCredsProofRequestMapper.js +157 -0
- package/lib/commonjs/utils/anonCredsProofRequestMapper.js.map +1 -0
- package/lib/commonjs/utils/contacts.js +40 -0
- package/lib/commonjs/utils/contacts.js.map +1 -0
- package/lib/commonjs/utils/cred-def.js +37 -0
- package/lib/commonjs/utils/cred-def.js.map +1 -0
- package/lib/commonjs/utils/credential.js +41 -0
- package/lib/commonjs/utils/credential.js.map +1 -0
- package/lib/commonjs/utils/crypto.js +21 -0
- package/lib/commonjs/utils/crypto.js.map +1 -0
- package/lib/commonjs/utils/fileCache.js +126 -0
- package/lib/commonjs/utils/fileCache.js.map +1 -0
- package/lib/commonjs/utils/helpers.js +1165 -0
- package/lib/commonjs/utils/helpers.js.map +1 -0
- package/lib/commonjs/utils/luminance.js +43 -0
- package/lib/commonjs/utils/luminance.js.map +1 -0
- package/lib/commonjs/utils/migration.js +45 -0
- package/lib/commonjs/utils/migration.js.map +1 -0
- package/lib/commonjs/utils/network.js +56 -0
- package/lib/commonjs/utils/network.js.map +1 -0
- package/lib/commonjs/utils/oca.js +115 -0
- package/lib/commonjs/utils/oca.js.map +1 -0
- package/lib/commonjs/utils/parsers.js +84 -0
- package/lib/commonjs/utils/parsers.js.map +1 -0
- package/lib/commonjs/utils/proofBundle.js +182 -0
- package/lib/commonjs/utils/proofBundle.js.map +1 -0
- package/lib/commonjs/utils/schema.js +33 -0
- package/lib/commonjs/utils/schema.js.map +1 -0
- package/lib/commonjs/utils/testable.js +19 -0
- package/lib/commonjs/utils/testable.js.map +1 -0
- package/lib/module/App.js +60 -0
- package/lib/module/App.js.map +1 -0
- package/lib/module/animated-components.js +19 -0
- package/lib/module/animated-components.js.map +1 -0
- package/lib/module/assets/fonts/MaterialIcons.ttf +0 -0
- package/lib/module/assets/icons/large-arrow.svg +5 -0
- package/lib/module/assets/icons/pencil.svg +15 -0
- package/lib/module/assets/icons/trash.svg +31 -0
- package/lib/module/assets/img/Artwork_1024x1024.png +0 -0
- package/lib/module/assets/img/HistoryCardAcceptedIcon.svg +4 -0
- package/lib/module/assets/img/HistoryCardExpiredIcon.svg +4 -0
- package/lib/module/assets/img/HistoryCardRevokedIcon.svg +4 -0
- package/lib/module/assets/img/HistoryInformationSentIcon.svg +4 -0
- package/lib/module/assets/img/HistoryPinUpdatedIcon.svg +4 -0
- package/lib/module/assets/img/IconChevronRight.svg +5 -0
- package/lib/module/assets/img/activity-indicator-circle.svg +90 -0
- package/lib/module/assets/img/app-lockout.svg +1 -0
- package/lib/module/assets/img/biometrics.svg +74 -0
- package/lib/module/assets/img/chat-loading.svg +1 -0
- package/lib/module/assets/img/check-in-circle.svg +18 -0
- package/lib/module/assets/img/connection-pending.svg +112 -0
- package/lib/module/assets/img/contact-book.svg +21 -0
- package/lib/module/assets/img/credential-card.svg +18 -0
- package/lib/module/assets/img/credential-declined.svg +28 -0
- package/lib/module/assets/img/credential-in-hand.svg +48 -0
- package/lib/module/assets/img/credential-list.svg +60 -0
- package/lib/module/assets/img/credential-pending.svg +96 -0
- package/lib/module/assets/img/credential-success.svg +48 -0
- package/lib/module/assets/img/delete-notification.svg +1 -0
- package/lib/module/assets/img/empty-wallet.svg +23 -0
- package/lib/module/assets/img/error-filled.svg +12 -0
- package/lib/module/assets/img/exclamation-mark.svg +17 -0
- package/lib/module/assets/img/home-center-img.svg +71 -0
- package/lib/module/assets/img/icon-credential-offer-dark.svg +7 -0
- package/lib/module/assets/img/icon-credential-offer-light.svg +7 -0
- package/lib/module/assets/img/icon-info-recieved-dark.svg +8 -0
- package/lib/module/assets/img/icon-info-recieved-light.svg +8 -0
- package/lib/module/assets/img/icon-info-sent-dark.svg +8 -0
- package/lib/module/assets/img/icon-info-sent-light.svg +8 -0
- package/lib/module/assets/img/icon-proof-request-dark.svg +11 -0
- package/lib/module/assets/img/icon-proof-request-light.svg +11 -0
- package/lib/module/assets/img/information-received.svg +1 -0
- package/lib/module/assets/img/logo-large.png +0 -0
- package/lib/module/assets/img/logo-large@2x.png +0 -0
- package/lib/module/assets/img/logo-large@3x.png +0 -0
- package/lib/module/assets/img/logo.svg +15 -0
- package/lib/module/assets/img/message-text-icon-outline.svg +1 -0
- package/lib/module/assets/img/message-text-icon.svg +1 -0
- package/lib/module/assets/img/no_information_shared.svg +36 -0
- package/lib/module/assets/img/preface.svg +15 -0
- package/lib/module/assets/img/proof-declined.svg +66 -0
- package/lib/module/assets/img/proof-pending.svg +61 -0
- package/lib/module/assets/img/proof-success.svg +72 -0
- package/lib/module/assets/img/push-notifications.svg +1 -0
- package/lib/module/assets/img/qrcode-scan-icon.svg +1 -0
- package/lib/module/assets/img/scan-share.svg +102 -0
- package/lib/module/assets/img/secure-check.svg +4 -0
- package/lib/module/assets/img/secure-image.svg +64 -0
- package/lib/module/assets/img/update-available.svg +26 -0
- package/lib/module/assets/img/verifier-request-declined.svg +34 -0
- package/lib/module/assets/img/wallet-back.svg +20 -0
- package/lib/module/assets/img/wallet-front.svg +32 -0
- package/lib/module/assets/img/wallet-icon-outline.svg +1 -0
- package/lib/module/assets/img/wallet-icon.svg +1 -0
- package/lib/module/assets/img/wallet.svg +43 -0
- package/lib/module/assets/oca-bundles.json +174 -0
- package/lib/module/components/animated/ButtonLoading.js +37 -0
- package/lib/module/components/animated/ButtonLoading.js.map +1 -0
- package/lib/module/components/animated/ConnectionLoading.js +55 -0
- package/lib/module/components/animated/ConnectionLoading.js.map +1 -0
- package/lib/module/components/animated/CredentialAdded.js +80 -0
- package/lib/module/components/animated/CredentialAdded.js.map +1 -0
- package/lib/module/components/animated/CredentialPending.js +68 -0
- package/lib/module/components/animated/CredentialPending.js.map +1 -0
- package/lib/module/components/animated/LoadingIndicator.js +56 -0
- package/lib/module/components/animated/LoadingIndicator.js.map +1 -0
- package/lib/module/components/animated/PresentationLoading.js +54 -0
- package/lib/module/components/animated/PresentationLoading.js.map +1 -0
- package/lib/module/components/animated/RecordLoading.js +99 -0
- package/lib/module/components/animated/RecordLoading.js.map +1 -0
- package/lib/module/components/animated/SendingProof.js +55 -0
- package/lib/module/components/animated/SendingProof.js.map +1 -0
- package/lib/module/components/animated/SentProof.js +75 -0
- package/lib/module/components/animated/SentProof.js.map +1 -0
- package/lib/module/components/buttons/Button-api.js +34 -0
- package/lib/module/components/buttons/Button-api.js.map +1 -0
- package/lib/module/components/buttons/Button.js +89 -0
- package/lib/module/components/buttons/Button.js.map +1 -0
- package/lib/module/components/buttons/HeaderHome.js +26 -0
- package/lib/module/components/buttons/HeaderHome.js.map +1 -0
- package/lib/module/components/buttons/IconButton.js +68 -0
- package/lib/module/components/buttons/IconButton.js.map +1 -0
- package/lib/module/components/buttons/InfoIcon.js +28 -0
- package/lib/module/components/buttons/InfoIcon.js.map +1 -0
- package/lib/module/components/buttons/SettingsMenu.js +23 -0
- package/lib/module/components/buttons/SettingsMenu.js.map +1 -0
- package/lib/module/components/buttons/ToggleButton.js +77 -0
- package/lib/module/components/buttons/ToggleButton.js.map +1 -0
- package/lib/module/components/buttons/index.js +4 -0
- package/lib/module/components/buttons/index.js.map +1 -0
- package/lib/module/components/chat/ActionSlider.js +102 -0
- package/lib/module/components/chat/ActionSlider.js.map +1 -0
- package/lib/module/components/chat/ChatActions.js +21 -0
- package/lib/module/components/chat/ChatActions.js.map +1 -0
- package/lib/module/components/chat/ChatBubble.js +24 -0
- package/lib/module/components/chat/ChatBubble.js.map +1 -0
- package/lib/module/components/chat/ChatEvent.js +27 -0
- package/lib/module/components/chat/ChatEvent.js.map +1 -0
- package/lib/module/components/chat/ChatMessage.js +150 -0
- package/lib/module/components/chat/ChatMessage.js.map +1 -0
- package/lib/module/components/chat/MessageInput.js +42 -0
- package/lib/module/components/chat/MessageInput.js.map +1 -0
- package/lib/module/components/chat/index.js +4 -0
- package/lib/module/components/chat/index.js.map +1 -0
- package/lib/module/components/index.js +4 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/components/inputs/BulletPoint.js +38 -0
- package/lib/module/components/inputs/BulletPoint.js.map +1 -0
- package/lib/module/components/inputs/CheckBoxRow.js +59 -0
- package/lib/module/components/inputs/CheckBoxRow.js.map +1 -0
- package/lib/module/components/inputs/InlineErrorText.js +53 -0
- package/lib/module/components/inputs/InlineErrorText.js.map +1 -0
- package/lib/module/components/inputs/LimitedTextInput.js +62 -0
- package/lib/module/components/inputs/LimitedTextInput.js.map +1 -0
- package/lib/module/components/inputs/PINInput.js +128 -0
- package/lib/module/components/inputs/PINInput.js.map +1 -0
- package/lib/module/components/inputs/SingleSelectBlock.js +49 -0
- package/lib/module/components/inputs/SingleSelectBlock.js.map +1 -0
- package/lib/module/components/listItems/ContactCredentialListItem.js +73 -0
- package/lib/module/components/listItems/ContactCredentialListItem.js.map +1 -0
- package/lib/module/components/listItems/ContactListItem.js +117 -0
- package/lib/module/components/listItems/ContactListItem.js.map +1 -0
- package/lib/module/components/listItems/NotificationListItem.js +462 -0
- package/lib/module/components/listItems/NotificationListItem.js.map +1 -0
- package/lib/module/components/misc/ActivityLogLink.js +37 -0
- package/lib/module/components/misc/ActivityLogLink.js.map +1 -0
- package/lib/module/components/misc/AvatarView.js +32 -0
- package/lib/module/components/misc/AvatarView.js.map +1 -0
- package/lib/module/components/misc/CardWatermark.js +49 -0
- package/lib/module/components/misc/CardWatermark.js.map +1 -0
- package/lib/module/components/misc/ConnectionAlert.js +108 -0
- package/lib/module/components/misc/ConnectionAlert.js.map +1 -0
- package/lib/module/components/misc/ConnectionImage.js +42 -0
- package/lib/module/components/misc/ConnectionImage.js.map +1 -0
- package/lib/module/components/misc/ContentGradient.js +47 -0
- package/lib/module/components/misc/ContentGradient.js.map +1 -0
- package/lib/module/components/misc/CredentialCard.js +124 -0
- package/lib/module/components/misc/CredentialCard.js.map +1 -0
- package/lib/module/components/misc/CredentialCard10.js +262 -0
- package/lib/module/components/misc/CredentialCard10.js.map +1 -0
- package/lib/module/components/misc/CredentialCard11.js +560 -0
- package/lib/module/components/misc/CredentialCard11.js.map +1 -0
- package/lib/module/components/misc/CredentialCard11ActionFooter.js +52 -0
- package/lib/module/components/misc/CredentialCard11ActionFooter.js.map +1 -0
- package/lib/module/components/misc/CredentialCard11Issuer.js +55 -0
- package/lib/module/components/misc/CredentialCard11Issuer.js.map +1 -0
- package/lib/module/components/misc/CredentialCard11Logo.js +49 -0
- package/lib/module/components/misc/CredentialCard11Logo.js.map +1 -0
- package/lib/module/components/misc/EmptyList.js +35 -0
- package/lib/module/components/misc/EmptyList.js.map +1 -0
- package/lib/module/components/misc/EmptyListContacts.js +65 -0
- package/lib/module/components/misc/EmptyListContacts.js.map +1 -0
- package/lib/module/components/misc/InfoBox.js +255 -0
- package/lib/module/components/misc/InfoBox.js.map +1 -0
- package/lib/module/components/misc/NoNewUpdates.js +37 -0
- package/lib/module/components/misc/NoNewUpdates.js.map +1 -0
- package/lib/module/components/misc/PINCreateHeader.js +25 -0
- package/lib/module/components/misc/PINCreateHeader.js.map +1 -0
- package/lib/module/components/misc/Pagination.js +78 -0
- package/lib/module/components/misc/Pagination.js.map +1 -0
- package/lib/module/components/misc/QRRenderer.js +54 -0
- package/lib/module/components/misc/QRRenderer.js.map +1 -0
- package/lib/module/components/misc/QRScanner.js +396 -0
- package/lib/module/components/misc/QRScanner.js.map +1 -0
- package/lib/module/components/misc/QRScannerTorch.js +73 -0
- package/lib/module/components/misc/QRScannerTorch.js.map +1 -0
- package/lib/module/components/misc/ScanCamera.js +78 -0
- package/lib/module/components/misc/ScanCamera.js.map +1 -0
- package/lib/module/components/misc/ScanTab.js +46 -0
- package/lib/module/components/misc/ScanTab.js.map +1 -0
- package/lib/module/components/misc/SharedProofData.js +85 -0
- package/lib/module/components/misc/SharedProofData.js.map +1 -0
- package/lib/module/components/misc/UnorderedList.js +34 -0
- package/lib/module/components/misc/UnorderedList.js.map +1 -0
- package/lib/module/components/misc/VerifierCredentialCard.js +332 -0
- package/lib/module/components/misc/VerifierCredentialCard.js.map +1 -0
- package/lib/module/components/misc/index.js +3 -0
- package/lib/module/components/misc/index.js.map +1 -0
- package/lib/module/components/modals/AlertModal.js +37 -0
- package/lib/module/components/modals/AlertModal.js.map +1 -0
- package/lib/module/components/modals/AppGuideModal.js +128 -0
- package/lib/module/components/modals/AppGuideModal.js.map +1 -0
- package/lib/module/components/modals/CameraDisclosureModal.js +121 -0
- package/lib/module/components/modals/CameraDisclosureModal.js.map +1 -0
- package/lib/module/components/modals/CommonRemoveModal.js +363 -0
- package/lib/module/components/modals/CommonRemoveModal.js.map +1 -0
- package/lib/module/components/modals/DismissiblePopupModal.js +162 -0
- package/lib/module/components/modals/DismissiblePopupModal.js.map +1 -0
- package/lib/module/components/modals/ErrorModal.js +97 -0
- package/lib/module/components/modals/ErrorModal.js.map +1 -0
- package/lib/module/components/modals/ImageModal.js +84 -0
- package/lib/module/components/modals/ImageModal.js.map +1 -0
- package/lib/module/components/modals/NetInfoModal.js +22 -0
- package/lib/module/components/modals/NetInfoModal.js.map +1 -0
- package/lib/module/components/modals/NotificationModal.js +112 -0
- package/lib/module/components/modals/NotificationModal.js.map +1 -0
- package/lib/module/components/modals/PopupModal.js +42 -0
- package/lib/module/components/modals/PopupModal.js.map +1 -0
- package/lib/module/components/modals/ProofCancelModal.js +82 -0
- package/lib/module/components/modals/ProofCancelModal.js.map +1 -0
- package/lib/module/components/modals/SafeAreaModal.js +11 -0
- package/lib/module/components/modals/SafeAreaModal.js.map +1 -0
- package/lib/module/components/network/NetInfo.js +36 -0
- package/lib/module/components/network/NetInfo.js.map +1 -0
- package/lib/module/components/record/Record.js +84 -0
- package/lib/module/components/record/Record.js.map +1 -0
- package/lib/module/components/record/RecordBinaryField.js +51 -0
- package/lib/module/components/record/RecordBinaryField.js.map +1 -0
- package/lib/module/components/record/RecordDateIntField.js +59 -0
- package/lib/module/components/record/RecordDateIntField.js.map +1 -0
- package/lib/module/components/record/RecordField.js +134 -0
- package/lib/module/components/record/RecordField.js.map +1 -0
- package/lib/module/components/record/RecordFooter.js +21 -0
- package/lib/module/components/record/RecordFooter.js.map +1 -0
- package/lib/module/components/record/RecordHeader.js +20 -0
- package/lib/module/components/record/RecordHeader.js.map +1 -0
- package/lib/module/components/record/RecordRemove.js +64 -0
- package/lib/module/components/record/RecordRemove.js.map +1 -0
- package/lib/module/components/texts/HeaderTitle.js +20 -0
- package/lib/module/components/texts/HeaderTitle.js.map +1 -0
- package/lib/module/components/texts/HighlightTextBox.js +43 -0
- package/lib/module/components/texts/HighlightTextBox.js.map +1 -0
- package/lib/module/components/texts/InfoTextBox.js +110 -0
- package/lib/module/components/texts/InfoTextBox.js.map +1 -0
- package/lib/module/components/texts/Label.js +50 -0
- package/lib/module/components/texts/Label.js.map +1 -0
- package/lib/module/components/texts/Link.js +34 -0
- package/lib/module/components/texts/Link.js.map +1 -0
- package/lib/module/components/texts/Text.js +21 -0
- package/lib/module/components/texts/Text.js.map +1 -0
- package/lib/module/components/texts/ThemedText.js +28 -0
- package/lib/module/components/texts/ThemedText.js.map +1 -0
- package/lib/module/components/texts/Title.js +22 -0
- package/lib/module/components/texts/Title.js.map +1 -0
- package/lib/module/components/toast/BaseToast.js +136 -0
- package/lib/module/components/toast/BaseToast.js.map +1 -0
- package/lib/module/components/toast/ToastConfig.js +29 -0
- package/lib/module/components/toast/ToastConfig.js.map +1 -0
- package/lib/module/components/tour/AttachTourStep.js +58 -0
- package/lib/module/components/tour/AttachTourStep.js.map +1 -0
- package/lib/module/components/tour/CredentialOfferTourSteps.js +41 -0
- package/lib/module/components/tour/CredentialOfferTourSteps.js.map +1 -0
- package/lib/module/components/tour/CredentialsTourSteps.js +41 -0
- package/lib/module/components/tour/CredentialsTourSteps.js.map +1 -0
- package/lib/module/components/tour/HomeTourSteps.js +112 -0
- package/lib/module/components/tour/HomeTourSteps.js.map +1 -0
- package/lib/module/components/tour/ProofRequestTourSteps.js +41 -0
- package/lib/module/components/tour/ProofRequestTourSteps.js.map +1 -0
- package/lib/module/components/tour/SpotCutout.js +64 -0
- package/lib/module/components/tour/SpotCutout.js.map +1 -0
- package/lib/module/components/tour/TourBox.js +199 -0
- package/lib/module/components/tour/TourBox.js.map +1 -0
- package/lib/module/components/tour/TourOverlay.js +138 -0
- package/lib/module/components/tour/TourOverlay.js.map +1 -0
- package/lib/module/components/views/CredentialCardLogo.js +66 -0
- package/lib/module/components/views/CredentialCardLogo.js.map +1 -0
- package/lib/module/components/views/CredentialDetailPrimaryHeader.js +79 -0
- package/lib/module/components/views/CredentialDetailPrimaryHeader.js.map +1 -0
- package/lib/module/components/views/CredentialDetailSecondaryHeader.js +39 -0
- package/lib/module/components/views/CredentialDetailSecondaryHeader.js.map +1 -0
- package/lib/module/components/views/HomeFooterView.js +95 -0
- package/lib/module/components/views/HomeFooterView.js.map +1 -0
- package/lib/module/components/views/HomeHeaderView.js +9 -0
- package/lib/module/components/views/HomeHeaderView.js.map +1 -0
- package/lib/module/components/views/KeyboardView.js +33 -0
- package/lib/module/components/views/KeyboardView.js.map +1 -0
- package/lib/module/components/views/LoadingPlaceholder.js +153 -0
- package/lib/module/components/views/LoadingPlaceholder.js.map +1 -0
- package/lib/module/components/views/LoadingView.js +30 -0
- package/lib/module/components/views/LoadingView.js.map +1 -0
- package/lib/module/components/views/ModularView.js +34 -0
- package/lib/module/components/views/ModularView.js.map +1 -0
- package/lib/module/components/views/ProgressBar.js +55 -0
- package/lib/module/components/views/ProgressBar.js.map +1 -0
- package/lib/module/configs/ledgers/indy/index.js +6 -0
- package/lib/module/configs/ledgers/indy/index.js.map +1 -0
- package/lib/module/configs/ledgers/indy/ledgers.json +51 -0
- package/lib/module/constants.js +95 -0
- package/lib/module/constants.js.map +1 -0
- package/lib/module/container-api.js +106 -0
- package/lib/module/container-api.js.map +1 -0
- package/lib/module/container-impl.js +221 -0
- package/lib/module/container-impl.js.map +1 -0
- package/lib/module/contexts/activity.js +148 -0
- package/lib/module/contexts/activity.js.map +1 -0
- package/lib/module/contexts/animated-components.js +6 -0
- package/lib/module/contexts/animated-components.js.map +1 -0
- package/lib/module/contexts/auth.js +138 -0
- package/lib/module/contexts/auth.js.map +1 -0
- package/lib/module/contexts/index.js +4 -0
- package/lib/module/contexts/index.js.map +1 -0
- package/lib/module/contexts/network.js +68 -0
- package/lib/module/contexts/network.js.map +1 -0
- package/lib/module/contexts/reducers/index.js +3 -0
- package/lib/module/contexts/reducers/index.js.map +1 -0
- package/lib/module/contexts/reducers/store.js +657 -0
- package/lib/module/contexts/reducers/store.js.map +1 -0
- package/lib/module/contexts/store.js +90 -0
- package/lib/module/contexts/store.js.map +1 -0
- package/lib/module/contexts/theme.js +6 -0
- package/lib/module/contexts/theme.js.map +1 -0
- package/lib/module/contexts/tour/tour-context.js +46 -0
- package/lib/module/contexts/tour/tour-context.js.map +1 -0
- package/lib/module/contexts/tour/tour-provider.js +86 -0
- package/lib/module/contexts/tour/tour-provider.js.map +1 -0
- package/lib/module/hooks/bundle-resolver.js +57 -0
- package/lib/module/hooks/bundle-resolver.js.map +1 -0
- package/lib/module/hooks/chat-messages.js +245 -0
- package/lib/module/hooks/chat-messages.js.map +1 -0
- package/lib/module/hooks/connections.js +31 -0
- package/lib/module/hooks/connections.js.map +1 -0
- package/lib/module/hooks/credential-card-styles.js +143 -0
- package/lib/module/hooks/credential-card-styles.js.map +1 -0
- package/lib/module/hooks/credentials.js +9 -0
- package/lib/module/hooks/credentials.js.map +1 -0
- package/lib/module/hooks/deep-links.js +50 -0
- package/lib/module/hooks/deep-links.js.map +1 -0
- package/lib/module/hooks/initialize-agent.js +129 -0
- package/lib/module/hooks/initialize-agent.js.map +1 -0
- package/lib/module/hooks/notifications.js +63 -0
- package/lib/module/hooks/notifications.js.map +1 -0
- package/lib/module/hooks/oob.js +17 -0
- package/lib/module/hooks/oob.js.map +1 -0
- package/lib/module/hooks/proof-request-templates.js +37 -0
- package/lib/module/hooks/proof-request-templates.js.map +1 -0
- package/lib/module/hooks/proofs.js +29 -0
- package/lib/module/hooks/proofs.js.map +1 -0
- package/lib/module/hooks/screen-capture.js +50 -0
- package/lib/module/hooks/screen-capture.js.map +1 -0
- package/lib/module/hooks/useOnboardingState.js +29 -0
- package/lib/module/hooks/useOnboardingState.js.map +1 -0
- package/lib/module/index.js +96 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/layout/ScreenLayout.js +41 -0
- package/lib/module/layout/ScreenLayout.js.map +1 -0
- package/lib/module/localization/en/index.js +923 -0
- package/lib/module/localization/en/index.js.map +1 -0
- package/lib/module/localization/fr/index.js +897 -0
- package/lib/module/localization/fr/index.js.map +1 -0
- package/lib/module/localization/index.js +52 -0
- package/lib/module/localization/index.js.map +1 -0
- package/lib/module/localization/pt-br/index.js +880 -0
- package/lib/module/localization/pt-br/index.js.map +1 -0
- package/lib/module/modules/history/context/historyManager.js +248 -0
- package/lib/module/modules/history/context/historyManager.js.map +1 -0
- package/lib/module/modules/history/index.js +2 -0
- package/lib/module/modules/history/index.js.map +1 -0
- package/lib/module/modules/history/navigation/HistoryStack.js +31 -0
- package/lib/module/modules/history/navigation/HistoryStack.js.map +1 -0
- package/lib/module/modules/history/services/queue.service.js +23 -0
- package/lib/module/modules/history/services/queue.service.js.map +1 -0
- package/lib/module/modules/history/types/index.js +32 -0
- package/lib/module/modules/history/types/index.js.map +1 -0
- package/lib/module/modules/history/ui/HistoryPage.js +119 -0
- package/lib/module/modules/history/ui/HistoryPage.js.map +1 -0
- package/lib/module/modules/history/ui/HistorySettings.js +167 -0
- package/lib/module/modules/history/ui/HistorySettings.js.map +1 -0
- package/lib/module/modules/history/ui/assets/img/HistoryCardAcceptedIcon.svg +4 -0
- package/lib/module/modules/history/ui/assets/img/HistoryCardExpiredIcon.svg +4 -0
- package/lib/module/modules/history/ui/assets/img/HistoryCardRevokedIcon.svg +4 -0
- package/lib/module/modules/history/ui/assets/img/HistoryInformationSentIcon.svg +4 -0
- package/lib/module/modules/history/ui/assets/img/HistoryPinUpdatedIcon.svg +4 -0
- package/lib/module/modules/history/ui/assets/img/IconChevronRight.svg +3 -0
- package/lib/module/modules/history/ui/components/BulletPoint.js +46 -0
- package/lib/module/modules/history/ui/components/BulletPoint.js.map +1 -0
- package/lib/module/modules/history/ui/components/HistoryListItem.js +269 -0
- package/lib/module/modules/history/ui/components/HistoryListItem.js.map +1 -0
- package/lib/module/modules/history/ui/components/HistoryMenu.js +23 -0
- package/lib/module/modules/history/ui/components/HistoryMenu.js.map +1 -0
- package/lib/module/modules/history/ui/components/SingleSelectBlock.js +57 -0
- package/lib/module/modules/history/ui/components/SingleSelectBlock.js.map +1 -0
- package/lib/module/modules/openid/components/CredentialRowCard.js +78 -0
- package/lib/module/modules/openid/components/CredentialRowCard.js.map +1 -0
- package/lib/module/modules/openid/components/OpenIDCredentialCard.js +225 -0
- package/lib/module/modules/openid/components/OpenIDCredentialCard.js.map +1 -0
- package/lib/module/modules/openid/context/OpenIDCredentialRecordProvider.js +221 -0
- package/lib/module/modules/openid/context/OpenIDCredentialRecordProvider.js.map +1 -0
- package/lib/module/modules/openid/display.js +357 -0
- package/lib/module/modules/openid/display.js.map +1 -0
- package/lib/module/modules/openid/displayProof.js +48 -0
- package/lib/module/modules/openid/displayProof.js.map +1 -0
- package/lib/module/modules/openid/hooks/openid.js +81 -0
- package/lib/module/modules/openid/hooks/openid.js.map +1 -0
- package/lib/module/modules/openid/metadata.js +30 -0
- package/lib/module/modules/openid/metadata.js.map +1 -0
- package/lib/module/modules/openid/offerResolve.js +179 -0
- package/lib/module/modules/openid/offerResolve.js.map +1 -0
- package/lib/module/modules/openid/resolverProof.js +233 -0
- package/lib/module/modules/openid/resolverProof.js.map +1 -0
- package/lib/module/modules/openid/screens/OpenIDCredentialDetails.js +206 -0
- package/lib/module/modules/openid/screens/OpenIDCredentialDetails.js.map +1 -0
- package/lib/module/modules/openid/screens/OpenIDCredentialOffer.js +170 -0
- package/lib/module/modules/openid/screens/OpenIDCredentialOffer.js.map +1 -0
- package/lib/module/modules/openid/screens/OpenIDProofPresentation.js +266 -0
- package/lib/module/modules/openid/screens/OpenIDProofPresentation.js.map +1 -0
- package/lib/module/modules/openid/types.js +7 -0
- package/lib/module/modules/openid/types.js.map +1 -0
- package/lib/module/modules/openid/utils/utils.js +118 -0
- package/lib/module/modules/openid/utils/utils.js.map +1 -0
- package/lib/module/navigators/ConnectStack.js +58 -0
- package/lib/module/navigators/ConnectStack.js.map +1 -0
- package/lib/module/navigators/ContactStack.js +96 -0
- package/lib/module/navigators/ContactStack.js.map +1 -0
- package/lib/module/navigators/CredentialStack.js +34 -0
- package/lib/module/navigators/CredentialStack.js.map +1 -0
- package/lib/module/navigators/DeliveryStack.js +70 -0
- package/lib/module/navigators/DeliveryStack.js.map +1 -0
- package/lib/module/navigators/HomeStack.js +35 -0
- package/lib/module/navigators/HomeStack.js.map +1 -0
- package/lib/module/navigators/MainStack.js +135 -0
- package/lib/module/navigators/MainStack.js.map +1 -0
- package/lib/module/navigators/NotificationStack.js +62 -0
- package/lib/module/navigators/NotificationStack.js.map +1 -0
- package/lib/module/navigators/OnboardingScreens.js +109 -0
- package/lib/module/navigators/OnboardingScreens.js.map +1 -0
- package/lib/module/navigators/OnboardingStack.js +136 -0
- package/lib/module/navigators/OnboardingStack.js.map +1 -0
- package/lib/module/navigators/ProofRequestStack.js +108 -0
- package/lib/module/navigators/ProofRequestStack.js.map +1 -0
- package/lib/module/navigators/RootStack.js +59 -0
- package/lib/module/navigators/RootStack.js.map +1 -0
- package/lib/module/navigators/SettingStack.js +148 -0
- package/lib/module/navigators/SettingStack.js.map +1 -0
- package/lib/module/navigators/TabStack.js +294 -0
- package/lib/module/navigators/TabStack.js.map +1 -0
- package/lib/module/navigators/defaultLayoutOptions.js +17 -0
- package/lib/module/navigators/defaultLayoutOptions.js.map +1 -0
- package/lib/module/navigators/defaultStackOptions.js +87 -0
- package/lib/module/navigators/defaultStackOptions.js.map +1 -0
- package/lib/module/navigators/index.js +14 -0
- package/lib/module/navigators/index.js.map +1 -0
- package/lib/module/onboarding.js +87 -0
- package/lib/module/onboarding.js.map +1 -0
- package/lib/module/screens/AttemptLockout.js +152 -0
- package/lib/module/screens/AttemptLockout.js.map +1 -0
- package/lib/module/screens/AutoLock.js +134 -0
- package/lib/module/screens/AutoLock.js.map +1 -0
- package/lib/module/screens/Chat.js +141 -0
- package/lib/module/screens/Chat.js.map +1 -0
- package/lib/module/screens/Connection.js +357 -0
- package/lib/module/screens/Connection.js.map +1 -0
- package/lib/module/screens/ContactDetails.js +300 -0
- package/lib/module/screens/ContactDetails.js.map +1 -0
- package/lib/module/screens/CredentialDetails.js +400 -0
- package/lib/module/screens/CredentialDetails.js.map +1 -0
- package/lib/module/screens/CredentialOffer.js +302 -0
- package/lib/module/screens/CredentialOffer.js.map +1 -0
- package/lib/module/screens/CredentialOfferAccept.js +164 -0
- package/lib/module/screens/CredentialOfferAccept.js.map +1 -0
- package/lib/module/screens/DataRetention.js +107 -0
- package/lib/module/screens/DataRetention.js.map +1 -0
- package/lib/module/screens/Developer.js +295 -0
- package/lib/module/screens/Developer.js.map +1 -0
- package/lib/module/screens/Home.js +147 -0
- package/lib/module/screens/Home.js.map +1 -0
- package/lib/module/screens/Language.js +110 -0
- package/lib/module/screens/Language.js.map +1 -0
- package/lib/module/screens/ListContacts.js +112 -0
- package/lib/module/screens/ListContacts.js.map +1 -0
- package/lib/module/screens/ListCredentials.js +121 -0
- package/lib/module/screens/ListCredentials.js.map +1 -0
- package/lib/module/screens/ListProofRequests.js +158 -0
- package/lib/module/screens/ListProofRequests.js.map +1 -0
- package/lib/module/screens/MobileVerifierLoading.js +107 -0
- package/lib/module/screens/MobileVerifierLoading.js.map +1 -0
- package/lib/module/screens/NameWallet.js +151 -0
- package/lib/module/screens/NameWallet.js.map +1 -0
- package/lib/module/screens/Onboarding.js +135 -0
- package/lib/module/screens/Onboarding.js.map +1 -0
- package/lib/module/screens/OnboardingPages.js +189 -0
- package/lib/module/screens/OnboardingPages.js.map +1 -0
- package/lib/module/screens/PINCreate.js +330 -0
- package/lib/module/screens/PINCreate.js.map +1 -0
- package/lib/module/screens/PINEnter.js +522 -0
- package/lib/module/screens/PINEnter.js.map +1 -0
- package/lib/module/screens/PINExplainer.js +90 -0
- package/lib/module/screens/PINExplainer.js.map +1 -0
- package/lib/module/screens/PasteUrl.js +133 -0
- package/lib/module/screens/PasteUrl.js.map +1 -0
- package/lib/module/screens/Preface.js +95 -0
- package/lib/module/screens/Preface.js.map +1 -0
- package/lib/module/screens/ProofChangeCredential.js +143 -0
- package/lib/module/screens/ProofChangeCredential.js.map +1 -0
- package/lib/module/screens/ProofDetails.js +324 -0
- package/lib/module/screens/ProofDetails.js.map +1 -0
- package/lib/module/screens/ProofRequest.js +677 -0
- package/lib/module/screens/ProofRequest.js.map +1 -0
- package/lib/module/screens/ProofRequestAccept.js +119 -0
- package/lib/module/screens/ProofRequestAccept.js.map +1 -0
- package/lib/module/screens/ProofRequestDetails.js +267 -0
- package/lib/module/screens/ProofRequestDetails.js.map +1 -0
- package/lib/module/screens/ProofRequestUsageHistory.js +155 -0
- package/lib/module/screens/ProofRequestUsageHistory.js.map +1 -0
- package/lib/module/screens/ProofRequesting.js +232 -0
- package/lib/module/screens/ProofRequesting.js.map +1 -0
- package/lib/module/screens/PushNotification.js +170 -0
- package/lib/module/screens/PushNotification.js.map +1 -0
- package/lib/module/screens/RenameContact.js +145 -0
- package/lib/module/screens/RenameContact.js.map +1 -0
- package/lib/module/screens/Scan.js +114 -0
- package/lib/module/screens/Scan.js.map +1 -0
- package/lib/module/screens/ScanHelp.js +51 -0
- package/lib/module/screens/ScanHelp.js.map +1 -0
- package/lib/module/screens/Settings.js +442 -0
- package/lib/module/screens/Settings.js.map +1 -0
- package/lib/module/screens/Splash.js +84 -0
- package/lib/module/screens/Splash.js.map +1 -0
- package/lib/module/screens/Terms.js +136 -0
- package/lib/module/screens/Terms.js.map +1 -0
- package/lib/module/screens/Tours.js +100 -0
- package/lib/module/screens/Tours.js.map +1 -0
- package/lib/module/screens/UpdateAvailable.js +119 -0
- package/lib/module/screens/UpdateAvailable.js.map +1 -0
- package/lib/module/screens/UseBiometry.js +306 -0
- package/lib/module/screens/UseBiometry.js.map +1 -0
- package/lib/module/screens/WhatAreContacts.js +71 -0
- package/lib/module/screens/WhatAreContacts.js.map +1 -0
- package/lib/module/services/keychain.js +150 -0
- package/lib/module/services/keychain.js.map +1 -0
- package/lib/module/services/logger.js +63 -0
- package/lib/module/services/logger.js.map +1 -0
- package/lib/module/services/storage.js +122 -0
- package/lib/module/services/storage.js.map +1 -0
- package/lib/module/theme.js +879 -0
- package/lib/module/theme.js.map +1 -0
- package/lib/module/types/attempt-lockout-config.js +2 -0
- package/lib/module/types/attempt-lockout-config.js.map +1 -0
- package/lib/module/types/attestation.js +8 -0
- package/lib/module/types/attestation.js.map +1 -0
- package/lib/module/types/chat.js +6 -0
- package/lib/module/types/chat.js.map +1 -0
- package/lib/module/types/config.js +2 -0
- package/lib/module/types/config.js.map +1 -0
- package/lib/module/types/contact-details.js +2 -0
- package/lib/module/types/contact-details.js.map +1 -0
- package/lib/module/types/credential-list-footer.js +2 -0
- package/lib/module/types/credential-list-footer.js.map +1 -0
- package/lib/module/types/credential-status.js +5 -0
- package/lib/module/types/credential-status.js.map +1 -0
- package/lib/module/types/credentials.js +2 -0
- package/lib/module/types/credentials.js.map +1 -0
- package/lib/module/types/decline.js +7 -0
- package/lib/module/types/decline.js.map +1 -0
- package/lib/module/types/error.js +24 -0
- package/lib/module/types/error.js.map +1 -0
- package/lib/module/types/fn.js +2 -0
- package/lib/module/types/fn.js.map +1 -0
- package/lib/module/types/genesis.js +2 -0
- package/lib/module/types/genesis.js.map +1 -0
- package/lib/module/types/index.js +3 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/module/types/metadata.js +9 -0
- package/lib/module/types/metadata.js.map +1 -0
- package/lib/module/types/navigators.js +71 -0
- package/lib/module/types/navigators.js.map +1 -0
- package/lib/module/types/notification.js +2 -0
- package/lib/module/types/notification.js.map +1 -0
- package/lib/module/types/permissions.js +2 -0
- package/lib/module/types/permissions.js.map +1 -0
- package/lib/module/types/proof-items.js +2 -0
- package/lib/module/types/proof-items.js.map +1 -0
- package/lib/module/types/react-i18next.d.js +2 -0
- package/lib/module/types/react-i18next.d.js.map +1 -0
- package/lib/module/types/remove.js +10 -0
- package/lib/module/types/remove.js.map +1 -0
- package/lib/module/types/security.js +13 -0
- package/lib/module/types/security.js.map +1 -0
- package/lib/module/types/settings.js +2 -0
- package/lib/module/types/settings.js.map +1 -0
- package/lib/module/types/state.js +2 -0
- package/lib/module/types/state.js.map +1 -0
- package/lib/module/types/tour.js +16 -0
- package/lib/module/types/tour.js.map +1 -0
- package/lib/module/types/version-check.js +2 -0
- package/lib/module/types/version-check.js.map +1 -0
- package/lib/module/utils/PINCreationValidation.js +79 -0
- package/lib/module/utils/PINCreationValidation.js.map +1 -0
- package/lib/module/utils/agent.js +84 -0
- package/lib/module/utils/agent.js.map +1 -0
- package/lib/module/utils/anonCredsProofRequestMapper.js +148 -0
- package/lib/module/utils/anonCredsProofRequestMapper.js.map +1 -0
- package/lib/module/utils/contacts.js +33 -0
- package/lib/module/utils/contacts.js.map +1 -0
- package/lib/module/utils/cred-def.js +29 -0
- package/lib/module/utils/cred-def.js.map +1 -0
- package/lib/module/utils/credential.js +31 -0
- package/lib/module/utils/credential.js.map +1 -0
- package/lib/module/utils/crypto.js +13 -0
- package/lib/module/utils/crypto.js.map +1 -0
- package/lib/module/utils/fileCache.js +118 -0
- package/lib/module/utils/fileCache.js.map +1 -0
- package/lib/module/utils/helpers.js +1101 -0
- package/lib/module/utils/helpers.js.map +1 -0
- package/lib/module/utils/luminance.js +34 -0
- package/lib/module/utils/luminance.js.map +1 -0
- package/lib/module/utils/migration.js +36 -0
- package/lib/module/utils/migration.js.map +1 -0
- package/lib/module/utils/network.js +47 -0
- package/lib/module/utils/network.js.map +1 -0
- package/lib/module/utils/oca.js +104 -0
- package/lib/module/utils/oca.js.map +1 -0
- package/lib/module/utils/parsers.js +74 -0
- package/lib/module/utils/parsers.js.map +1 -0
- package/lib/module/utils/proofBundle.js +171 -0
- package/lib/module/utils/proofBundle.js.map +1 -0
- package/lib/module/utils/schema.js +25 -0
- package/lib/module/utils/schema.js.map +1 -0
- package/lib/module/utils/testable.js +11 -0
- package/lib/module/utils/testable.js.map +1 -0
- package/lib/typescript/cli.d.ts +2 -0
- package/lib/typescript/cli.d.ts.map +1 -0
- package/lib/typescript/react-native.config.d.ts +2 -0
- package/lib/typescript/react-native.config.d.ts.map +1 -0
- package/lib/typescript/src/App.d.ts +5 -0
- package/lib/typescript/src/App.d.ts.map +1 -0
- package/lib/typescript/src/animated-components.d.ts +12 -0
- package/lib/typescript/src/animated-components.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/ButtonLoading.d.ts +4 -0
- package/lib/typescript/src/components/animated/ButtonLoading.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/ConnectionLoading.d.ts +4 -0
- package/lib/typescript/src/components/animated/ConnectionLoading.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/CredentialAdded.d.ts +4 -0
- package/lib/typescript/src/components/animated/CredentialAdded.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/CredentialPending.d.ts +4 -0
- package/lib/typescript/src/components/animated/CredentialPending.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/LoadingIndicator.d.ts +4 -0
- package/lib/typescript/src/components/animated/LoadingIndicator.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/PresentationLoading.d.ts +4 -0
- package/lib/typescript/src/components/animated/PresentationLoading.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/RecordLoading.d.ts +8 -0
- package/lib/typescript/src/components/animated/RecordLoading.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/SendingProof.d.ts +4 -0
- package/lib/typescript/src/components/animated/SendingProof.d.ts.map +1 -0
- package/lib/typescript/src/components/animated/SentProof.d.ts +4 -0
- package/lib/typescript/src/components/animated/SentProof.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/Button-api.d.ts +33 -0
- package/lib/typescript/src/components/buttons/Button-api.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/Button.d.ts +8 -0
- package/lib/typescript/src/components/buttons/Button.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/HeaderHome.d.ts +4 -0
- package/lib/typescript/src/components/buttons/HeaderHome.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/IconButton.d.ts +17 -0
- package/lib/typescript/src/components/buttons/IconButton.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/InfoIcon.d.ts +7 -0
- package/lib/typescript/src/components/buttons/InfoIcon.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/SettingsMenu.d.ts +4 -0
- package/lib/typescript/src/components/buttons/SettingsMenu.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/ToggleButton.d.ts +13 -0
- package/lib/typescript/src/components/buttons/ToggleButton.d.ts.map +1 -0
- package/lib/typescript/src/components/buttons/index.d.ts +4 -0
- package/lib/typescript/src/components/buttons/index.d.ts.map +1 -0
- package/lib/typescript/src/components/chat/ActionSlider.d.ts +13 -0
- package/lib/typescript/src/components/chat/ActionSlider.d.ts.map +1 -0
- package/lib/typescript/src/components/chat/ChatActions.d.ts +7 -0
- package/lib/typescript/src/components/chat/ChatActions.d.ts.map +1 -0
- package/lib/typescript/src/components/chat/ChatBubble.d.ts +3 -0
- package/lib/typescript/src/components/chat/ChatBubble.d.ts.map +1 -0
- package/lib/typescript/src/components/chat/ChatEvent.d.ts +10 -0
- package/lib/typescript/src/components/chat/ChatEvent.d.ts.map +1 -0
- package/lib/typescript/src/components/chat/ChatMessage.d.ts +18 -0
- package/lib/typescript/src/components/chat/ChatMessage.d.ts.map +1 -0
- package/lib/typescript/src/components/chat/MessageInput.d.ts +5 -0
- package/lib/typescript/src/components/chat/MessageInput.d.ts.map +1 -0
- package/lib/typescript/src/components/chat/index.d.ts +4 -0
- package/lib/typescript/src/components/chat/index.d.ts.map +1 -0
- package/lib/typescript/src/components/index.d.ts +4 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/components/inputs/BulletPoint.d.ts +9 -0
- package/lib/typescript/src/components/inputs/BulletPoint.d.ts.map +1 -0
- package/lib/typescript/src/components/inputs/CheckBoxRow.d.ts +14 -0
- package/lib/typescript/src/components/inputs/CheckBoxRow.d.ts.map +1 -0
- package/lib/typescript/src/components/inputs/InlineErrorText.d.ts +14 -0
- package/lib/typescript/src/components/inputs/InlineErrorText.d.ts.map +1 -0
- package/lib/typescript/src/components/inputs/LimitedTextInput.d.ts +10 -0
- package/lib/typescript/src/components/inputs/LimitedTextInput.d.ts.map +1 -0
- package/lib/typescript/src/components/inputs/PINInput.d.ts +14 -0
- package/lib/typescript/src/components/inputs/PINInput.d.ts.map +1 -0
- package/lib/typescript/src/components/inputs/SingleSelectBlock.d.ts +13 -0
- package/lib/typescript/src/components/inputs/SingleSelectBlock.d.ts.map +1 -0
- package/lib/typescript/src/components/listItems/ContactCredentialListItem.d.ts +8 -0
- package/lib/typescript/src/components/listItems/ContactCredentialListItem.d.ts.map +1 -0
- package/lib/typescript/src/components/listItems/ContactListItem.d.ts +11 -0
- package/lib/typescript/src/components/listItems/ContactListItem.d.ts.map +1 -0
- package/lib/typescript/src/components/listItems/NotificationListItem.d.ts +19 -0
- package/lib/typescript/src/components/listItems/NotificationListItem.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/ActivityLogLink.d.ts +4 -0
- package/lib/typescript/src/components/misc/ActivityLogLink.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/AvatarView.d.ts +9 -0
- package/lib/typescript/src/components/misc/AvatarView.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/CardWatermark.d.ts +27 -0
- package/lib/typescript/src/components/misc/CardWatermark.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/ConnectionAlert.d.ts +7 -0
- package/lib/typescript/src/components/misc/ConnectionAlert.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/ConnectionImage.d.ts +9 -0
- package/lib/typescript/src/components/misc/ConnectionImage.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/ContentGradient.d.ts +11 -0
- package/lib/typescript/src/components/misc/ContentGradient.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/CredentialCard.d.ts +24 -0
- package/lib/typescript/src/components/misc/CredentialCard.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/CredentialCard10.d.ts +44 -0
- package/lib/typescript/src/components/misc/CredentialCard10.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/CredentialCard11.d.ts +32 -0
- package/lib/typescript/src/components/misc/CredentialCard11.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/CredentialCard11ActionFooter.d.ts +11 -0
- package/lib/typescript/src/components/misc/CredentialCard11ActionFooter.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/CredentialCard11Issuer.d.ts +12 -0
- package/lib/typescript/src/components/misc/CredentialCard11Issuer.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/CredentialCard11Logo.d.ts +10 -0
- package/lib/typescript/src/components/misc/CredentialCard11Logo.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/EmptyList.d.ts +7 -0
- package/lib/typescript/src/components/misc/EmptyList.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/EmptyListContacts.d.ts +9 -0
- package/lib/typescript/src/components/misc/EmptyListContacts.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/InfoBox.d.ts +28 -0
- package/lib/typescript/src/components/misc/InfoBox.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/NoNewUpdates.d.ts +4 -0
- package/lib/typescript/src/components/misc/NoNewUpdates.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/PINCreateHeader.d.ts +6 -0
- package/lib/typescript/src/components/misc/PINCreateHeader.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/Pagination.d.ts +23 -0
- package/lib/typescript/src/components/misc/Pagination.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/QRRenderer.d.ts +11 -0
- package/lib/typescript/src/components/misc/QRRenderer.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/QRScanner.d.ts +15 -0
- package/lib/typescript/src/components/misc/QRScanner.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/QRScannerTorch.d.ts +8 -0
- package/lib/typescript/src/components/misc/QRScannerTorch.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/ScanCamera.d.ts +11 -0
- package/lib/typescript/src/components/misc/ScanCamera.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/ScanTab.d.ts +10 -0
- package/lib/typescript/src/components/misc/ScanTab.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/SharedProofData.d.ts +9 -0
- package/lib/typescript/src/components/misc/SharedProofData.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/UnorderedList.d.ts +7 -0
- package/lib/typescript/src/components/misc/UnorderedList.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/VerifierCredentialCard.d.ts +21 -0
- package/lib/typescript/src/components/misc/VerifierCredentialCard.d.ts.map +1 -0
- package/lib/typescript/src/components/misc/index.d.ts +3 -0
- package/lib/typescript/src/components/misc/index.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/AlertModal.d.ts +9 -0
- package/lib/typescript/src/components/modals/AlertModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/AppGuideModal.d.ts +14 -0
- package/lib/typescript/src/components/modals/AppGuideModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/CameraDisclosureModal.d.ts +7 -0
- package/lib/typescript/src/components/modals/CameraDisclosureModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/CommonRemoveModal.d.ts +12 -0
- package/lib/typescript/src/components/modals/CommonRemoveModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/DismissiblePopupModal.d.ts +12 -0
- package/lib/typescript/src/components/modals/DismissiblePopupModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/ErrorModal.d.ts +7 -0
- package/lib/typescript/src/components/modals/ErrorModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/ImageModal.d.ts +9 -0
- package/lib/typescript/src/components/modals/ImageModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/NetInfoModal.d.ts +9 -0
- package/lib/typescript/src/components/modals/NetInfoModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/NotificationModal.d.ts +17 -0
- package/lib/typescript/src/components/modals/NotificationModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/PopupModal.d.ts +15 -0
- package/lib/typescript/src/components/modals/PopupModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/ProofCancelModal.d.ts +9 -0
- package/lib/typescript/src/components/modals/ProofCancelModal.d.ts.map +1 -0
- package/lib/typescript/src/components/modals/SafeAreaModal.d.ts +8 -0
- package/lib/typescript/src/components/modals/SafeAreaModal.d.ts.map +1 -0
- package/lib/typescript/src/components/network/NetInfo.d.ts +3 -0
- package/lib/typescript/src/components/network/NetInfo.d.ts.map +1 -0
- package/lib/typescript/src/components/record/Record.d.ts +12 -0
- package/lib/typescript/src/components/record/Record.d.ts.map +1 -0
- package/lib/typescript/src/components/record/RecordBinaryField.d.ts +9 -0
- package/lib/typescript/src/components/record/RecordBinaryField.d.ts.map +1 -0
- package/lib/typescript/src/components/record/RecordDateIntField.d.ts +10 -0
- package/lib/typescript/src/components/record/RecordDateIntField.d.ts.map +1 -0
- package/lib/typescript/src/components/record/RecordField.d.ts +22 -0
- package/lib/typescript/src/components/record/RecordField.d.ts.map +1 -0
- package/lib/typescript/src/components/record/RecordFooter.d.ts +4 -0
- package/lib/typescript/src/components/record/RecordFooter.d.ts.map +1 -0
- package/lib/typescript/src/components/record/RecordHeader.d.ts +4 -0
- package/lib/typescript/src/components/record/RecordHeader.d.ts.map +1 -0
- package/lib/typescript/src/components/record/RecordRemove.d.ts +8 -0
- package/lib/typescript/src/components/record/RecordRemove.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/HeaderTitle.d.ts +7 -0
- package/lib/typescript/src/components/texts/HeaderTitle.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/HighlightTextBox.d.ts +7 -0
- package/lib/typescript/src/components/texts/HighlightTextBox.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/InfoTextBox.d.ts +14 -0
- package/lib/typescript/src/components/texts/InfoTextBox.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/Label.d.ts +9 -0
- package/lib/typescript/src/components/texts/Label.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/Link.d.ts +12 -0
- package/lib/typescript/src/components/texts/Link.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/Text.d.ts +9 -0
- package/lib/typescript/src/components/texts/Text.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/ThemedText.d.ts +16 -0
- package/lib/typescript/src/components/texts/ThemedText.d.ts.map +1 -0
- package/lib/typescript/src/components/texts/Title.d.ts +8 -0
- package/lib/typescript/src/components/texts/Title.d.ts.map +1 -0
- package/lib/typescript/src/components/toast/BaseToast.d.ts +19 -0
- package/lib/typescript/src/components/toast/BaseToast.d.ts.map +1 -0
- package/lib/typescript/src/components/toast/ToastConfig.d.ts +10 -0
- package/lib/typescript/src/components/toast/ToastConfig.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/AttachTourStep.d.ts +42 -0
- package/lib/typescript/src/components/tour/AttachTourStep.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/CredentialOfferTourSteps.d.ts +3 -0
- package/lib/typescript/src/components/tour/CredentialOfferTourSteps.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/CredentialsTourSteps.d.ts +3 -0
- package/lib/typescript/src/components/tour/CredentialsTourSteps.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/HomeTourSteps.d.ts +3 -0
- package/lib/typescript/src/components/tour/HomeTourSteps.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/ProofRequestTourSteps.d.ts +3 -0
- package/lib/typescript/src/components/tour/ProofRequestTourSteps.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/SpotCutout.d.ts +3 -0
- package/lib/typescript/src/components/tour/SpotCutout.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/TourBox.d.ts +48 -0
- package/lib/typescript/src/components/tour/TourBox.d.ts.map +1 -0
- package/lib/typescript/src/components/tour/TourOverlay.d.ts +18 -0
- package/lib/typescript/src/components/tour/TourOverlay.d.ts.map +1 -0
- package/lib/typescript/src/components/views/CredentialCardLogo.d.ts +9 -0
- package/lib/typescript/src/components/views/CredentialCardLogo.d.ts.map +1 -0
- package/lib/typescript/src/components/views/CredentialDetailPrimaryHeader.d.ts +11 -0
- package/lib/typescript/src/components/views/CredentialDetailPrimaryHeader.d.ts.map +1 -0
- package/lib/typescript/src/components/views/CredentialDetailSecondaryHeader.d.ts +10 -0
- package/lib/typescript/src/components/views/CredentialDetailSecondaryHeader.d.ts.map +1 -0
- package/lib/typescript/src/components/views/HomeFooterView.d.ts +7 -0
- package/lib/typescript/src/components/views/HomeFooterView.d.ts.map +1 -0
- package/lib/typescript/src/components/views/HomeHeaderView.d.ts +7 -0
- package/lib/typescript/src/components/views/HomeHeaderView.d.ts.map +1 -0
- package/lib/typescript/src/components/views/KeyboardView.d.ts +6 -0
- package/lib/typescript/src/components/views/KeyboardView.d.ts.map +1 -0
- package/lib/typescript/src/components/views/LoadingPlaceholder.d.ts +17 -0
- package/lib/typescript/src/components/views/LoadingPlaceholder.d.ts.map +1 -0
- package/lib/typescript/src/components/views/LoadingView.d.ts +4 -0
- package/lib/typescript/src/components/views/LoadingView.d.ts.map +1 -0
- package/lib/typescript/src/components/views/ModularView.d.ts +9 -0
- package/lib/typescript/src/components/views/ModularView.d.ts.map +1 -0
- package/lib/typescript/src/components/views/ProgressBar.d.ts +9 -0
- package/lib/typescript/src/components/views/ProgressBar.d.ts.map +1 -0
- package/lib/typescript/src/configs/ledgers/indy/index.d.ts +4 -0
- package/lib/typescript/src/configs/ledgers/indy/index.d.ts.map +1 -0
- package/lib/typescript/src/constants.d.ts +50 -0
- package/lib/typescript/src/constants.d.ts.map +1 -0
- package/lib/typescript/src/container-api.d.ts +244 -0
- package/lib/typescript/src/container-api.d.ts.map +1 -0
- package/lib/typescript/src/container-impl.d.ts +73 -0
- package/lib/typescript/src/container-impl.d.ts.map +1 -0
- package/lib/typescript/src/contexts/activity.d.ts +15 -0
- package/lib/typescript/src/contexts/activity.d.ts.map +1 -0
- package/lib/typescript/src/contexts/animated-components.d.ts +5 -0
- package/lib/typescript/src/contexts/animated-components.d.ts.map +1 -0
- package/lib/typescript/src/contexts/auth.d.ts +19 -0
- package/lib/typescript/src/contexts/auth.d.ts.map +1 -0
- package/lib/typescript/src/contexts/index.d.ts +4 -0
- package/lib/typescript/src/contexts/index.d.ts.map +1 -0
- package/lib/typescript/src/contexts/network.d.ts +12 -0
- package/lib/typescript/src/contexts/network.d.ts.map +1 -0
- package/lib/typescript/src/contexts/reducers/index.d.ts +3 -0
- package/lib/typescript/src/contexts/reducers/index.d.ts.map +1 -0
- package/lib/typescript/src/contexts/reducers/store.d.ts +109 -0
- package/lib/typescript/src/contexts/reducers/store.d.ts.map +1 -0
- package/lib/typescript/src/contexts/store.d.ts +16 -0
- package/lib/typescript/src/contexts/store.d.ts.map +1 -0
- package/lib/typescript/src/contexts/theme.d.ts +5 -0
- package/lib/typescript/src/contexts/theme.d.ts.map +1 -0
- package/lib/typescript/src/contexts/tour/tour-context.d.ts +123 -0
- package/lib/typescript/src/contexts/tour/tour-context.d.ts.map +1 -0
- package/lib/typescript/src/contexts/tour/tour-provider.d.ts +46 -0
- package/lib/typescript/src/contexts/tour/tour-provider.d.ts.map +1 -0
- package/lib/typescript/src/hooks/bundle-resolver.d.ts +8 -0
- package/lib/typescript/src/hooks/bundle-resolver.d.ts.map +1 -0
- package/lib/typescript/src/hooks/chat-messages.d.ts +11 -0
- package/lib/typescript/src/hooks/chat-messages.d.ts.map +1 -0
- package/lib/typescript/src/hooks/connections.d.ts +5 -0
- package/lib/typescript/src/hooks/connections.d.ts.map +1 -0
- package/lib/typescript/src/hooks/credential-card-styles.d.ts +309 -0
- package/lib/typescript/src/hooks/credential-card-styles.d.ts.map +1 -0
- package/lib/typescript/src/hooks/credentials.d.ts +3 -0
- package/lib/typescript/src/hooks/credentials.d.ts.map +1 -0
- package/lib/typescript/src/hooks/deep-links.d.ts +2 -0
- package/lib/typescript/src/hooks/deep-links.d.ts.map +1 -0
- package/lib/typescript/src/hooks/initialize-agent.d.ts +7 -0
- package/lib/typescript/src/hooks/initialize-agent.d.ts.map +1 -0
- package/lib/typescript/src/hooks/notifications.d.ts +10 -0
- package/lib/typescript/src/hooks/notifications.d.ts.map +1 -0
- package/lib/typescript/src/hooks/oob.d.ts +3 -0
- package/lib/typescript/src/hooks/oob.d.ts.map +1 -0
- package/lib/typescript/src/hooks/proof-request-templates.d.ts +4 -0
- package/lib/typescript/src/hooks/proof-request-templates.d.ts.map +1 -0
- package/lib/typescript/src/hooks/proofs.d.ts +4 -0
- package/lib/typescript/src/hooks/proofs.d.ts.map +1 -0
- package/lib/typescript/src/hooks/screen-capture.d.ts +30 -0
- package/lib/typescript/src/hooks/screen-capture.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useOnboardingState.d.ts +15 -0
- package/lib/typescript/src/hooks/useOnboardingState.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +113 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/layout/ScreenLayout.d.ts +16 -0
- package/lib/typescript/src/layout/ScreenLayout.d.ts.map +1 -0
- package/lib/typescript/src/localization/en/index.d.ts +920 -0
- package/lib/typescript/src/localization/en/index.d.ts.map +1 -0
- package/lib/typescript/src/localization/fr/index.d.ts +896 -0
- package/lib/typescript/src/localization/fr/index.d.ts.map +1 -0
- package/lib/typescript/src/localization/index.d.ts +18 -0
- package/lib/typescript/src/localization/index.d.ts.map +1 -0
- package/lib/typescript/src/localization/pt-br/index.d.ts +879 -0
- package/lib/typescript/src/localization/pt-br/index.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/context/historyManager.d.ts +40 -0
- package/lib/typescript/src/modules/history/context/historyManager.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/index.d.ts +3 -0
- package/lib/typescript/src/modules/history/index.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/navigation/HistoryStack.d.ts +4 -0
- package/lib/typescript/src/modules/history/navigation/HistoryStack.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/services/queue.service.d.ts +15 -0
- package/lib/typescript/src/modules/history/services/queue.service.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/types/index.d.ts +85 -0
- package/lib/typescript/src/modules/history/types/index.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/ui/HistoryPage.d.ts +7 -0
- package/lib/typescript/src/modules/history/ui/HistoryPage.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/ui/HistorySettings.d.ts +9 -0
- package/lib/typescript/src/modules/history/ui/HistorySettings.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/ui/components/BulletPoint.d.ts +9 -0
- package/lib/typescript/src/modules/history/ui/components/BulletPoint.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/ui/components/HistoryListItem.d.ts +8 -0
- package/lib/typescript/src/modules/history/ui/components/HistoryListItem.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/ui/components/HistoryMenu.d.ts +4 -0
- package/lib/typescript/src/modules/history/ui/components/HistoryMenu.d.ts.map +1 -0
- package/lib/typescript/src/modules/history/ui/components/SingleSelectBlock.d.ts +11 -0
- package/lib/typescript/src/modules/history/ui/components/SingleSelectBlock.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/components/CredentialRowCard.d.ts +13 -0
- package/lib/typescript/src/modules/openid/components/CredentialRowCard.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/components/OpenIDCredentialCard.d.ts +14 -0
- package/lib/typescript/src/modules/openid/components/OpenIDCredentialCard.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/context/OpenIDCredentialRecordProvider.d.ts +29 -0
- package/lib/typescript/src/modules/openid/context/OpenIDCredentialRecordProvider.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/display.d.ts +33 -0
- package/lib/typescript/src/modules/openid/display.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/displayProof.d.ts +31 -0
- package/lib/typescript/src/modules/openid/displayProof.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/hooks/openid.d.ts +9 -0
- package/lib/typescript/src/modules/openid/hooks/openid.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/metadata.d.ts +28 -0
- package/lib/typescript/src/modules/openid/metadata.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/offerResolve.d.ts +37 -0
- package/lib/typescript/src/modules/openid/offerResolve.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/resolverProof.d.ts +39 -0
- package/lib/typescript/src/modules/openid/resolverProof.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/screens/OpenIDCredentialDetails.d.ts +11 -0
- package/lib/typescript/src/modules/openid/screens/OpenIDCredentialDetails.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/screens/OpenIDCredentialOffer.d.ts +7 -0
- package/lib/typescript/src/modules/openid/screens/OpenIDCredentialOffer.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/screens/OpenIDProofPresentation.d.ts +6 -0
- package/lib/typescript/src/modules/openid/screens/OpenIDProofPresentation.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/types.d.ts +89 -0
- package/lib/typescript/src/modules/openid/types.d.ts.map +1 -0
- package/lib/typescript/src/modules/openid/utils/utils.d.ts +24 -0
- package/lib/typescript/src/modules/openid/utils/utils.d.ts.map +1 -0
- package/lib/typescript/src/navigators/ConnectStack.d.ts +4 -0
- package/lib/typescript/src/navigators/ConnectStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/ContactStack.d.ts +4 -0
- package/lib/typescript/src/navigators/ContactStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/CredentialStack.d.ts +4 -0
- package/lib/typescript/src/navigators/CredentialStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/DeliveryStack.d.ts +4 -0
- package/lib/typescript/src/navigators/DeliveryStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/HomeStack.d.ts +4 -0
- package/lib/typescript/src/navigators/HomeStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/MainStack.d.ts +4 -0
- package/lib/typescript/src/navigators/MainStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/NotificationStack.d.ts +4 -0
- package/lib/typescript/src/navigators/NotificationStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/OnboardingScreens.d.ts +23 -0
- package/lib/typescript/src/navigators/OnboardingScreens.d.ts.map +1 -0
- package/lib/typescript/src/navigators/OnboardingStack.d.ts +4 -0
- package/lib/typescript/src/navigators/OnboardingStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/ProofRequestStack.d.ts +4 -0
- package/lib/typescript/src/navigators/ProofRequestStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/RootStack.d.ts +4 -0
- package/lib/typescript/src/navigators/RootStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/SettingStack.d.ts +4 -0
- package/lib/typescript/src/navigators/SettingStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/TabStack.d.ts +4 -0
- package/lib/typescript/src/navigators/TabStack.d.ts.map +1 -0
- package/lib/typescript/src/navigators/defaultLayoutOptions.d.ts +3 -0
- package/lib/typescript/src/navigators/defaultLayoutOptions.d.ts.map +1 -0
- package/lib/typescript/src/navigators/defaultStackOptions.d.ts +6 -0
- package/lib/typescript/src/navigators/defaultStackOptions.d.ts.map +1 -0
- package/lib/typescript/src/navigators/index.d.ts +14 -0
- package/lib/typescript/src/navigators/index.d.ts.map +1 -0
- package/lib/typescript/src/onboarding.d.ts +15 -0
- package/lib/typescript/src/onboarding.d.ts.map +1 -0
- package/lib/typescript/src/screens/AttemptLockout.d.ts +4 -0
- package/lib/typescript/src/screens/AttemptLockout.d.ts.map +1 -0
- package/lib/typescript/src/screens/AutoLock.d.ts +4 -0
- package/lib/typescript/src/screens/AutoLock.d.ts.map +1 -0
- package/lib/typescript/src/screens/Chat.d.ts +7 -0
- package/lib/typescript/src/screens/Chat.d.ts.map +1 -0
- package/lib/typescript/src/screens/Connection.d.ts +7 -0
- package/lib/typescript/src/screens/Connection.d.ts.map +1 -0
- package/lib/typescript/src/screens/ContactDetails.d.ts +7 -0
- package/lib/typescript/src/screens/ContactDetails.d.ts.map +1 -0
- package/lib/typescript/src/screens/CredentialDetails.d.ts +7 -0
- package/lib/typescript/src/screens/CredentialDetails.d.ts.map +1 -0
- package/lib/typescript/src/screens/CredentialOffer.d.ts +8 -0
- package/lib/typescript/src/screens/CredentialOffer.d.ts.map +1 -0
- package/lib/typescript/src/screens/CredentialOfferAccept.d.ts +9 -0
- package/lib/typescript/src/screens/CredentialOfferAccept.d.ts.map +1 -0
- package/lib/typescript/src/screens/DataRetention.d.ts +4 -0
- package/lib/typescript/src/screens/DataRetention.d.ts.map +1 -0
- package/lib/typescript/src/screens/Developer.d.ts +4 -0
- package/lib/typescript/src/screens/Developer.d.ts.map +1 -0
- package/lib/typescript/src/screens/Home.d.ts +7 -0
- package/lib/typescript/src/screens/Home.d.ts.map +1 -0
- package/lib/typescript/src/screens/Language.d.ts +9 -0
- package/lib/typescript/src/screens/Language.d.ts.map +1 -0
- package/lib/typescript/src/screens/ListContacts.d.ts +9 -0
- package/lib/typescript/src/screens/ListContacts.d.ts.map +1 -0
- package/lib/typescript/src/screens/ListCredentials.d.ts +4 -0
- package/lib/typescript/src/screens/ListCredentials.d.ts.map +1 -0
- package/lib/typescript/src/screens/ListProofRequests.d.ts +7 -0
- package/lib/typescript/src/screens/ListProofRequests.d.ts.map +1 -0
- package/lib/typescript/src/screens/MobileVerifierLoading.d.ts +7 -0
- package/lib/typescript/src/screens/MobileVerifierLoading.d.ts.map +1 -0
- package/lib/typescript/src/screens/NameWallet.d.ts +4 -0
- package/lib/typescript/src/screens/NameWallet.d.ts.map +1 -0
- package/lib/typescript/src/screens/Onboarding.d.ts +22 -0
- package/lib/typescript/src/screens/Onboarding.d.ts.map +1 -0
- package/lib/typescript/src/screens/OnboardingPages.d.ts +24 -0
- package/lib/typescript/src/screens/OnboardingPages.d.ts.map +1 -0
- package/lib/typescript/src/screens/PINCreate.d.ts +11 -0
- package/lib/typescript/src/screens/PINCreate.d.ts.map +1 -0
- package/lib/typescript/src/screens/PINEnter.d.ts +14 -0
- package/lib/typescript/src/screens/PINEnter.d.ts.map +1 -0
- package/lib/typescript/src/screens/PINExplainer.d.ts +7 -0
- package/lib/typescript/src/screens/PINExplainer.d.ts.map +1 -0
- package/lib/typescript/src/screens/PasteUrl.d.ts +7 -0
- package/lib/typescript/src/screens/PasteUrl.d.ts.map +1 -0
- package/lib/typescript/src/screens/Preface.d.ts +4 -0
- package/lib/typescript/src/screens/Preface.d.ts.map +1 -0
- package/lib/typescript/src/screens/ProofChangeCredential.d.ts +7 -0
- package/lib/typescript/src/screens/ProofChangeCredential.d.ts.map +1 -0
- package/lib/typescript/src/screens/ProofDetails.d.ts +7 -0
- package/lib/typescript/src/screens/ProofDetails.d.ts.map +1 -0
- package/lib/typescript/src/screens/ProofRequest.d.ts +8 -0
- package/lib/typescript/src/screens/ProofRequest.d.ts.map +1 -0
- package/lib/typescript/src/screens/ProofRequestAccept.d.ts +9 -0
- package/lib/typescript/src/screens/ProofRequestAccept.d.ts.map +1 -0
- package/lib/typescript/src/screens/ProofRequestDetails.d.ts +7 -0
- package/lib/typescript/src/screens/ProofRequestDetails.d.ts.map +1 -0
- package/lib/typescript/src/screens/ProofRequestUsageHistory.d.ts +7 -0
- package/lib/typescript/src/screens/ProofRequestUsageHistory.d.ts.map +1 -0
- package/lib/typescript/src/screens/ProofRequesting.d.ts +7 -0
- package/lib/typescript/src/screens/ProofRequesting.d.ts.map +1 -0
- package/lib/typescript/src/screens/PushNotification.d.ts +7 -0
- package/lib/typescript/src/screens/PushNotification.d.ts.map +1 -0
- package/lib/typescript/src/screens/RenameContact.d.ts +7 -0
- package/lib/typescript/src/screens/RenameContact.d.ts.map +1 -0
- package/lib/typescript/src/screens/Scan.d.ts +7 -0
- package/lib/typescript/src/screens/Scan.d.ts.map +1 -0
- package/lib/typescript/src/screens/ScanHelp.d.ts +4 -0
- package/lib/typescript/src/screens/ScanHelp.d.ts.map +1 -0
- package/lib/typescript/src/screens/Settings.d.ts +7 -0
- package/lib/typescript/src/screens/Settings.d.ts.map +1 -0
- package/lib/typescript/src/screens/Splash.d.ts +9 -0
- package/lib/typescript/src/screens/Splash.d.ts.map +1 -0
- package/lib/typescript/src/screens/Terms.d.ts +5 -0
- package/lib/typescript/src/screens/Terms.d.ts.map +1 -0
- package/lib/typescript/src/screens/Tours.d.ts +4 -0
- package/lib/typescript/src/screens/Tours.d.ts.map +1 -0
- package/lib/typescript/src/screens/UpdateAvailable.d.ts +8 -0
- package/lib/typescript/src/screens/UpdateAvailable.d.ts.map +1 -0
- package/lib/typescript/src/screens/UseBiometry.d.ts +4 -0
- package/lib/typescript/src/screens/UseBiometry.d.ts.map +1 -0
- package/lib/typescript/src/screens/WhatAreContacts.d.ts +8 -0
- package/lib/typescript/src/screens/WhatAreContacts.d.ts.map +1 -0
- package/lib/typescript/src/services/keychain.d.ts +24 -0
- package/lib/typescript/src/services/keychain.d.ts.map +1 -0
- package/lib/typescript/src/services/logger.d.ts +30 -0
- package/lib/typescript/src/services/logger.d.ts.map +1 -0
- package/lib/typescript/src/services/storage.d.ts +15 -0
- package/lib/typescript/src/services/storage.d.ts.map +1 -0
- package/lib/typescript/src/theme.d.ts +889 -0
- package/lib/typescript/src/theme.d.ts.map +1 -0
- package/lib/typescript/src/types/attempt-lockout-config.d.ts +9 -0
- package/lib/typescript/src/types/attempt-lockout-config.d.ts.map +1 -0
- package/lib/typescript/src/types/attestation.d.ts +16 -0
- package/lib/typescript/src/types/attestation.d.ts.map +1 -0
- package/lib/typescript/src/types/chat.d.ts +5 -0
- package/lib/typescript/src/types/chat.d.ts.map +1 -0
- package/lib/typescript/src/types/config.d.ts +61 -0
- package/lib/typescript/src/types/config.d.ts.map +1 -0
- package/lib/typescript/src/types/contact-details.d.ts +6 -0
- package/lib/typescript/src/types/contact-details.d.ts.map +1 -0
- package/lib/typescript/src/types/credential-list-footer.d.ts +4 -0
- package/lib/typescript/src/types/credential-list-footer.d.ts.map +1 -0
- package/lib/typescript/src/types/credential-status.d.ts +4 -0
- package/lib/typescript/src/types/credential-status.d.ts.map +1 -0
- package/lib/typescript/src/types/credentials.d.ts +3 -0
- package/lib/typescript/src/types/credentials.d.ts.map +1 -0
- package/lib/typescript/src/types/decline.d.ts +6 -0
- package/lib/typescript/src/types/decline.d.ts.map +1 -0
- package/lib/typescript/src/types/error.d.ts +23 -0
- package/lib/typescript/src/types/error.d.ts.map +1 -0
- package/lib/typescript/src/types/fn.d.ts +3 -0
- package/lib/typescript/src/types/fn.d.ts.map +1 -0
- package/lib/typescript/src/types/genesis.d.ts +32 -0
- package/lib/typescript/src/types/genesis.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts +3 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/lib/typescript/src/types/metadata.d.ts +14 -0
- package/lib/typescript/src/types/metadata.d.ts.map +1 -0
- package/lib/typescript/src/types/navigators.d.ts +268 -0
- package/lib/typescript/src/types/navigators.d.ts.map +1 -0
- package/lib/typescript/src/types/notification.d.ts +23 -0
- package/lib/typescript/src/types/notification.d.ts.map +1 -0
- package/lib/typescript/src/types/permissions.d.ts +3 -0
- package/lib/typescript/src/types/permissions.d.ts.map +1 -0
- package/lib/typescript/src/types/proof-items.d.ts +31 -0
- package/lib/typescript/src/types/proof-items.d.ts.map +1 -0
- package/lib/typescript/src/types/remove.d.ts +9 -0
- package/lib/typescript/src/types/remove.d.ts.map +1 -0
- package/lib/typescript/src/types/security.d.ts +25 -0
- package/lib/typescript/src/types/security.d.ts.map +1 -0
- package/lib/typescript/src/types/settings.d.ts +26 -0
- package/lib/typescript/src/types/settings.d.ts.map +1 -0
- package/lib/typescript/src/types/state.d.ts +84 -0
- package/lib/typescript/src/types/state.d.ts.map +1 -0
- package/lib/typescript/src/types/tour.d.ts +17 -0
- package/lib/typescript/src/types/tour.d.ts.map +1 -0
- package/lib/typescript/src/types/version-check.d.ts +17 -0
- package/lib/typescript/src/types/version-check.d.ts.map +1 -0
- package/lib/typescript/src/utils/PINCreationValidation.d.ts +20 -0
- package/lib/typescript/src/utils/PINCreationValidation.d.ts.map +1 -0
- package/lib/typescript/src/utils/agent.d.ts +44 -0
- package/lib/typescript/src/utils/agent.d.ts.map +1 -0
- package/lib/typescript/src/utils/anonCredsProofRequestMapper.d.ts +32 -0
- package/lib/typescript/src/utils/anonCredsProofRequestMapper.d.ts.map +1 -0
- package/lib/typescript/src/utils/contacts.d.ts +9 -0
- package/lib/typescript/src/utils/contacts.d.ts.map +1 -0
- package/lib/typescript/src/utils/cred-def.d.ts +5 -0
- package/lib/typescript/src/utils/cred-def.d.ts.map +1 -0
- package/lib/typescript/src/utils/credential.d.ts +10 -0
- package/lib/typescript/src/utils/credential.d.ts.map +1 -0
- package/lib/typescript/src/utils/crypto.d.ts +2 -0
- package/lib/typescript/src/utils/crypto.d.ts.map +1 -0
- package/lib/typescript/src/utils/fileCache.d.ts +26 -0
- package/lib/typescript/src/utils/fileCache.d.ts.map +1 -0
- package/lib/typescript/src/utils/helpers.d.ts +189 -0
- package/lib/typescript/src/utils/helpers.d.ts.map +1 -0
- package/lib/typescript/src/utils/luminance.d.ts +12 -0
- package/lib/typescript/src/utils/luminance.d.ts.map +1 -0
- package/lib/typescript/src/utils/migration.d.ts +3 -0
- package/lib/typescript/src/utils/migration.d.ts.map +1 -0
- package/lib/typescript/src/utils/network.d.ts +9 -0
- package/lib/typescript/src/utils/network.d.ts.map +1 -0
- package/lib/typescript/src/utils/oca.d.ts +15 -0
- package/lib/typescript/src/utils/oca.d.ts.map +1 -0
- package/lib/typescript/src/utils/parsers.d.ts +26 -0
- package/lib/typescript/src/utils/parsers.d.ts.map +1 -0
- package/lib/typescript/src/utils/proofBundle.d.ts +28 -0
- package/lib/typescript/src/utils/proofBundle.d.ts.map +1 -0
- package/lib/typescript/src/utils/schema.d.ts +11 -0
- package/lib/typescript/src/utils/schema.d.ts.map +1 -0
- package/lib/typescript/src/utils/testable.d.ts +3 -0
- package/lib/typescript/src/utils/testable.d.ts.map +1 -0
- package/package.json +227 -0
- package/src/App.tsx +76 -0
- package/src/animated-components.ts +30 -0
- package/src/assets/fonts/MaterialIcons.ttf +0 -0
- package/src/assets/icons/large-arrow.svg +5 -0
- package/src/assets/icons/pencil.svg +15 -0
- package/src/assets/icons/trash.svg +31 -0
- package/src/assets/img/Artwork_1024x1024.png +0 -0
- package/src/assets/img/HistoryCardAcceptedIcon.svg +4 -0
- package/src/assets/img/HistoryCardExpiredIcon.svg +4 -0
- package/src/assets/img/HistoryCardRevokedIcon.svg +4 -0
- package/src/assets/img/HistoryInformationSentIcon.svg +4 -0
- package/src/assets/img/HistoryPinUpdatedIcon.svg +4 -0
- package/src/assets/img/IconChevronRight.svg +5 -0
- package/src/assets/img/activity-indicator-circle.svg +90 -0
- package/src/assets/img/app-lockout.svg +1 -0
- package/src/assets/img/biometrics.svg +74 -0
- package/src/assets/img/chat-loading.svg +1 -0
- package/src/assets/img/check-in-circle.svg +18 -0
- package/src/assets/img/connection-pending.svg +112 -0
- package/src/assets/img/contact-book.svg +21 -0
- package/src/assets/img/credential-card.svg +18 -0
- package/src/assets/img/credential-declined.svg +28 -0
- package/src/assets/img/credential-in-hand.svg +48 -0
- package/src/assets/img/credential-list.svg +60 -0
- package/src/assets/img/credential-pending.svg +96 -0
- package/src/assets/img/credential-success.svg +48 -0
- package/src/assets/img/delete-notification.svg +1 -0
- package/src/assets/img/empty-wallet.svg +23 -0
- package/src/assets/img/error-filled.svg +12 -0
- package/src/assets/img/exclamation-mark.svg +17 -0
- package/src/assets/img/home-center-img.svg +71 -0
- package/src/assets/img/icon-credential-offer-dark.svg +7 -0
- package/src/assets/img/icon-credential-offer-light.svg +7 -0
- package/src/assets/img/icon-info-recieved-dark.svg +8 -0
- package/src/assets/img/icon-info-recieved-light.svg +8 -0
- package/src/assets/img/icon-info-sent-dark.svg +8 -0
- package/src/assets/img/icon-info-sent-light.svg +8 -0
- package/src/assets/img/icon-proof-request-dark.svg +11 -0
- package/src/assets/img/icon-proof-request-light.svg +11 -0
- package/src/assets/img/information-received.svg +1 -0
- package/src/assets/img/logo-large.png +0 -0
- package/src/assets/img/logo-large@2x.png +0 -0
- package/src/assets/img/logo-large@3x.png +0 -0
- package/src/assets/img/logo.svg +15 -0
- package/src/assets/img/message-text-icon-outline.svg +1 -0
- package/src/assets/img/message-text-icon.svg +1 -0
- package/src/assets/img/no_information_shared.svg +36 -0
- package/src/assets/img/preface.svg +15 -0
- package/src/assets/img/proof-declined.svg +66 -0
- package/src/assets/img/proof-pending.svg +61 -0
- package/src/assets/img/proof-success.svg +72 -0
- package/src/assets/img/push-notifications.svg +1 -0
- package/src/assets/img/qrcode-scan-icon.svg +1 -0
- package/src/assets/img/scan-share.svg +102 -0
- package/src/assets/img/secure-check.svg +4 -0
- package/src/assets/img/secure-image.svg +64 -0
- package/src/assets/img/update-available.svg +26 -0
- package/src/assets/img/verifier-request-declined.svg +34 -0
- package/src/assets/img/wallet-back.svg +20 -0
- package/src/assets/img/wallet-front.svg +32 -0
- package/src/assets/img/wallet-icon-outline.svg +1 -0
- package/src/assets/img/wallet-icon.svg +1 -0
- package/src/assets/img/wallet.svg +43 -0
- package/src/assets/oca-bundles.json +174 -0
- package/src/components/animated/ButtonLoading.tsx +32 -0
- package/src/components/animated/ConnectionLoading.tsx +53 -0
- package/src/components/animated/CredentialAdded.tsx +72 -0
- package/src/components/animated/CredentialPending.tsx +63 -0
- package/src/components/animated/LoadingIndicator.tsx +49 -0
- package/src/components/animated/PresentationLoading.tsx +52 -0
- package/src/components/animated/RecordLoading.tsx +75 -0
- package/src/components/animated/SendingProof.tsx +53 -0
- package/src/components/animated/SentProof.tsx +72 -0
- package/src/components/buttons/Button-api.tsx +46 -0
- package/src/components/buttons/Button.tsx +95 -0
- package/src/components/buttons/HeaderHome.tsx +25 -0
- package/src/components/buttons/IconButton.tsx +91 -0
- package/src/components/buttons/InfoIcon.tsx +35 -0
- package/src/components/buttons/SettingsMenu.tsx +26 -0
- package/src/components/buttons/ToggleButton.tsx +93 -0
- package/src/components/buttons/index.ts +4 -0
- package/src/components/chat/ActionSlider.tsx +104 -0
- package/src/components/chat/ChatActions.tsx +23 -0
- package/src/components/chat/ChatBubble.tsx +20 -0
- package/src/components/chat/ChatEvent.tsx +31 -0
- package/src/components/chat/ChatMessage.tsx +142 -0
- package/src/components/chat/MessageInput.tsx +46 -0
- package/src/components/chat/index.ts +4 -0
- package/src/components/index.ts +4 -0
- package/src/components/inputs/BulletPoint.tsx +32 -0
- package/src/components/inputs/CheckBoxRow.tsx +67 -0
- package/src/components/inputs/InlineErrorText.tsx +60 -0
- package/src/components/inputs/LimitedTextInput.tsx +61 -0
- package/src/components/inputs/PINInput.tsx +138 -0
- package/src/components/inputs/SingleSelectBlock.tsx +53 -0
- package/src/components/listItems/ContactCredentialListItem.tsx +79 -0
- package/src/components/listItems/ContactListItem.tsx +123 -0
- package/src/components/listItems/NotificationListItem.tsx +514 -0
- package/src/components/misc/ActivityLogLink.tsx +34 -0
- package/src/components/misc/AvatarView.tsx +33 -0
- package/src/components/misc/CardWatermark.tsx +52 -0
- package/src/components/misc/ConnectionAlert.tsx +123 -0
- package/src/components/misc/ConnectionImage.tsx +45 -0
- package/src/components/misc/ContentGradient.tsx +40 -0
- package/src/components/misc/CredentialCard.tsx +158 -0
- package/src/components/misc/CredentialCard10.tsx +329 -0
- package/src/components/misc/CredentialCard11.tsx +678 -0
- package/src/components/misc/CredentialCard11ActionFooter.tsx +55 -0
- package/src/components/misc/CredentialCard11Issuer.tsx +74 -0
- package/src/components/misc/CredentialCard11Logo.tsx +61 -0
- package/src/components/misc/EmptyList.tsx +27 -0
- package/src/components/misc/EmptyListContacts.tsx +55 -0
- package/src/components/misc/InfoBox.tsx +281 -0
- package/src/components/misc/NoNewUpdates.tsx +38 -0
- package/src/components/misc/PINCreateHeader.tsx +25 -0
- package/src/components/misc/Pagination.tsx +114 -0
- package/src/components/misc/QRRenderer.tsx +53 -0
- package/src/components/misc/QRScanner.tsx +395 -0
- package/src/components/misc/QRScannerTorch.tsx +74 -0
- package/src/components/misc/ScanCamera.tsx +86 -0
- package/src/components/misc/ScanTab.tsx +45 -0
- package/src/components/misc/SharedProofData.tsx +98 -0
- package/src/components/misc/UnorderedList.tsx +28 -0
- package/src/components/misc/VerifierCredentialCard.tsx +378 -0
- package/src/components/misc/index.ts +2 -0
- package/src/components/modals/AlertModal.tsx +42 -0
- package/src/components/modals/AppGuideModal.tsx +142 -0
- package/src/components/modals/CameraDisclosureModal.tsx +126 -0
- package/src/components/modals/CommonRemoveModal.tsx +332 -0
- package/src/components/modals/DismissiblePopupModal.tsx +169 -0
- package/src/components/modals/ErrorModal.tsx +107 -0
- package/src/components/modals/ImageModal.tsx +80 -0
- package/src/components/modals/NetInfoModal.tsx +35 -0
- package/src/components/modals/NotificationModal.tsx +127 -0
- package/src/components/modals/PopupModal.tsx +56 -0
- package/src/components/modals/ProofCancelModal.tsx +79 -0
- package/src/components/modals/SafeAreaModal.tsx +17 -0
- package/src/components/network/NetInfo.tsx +36 -0
- package/src/components/record/Record.tsx +100 -0
- package/src/components/record/RecordBinaryField.tsx +55 -0
- package/src/components/record/RecordDateIntField.tsx +63 -0
- package/src/components/record/RecordField.tsx +154 -0
- package/src/components/record/RecordFooter.tsx +17 -0
- package/src/components/record/RecordHeader.tsx +17 -0
- package/src/components/record/RecordRemove.tsx +66 -0
- package/src/components/texts/HeaderTitle.tsx +25 -0
- package/src/components/texts/HighlightTextBox.tsx +41 -0
- package/src/components/texts/InfoTextBox.tsx +129 -0
- package/src/components/texts/Label.tsx +51 -0
- package/src/components/texts/Link.tsx +41 -0
- package/src/components/texts/Text.tsx +21 -0
- package/src/components/texts/ThemedText.tsx +24 -0
- package/src/components/texts/Title.tsx +25 -0
- package/src/components/toast/BaseToast.tsx +128 -0
- package/src/components/toast/ToastConfig.tsx +21 -0
- package/src/components/tour/AttachTourStep.tsx +73 -0
- package/src/components/tour/CredentialOfferTourSteps.tsx +41 -0
- package/src/components/tour/CredentialsTourSteps.tsx +41 -0
- package/src/components/tour/HomeTourSteps.tsx +104 -0
- package/src/components/tour/ProofRequestTourSteps.tsx +41 -0
- package/src/components/tour/SpotCutout.tsx +65 -0
- package/src/components/tour/TourBox.tsx +255 -0
- package/src/components/tour/TourOverlay.tsx +134 -0
- package/src/components/views/CredentialCardLogo.tsx +77 -0
- package/src/components/views/CredentialDetailPrimaryHeader.tsx +107 -0
- package/src/components/views/CredentialDetailSecondaryHeader.tsx +60 -0
- package/src/components/views/HomeFooterView.tsx +110 -0
- package/src/components/views/HomeHeaderView.tsx +12 -0
- package/src/components/views/KeyboardView.tsx +27 -0
- package/src/components/views/LoadingPlaceholder.tsx +168 -0
- package/src/components/views/LoadingView.tsx +29 -0
- package/src/components/views/ModularView.tsx +35 -0
- package/src/components/views/ProgressBar.tsx +53 -0
- package/src/configs/ledgers/indy/index.ts +8 -0
- package/src/configs/ledgers/indy/ledgers.json +51 -0
- package/src/constants.ts +108 -0
- package/src/container-api.ts +229 -0
- package/src/container-impl.ts +235 -0
- package/src/contexts/activity.tsx +170 -0
- package/src/contexts/animated-components.ts +9 -0
- package/src/contexts/auth.tsx +190 -0
- package/src/contexts/index.ts +3 -0
- package/src/contexts/network.tsx +81 -0
- package/src/contexts/reducers/index.ts +3 -0
- package/src/contexts/reducers/store.ts +676 -0
- package/src/contexts/store.tsx +100 -0
- package/src/contexts/theme.ts +9 -0
- package/src/contexts/tour/tour-context.tsx +160 -0
- package/src/contexts/tour/tour-provider.tsx +160 -0
- package/src/hooks/bundle-resolver.ts +95 -0
- package/src/hooks/chat-messages.tsx +263 -0
- package/src/hooks/connections.ts +37 -0
- package/src/hooks/credential-card-styles.ts +144 -0
- package/src/hooks/credentials.ts +11 -0
- package/src/hooks/deep-links.ts +51 -0
- package/src/hooks/initialize-agent.ts +158 -0
- package/src/hooks/notifications.ts +108 -0
- package/src/hooks/oob.ts +17 -0
- package/src/hooks/proof-request-templates.ts +40 -0
- package/src/hooks/proofs.ts +32 -0
- package/src/hooks/screen-capture.ts +52 -0
- package/src/hooks/useOnboardingState.ts +46 -0
- package/src/index.ts +225 -0
- package/src/layout/ScreenLayout.tsx +53 -0
- package/src/localization/en/index.ts +921 -0
- package/src/localization/fr/index.ts +897 -0
- package/src/localization/index.ts +66 -0
- package/src/localization/pt-br/index.ts +880 -0
- package/src/modules/history/context/historyManager.tsx +247 -0
- package/src/modules/history/index.ts +2 -0
- package/src/modules/history/navigation/HistoryStack.tsx +29 -0
- package/src/modules/history/services/queue.service.tsx +31 -0
- package/src/modules/history/types/index.ts +92 -0
- package/src/modules/history/ui/HistoryPage.tsx +133 -0
- package/src/modules/history/ui/HistorySettings.tsx +184 -0
- package/src/modules/history/ui/assets/img/HistoryCardAcceptedIcon.svg +4 -0
- package/src/modules/history/ui/assets/img/HistoryCardExpiredIcon.svg +4 -0
- package/src/modules/history/ui/assets/img/HistoryCardRevokedIcon.svg +4 -0
- package/src/modules/history/ui/assets/img/HistoryInformationSentIcon.svg +4 -0
- package/src/modules/history/ui/assets/img/HistoryPinUpdatedIcon.svg +4 -0
- package/src/modules/history/ui/assets/img/IconChevronRight.svg +3 -0
- package/src/modules/history/ui/components/BulletPoint.tsx +49 -0
- package/src/modules/history/ui/components/HistoryListItem.tsx +251 -0
- package/src/modules/history/ui/components/HistoryMenu.tsx +25 -0
- package/src/modules/history/ui/components/SingleSelectBlock.tsx +72 -0
- package/src/modules/openid/components/CredentialRowCard.tsx +64 -0
- package/src/modules/openid/components/OpenIDCredentialCard.tsx +277 -0
- package/src/modules/openid/context/OpenIDCredentialRecordProvider.tsx +296 -0
- package/src/modules/openid/display.tsx +464 -0
- package/src/modules/openid/displayProof.tsx +86 -0
- package/src/modules/openid/hooks/openid.tsx +111 -0
- package/src/modules/openid/metadata.tsx +53 -0
- package/src/modules/openid/offerResolve.tsx +281 -0
- package/src/modules/openid/resolverProof.tsx +286 -0
- package/src/modules/openid/screens/OpenIDCredentialDetails.tsx +214 -0
- package/src/modules/openid/screens/OpenIDCredentialOffer.tsx +191 -0
- package/src/modules/openid/screens/OpenIDProofPresentation.tsx +351 -0
- package/src/modules/openid/types.tsx +103 -0
- package/src/modules/openid/utils/utils.tsx +133 -0
- package/src/navigators/ConnectStack.tsx +68 -0
- package/src/navigators/ContactStack.tsx +97 -0
- package/src/navigators/CredentialStack.tsx +39 -0
- package/src/navigators/DeliveryStack.tsx +74 -0
- package/src/navigators/HomeStack.tsx +37 -0
- package/src/navigators/MainStack.tsx +122 -0
- package/src/navigators/NotificationStack.tsx +74 -0
- package/src/navigators/OnboardingScreens.ts +152 -0
- package/src/navigators/OnboardingStack.tsx +197 -0
- package/src/navigators/ProofRequestStack.tsx +113 -0
- package/src/navigators/RootStack.tsx +65 -0
- package/src/navigators/SettingStack.tsx +165 -0
- package/src/navigators/TabStack.tsx +303 -0
- package/src/navigators/defaultLayoutOptions.tsx +17 -0
- package/src/navigators/defaultStackOptions.tsx +84 -0
- package/src/navigators/index.ts +27 -0
- package/src/onboarding.ts +83 -0
- package/src/screens/AttemptLockout.tsx +153 -0
- package/src/screens/AutoLock.tsx +140 -0
- package/src/screens/Chat.tsx +131 -0
- package/src/screens/Connection.tsx +394 -0
- package/src/screens/ContactDetails.tsx +333 -0
- package/src/screens/CredentialDetails.tsx +429 -0
- package/src/screens/CredentialOffer.tsx +334 -0
- package/src/screens/CredentialOfferAccept.tsx +189 -0
- package/src/screens/DataRetention.tsx +91 -0
- package/src/screens/Developer.tsx +287 -0
- package/src/screens/Home.tsx +173 -0
- package/src/screens/Language.tsx +97 -0
- package/src/screens/ListContacts.tsx +112 -0
- package/src/screens/ListCredentials.tsx +135 -0
- package/src/screens/ListProofRequests.tsx +148 -0
- package/src/screens/MobileVerifierLoading.tsx +106 -0
- package/src/screens/NameWallet.tsx +160 -0
- package/src/screens/Onboarding.tsx +162 -0
- package/src/screens/OnboardingPages.tsx +212 -0
- package/src/screens/PINCreate.tsx +412 -0
- package/src/screens/PINEnter.tsx +628 -0
- package/src/screens/PINExplainer.tsx +85 -0
- package/src/screens/PasteUrl.tsx +140 -0
- package/src/screens/Preface.tsx +78 -0
- package/src/screens/ProofChangeCredential.tsx +179 -0
- package/src/screens/ProofDetails.tsx +348 -0
- package/src/screens/ProofRequest.tsx +881 -0
- package/src/screens/ProofRequestAccept.tsx +133 -0
- package/src/screens/ProofRequestDetails.tsx +270 -0
- package/src/screens/ProofRequestUsageHistory.tsx +152 -0
- package/src/screens/ProofRequesting.tsx +245 -0
- package/src/screens/PushNotification.tsx +186 -0
- package/src/screens/RenameContact.tsx +155 -0
- package/src/screens/Scan.tsx +145 -0
- package/src/screens/ScanHelp.tsx +48 -0
- package/src/screens/Settings.tsx +416 -0
- package/src/screens/Splash.tsx +91 -0
- package/src/screens/Terms.tsx +137 -0
- package/src/screens/Tours.tsx +93 -0
- package/src/screens/UpdateAvailable.tsx +119 -0
- package/src/screens/UseBiometry.tsx +357 -0
- package/src/screens/WhatAreContacts.tsx +71 -0
- package/src/services/keychain.ts +181 -0
- package/src/services/logger.ts +68 -0
- package/src/services/storage.ts +136 -0
- package/src/theme.ts +1144 -0
- package/src/types/attempt-lockout-config.ts +8 -0
- package/src/types/attestation.ts +17 -0
- package/src/types/chat.ts +4 -0
- package/src/types/config.ts +64 -0
- package/src/types/contact-details.ts +5 -0
- package/src/types/credential-list-footer.ts +3 -0
- package/src/types/credential-status.ts +3 -0
- package/src/types/credentials.ts +7 -0
- package/src/types/decline.ts +5 -0
- package/src/types/error.ts +40 -0
- package/src/types/fn.ts +2 -0
- package/src/types/genesis.ts +35 -0
- package/src/types/index.ts +2 -0
- package/src/types/metadata.ts +16 -0
- package/src/types/navigators.ts +216 -0
- package/src/types/notification.ts +24 -0
- package/src/types/permissions.ts +2 -0
- package/src/types/proof-items.ts +32 -0
- package/src/types/react-i18next.d.ts +10 -0
- package/src/types/remove.ts +8 -0
- package/src/types/security.ts +32 -0
- package/src/types/settings.ts +28 -0
- package/src/types/state.ts +92 -0
- package/src/types/tour.ts +20 -0
- package/src/types/version-check.ts +18 -0
- package/src/utils/PINCreationValidation.ts +98 -0
- package/src/utils/agent.ts +129 -0
- package/src/utils/anonCredsProofRequestMapper.ts +205 -0
- package/src/utils/contacts.ts +59 -0
- package/src/utils/cred-def.ts +33 -0
- package/src/utils/credential.ts +37 -0
- package/src/utils/crypto.ts +12 -0
- package/src/utils/fileCache.ts +152 -0
- package/src/utils/helpers.ts +1281 -0
- package/src/utils/luminance.ts +40 -0
- package/src/utils/migration.ts +40 -0
- package/src/utils/network.tsx +55 -0
- package/src/utils/oca.ts +132 -0
- package/src/utils/parsers.tsx +111 -0
- package/src/utils/proofBundle.ts +220 -0
- package/src/utils/schema.ts +28 -0
- package/src/utils/testable.ts +17 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<svg id="Group_2230" data-name="Group 2230" xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
xmlns:xlink="http://www.w3.org/1999/xlink" width="250" height="250" viewBox="0 0 250 250">
|
|
3
|
+
<defs>
|
|
4
|
+
<clipPath id="clip-path">
|
|
5
|
+
<rect id="Rectangle_1594" data-name="Rectangle 1594" width="250" height="250" fill="none" />
|
|
6
|
+
</clipPath>
|
|
7
|
+
<clipPath id="clip-path-2">
|
|
8
|
+
<path id="Path_528" data-name="Path 528"
|
|
9
|
+
d="M21.272,71.4l-.118.323a4.39,4.39,0,0,0,8.246,3l.129-.313.148-.363-8.243-3.04-.162.4"
|
|
10
|
+
transform="translate(-20.944 -71.005)" fill="none" />
|
|
11
|
+
</clipPath>
|
|
12
|
+
<clipPath id="clip-path-3">
|
|
13
|
+
<path id="Path_529" data-name="Path 529"
|
|
14
|
+
d="M120.1,16.171A105.345,105.345,0,0,0,21.69,84.208L21.205,85.4c1.377.5,2.064.751,2.064.751.688.25,1.376.5,2.065.752s1.376.5,2.065.751l2.064.752q.446-1.088.447-1.088A96.552,96.552,0,0,1,120.1,24.958h.025a96.3,96.3,0,0,1,96.4,95.262c.009.393.02.786.03,1.177h8.787q-.015-.64-.033-1.282A105.17,105.17,0,0,0,120.126,16.171Z"
|
|
15
|
+
transform="translate(-21.205 -16.171)" fill="none" />
|
|
16
|
+
</clipPath>
|
|
17
|
+
<clipPath id="clip-path-4">
|
|
18
|
+
<path id="Path_530" data-name="Path 530"
|
|
19
|
+
d="M176.822,99.694l.01.393.006.215a4.392,4.392,0,0,0,8.782-.009c0-.069,0-.138,0-.206l-.011-.428Z"
|
|
20
|
+
transform="translate(-176.822 -99.659)" fill="none" />
|
|
21
|
+
</clipPath>
|
|
22
|
+
<clipPath id="clip-path-5">
|
|
23
|
+
<path id="Path_531" data-name="Path 531"
|
|
24
|
+
d="M171.908,127.843l-.127.3-.005.011c-.043.1-.085.2-.129.3l-.025.059,8.188,3.186.168-.4c.039-.1.079-.2.12-.309a4.391,4.391,0,0,0-8.191-3.148"
|
|
25
|
+
transform="translate(-171.622 -125.187)" fill="none" />
|
|
26
|
+
</clipPath>
|
|
27
|
+
<clipPath id="clip-path-6">
|
|
28
|
+
<path id="Path_532" data-name="Path 532"
|
|
29
|
+
d="M22.76,100H16.17c.01.428.02.855.031,1.283A105.172,105.172,0,0,0,121.384,205.228h.028a105.344,105.344,0,0,0,97.743-66.316s.168-.393.5-1.182l-2.05-.786c-.684-.265-1.367-.526-2.05-.788s-1.368-.525-2.051-.788l-2.051-.787q-.465,1.081-.464,1.081a96.56,96.56,0,0,1-89.581,60.781h-.025a96.3,96.3,0,0,1-96.4-95.262c-.009-.393-.02-.787-.03-1.179Z"
|
|
30
|
+
transform="translate(-16.17 -100)" fill="none" />
|
|
31
|
+
</clipPath>
|
|
32
|
+
<clipPath id="clip-path-7">
|
|
33
|
+
<path id="Path_533" data-name="Path 533"
|
|
34
|
+
d="M20.453,96.416a4.394,4.394,0,0,0-4.283,4.289v.21c0,.143.008.285.01.427l8.787-.035-.01-.392-.006-.215a4.392,4.392,0,0,0-4.388-4.285h-.109"
|
|
35
|
+
transform="translate(-16.17 -96.415)" fill="none" />
|
|
36
|
+
</clipPath>
|
|
37
|
+
<image id="image" width="10.042" height="7.532"
|
|
38
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAYSURBVBhXY/z//z8DPsAEpXGCgVfAwAAATzwDCfhL/VYAAAAASUVORK5CYII=" />
|
|
39
|
+
</defs>
|
|
40
|
+
<g id="Group_2229" data-name="Group 2229" clip-path="url(#clip-path)">
|
|
41
|
+
<g id="Group_2216" data-name="Group 2216" transform="translate(26.29 89.129)">
|
|
42
|
+
<g id="Group_2215" data-name="Group 2215" clip-path="url(#clip-path-2)">
|
|
43
|
+
<use id="Rectangle_1587" data-name="Rectangle 1587" transform="translate(-1.184 -0.006)" xlink:href="#image" />
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
<g id="Group_2218" data-name="Group 2218" transform="translate(26.618 20.299)">
|
|
47
|
+
<g id="Group_2217" data-name="Group 2217" clip-path="url(#clip-path-3)">
|
|
48
|
+
<image id="Rectangle_1588" data-name="Rectangle 1588" width="204.606" height="105.441"
|
|
49
|
+
transform="translate(-0.257 -0.215)"
|
|
50
|
+
xlink:href="data:image/png;base64,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" />
|
|
51
|
+
</g>
|
|
52
|
+
</g>
|
|
53
|
+
<g id="Group_2220" data-name="Group 2220" transform="translate(221.956 125.097)">
|
|
54
|
+
<g id="Group_2219" data-name="Group 2219" clip-path="url(#clip-path-4)">
|
|
55
|
+
<image id="Rectangle_1589" data-name="Rectangle 1589" width="10.042" height="6.276"
|
|
56
|
+
transform="translate(-1.032 -0.827)"
|
|
57
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAkSURBVBhXY/yzS/IfAwT8B2JGdJoJygFhGBuFBhF4AaUKGBgAg00F4iY3qXwAAAAASUVORK5CYII=" />
|
|
58
|
+
</g>
|
|
59
|
+
</g>
|
|
60
|
+
<g id="Group_2222" data-name="Group 2222" transform="translate(215.429 157.141)">
|
|
61
|
+
<g id="Group_2221" data-name="Group 2221" clip-path="url(#clip-path-5)">
|
|
62
|
+
<use id="Rectangle_1590" data-name="Rectangle 1590" transform="translate(-0.781 -0.235)" xlink:href="#image" />
|
|
63
|
+
</g>
|
|
64
|
+
</g>
|
|
65
|
+
<g id="Group_2224" data-name="Group 2224" transform="translate(20.297 125.525)">
|
|
66
|
+
<g id="Group_2223" data-name="Group 2223" clip-path="url(#clip-path-6)">
|
|
67
|
+
<image id="Rectangle_1591" data-name="Rectangle 1591" width="204.606" height="105.441"
|
|
68
|
+
transform="translate(-0.213)"
|
|
69
|
+
xlink:href="data:image/png;base64,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" />
|
|
70
|
+
</g>
|
|
71
|
+
</g>
|
|
72
|
+
<g id="Group_2226" data-name="Group 2226" transform="translate(20.297 121.025)">
|
|
73
|
+
<g id="Group_2225" data-name="Group 2225" clip-path="url(#clip-path-7)">
|
|
74
|
+
<image id="Rectangle_1592" data-name="Rectangle 1592" width="10.042" height="6.276"
|
|
75
|
+
transform="translate(-0.213 -0.521)"
|
|
76
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAhSURBVBhXY/yzS/I/Ax7ABKVxAuooALnhHxKG8YE0w38AQ0sKzHTI7lUAAAAASUVORK5CYII=" />
|
|
77
|
+
</g>
|
|
78
|
+
</g>
|
|
79
|
+
<g id="Group_2228" data-name="Group 2228">
|
|
80
|
+
<g id="Group_2227" data-name="Group 2227" clip-path="url(#clip-path)">
|
|
81
|
+
<path id="Path_534" data-name="Path 534"
|
|
82
|
+
d="M34.775,102.553A12.553,12.553,0,1,1,22.223,90a12.552,12.552,0,0,1,12.553,12.553"
|
|
83
|
+
transform="translate(2.468 22.973)" fill="#fcba19" />
|
|
84
|
+
<path id="Path_535" data-name="Path 535"
|
|
85
|
+
d="M195.435,102.553A12.553,12.553,0,1,1,182.883,90a12.552,12.552,0,0,1,12.553,12.553"
|
|
86
|
+
transform="translate(43.477 22.973)" fill="#fcba19" />
|
|
87
|
+
</g>
|
|
88
|
+
</g>
|
|
89
|
+
</g>
|
|
90
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><style>.cls-1{fill:#335c85;}.cls-2{fill:#036;}.cls-3{fill:#8099b3;}.cls-4{fill:#fcba19;}</style></defs><path class="cls-1" d="M78.86,29.09V40.24H72V28.73a12.11,12.11,0,1,0-24.22,0V40.24H41.14V29.09a18.86,18.86,0,0,1,37.72,0Z"/><path class="cls-2" d="M78.86,42.24H72a2,2,0,0,1-2-2V28.73a10.11,10.11,0,1,0-20.22,0V40.24a2,2,0,0,1-2,2H41.14a2,2,0,0,1-2-2V29.09a20.86,20.86,0,0,1,41.72,0V40.24A2,2,0,0,1,78.86,42.24Zm-4.86-4h2.86V29.09a16.86,16.86,0,0,0-33.72,0v9.15h2.64V28.73a14.11,14.11,0,1,1,28.22,0Z"/><circle class="cls-3" cx="60" cy="73.54" r="38.06"/><path class="cls-2" d="M60,113.61a40.07,40.07,0,1,1,40.06-40.07A40.11,40.11,0,0,1,60,113.61Zm0-76.13A36.07,36.07,0,1,0,96.06,73.54,36.11,36.11,0,0,0,60,37.48Z"/><rect class="cls-4" x="57.71" y="49.11" width="4.57" height="24.43" rx="2.29"/><rect class="cls-4" x="69.43" y="69.93" width="4.57" height="29.38" rx="2.29" transform="translate(-39.21 84.11) rotate(-49.46)"/><circle class="cls-1" cx="60" cy="73.54" r="5.27"/><path class="cls-2" d="M60,80.82a7.28,7.28,0,1,1,7.27-7.28A7.29,7.29,0,0,1,60,80.82Zm0-10.55a3.28,3.28,0,1,0,3.27,3.27A3.28,3.28,0,0,0,60,70.27Z"/><circle class="cls-1" cx="60" cy="104.41" r="2.29"/><circle class="cls-1" cx="60" cy="42.67" r="2.29"/><circle class="cls-1" cx="90.87" cy="73.54" r="2.29"/><circle class="cls-1" cx="29.13" cy="73.54" r="2.29"/></svg>
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="138" height="154"
|
|
2
|
+
viewBox="0 0 138 154">
|
|
3
|
+
<defs>
|
|
4
|
+
<clipPath id="clip-path">
|
|
5
|
+
<rect id="Rectangle_2877" data-name="Rectangle 2877" width="138" height="154" transform="translate(31 23)"
|
|
6
|
+
fill="none" />
|
|
7
|
+
</clipPath>
|
|
8
|
+
</defs>
|
|
9
|
+
<g id="Group_5139" data-name="Group 5139" transform="translate(-31 -23)">
|
|
10
|
+
<g id="Group_5138" data-name="Group 5138" clip-path="url(#clip-path)">
|
|
11
|
+
<path id="Path_2759" data-name="Path 2759"
|
|
12
|
+
d="M158.363,174.78H41.638a8.494,8.494,0,0,1-8.494-8.494V83.725a8.494,8.494,0,0,1,8.494-8.494H158.363a8.494,8.494,0,0,1,8.494,8.494v82.561a8.494,8.494,0,0,1-8.494,8.494"
|
|
13
|
+
fill="#8099b3" />
|
|
14
|
+
<path id="Path_2760" data-name="Path 2760"
|
|
15
|
+
d="M158.363,176.78H41.637a10.506,10.506,0,0,1-10.494-10.493V83.726A10.506,10.506,0,0,1,41.637,73.232H158.363a10.506,10.506,0,0,1,10.493,10.494v82.561a10.5,10.5,0,0,1-10.493,10.493M41.637,77.232a6.5,6.5,0,0,0-6.494,6.494v82.561a6.5,6.5,0,0,0,6.494,6.493H158.363a6.5,6.5,0,0,0,6.493-6.493V83.726a6.5,6.5,0,0,0-6.493-6.494Z"
|
|
16
|
+
fill="#036" />
|
|
17
|
+
<path id="Path_2761" data-name="Path 2761"
|
|
18
|
+
d="M131.426,56.64V75.234H120V56.044a20.182,20.182,0,0,0-40.364,0v19.19H68.574V56.64a31.426,31.426,0,0,1,62.852,0"
|
|
19
|
+
fill="#335c85" />
|
|
20
|
+
<path id="Path_2762" data-name="Path 2762"
|
|
21
|
+
d="M131.426,77.234H120a2,2,0,0,1-2-2V56.045a18.182,18.182,0,1,0-36.365,0V75.234a2,2,0,0,1-2,2H68.574a2,2,0,0,1-2-2V56.64a33.426,33.426,0,0,1,66.852,0V75.234a2,2,0,0,1-2,2m-9.425-4h7.425V56.64a29.426,29.426,0,0,0-58.852,0V73.234h7.062V56.045a22.182,22.182,0,1,1,44.365,0Z"
|
|
22
|
+
fill="#036" />
|
|
23
|
+
<path id="Path_2763" data-name="Path 2763" d="M100,167.6a2,2,0,0,1-2-2V84.915a2,2,0,0,1,4,0V165.6a2,2,0,0,1-2,2"
|
|
24
|
+
fill="#fcba19" />
|
|
25
|
+
<path id="Path_2764" data-name="Path 2764"
|
|
26
|
+
d="M77.017,124.237q-.007-.308-.008-.618a22.986,22.986,0,0,1,7.313-16.78A2,2,0,1,0,81.6,103.91a27,27,0,0,0-8.588,19.709c0,.242,0,.483.01.726.005.168.409,16.9-4.312,27.73a2,2,0,1,0,3.666,1.6c5.075-11.644,4.665-28.717,4.644-29.436"
|
|
27
|
+
fill="#fcba19" />
|
|
28
|
+
<path id="Path_2765" data-name="Path 2765"
|
|
29
|
+
d="M89.738,123.619v6.437a2,2,0,0,0,4,0v-6.437a6.186,6.186,0,0,1,6.181-6.18c.028,0,.053,0,.08,0v-4c-.027,0-.053,0-.08,0a10.191,10.191,0,0,0-10.181,10.18"
|
|
30
|
+
fill="#fcba19" />
|
|
31
|
+
<path id="Path_2766" data-name="Path 2766"
|
|
32
|
+
d="M69.051,123.619A30.9,30.9,0,0,1,99.918,92.752l.082,0v-4l-.082,0a34.909,34.909,0,0,0-34.867,34.879c0,.131.047,13.249-2.329,20.147a2,2,0,1,0,3.781,1.3c2.6-7.544,2.551-20.907,2.548-21.461"
|
|
33
|
+
fill="#fcba19" />
|
|
34
|
+
<path id="Path_2767" data-name="Path 2767"
|
|
35
|
+
d="M89.962,98.613a2,2,0,0,0,1.48,3.716,22.791,22.791,0,0,1,8.476-1.619l.082,0v-4l-.082,0a26.765,26.765,0,0,0-9.956,1.9"
|
|
36
|
+
fill="#fcba19" />
|
|
37
|
+
<path id="Path_2768" data-name="Path 2768" d="M100,162c-.394,1.29-.646,2.051-.66,2.093a2,2,0,0,0,.66,2.2Z"
|
|
38
|
+
fill="#fcba19" />
|
|
39
|
+
<path id="Path_2769" data-name="Path 2769"
|
|
40
|
+
d="M99.918,109.155c.028,0,.054,0,.082,0v-4c-.028,0-.054,0-.082,0a18.947,18.947,0,0,0-18.464,18.463c0,9.235-.639,21.412-5.621,33.7a2,2,0,1,0,3.707,1.5c5.242-12.93,5.914-25.605,5.914-35.2a14.843,14.843,0,0,1,14.464-14.463"
|
|
41
|
+
fill="#fcba19" />
|
|
42
|
+
<path id="Path_2770" data-name="Path 2770"
|
|
43
|
+
d="M95.539,156.768a2,2,0,0,0-2.5,1.32,60.084,60.084,0,0,1-2.075,5.833,2,2,0,0,0,3.657,1.619,61.869,61.869,0,0,0,2.24-6.271,2,2,0,0,0-1.32-2.5"
|
|
44
|
+
fill="#fcba19" />
|
|
45
|
+
<path id="Path_2771" data-name="Path 2771"
|
|
46
|
+
d="M100,121.315h0a2,2,0,0,0-2,2,122.209,122.209,0,0,1-2.8,26.537,2,2,0,1,0,3.907.861c.33-1.5.621-3.012.895-4.532Z"
|
|
47
|
+
fill="#fcba19" />
|
|
48
|
+
<path id="Path_2772" data-name="Path 2772"
|
|
49
|
+
d="M91.2,136.717a2.006,2.006,0,0,0-2.214,1.762A91.212,91.212,0,0,1,83.367,161a2,2,0,1,0,3.743,1.4,95.173,95.173,0,0,0,5.851-23.478,2,2,0,0,0-1.761-2.212"
|
|
50
|
+
fill="#fcba19" />
|
|
51
|
+
<path id="Path_2773" data-name="Path 2773"
|
|
52
|
+
d="M130.928,113.2c-.37-.25-5.43-3.43-15.5-.2-10.18,3.27-15.16-10.66-15.43-11.45V90.43h.07a32.293,32.293,0,0,1,30.86,22.77"
|
|
53
|
+
fill="#fcba19" />
|
|
54
|
+
<path id="Path_2774" data-name="Path 2774"
|
|
55
|
+
d="M112.361,115.506c-7.563,0-12.427-7.951-14.256-13.31A2,2,0,0,1,98,101.55V90.43a2,2,0,0,1,2-2,34.127,34.127,0,0,1,32.841,24.182,2,2,0,0,1-3.029,2.246c-.066-.042-4.568-2.9-13.772.046a11.976,11.976,0,0,1-3.677.6M102,101.2c.731,1.969,5.021,12.4,12.818,9.894a25.9,25.9,0,0,1,12.706-1.205A30.084,30.084,0,0,0,102,92.49Z"
|
|
56
|
+
fill="#fcba19" />
|
|
57
|
+
<path id="Path_2775" data-name="Path 2775"
|
|
58
|
+
d="M137.9,125.52a7.038,7.038,0,0,1-7.04,7.04c-4.15,13.05-10.28,29.97-30.86,29.97V101.55c.27.79,5.25,14.72,15.43,11.45,10.07-3.23,15.13-.05,15.5.2a31.156,31.156,0,0,1,1.18,5.39,7.046,7.046,0,0,1,5.79,6.93"
|
|
59
|
+
fill="#f9f1c6" />
|
|
60
|
+
<path id="Path_2776" data-name="Path 2776"
|
|
61
|
+
d="M100,164.53a2,2,0,0,1-2-2V101.55a2,2,0,0,1,3.893-.646c.18.528,4.509,12.9,12.925,10.192,10.923-3.5,16.618.033,17.231.447a2,2,0,0,1,.788,1.055,33,33,0,0,1,1.058,4.4,9.044,9.044,0,0,1-1.534,17.435C128.572,146.257,121.985,164.53,100,164.53m2-54.981v50.923c16.779-.995,22.527-14.6,26.954-28.518a2,2,0,0,1,1.906-1.394,5.041,5.041,0,0,0,.9-10,2,2,0,0,1-1.63-1.711,29.546,29.546,0,0,0-.874-4.278c-1.466-.658-5.823-2.036-13.213.334-6.145,1.976-10.87-1.195-14.04-5.355"
|
|
62
|
+
fill="#fcba19" />
|
|
63
|
+
<path id="Path_2777" data-name="Path 2777" d="M130.948,115.21a2.06,2.06,0,0,1-1.435-.6,2.008,2.008,0,1,1,1.435.6"
|
|
64
|
+
fill="#fcba19" />
|
|
65
|
+
<path id="Path_2778" data-name="Path 2778"
|
|
66
|
+
d="M100,103.55a2,2,0,0,1-1.8-1.124,2.142,2.142,0,0,1-.212-.906A2.007,2.007,0,1,1,100,103.55" fill="#fcba19" />
|
|
67
|
+
<path id="Path_2779" data-name="Path 2779" d="M117.786,125.517a4.2,4.2,0,1,1-4.2-4.2,4.2,4.2,0,0,1,4.2,4.2"
|
|
68
|
+
fill="#fcba19" />
|
|
69
|
+
<path id="Path_2780" data-name="Path 2780"
|
|
70
|
+
d="M100,151.823a2,2,0,0,1,0-4c5.1,0,8.645-2.523,8.645-4.788a2,2,0,0,1,4,0c0,4.928-5.554,8.788-12.645,8.788"
|
|
71
|
+
fill="#fcba19" />
|
|
72
|
+
</g>
|
|
73
|
+
</g>
|
|
74
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><style>.cls-1{fill:#335c85;}.cls-1,.cls-2,.cls-3{stroke-width:0px;}.cls-2{fill:#036;}.cls-3{fill:#8099b3;}</style></defs><path class="cls-3" d="m74.18,110.91H25.88c-6.91,0-12.51,5.6-12.51,12.51v26.59c0,6.91,5.6,12.51,12.51,12.51h4.7v17.5l24.04-17.5h19.55c6.91,0,12.51-5.6,12.51-12.51v-26.59c0-6.91-5.6-12.51-12.51-12.51Z"/><path class="cls-2" d="m30.58,182.01c-.31,0-.62-.07-.91-.22-.67-.34-1.09-1.03-1.09-1.78v-15.5h-2.7c-8,0-14.51-6.51-14.51-14.51v-26.59c0-8,6.51-14.51,14.51-14.51h48.29c8,0,14.51,6.51,14.51,14.51v26.59c0,8-6.51,14.51-14.51,14.51h-18.9l-23.52,17.12c-.35.25-.76.38-1.18.38Zm-4.7-69.1c-5.79,0-10.51,4.71-10.51,10.51v26.59c0,5.79,4.71,10.51,10.51,10.51h4.7c1.1,0,2,.9,2,2v13.57l20.87-15.19c.34-.25.75-.38,1.18-.38h19.55c5.79,0,10.51-4.71,10.51-10.51v-26.59c0-5.79-4.71-10.51-10.51-10.51H25.88Z"/><circle class="cls-2" cx="31.48" cy="136.87" r="5.45"/><circle class="cls-1" cx="50.01" cy="136.87" r="5.45"/><circle class="cls-1" cx="68.58" cy="136.87" r="5.45"/><path class="cls-3" d="m127.98,21.79h48.29c6.91,0,12.51,5.6,12.51,12.51v26.59c0,6.91-5.6,12.51-12.51,12.51h-4.7s0,17.5,0,17.5l-24.04-17.5h-19.55c-6.91,0-12.51-5.6-12.51-12.51v-26.59c0-6.91,5.6-12.51,12.51-12.51Z"/><path class="cls-2" d="m171.57,92.89c-.42,0-.83-.13-1.18-.38l-23.52-17.12h-18.9c-8,0-14.51-6.51-14.51-14.51v-26.59c0-8,6.51-14.51,14.51-14.51h48.29c8,0,14.51,6.51,14.51,14.51v26.59c0,8-6.51,14.51-14.51,14.51h-2.7v15.5c0,.75-.42,1.44-1.09,1.78-.29.15-.6.22-.91.22ZM127.98,23.79c-5.79,0-10.51,4.71-10.51,10.51v26.59c0,5.79,4.71,10.51,10.51,10.51h19.55c.42,0,.83.13,1.18.38l20.87,15.19v-13.57c0-1.1.9-2,2-2h4.7c5.79,0,10.51-4.71,10.51-10.51v-26.59c0-5.79-4.71-10.51-10.51-10.51h-48.29Z"/><circle class="cls-2" cx="133.57" cy="47.75" r="5.45"/><circle class="cls-1" cx="152.11" cy="47.75" r="5.45"/><circle class="cls-1" cx="170.67" cy="47.75" r="5.45"/></svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.5 35.5">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>
|
|
4
|
+
.cls-1 {
|
|
5
|
+
fill: #dff0d8;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.cls-2 {
|
|
9
|
+
fill: #2d4821;
|
|
10
|
+
}
|
|
11
|
+
</style>
|
|
12
|
+
</defs>
|
|
13
|
+
<circle class="cls-1" cx="17.75" cy="17.75" r="15.75" />
|
|
14
|
+
<path class="cls-2"
|
|
15
|
+
d="M17.75,35.5A17.75,17.75,0,1,1,35.5,17.75,17.77,17.77,0,0,1,17.75,35.5Zm0-31.5A13.75,13.75,0,1,0,31.5,17.75,13.77,13.77,0,0,0,17.75,4Z" />
|
|
16
|
+
<path class="cls-2"
|
|
17
|
+
d="M16.23,26.42a2,2,0,0,1-1.42-.58L9.15,20.17A2,2,0,0,1,12,17.35l4.12,4.12,8.66-10.22a2,2,0,1,1,3,2.58L17.75,25.71a2,2,0,0,1-1.44.71Z" />
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
<svg id="Group_2230" data-name="Group 2230" xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
xmlns:xlink="http://www.w3.org/1999/xlink" width="250" height="250" viewBox="0 0 250 250">
|
|
3
|
+
<defs>
|
|
4
|
+
<clipPath id="clip-path">
|
|
5
|
+
<rect id="Rectangle_1594" data-name="Rectangle 1594" width="250" height="250" fill="none" />
|
|
6
|
+
</clipPath>
|
|
7
|
+
<clipPath id="clip-path-2">
|
|
8
|
+
<path id="Path_528" data-name="Path 528"
|
|
9
|
+
d="M21.272,71.4l-.118.323a4.39,4.39,0,0,0,8.246,3l.129-.313.148-.363-8.243-3.04-.162.4"
|
|
10
|
+
transform="translate(-20.944 -71.005)" fill="none" />
|
|
11
|
+
</clipPath>
|
|
12
|
+
<clipPath id="clip-path-3">
|
|
13
|
+
<path id="Path_529" data-name="Path 529"
|
|
14
|
+
d="M120.1,16.171A105.345,105.345,0,0,0,21.69,84.208L21.205,85.4c1.377.5,2.064.751,2.064.751.688.25,1.376.5,2.065.752s1.376.5,2.065.751l2.064.752q.446-1.088.447-1.088A96.552,96.552,0,0,1,120.1,24.958h.025a96.3,96.3,0,0,1,96.4,95.262c.009.393.02.786.03,1.177h8.787q-.015-.64-.033-1.282A105.17,105.17,0,0,0,120.126,16.171Z"
|
|
15
|
+
transform="translate(-21.205 -16.171)" fill="none" />
|
|
16
|
+
</clipPath>
|
|
17
|
+
<clipPath id="clip-path-4">
|
|
18
|
+
<path id="Path_530" data-name="Path 530"
|
|
19
|
+
d="M176.822,99.694l.01.393.006.215a4.392,4.392,0,0,0,8.782-.009c0-.069,0-.138,0-.206l-.011-.428Z"
|
|
20
|
+
transform="translate(-176.822 -99.659)" fill="none" />
|
|
21
|
+
</clipPath>
|
|
22
|
+
<clipPath id="clip-path-5">
|
|
23
|
+
<path id="Path_531" data-name="Path 531"
|
|
24
|
+
d="M171.908,127.843l-.127.3-.005.011c-.043.1-.085.2-.129.3l-.025.059,8.188,3.186.168-.4c.039-.1.079-.2.12-.309a4.391,4.391,0,0,0-8.191-3.148"
|
|
25
|
+
transform="translate(-171.622 -125.187)" fill="none" />
|
|
26
|
+
</clipPath>
|
|
27
|
+
<clipPath id="clip-path-6">
|
|
28
|
+
<path id="Path_532" data-name="Path 532"
|
|
29
|
+
d="M22.76,100H16.17c.01.428.02.855.031,1.283A105.172,105.172,0,0,0,121.384,205.228h.028a105.344,105.344,0,0,0,97.743-66.316s.168-.393.5-1.182l-2.05-.786c-.684-.265-1.367-.526-2.05-.788s-1.368-.525-2.051-.788l-2.051-.787q-.465,1.081-.464,1.081a96.56,96.56,0,0,1-89.581,60.781h-.025a96.3,96.3,0,0,1-96.4-95.262c-.009-.393-.02-.787-.03-1.179Z"
|
|
30
|
+
transform="translate(-16.17 -100)" fill="none" />
|
|
31
|
+
</clipPath>
|
|
32
|
+
<clipPath id="clip-path-7">
|
|
33
|
+
<path id="Path_533" data-name="Path 533"
|
|
34
|
+
d="M20.453,96.416a4.394,4.394,0,0,0-4.283,4.289v.21c0,.143.008.285.01.427l8.787-.035-.01-.392-.006-.215a4.392,4.392,0,0,0-4.388-4.285h-.109"
|
|
35
|
+
transform="translate(-16.17 -96.415)" fill="none" />
|
|
36
|
+
</clipPath>
|
|
37
|
+
<image id="image" width="10.042" height="7.532"
|
|
38
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAYSURBVBhXY/z//z8DPsAEpXGCgVfAwAAATzwDCfhL/VYAAAAASUVORK5CYII=" />
|
|
39
|
+
</defs>
|
|
40
|
+
<g id="Group_2229" data-name="Group 2229" clip-path="url(#clip-path)">
|
|
41
|
+
<g id="Group_2216" data-name="Group 2216" transform="translate(26.29 89.129)">
|
|
42
|
+
<g id="Group_2215" data-name="Group 2215" clip-path="url(#clip-path-2)">
|
|
43
|
+
<use id="Rectangle_1587" data-name="Rectangle 1587" transform="translate(-1.184 -0.006)" xlink:href="#image" />
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
<g id="Group_2218" data-name="Group 2218" transform="translate(26.618 20.299)">
|
|
47
|
+
<g id="Group_2217" data-name="Group 2217" clip-path="url(#clip-path-3)">
|
|
48
|
+
<image id="Rectangle_1588" data-name="Rectangle 1588" width="204.606" height="105.441"
|
|
49
|
+
transform="translate(-0.257 -0.215)"
|
|
50
|
+
xlink:href="data:image/png;base64,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" />
|
|
51
|
+
</g>
|
|
52
|
+
</g>
|
|
53
|
+
<g id="Group_2220" data-name="Group 2220" transform="translate(221.956 125.097)">
|
|
54
|
+
<g id="Group_2219" data-name="Group 2219" clip-path="url(#clip-path-4)">
|
|
55
|
+
<image id="Rectangle_1589" data-name="Rectangle 1589" width="10.042" height="6.276"
|
|
56
|
+
transform="translate(-1.032 -0.827)"
|
|
57
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAkSURBVBhXY/yzS/IfAwT8B2JGdJoJygFhGBuFBhF4AaUKGBgAg00F4iY3qXwAAAAASUVORK5CYII=" />
|
|
58
|
+
</g>
|
|
59
|
+
</g>
|
|
60
|
+
<g id="Group_2222" data-name="Group 2222" transform="translate(215.429 157.141)">
|
|
61
|
+
<g id="Group_2221" data-name="Group 2221" clip-path="url(#clip-path-5)">
|
|
62
|
+
<use id="Rectangle_1590" data-name="Rectangle 1590" transform="translate(-0.781 -0.235)" xlink:href="#image" />
|
|
63
|
+
</g>
|
|
64
|
+
</g>
|
|
65
|
+
<g id="Group_2224" data-name="Group 2224" transform="translate(20.297 125.525)">
|
|
66
|
+
<g id="Group_2223" data-name="Group 2223" clip-path="url(#clip-path-6)">
|
|
67
|
+
<image id="Rectangle_1591" data-name="Rectangle 1591" width="204.606" height="105.441"
|
|
68
|
+
transform="translate(-0.213)"
|
|
69
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKMAAABUCAYAAADu+4chAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAhpSURBVHhe7Z1LiBxVFIYzefhGEAmYgBt3Lt3pyoXEbEQEQQRBUEEUX/hCJaIiKoiCii5EEEVRBEFBBCFxJ7hy59qNi1FERMS3Scb/v3P/yuk7t2b6UdVd3fN/cDzn3qoeaqq+nFvVzvSsnTx+6NSeM+xFnNwsN9l3ZP1ALo3pFcp3OsSIiMbMk1LGWhgzFyyjGQxtMnK5VhgzF6KMUcAopjFzgTLWBIxhzFzwPaMZDDUZ43J98tSJwz8iG9M7e/cdWT+ITAn55jdjowhKaUzvsDMSSqiuGLukwpjekYwUrhRRS7VlNHMhyhgFjGKyNqZ3ShmjgHFsTO9IxrIT8h6SmcGHGGN6J3ZGPUnrYYb1fwgKaUzvSEaKp64YO2Ti1InD3+bSmN4o7xlJzCNSGtMnScZ9R9YvT6OtIsYwplfUGQk7oJbpuFyn+0gs1d8gG9MbUcZGvJxVS0ov16ZXGhmxVF+RS4kXuyODchrTG7EzEglIJCG7Y+qQWKq/QjamF0oZo4BaqkkU1JheGJERS/WVSBRQUpbLtZdq0xtlZyQSj0GY41L9JSeN6ZqajLETarkmmmMY0zlbZMRSfTUSBUydEBGXanVIYzqn1hlJ7IIKScjamM5pk7HshPGhhj848TmzMV3SJiPlk4CEcpZiGtMpVRlx33gUSZ2QP9NIAYnm+FT9aZoxpiPaOiNRF+Q+jYQ5JKcxnbGdjBIvvtVDCbVMszt+jGxMJ7TKiKX6eqQoIDulpCTaZkwnbNcZKeQNuZSAhLWWcD5Zf8hszKxsK2NG3VChbqgxhfyA2ZhZ2FFGdMcbc6nlupGwko2ZmnE6I4kSKrRUM7M7vsdszLSMJSO64025VAeMS7WE5FO3MVMzbmcksRPGzihB2R3fzqUxEzO2jOiOtyDFzsg6xoiYxkzKJJ2RULgonTLnEuiOb+XSmIlY29hoPBoLyPYuUilhHLPeQCe9O80YMyaTdkZSEzHePyobMxETy4iOdzuShJN8/DqqE+igb+TSmLGYpjNSyDuQ2A0ZJHbGRkoI+RqzMeMwlYwZvVZCUkKi7pjGEPKVNDJmB6aWEd3xTqQoHuuyO6YMIV9GNivGyeOH1nLZCbN0RgrJJ2aJR1SrWzZAyJdyaVYAidilkDPJSCDkPbmMUpJ4H6lsVoBSwK6EnFnGTK07klhzuX4h12ZJaROP87NK2YmM6I73I1G8uDyXUiYg5PO5NEsGZNvRF1zfqYXsqjNSyAdzSSElInOsU8YBP4tslohxRCST/h+9SGcyEgj5UC4lH4kiNkDIZ3JpBs64IpL91/4wtY2dykgg5CNIUcSYNZ8yhHw6jcxgqYjIZbi6FM8iIulcRgIhH0PigVE6LdsMzum+Mh04hHwyjczggIj7clljpoeVGr3ImFEXFPpXwxxrCnkM8USaMYNgBxFF0yVn7Ypk4h8hmwQIxidndUSimiFZtS29L4mu+uLm0CwCSLgfqZSiHI8AEcvGMxV9dkYu18eQJF6Ur6ybt4QgMO85zQLIIpLyvrB1Se5KRNKrjARCPpXLKCEp/7U1Ywj5cC7NnICIB3LZRilopyKSXpfpCASjlGVHJKzbxly2X+Wk6Y8gIs97jXJ+o2sRydxkFJCST88jT9Q5J/lyEI5TQMjX04zpFEh4Vi5LCbYdQ8TmtqpLel+mSyDWc7mUeIwooiRknYDA9+bSdAREPHttrfVWsKTZsS8Rydw7o4BgjyNJPsI6dkwdmORMgkLmNzlppgMSnoMUL7rqOEdGxpCw9w9pWJiMBEI+isQD0EGoIzJUkzhOASn9K7ETAAnPRYrnU9TmIrw/nMunhSxURgIh+VYOD2I7+WJNmjlI6U+x2AGIeB5SPHcxk7aaHZEfoz0XFi6jgJT8qR8ejA6IsjFIlJFRjnkv+g6zOQMkPD+XzXmq5D353hEqNFOpmKeIZDAyEgj5AJJEI8xbxAM1OfnU/T7yrgcSXpBLnS+dJ5FqScj/MMsFSPhvKubMoGQkEPI+JB4UoxQzzmmeDz0ap4CUu/LDSyHhhbmM50M040JCoprnbiEiksHJSCAkf6+G0hGdRMZ2c1HSVOPEfoS80kDAi5Di+SDVegcJ/8n1whikjAJS3oXUnEwQhYtzmifMGiufwsn+BHllgIQXI/F7U5C2cRRR20iqcW7+TqMFM2gZBaTk72hHEYly+d6kxnH/2lL+GfJSAQEPIsXvg8Rczm+0dMM0xjn4i3koLIWMAlLyY1WakwmicKxJnFOUMo68DhflC+RBAgEvQYrHziBtY0IJ4/xIxvf7Z64HxVLJKCDlbUg16TRHRoQrcjnfyIoLtbA/7g7xLkWKx6fgMnsa12pkrshlFyz34/f2x+ZwmCyljAJS3oqkk84oBSRblmhETcpyTvMx84J+jdwJkO8yJH5tslOOx8UgqS7uB7WNNK/Fcf+e68Gy1DIKSKmPeI4Xg5lzcV4R53SPqfm4jTVRHefK/Zpt+ZyOs3+5PeZyu8YpwjJMNE9Gakj4W64Hz0rIKCDlzUi6GIrywsdtCnXPcnvbmNS+LnOUMe7TbM+5NrddloAMUtbKFPDXzeFysVIyCkjJPxXCb6y2RDOaC4yI+3C+VhON42vjfsxpW4uMqkk5TzRuInS/2j5kpIaEv+R6KVlJGSMQk3//UBetuXAICVHmGOWcxiRui1+jtkzHXEZ6Teh6bUG2zEHAn5lXgZWXsQRyXocULyhlqIkS55IwINbl9mZbKWN4wIivqY0ZpJwbCQj4E/LKsetkjEDMo0hbLjYiSlITpoxyH1Kb11iZxO3VgHzryCvPrpYxAjGvyWUpjIJjohMWt5f7ktp8Oa4G5PseeddhGScAwl6FFMWpySa0TXNb9oV03yGbxJ49/wP1Lt714Yy15AAAAABJRU5ErkJggg==" />
|
|
70
|
+
</g>
|
|
71
|
+
</g>
|
|
72
|
+
<g id="Group_2226" data-name="Group 2226" transform="translate(20.297 121.025)">
|
|
73
|
+
<g id="Group_2225" data-name="Group 2225" clip-path="url(#clip-path-7)">
|
|
74
|
+
<image id="Rectangle_1592" data-name="Rectangle 1592" width="10.042" height="6.276"
|
|
75
|
+
transform="translate(-0.213 -0.521)"
|
|
76
|
+
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAhSURBVBhXY/yzS/I/Ax7ABKVxAuooALnhHxKG8YE0w38AQ0sKzHTI7lUAAAAASUVORK5CYII=" />
|
|
77
|
+
</g>
|
|
78
|
+
</g>
|
|
79
|
+
<g id="Group_2228" data-name="Group 2228">
|
|
80
|
+
<g id="Group_2227" data-name="Group 2227" clip-path="url(#clip-path)">
|
|
81
|
+
<path id="Path_534" data-name="Path 534"
|
|
82
|
+
d="M34.775,102.553A12.553,12.553,0,1,1,22.223,90a12.552,12.552,0,0,1,12.553,12.553"
|
|
83
|
+
transform="translate(2.468 22.973)" fill="#fcba19" />
|
|
84
|
+
<path id="Path_535" data-name="Path 535"
|
|
85
|
+
d="M195.435,102.553A12.553,12.553,0,1,1,182.883,90a12.552,12.552,0,0,1,12.553,12.553"
|
|
86
|
+
transform="translate(43.477 22.973)" fill="#fcba19" />
|
|
87
|
+
<path id="Path_536" data-name="Path 536"
|
|
88
|
+
d="M133.773,117.962v3.206a14.207,14.207,0,0,0,14.193,14.206h25.243v14.836a8.691,8.691,0,0,1-8.694,8.693H55.468a8.691,8.691,0,0,1-8.694-8.693V66.761a8.692,8.692,0,0,0,8.694,8.694H164.515a8.7,8.7,0,0,1,8.694,8.694v19.62H147.966a14.2,14.2,0,0,0-14.193,14.193"
|
|
89
|
+
transform="translate(11.939 17.041)" fill="#8099b3" />
|
|
90
|
+
<path id="Path_537" data-name="Path 537"
|
|
91
|
+
d="M133.773,117.962v3.206a14.207,14.207,0,0,0,14.193,14.206h25.243v14.836a8.691,8.691,0,0,1-8.694,8.693H55.468a8.691,8.691,0,0,1-8.694-8.693V66.761a8.692,8.692,0,0,0,8.694,8.694H164.515a8.7,8.7,0,0,1,8.694,8.694v19.62H147.966A14.2,14.2,0,0,0,133.773,117.962Z"
|
|
92
|
+
transform="translate(11.939 17.041)" fill="none" stroke="#036" stroke-miterlimit="10" stroke-width="4" />
|
|
93
|
+
<path id="Path_538" data-name="Path 538"
|
|
94
|
+
d="M147.128,68.529v8.694H55.468a8.694,8.694,0,0,1,0-17.388h82.966a8.7,8.7,0,0,1,8.694,8.694"
|
|
95
|
+
transform="translate(11.939 15.273)" fill="#335c85" />
|
|
96
|
+
<path id="Path_539" data-name="Path 539"
|
|
97
|
+
d="M147.128,68.529v8.694H55.468a8.694,8.694,0,0,1,0-17.388h82.966A8.7,8.7,0,0,1,147.128,68.529Z"
|
|
98
|
+
transform="translate(11.939 15.273)" fill="none" stroke="#036" stroke-linecap="round" stroke-miterlimit="10"
|
|
99
|
+
stroke-width="4" />
|
|
100
|
+
<path id="Path_540" data-name="Path 540"
|
|
101
|
+
d="M162.707,96.242v31.606H130.275a14.207,14.207,0,0,1-14.193-14.206v-3.207a14.2,14.2,0,0,1,14.193-14.193Z"
|
|
102
|
+
transform="translate(29.63 24.566)" fill="#8099b3" />
|
|
103
|
+
<path id="Path_541" data-name="Path 541"
|
|
104
|
+
d="M162.707,96.242v31.606H130.275a14.207,14.207,0,0,1-14.193-14.206v-3.207a14.2,14.2,0,0,1,14.193-14.193Z"
|
|
105
|
+
transform="translate(29.63 24.566)" fill="none" stroke="#036" stroke-linejoin="round" stroke-width="4" />
|
|
106
|
+
<circle id="Ellipse_65" data-name="Ellipse 65" cx="5.096" cy="5.096" r="5.096"
|
|
107
|
+
transform="translate(155.316 141.038) rotate(-82.982)" fill="none" stroke="#036" stroke-miterlimit="10"
|
|
108
|
+
stroke-width="4" />
|
|
109
|
+
</g>
|
|
110
|
+
</g>
|
|
111
|
+
</g>
|
|
112
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg id="Group_10130" data-name="Group 10130" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="125.131" height="146" viewBox="0 0 125.131 146">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<rect id="Rectangle_4531" data-name="Rectangle 4531" width="125.131" height="146" fill="none"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<g id="Group_10129" data-name="Group 10129" clip-path="url(#clip-path)">
|
|
8
|
+
<path id="Path_9400" data-name="Path 9400" d="M114.741,143.921H22.659V2.091h92.082a8.455,8.455,0,0,1,8.455,8.456V135.465a8.455,8.455,0,0,1-8.455,8.456" transform="translate(-0.061 -0.006)" fill="#8099b3"/>
|
|
9
|
+
<path id="Path_9401" data-name="Path 9401" d="M114.741,143.921H22.659V2.091h92.082a8.455,8.455,0,0,1,8.455,8.456V135.465A8.455,8.455,0,0,1,114.741,143.921Z" transform="translate(-0.061 -0.006)" fill="none" stroke="#036" stroke-width="4"/>
|
|
10
|
+
<path id="Path_9402" data-name="Path 9402" d="M28.642,135.075H22.658v-5.983" transform="translate(-0.061 -0.348)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.18"/>
|
|
11
|
+
<line id="Line_418" data-name="Line 418" y1="92.904" transform="translate(22.597 23.451)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.18" stroke-dasharray="12.421 12.421"/>
|
|
12
|
+
<path id="Path_9403" data-name="Path 9403" d="M22.658,17.288V11.3h5.984" transform="translate(-0.061 -0.031)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.18"/>
|
|
13
|
+
<path id="Path_9404" data-name="Path 9404" d="M40.156,11.305H106.2a7.506,7.506,0,0,1,7.506,7.507V127.25a7.506,7.506,0,0,1-7.506,7.507H34.415" transform="translate(-0.093 -0.031)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.18" stroke-dasharray="11.513 11.513"/>
|
|
14
|
+
<path id="Path_9405" data-name="Path 9405" d="M22.6,143.921H10.547a8.456,8.456,0,0,1-8.456-8.456V10.547a8.456,8.456,0,0,1,8.456-8.456H22.6Z" transform="translate(-0.006 -0.006)" fill="#335c85"/>
|
|
15
|
+
<path id="Path_9406" data-name="Path 9406" d="M22.6,143.921H10.547a8.456,8.456,0,0,1-8.456-8.456V10.547a8.456,8.456,0,0,1,8.456-8.456H22.6Z" transform="translate(-0.006 -0.006)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.18"/>
|
|
16
|
+
<path id="Path_9407" data-name="Path 9407" d="M82.63,60.577A14.379,14.379,0,1,1,68.251,46.2,14.379,14.379,0,0,1,82.63,60.577" transform="translate(-0.146 -0.125)" fill="#f9f1c6"/>
|
|
17
|
+
<path id="Path_9408" data-name="Path 9408" d="M82.63,60.577A14.379,14.379,0,1,1,68.251,46.2,14.379,14.379,0,0,1,82.63,60.577Z" transform="translate(-0.146 -0.125)" fill="none" stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.363"/>
|
|
18
|
+
<path id="Path_9409" data-name="Path 9409" d="M90.693,103.361H45.764V91.91A14.791,14.791,0,0,1,60.555,77.119H75.9A14.791,14.791,0,0,1,90.693,91.91Z" transform="translate(-0.124 -0.208)" fill="#f9f1c6"/>
|
|
19
|
+
<path id="Path_9410" data-name="Path 9410" d="M90.693,103.361H45.764V91.91A14.791,14.791,0,0,1,60.555,77.119H75.9A14.791,14.791,0,0,1,90.693,91.91Z" transform="translate(-0.124 -0.208)" fill="none" stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="5.363"/>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90.45 61.92">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>
|
|
4
|
+
.cls-1 {
|
|
5
|
+
fill: #f9f1c6;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.cls-2 {
|
|
9
|
+
fill: #fcba19;
|
|
10
|
+
}
|
|
11
|
+
</style>
|
|
12
|
+
</defs>
|
|
13
|
+
<rect class="cls-1" x="2" y="2" width="86.45" height="57.92" rx="6.12" />
|
|
14
|
+
<path class="cls-2"
|
|
15
|
+
d="M82.33,61.92H8.12A8.12,8.12,0,0,1,0,53.81V8.12A8.13,8.13,0,0,1,8.11,0H82.33a8.13,8.13,0,0,1,8.12,8.12V53.81A8.12,8.12,0,0,1,82.33,61.92ZM8.11,4A4.13,4.13,0,0,0,4,8.12V53.81a4.12,4.12,0,0,0,4.12,4.11H82.33a4.12,4.12,0,0,0,4.12-4.11V8.12A4.13,4.13,0,0,0,82.33,4H8.11Z" />
|
|
16
|
+
<path class="cls-2" d="M53.76,38H12.16a2,2,0,0,1,0-4h41.6a2,2,0,0,1,0,4Z" />
|
|
17
|
+
<rect class="cls-2" x="2" y="17.13" width="86.45" height="9.52" />
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<svg id="Group_2284" data-name="Group 2284" xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
xmlns:xlink="http://www.w3.org/1999/xlink" width="250" height="250" viewBox="0 0 250 250">
|
|
3
|
+
<defs>
|
|
4
|
+
<clipPath id="clip-path">
|
|
5
|
+
<rect id="Rectangle_1624" data-name="Rectangle 1624" width="250" height="250" fill="none" />
|
|
6
|
+
</clipPath>
|
|
7
|
+
</defs>
|
|
8
|
+
<g id="Group_2283" data-name="Group 2283" clip-path="url(#clip-path)">
|
|
9
|
+
<path id="Path_584" data-name="Path 584"
|
|
10
|
+
d="M189.942,147.681H16.307A14.307,14.307,0,0,1,2,133.375V26.474A14.308,14.308,0,0,1,16.308,12.166H189.942A14.307,14.307,0,0,1,204.25,26.474v106.9a14.307,14.307,0,0,1-14.307,14.306"
|
|
11
|
+
transform="translate(21.875 21.742)" fill="#f9f1c6" />
|
|
12
|
+
<path id="Rectangle_1622" data-name="Rectangle 1622"
|
|
13
|
+
d="M13.865,0h174.52A13.865,13.865,0,0,1,202.25,13.865V121.65a13.866,13.866,0,0,1-13.866,13.866H13.865A13.865,13.865,0,0,1,0,121.652V13.865A13.865,13.865,0,0,1,13.865,0Z"
|
|
14
|
+
transform="translate(23.875 33.908)" fill="none" stroke="#fcba19" stroke-linejoin="round" stroke-width="4" />
|
|
15
|
+
<line id="Line_73" data-name="Line 73" x2="97.331" transform="translate(47.639 113.491)" fill="none"
|
|
16
|
+
stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" />
|
|
17
|
+
<rect id="Rectangle_1623" data-name="Rectangle 1623" width="202.25" height="22.261"
|
|
18
|
+
transform="translate(23.875 69.315)" fill="#fcba19" />
|
|
19
|
+
<path id="Path_585" data-name="Path 585" d="M101.193,108.832a38.6,38.6,0,1,0,38.6,38.6,38.6,38.6,0,0,0-38.6-38.6"
|
|
20
|
+
transform="translate(23.807 24.824)" fill="#f2dede" />
|
|
21
|
+
<path id="Path_586" data-name="Path 586"
|
|
22
|
+
d="M101.193,108.832a38.6,38.6,0,1,0,38.6,38.6A38.6,38.6,0,0,0,101.193,108.832Z"
|
|
23
|
+
transform="translate(23.807 24.824)" fill="none" stroke="#a12622" stroke-miterlimit="10" stroke-width="4" />
|
|
24
|
+
<path id="Path_587" data-name="Path 587"
|
|
25
|
+
d="M111.137,162.805l-10.483-10.483L90.471,162.5a4.133,4.133,0,0,1-5.845-5.845l10.183-10.183L84.928,136.6a4.133,4.133,0,0,1,5.845-5.845l9.881,9.881,10.183-10.183a4.133,4.133,0,0,1,5.845,5.845L106.5,146.478l10.483,10.483a4.133,4.133,0,1,1-5.845,5.845"
|
|
26
|
+
transform="translate(24.471 25.475)" fill="#a12622" />
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 101.05 113.41">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>
|
|
4
|
+
.cls-1 {
|
|
5
|
+
fill: #8099b3;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.cls-2 {
|
|
9
|
+
fill: #036;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.cls-3 {
|
|
13
|
+
fill: #f9f1c6;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.cls-4 {
|
|
17
|
+
fill: #fcba19;
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
</defs>
|
|
21
|
+
<path class="cls-1"
|
|
22
|
+
d="M77.72,34.2V82.48a28.94,28.94,0,0,1-57.88,0V48.37a2.62,2.62,0,0,1,2.62-2.62h1.18a7.78,7.78,0,0,1,7.78,7.78v-31a5.79,5.79,0,0,1,11.58,0V16.76a5.78,5.78,0,0,1,9.87-4.09,5.72,5.72,0,0,1,1.7,4.09v5.77a5.79,5.79,0,0,1,11.58,0V34.2a5.79,5.79,0,1,1,11.57,0Z" />
|
|
23
|
+
<path class="cls-2"
|
|
24
|
+
d="M31.42,55.53a2,2,0,0,1-2-2v-31a7.79,7.79,0,1,1,15.57,0,2,2,0,1,1-4,0,3.79,3.79,0,1,0-7.57,0v31A2,2,0,0,1,31.42,55.53Z" />
|
|
25
|
+
<path class="cls-2"
|
|
26
|
+
d="M77.72,70.62a2,2,0,0,1-2-2V34.19a3.79,3.79,0,0,0-7.58,0,2,2,0,0,1-4,0,7.79,7.79,0,0,1,15.58,0V68.62A2,2,0,0,1,77.72,70.62Z" />
|
|
27
|
+
<path class="cls-2"
|
|
28
|
+
d="M66.14,62.34a2,2,0,0,1-2-2V22.53a3.79,3.79,0,1,0-7.57,0,2,2,0,0,1-4,0,7.79,7.79,0,1,1,15.57,0V60.34A2,2,0,0,1,66.14,62.34Z" />
|
|
29
|
+
<path class="cls-2"
|
|
30
|
+
d="M54.57,59a2,2,0,0,1-2-2V16.76a3.79,3.79,0,1,0-7.58,0V57a2,2,0,0,1-4,0V16.76a7.79,7.79,0,1,1,15.58,0V57A2,2,0,0,1,54.57,59Z" />
|
|
31
|
+
<path class="cls-2"
|
|
32
|
+
d="M48.78,113.41A31,31,0,0,1,17.84,82.47V62.68a2,2,0,0,1,4,0V82.47a26.94,26.94,0,0,0,53.88,0V62.68a2,2,0,0,1,4,0V82.47A31,31,0,0,1,48.78,113.41Z" />
|
|
33
|
+
<rect class="cls-3" x="2" y="2" width="97.05" height="65.03" rx="6.87" />
|
|
34
|
+
<path class="cls-4"
|
|
35
|
+
d="M92.18,69H8.87A8.88,8.88,0,0,1,0,60.16V8.87A8.88,8.88,0,0,1,8.87,0H92.18a8.88,8.88,0,0,1,8.87,8.87V60.16A8.88,8.88,0,0,1,92.18,69ZM8.87,4A4.87,4.87,0,0,0,4,8.87V60.16A4.88,4.88,0,0,0,8.87,65H92.18a4.88,4.88,0,0,0,4.87-4.87V8.87A4.87,4.87,0,0,0,92.18,4Z" />
|
|
36
|
+
<path class="cls-4" d="M60.11,42.19H13.4a2,2,0,1,1,0-4H60.11a2,2,0,0,1,0,4Z" />
|
|
37
|
+
<rect class="cls-4" x="2" y="18.99" width="97.05" height="10.68" />
|
|
38
|
+
<path class="cls-2"
|
|
39
|
+
d="M48.78,89a2,2,0,0,1-2-2A15.38,15.38,0,0,0,31.42,71.68a2,2,0,0,1-2-2V53.53a5.78,5.78,0,0,0-5.78-5.78H22.46a.62.62,0,0,0-.62.62V78.19a2,2,0,0,1-4,0V48.37a4.62,4.62,0,0,1,4.62-4.62h1.18a9.79,9.79,0,0,1,9.78,9.77V67.78A19.39,19.39,0,0,1,50.78,87,2,2,0,0,1,48.78,89Z" />
|
|
40
|
+
<path class="cls-1"
|
|
41
|
+
d="M48.78,87A17.36,17.36,0,0,0,31.42,69.68V53.53h0a7.77,7.77,0,0,0-7.78-7.77H22.46a2.62,2.62,0,0,0-2.62,2.62V78.19" />
|
|
42
|
+
<path class="cls-2"
|
|
43
|
+
d="M48.78,89a2,2,0,0,1-2-2A15.38,15.38,0,0,0,31.42,71.68a2,2,0,0,1-2-2V53.53a5.78,5.78,0,0,0-5.78-5.78H22.46a.62.62,0,0,0-.62.62V78.19a2,2,0,0,1-4,0V48.37a4.62,4.62,0,0,1,4.62-4.62h1.18a9.79,9.79,0,0,1,9.78,9.77V67.78A19.39,19.39,0,0,1,50.78,87,2,2,0,0,1,48.78,89Z" />
|
|
44
|
+
<path class="cls-2"
|
|
45
|
+
d="M78.23,36.72a4.51,4.51,0,0,0-4.5,4.5v2.85h2.34V41.14a2.14,2.14,0,0,1,4.27,0v2.93h2.39V41.22A4.51,4.51,0,0,0,78.23,36.72Z" />
|
|
46
|
+
<path class="cls-2"
|
|
47
|
+
d="M85.71,43.61h-15a1.09,1.09,0,0,0-1.1,1.09V55.31a1.09,1.09,0,0,0,1.1,1.09h15a1.09,1.09,0,0,0,1.09-1.09V44.7A1.09,1.09,0,0,0,85.71,43.61ZM79,50.9v2a.34.34,0,0,1-.34.33h-1a.33.33,0,0,1-.33-.33v-2a2.12,2.12,0,1,1,1.66,0Z" />
|
|
48
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>
|
|
4
|
+
.cls-1,
|
|
5
|
+
.cls-4,
|
|
6
|
+
.cls-5 {
|
|
7
|
+
fill: none;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cls-2 {
|
|
11
|
+
fill: #313132;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.cls-3 {
|
|
15
|
+
fill: #036;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.cls-4,
|
|
19
|
+
.cls-5 {
|
|
20
|
+
stroke: #036;
|
|
21
|
+
stroke-linejoin: round;
|
|
22
|
+
stroke-width: 4px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.cls-4 {
|
|
26
|
+
stroke-linecap: round;
|
|
27
|
+
}
|
|
28
|
+
</style>
|
|
29
|
+
</defs>
|
|
30
|
+
<rect class="cls-1" width="200" height="200" />
|
|
31
|
+
<path class="cls-2"
|
|
32
|
+
d="M130.79,15.58H68.65a15,15,0,0,0-15,15V169.42a15,15,0,0,0,15,15H90.93c-4.54-4-9.4-11.5-10.73-25.56H66a6.32,6.32,0,0,1-6.32-6.33V37.14A6.32,6.32,0,0,1,66,30.82h67.46a6.32,6.32,0,0,1,6.32,6.32V152.53a6.32,6.32,0,0,1-6.32,6.33H119.24c-1.33,14.06-6.19,21.57-10.73,25.56h22.28a15,15,0,0,0,15-15V30.58A15,15,0,0,0,130.79,15.58Zm-19.37,9.19H89.31a1.89,1.89,0,0,1,0-3.77h22.11a1.89,1.89,0,0,1,0,3.77Z" />
|
|
33
|
+
<path class="cls-3"
|
|
34
|
+
d="M107.65,160.5H91.79a2,2,0,0,0-2.07,2v10.69a2,2,0,0,0,2.07,2h15.86a2,2,0,0,0,2.07-2V162.46A2,2,0,0,0,107.65,160.5ZM100.84,169v2.64a.46.46,0,0,1-.45.46H99.05a.46.46,0,0,1-.45-.46V169a2.88,2.88,0,1,1,2.24,0Z" />
|
|
35
|
+
<path class="cls-3" d="M105.72,161.76h-3.37v-3.32a2.61,2.61,0,0,0-5.21,0v3.32H93.77v-3.32a6,6,0,0,1,12,0Z" />
|
|
36
|
+
<path class="cls-3"
|
|
37
|
+
d="M99.72,190.9l-.22,0c-.88-.1-21.67-2.79-21.67-40v-.83l.59-.59c.31-.31,8-7.78,21.3-7.78s21,7.47,21.31,7.78l.58.59v.83c0,37.19-20.79,39.88-21.67,40ZM81.83,151.8c.29,30.92,15.73,34.69,17.89,35.07,2.13-.37,17.6-4.12,17.89-35.07a29.28,29.28,0,0,0-35.78,0Z" />
|
|
38
|
+
<g id="Group_1175" data-name="Group 1175">
|
|
39
|
+
<line id="Line_5" data-name="Line 5" class="cls-4" x1="103.06" y1="55.93" x2="119.57" y2="55.93" />
|
|
40
|
+
<line id="Line_6" data-name="Line 6" class="cls-4" x1="103.06" y1="64.15" x2="119.57" y2="64.15" />
|
|
41
|
+
<line id="Line_7" data-name="Line 7" class="cls-4" x1="103.06" y1="72.37" x2="119.57" y2="72.37" />
|
|
42
|
+
<g id="Group_1174" data-name="Group 1174">
|
|
43
|
+
<circle id="Ellipse_21" data-name="Ellipse 21" class="cls-3" cx="88.23" cy="59.3" r="4.06" />
|
|
44
|
+
<path id="Rectangle_41" data-name="Rectangle 41" class="cls-3"
|
|
45
|
+
d="M88.23,64.86h0a6.34,6.34,0,0,1,6.34,6.34v.15a.92.92,0,0,1-.91.92H82.8a.92.92,0,0,1-.91-.92h0V71.2A6.34,6.34,0,0,1,88.23,64.86Z" />
|
|
46
|
+
</g>
|
|
47
|
+
<rect class="cls-5" x="73.47" y="46.47" width="53.91" height="35.36" rx="5.42" />
|
|
48
|
+
</g>
|
|
49
|
+
<g id="Group_1175-2" data-name="Group 1175">
|
|
50
|
+
<line id="Line_5-2" data-name="Line 5" class="cls-4" x1="103.06" y1="101.48" x2="119.57" y2="101.48" />
|
|
51
|
+
<line id="Line_6-2" data-name="Line 6" class="cls-4" x1="103.06" y1="109.7" x2="119.57" y2="109.7" />
|
|
52
|
+
<line id="Line_7-2" data-name="Line 7" class="cls-4" x1="103.06" y1="117.93" x2="119.57" y2="117.93" />
|
|
53
|
+
<g id="Group_1174-2" data-name="Group 1174">
|
|
54
|
+
<circle id="Ellipse_21-2" data-name="Ellipse 21" class="cls-3" cx="88.23" cy="104.86" r="4.06" />
|
|
55
|
+
<path id="Rectangle_41-2" data-name="Rectangle 41" class="cls-3"
|
|
56
|
+
d="M88.23,110.41h0a6.34,6.34,0,0,1,6.34,6.35v.15a.91.91,0,0,1-.91.91H82.8a.91.91,0,0,1-.91-.91h0v-.15A6.34,6.34,0,0,1,88.23,110.41Z" />
|
|
57
|
+
</g>
|
|
58
|
+
<rect class="cls-5" x="73.47" y="92.02" width="53.91" height="35.36" rx="5.42" />
|
|
59
|
+
</g>
|
|
60
|
+
</svg>
|