@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,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
<svg width="800px" height="800px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
4
|
+
<title>error-filled</title>
|
|
5
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
6
|
+
<g id="add" fill="currentColor" transform="translate(42.666667, 42.666667)">
|
|
7
|
+
<path d="M213.333333,3.55271368e-14 C331.136,3.55271368e-14 426.666667,95.5306667 426.666667,213.333333 C426.666667,331.136 331.136,426.666667 213.333333,426.666667 C95.5306667,426.666667 3.55271368e-14,331.136 3.55271368e-14,213.333333 C3.55271368e-14,95.5306667 95.5306667,3.55271368e-14 213.333333,3.55271368e-14 Z M262.250667,134.250667 L213.333333,183.168 L164.416,134.250667 L134.250667,164.416 L183.168,213.333333 L134.250667,262.250667 L164.416,292.416 L213.333333,243.498667 L262.250667,292.416 L292.416,262.250667 L243.498667,213.333333 L292.416,164.416 L262.250667,134.250667 Z" id="Combined-Shape">
|
|
8
|
+
|
|
9
|
+
</path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<svg fill="currentColor" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
5
|
+
width="800px" height="800px" viewBox="0 0 45.311 45.311"
|
|
6
|
+
xml:space="preserve">
|
|
7
|
+
<g>
|
|
8
|
+
<path d="M22.675,0.02c-0.006,0-0.014,0.001-0.02,0.001c-0.007,0-0.013-0.001-0.02-0.001C10.135,0.02,0,10.154,0,22.656
|
|
9
|
+
c0,12.5,10.135,22.635,22.635,22.635c0.007,0,0.013,0,0.02,0c0.006,0,0.014,0,0.02,0c12.5,0,22.635-10.135,22.635-22.635
|
|
10
|
+
C45.311,10.154,35.176,0.02,22.675,0.02z M22.675,38.811c-0.006,0-0.014-0.001-0.02-0.001c-0.007,0-0.013,0.001-0.02,0.001
|
|
11
|
+
c-2.046,0-3.705-1.658-3.705-3.705c0-2.045,1.659-3.703,3.705-3.703c0.007,0,0.013,0,0.02,0c0.006,0,0.014,0,0.02,0
|
|
12
|
+
c2.045,0,3.706,1.658,3.706,3.703C26.381,37.152,24.723,38.811,22.675,38.811z M27.988,10.578
|
|
13
|
+
c-0.242,3.697-1.932,14.692-1.932,14.692c0,1.854-1.519,3.356-3.373,3.356c-0.01,0-0.02,0-0.029,0c-0.009,0-0.02,0-0.029,0
|
|
14
|
+
c-1.853,0-3.372-1.504-3.372-3.356c0,0-1.689-10.995-1.931-14.692C17.202,8.727,18.62,5.29,22.626,5.29
|
|
15
|
+
c0.01,0,0.02,0.001,0.029,0.001c0.009,0,0.019-0.001,0.029-0.001C26.689,5.29,28.109,8.727,27.988,10.578z"/>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<svg width="120" height="115" viewBox="0 0 120 115" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
|
|
3
|
+
<g filter="url(#filter0_dd_31108_2120)">
|
|
4
|
+
<rect x="16.1546" y="17.3169" width="87.6187" height="82.1901" rx="4" fill="#f9f1c6"/>
|
|
5
|
+
<path d="M64.6624 83.4272H60.6426V87.2216H64.6624V83.4272Z" fill="#1A1A1A"/>
|
|
6
|
+
<path d="M60.6399 79.6318H56.6201V83.4262H60.6399V79.6318Z" fill="#1A1A1A"/>
|
|
7
|
+
<path d="M64.6624 75.8374H60.6426V79.6317H64.6624V75.8374Z" fill="#1A1A1A"/>
|
|
8
|
+
<path d="M64.6624 72.0444H60.6426V75.8388H64.6624V72.0444Z" fill="#1A1A1A"/>
|
|
9
|
+
<path d="M60.6399 68.2378H56.6201V72.0321H60.6399V68.2378Z" fill="#1A1A1A"/>
|
|
10
|
+
<path d="M64.6624 64.4453H60.6426V68.2396H64.6624V64.4453Z" fill="#1A1A1A"/>
|
|
11
|
+
<path d="M92.8818 68.043H88.862V71.8373H92.8818V68.043Z" fill="#1A1A1A"/>
|
|
12
|
+
<path d="M88.8734 64.4453H84.8536V68.2396H88.8734V64.4453Z" fill="#1A1A1A"/>
|
|
13
|
+
<path d="M84.749 60.6509H80.7292V64.4452H84.749V60.6509Z" fill="#1A1A1A"/>
|
|
14
|
+
<path d="M64.6624 60.6509H60.6426V64.4452H64.6624V60.6509Z" fill="#1A1A1A"/>
|
|
15
|
+
<path d="M60.6399 56.8564H56.6201V60.6508H60.6399V56.8564Z" fill="#1A1A1A"/>
|
|
16
|
+
<path d="M64.6624 53.0532H60.6426V56.8475H64.6624V53.0532Z" fill="#1A1A1A"/>
|
|
17
|
+
<path d="M68.6783 56.8564H64.6585V60.6508H68.6783V56.8564Z" fill="#1A1A1A"/>
|
|
18
|
+
<path d="M76.7309 60.6509H72.7111V64.4452H76.7309V60.6509Z" fill="#1A1A1A"/>
|
|
19
|
+
<path d="M72.7132 56.8564H68.6934V60.6508H72.7132V56.8564Z" fill="#1A1A1A"/>
|
|
20
|
+
<path d="M76.5946 53.0532H72.5748V56.8475H76.5946V53.0532Z" fill="#1A1A1A"/>
|
|
21
|
+
<path d="M80.6468 56.9263H76.627V60.7206H80.6468V56.9263Z" fill="#1A1A1A"/>
|
|
22
|
+
<path d="M88.7692 56.9263H84.7494V60.7206H88.7692V56.9263Z" fill="#1A1A1A"/>
|
|
23
|
+
<path d="M92.8818 53.0425H88.862V56.8368H92.8818V53.0425Z" fill="#1A1A1A"/>
|
|
24
|
+
<path d="M56.6209 53.0532H52.6011V56.8475H56.6209V53.0532Z" fill="#1A1A1A"/>
|
|
25
|
+
<path d="M52.5909 56.8564H48.5711V60.6508H52.5909V56.8564Z" fill="#1A1A1A"/>
|
|
26
|
+
<path d="M44.5525 56.8564H40.5327V60.6508H44.5525V56.8564Z" fill="#1A1A1A"/>
|
|
27
|
+
<path d="M40.5335 53.0425H36.5137V56.8368H40.5335V53.0425Z" fill="#1A1A1A"/>
|
|
28
|
+
<path d="M40.5335 56.8564H36.5137V60.6508H40.5335V56.8564Z" fill="#1A1A1A"/>
|
|
29
|
+
<path d="M32.1762 53.0532H28.1564V56.8475H32.1762V53.0532Z" fill="#1A1A1A"/>
|
|
30
|
+
<path d="M60.6399 49.2578H56.6201V53.0521H60.6399V49.2578Z" fill="#1A1A1A"/>
|
|
31
|
+
<path d="M64.6624 45.4634H60.6426V49.2577H64.6624V45.4634Z" fill="#1A1A1A"/>
|
|
32
|
+
<path d="M60.6399 41.6689H56.6201V45.4633H60.6399V41.6689Z" fill="#1A1A1A"/>
|
|
33
|
+
<path d="M60.6399 37.8652H56.6201V41.6596H60.6399V37.8652Z" fill="#1A1A1A"/>
|
|
34
|
+
<path d="M60.6426 37.8676V34.0732H56.6228V37.8676H60.6426Z" fill="#1A1A1A"/>
|
|
35
|
+
<path d="M64.6665 37.8641V34.0698H60.6467V37.8641H64.6665Z" fill="#1A1A1A"/>
|
|
36
|
+
<path d="M64.6647 34.0668V30.2725H60.6449V34.0668H64.6647Z" fill="#1A1A1A"/>
|
|
37
|
+
<path d="M60.639 30.2733V26.479H56.6192V30.2733H60.639Z" fill="#1A1A1A"/>
|
|
38
|
+
<path d="M49.6232 28.4436V46.1833H30.8293V28.4436H49.6232ZM52.3066 25.9009H28.1564V48.7063H52.3066V25.9009Z" fill="#1A1A1A"/>
|
|
39
|
+
<path d="M35.3926 41.8638H45.061V32.7377H35.3926V41.8638Z" fill="#1A1A1A"/>
|
|
40
|
+
<path d="M49.6232 67.0074V84.7472H30.8293V67.0074H49.6232ZM52.3066 64.4746H28.1564V87.28H52.3066V64.4746Z" fill="#1A1A1A"/>
|
|
41
|
+
<path d="M35.3926 80.436H45.061V71.3099H35.3926V80.436Z" fill="#1A1A1A"/>
|
|
42
|
+
<path d="M90.1251 28.4436V46.1833H71.3312V28.4436H90.1251ZM92.8084 25.9009H68.6478V48.7063H92.8084V25.9009Z" fill="#1A1A1A"/>
|
|
43
|
+
<path d="M75.8927 41.8638H85.5611V32.7377H75.8927V41.8638Z" fill="#1A1A1A"/>
|
|
44
|
+
<path d="M84.7462 72.0728H76.6961V79.6713H84.7462V72.0728Z" fill="#1A1A1A"/>
|
|
45
|
+
<path d="M76.6978 64.4746H68.6478V72.0731H76.6978V64.4746Z" fill="#1A1A1A"/>
|
|
46
|
+
<path d="M92.808 79.6719H84.758V87.2704H92.808V79.6719Z" fill="#1A1A1A"/>
|
|
47
|
+
<path d="M68.6491 87.2808H76.6992V79.6822H68.6491V87.2808Z" fill="#1A1A1A"/>
|
|
48
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.154 18.8886C16.154 17.5217 17.3225 16.4136 18.7638 16.4136H39.3788C40.8202 16.4136 41.9886 17.5217 41.9886 18.8886C41.9886 20.2555 40.8202 21.3636 39.3788 21.3636H21.3736V38.4865C21.3736 39.8534 20.2052 40.9615 18.7638 40.9615C17.3225 40.9615 16.154 39.8534 16.154 38.4865V18.8886Z" fill="#FCAF17"/>
|
|
49
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.0111 18.8886C78.0111 17.5217 79.1796 16.4136 80.6209 16.4136H101.236C102.677 16.4136 103.846 17.5217 103.846 18.8886V38.4865C103.846 39.8534 102.677 40.9615 101.236 40.9615C99.7946 40.9615 98.6261 39.8534 98.6261 38.4865V21.3636H80.6209C79.1796 21.3636 78.0111 20.2555 78.0111 18.8886Z" fill="#FCAF17"/>
|
|
50
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M101.236 75.0278C102.677 75.0278 103.846 76.1359 103.846 77.5029V97.1007C103.846 98.4677 102.677 99.5758 101.236 99.5758H80.6209C79.1796 99.5758 78.0111 98.4677 78.0111 97.1007C78.0111 95.7338 79.1796 94.6257 80.6209 94.6257H98.6261V77.5029C98.6261 76.1359 99.7946 75.0278 101.236 75.0278Z" fill="#FCAF17"/>
|
|
51
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7638 75.0273C20.2052 75.0273 21.3736 76.1355 21.3736 77.5024V94.6252H39.3788C40.8202 94.6252 41.9886 95.7333 41.9886 97.1003C41.9886 98.4672 40.8202 99.5753 39.3788 99.5753H18.7638C17.3225 99.5753 16.154 98.4672 16.154 97.1003V77.5024C16.154 76.1355 17.3225 75.0273 18.7638 75.0273Z" fill="#FCAF17"/>
|
|
52
|
+
</g>
|
|
53
|
+
<defs>
|
|
54
|
+
<filter id="filter0_dd_31108_2120" x="12.154" y="12.4136" width="95.6918" height="95.1621" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
55
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
56
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
57
|
+
<feOffset/>
|
|
58
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
59
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
60
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/>
|
|
61
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_31108_2120"/>
|
|
62
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
63
|
+
<feOffset dy="4"/>
|
|
64
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
65
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
66
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
|
|
67
|
+
<feBlend mode="normal" in2="effect1_dropShadow_31108_2120" result="effect2_dropShadow_31108_2120"/>
|
|
68
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_31108_2120" result="shape"/>
|
|
69
|
+
</filter>
|
|
70
|
+
</defs>
|
|
71
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg id="Credential_offer" data-name="Credential offer" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<g id="Group_10358" data-name="Group 10358" transform="translate(2 2)">
|
|
3
|
+
<path id="Path_9447" data-name="Path 9447" d="M16.177,2H2V21.8H21.8V8.524ZM19.82,19.82H3.98V3.98H14.9V8.96h4.663l.267.307V19.82Z" transform="translate(-2 -2)" fill="#313132"/>
|
|
4
|
+
<path id="Path_9448" data-name="Path 9448" d="M16.2,11.57l-.01-.01a.534.534,0,0,0-.75.02l-2.55,2.68V7.87h0a.527.527,0,0,0-.53-.53h-.71a.534.534,0,0,0-.53.53v6.39L8.57,11.58h0a.537.537,0,0,0-.76,0l-.49.49h0a.525.525,0,0,0,0,.75l4.32,4.32h0a.525.525,0,0,0,.75,0l4.32-4.32h0a.525.525,0,0,0,0-.75l-.49-.49Z" transform="translate(-2.1 -2.106)" fill="#313132"/>
|
|
5
|
+
</g>
|
|
6
|
+
<rect id="Rectangle_4818" data-name="Rectangle 4818" width="24" height="24" fill="none"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg id="Credential_offer" data-name="Credential offer" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<g id="Group_10358" data-name="Group 10358" transform="translate(2 2)">
|
|
3
|
+
<path id="Path_9447" data-name="Path 9447" d="M16.177,2H2V21.8H21.8V8.524ZM19.82,19.82H3.98V3.98H14.9V8.96h4.663l.267.307V19.82Z" transform="translate(-2 -2)" fill="#ffffff"/>
|
|
4
|
+
<path id="Path_9448" data-name="Path 9448" d="M16.2,11.57l-.01-.01a.534.534,0,0,0-.75.02l-2.55,2.68V7.87h0a.527.527,0,0,0-.53-.53h-.71a.534.534,0,0,0-.53.53v6.39L8.57,11.58h0a.537.537,0,0,0-.76,0l-.49.49h0a.525.525,0,0,0,0,.75l4.32,4.32h0a.525.525,0,0,0,.75,0l4.32-4.32h0a.525.525,0,0,0,0-.75l-.49-.49Z" transform="translate(-2.1 -2.106)" fill="#ffffff"/>
|
|
5
|
+
</g>
|
|
6
|
+
<rect id="Rectangle_4818" data-name="Rectangle 4818" width="24" height="24" fill="none"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg id="Informattion_recieved" data-name="Informattion recieved" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<g id="Group_10360" data-name="Group 10360" transform="translate(1.82 2.3)">
|
|
3
|
+
<path id="Path_9450" data-name="Path 9450" d="M3.8,9.792H9.124V4.349L16.9,4.289V7.625H18.88V2.3L7.059,2.389,1.82,8.654V21.5H18.8V19.521H3.8Z" transform="translate(-1.82 -2.3)" fill="#313132"/>
|
|
4
|
+
<rect id="Rectangle_4822" data-name="Rectangle 4822" width="12" height="2" transform="translate(8.16 12.851)" fill="#313132"/>
|
|
5
|
+
<rect id="Rectangle_4823" data-name="Rectangle 4823" width="10" height="2" transform="translate(8.16 8.926)" fill="#313132"/>
|
|
6
|
+
</g>
|
|
7
|
+
<rect id="Rectangle_4824" data-name="Rectangle 4824" width="24" height="24" fill="none"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg id="Informattion_recieved" data-name="Informattion recieved" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<g id="Group_10360" data-name="Group 10360" transform="translate(1.82 2.3)">
|
|
3
|
+
<path id="Path_9450" data-name="Path 9450" d="M3.8,9.792H9.124V4.349L16.9,4.289V7.625H18.88V2.3L7.059,2.389,1.82,8.654V21.5H18.8V19.521H3.8Z" transform="translate(-1.82 -2.3)" fill="#ffffff"/>
|
|
4
|
+
<rect id="Rectangle_4822" data-name="Rectangle 4822" width="12" height="2" transform="translate(8.16 12.851)" fill="#ffffff"/>
|
|
5
|
+
<rect id="Rectangle_4823" data-name="Rectangle 4823" width="10" height="2" transform="translate(8.16 8.926)" fill="#ffffff"/>
|
|
6
|
+
</g>
|
|
7
|
+
<rect id="Rectangle_4824" data-name="Rectangle 4824" width="24" height="24" fill="none"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg id="Information_sent" data-name="Information sent" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<g id="Group_10359" data-name="Group 10359" transform="translate(1.82 2.3)">
|
|
3
|
+
<path id="Path_9449" data-name="Path 9449" d="M20,9.792H14.676V4.349L6.9,4.289V7.625H4.92V2.3l11.821.089L21.98,8.654V21.5H5V19.521H20Z" transform="translate(-1.82 -2.3)" fill="#313132"/>
|
|
4
|
+
<rect id="Rectangle_4819" data-name="Rectangle 4819" width="12" height="2" transform="translate(0 12.851)" fill="#313132"/>
|
|
5
|
+
<rect id="Rectangle_4820" data-name="Rectangle 4820" width="10" height="2" transform="translate(2 8.926)" fill="#313132"/>
|
|
6
|
+
</g>
|
|
7
|
+
<rect id="Rectangle_4821" data-name="Rectangle 4821" width="24" height="24" fill="none"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg id="Information_sent" data-name="Information sent" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<g id="Group_10359" data-name="Group 10359" transform="translate(1.82 2.3)">
|
|
3
|
+
<path id="Path_9449" data-name="Path 9449" d="M20,9.792H14.676V4.349L6.9,4.289V7.625H4.92V2.3l11.821.089L21.98,8.654V21.5H5V19.521H20Z" transform="translate(-1.82 -2.3)" fill="#ffffff"/>
|
|
4
|
+
<rect id="Rectangle_4819" data-name="Rectangle 4819" width="12" height="2" transform="translate(0 12.851)" fill="#ffffff"/>
|
|
5
|
+
<rect id="Rectangle_4820" data-name="Rectangle 4820" width="10" height="2" transform="translate(2 8.926)" fill="#ffffff"/>
|
|
6
|
+
</g>
|
|
7
|
+
<rect id="Rectangle_4821" data-name="Rectangle 4821" width="24" height="24" fill="none"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg id="Proof_request" data-name="Proof request" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<rect id="Rectangle_4827" data-name="Rectangle 4827" width="24" height="24" fill="none"/>
|
|
3
|
+
<g id="Group_10362" data-name="Group 10362" transform="translate(0.62 2.35)">
|
|
4
|
+
<g id="Group_10361" data-name="Group 10361">
|
|
5
|
+
<path id="Path_9452" data-name="Path 9452" d="M17.88,2.36H4.48V17.8h18.9V8.74l-5.5-6.39Zm3.56,13.5H6.42V4.3H16.63V9.17h4.56l.26.3v6.4Z" transform="translate(-0.82 -2.35)" fill="#313132"/>
|
|
6
|
+
<path id="Path_9453" data-name="Path 9453" d="M19.96,21.64H.62V6.27h2V19.64H19.96Z" transform="translate(-0.62 -2.55)" fill="#313132"/>
|
|
7
|
+
<path id="Path_9454" data-name="Path 9454" d="M9.37,6.67a2.78,2.78,0,0,1,1.54-.4,3.321,3.321,0,0,1,1.99.57,1.956,1.956,0,0,1,.79,1.7,1.9,1.9,0,0,1-.34,1.16,3.676,3.676,0,0,1-.77.73l-.38.29a1.169,1.169,0,0,0-.41.56,2.266,2.266,0,0,0-.07.63H10.28a4.19,4.19,0,0,1,.17-1.24,2.193,2.193,0,0,1,.71-.79l.39-.3a1.515,1.515,0,0,0,.31-.31,1.067,1.067,0,0,0,.21-.64,1.257,1.257,0,0,0-.24-.74.963.963,0,0,0-.86-.33.939.939,0,0,0-.87.41,1.569,1.569,0,0,0-.26.85H8.31A2.443,2.443,0,0,1,9.37,6.68Z" transform="translate(-0.708 -2.407)" fill="#313132"/>
|
|
8
|
+
</g>
|
|
9
|
+
<rect id="Rectangle_4828" data-name="Rectangle 4828" width="1.59" height="1.53" transform="translate(9.698 10.144)" fill="#313132"/>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg id="Proof_request" data-name="Proof request" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<rect id="Rectangle_4827" data-name="Rectangle 4827" width="24" height="24" fill="none"/>
|
|
3
|
+
<g id="Group_10362" data-name="Group 10362" transform="translate(0.62 2.35)">
|
|
4
|
+
<g id="Group_10361" data-name="Group 10361">
|
|
5
|
+
<path id="Path_9452" data-name="Path 9452" d="M17.88,2.36H4.48V17.8h18.9V8.74l-5.5-6.39Zm3.56,13.5H6.42V4.3H16.63V9.17h4.56l.26.3v6.4Z" transform="translate(-0.82 -2.35)" fill="#ffffff"/>
|
|
6
|
+
<path id="Path_9453" data-name="Path 9453" d="M19.96,21.64H.62V6.27h2V19.64H19.96Z" transform="translate(-0.62 -2.55)" fill="#ffffff"/>
|
|
7
|
+
<path id="Path_9454" data-name="Path 9454" d="M9.37,6.67a2.78,2.78,0,0,1,1.54-.4,3.321,3.321,0,0,1,1.99.57,1.956,1.956,0,0,1,.79,1.7,1.9,1.9,0,0,1-.34,1.16,3.676,3.676,0,0,1-.77.73l-.38.29a1.169,1.169,0,0,0-.41.56,2.266,2.266,0,0,0-.07.63H10.28a4.19,4.19,0,0,1,.17-1.24,2.193,2.193,0,0,1,.71-.79l.39-.3a1.515,1.515,0,0,0,.31-.31,1.067,1.067,0,0,0,.21-.64,1.257,1.257,0,0,0-.24-.74.963.963,0,0,0-.86-.33.939.939,0,0,0-.87.41,1.569,1.569,0,0,0-.26.85H8.31A2.443,2.443,0,0,1,9.37,6.68Z" transform="translate(-0.708 -2.407)" fill="#ffffff"/>
|
|
8
|
+
</g>
|
|
9
|
+
<rect id="Rectangle_4828" data-name="Rectangle 4828" width="1.59" height="1.53" transform="translate(9.698 10.144)" fill="#ffffff"/>
|
|
10
|
+
</g>
|
|
11
|
+
</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 104 104"><defs><style>.cls-1{fill:#fcba19;}.cls-2{fill:#f9f1c6;}.cls-3{fill:#036;}.cls-4{fill:#e8e8e8;}.cls-5{fill:#335c85;}</style></defs><g><rect class="cls-5" x="24.77" y="21.59" width="50.57" height="59.65" rx="7.03" ry="7.03"/><path class="cls-3" d="M68.31,83.23H31.8c-4.98,0-9.03-4.05-9.03-9.03V28.62c0-4.98,4.05-9.03,9.03-9.03h36.51c4.98,0,9.03,4.05,9.03,9.03v45.59c0,4.98-4.05,9.03-9.03,9.03ZM31.8,23.59c-2.77,0-5.03,2.26-5.03,5.03v45.59c0,2.77,2.26,5.03,5.03,5.03h36.51c2.77,0,5.03-2.26,5.03-5.03V28.62c0-2.77-2.26-5.03-5.03-5.03H31.8Z"/></g><path class="cls-4" d="M64.94,37.02h-29.77c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5h29.77c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5Z"/><path class="cls-4" d="M64.94,49.98h-29.77c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5h29.77c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5Z"/><path class="cls-4" d="M43.72,62.93h-8.55c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5h8.55c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5Z"/><g><circle class="cls-2" cx="65.62" cy="72.81" r="13.6"/><path class="cls-1" d="M65.62,88.41c-8.6,0-15.6-7-15.6-15.6s7-15.6,15.6-15.6,15.6,7,15.6,15.6-7,15.6-15.6,15.6Zm0-27.21c-6.4,0-11.6,5.21-11.6,11.6s5.21,11.6,11.6,11.6,11.6-5.21,11.6-11.6-5.21-11.6-11.6-11.6Z"/></g><g><path class="cls-3" d="M65.62,80.36c-1.1,0-2-.9-2-2v-11.11c0-1.1,.9-2,2-2s2,.9,2,2v11.11c0,1.1-.9,2-2,2Z"/><path class="cls-3" d="M65.61,81.19l-6.59-6.59c-.78-.78-.78-2.05,0-2.83s2.05-.78,2.83,0l3.76,3.76,3.79-3.79c.78-.78,2.05-.78,2.83,0s.78,2.05,0,2.83l-6.62,6.62Z"/></g></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 380.11 338.94">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>
|
|
4
|
+
.cls-1 {
|
|
5
|
+
fill: #42803e;
|
|
6
|
+
}
|
|
7
|
+
</style>
|
|
8
|
+
</defs>
|
|
9
|
+
<path class="cls-1"
|
|
10
|
+
d="M240.38,195.41c2-3.13,3.88-6.1,5.81-9,14.59-22.19,31.46-42.31,53.15-58,10.41-7.52,21.59-13.67,33.94-17.28,6.26-1.83,12.83-2.63,19.26-3.89.28-.06.61,0,.87-.08s.78-.66,1.17-.66c4.59,0,9.19-.28,13.76,0a123,123,0,0,1,13.36,1.89,92.81,92.81,0,0,1,24.36,7.77c14.42,7.11,25.26,17.61,30.53,33.08a56.17,56.17,0,0,1,2.3,27.51c-3.62,22.19-15.06,39.36-33.22,52.3-2.63,1.87-2.59,1.8-4.58-.55a1.65,1.65,0,0,1,0-2.48,81.55,81.55,0,0,0,14.24-26.82c3.43-11.24,4.62-22.53.6-33.9-3.57-10.06-10.92-16.08-20.86-19.14-11-3.4-22.32-3.56-33.56-1.62s-21.17,7.23-30.12,14.24C315.14,171.49,303,187.69,292.12,205a400.13,400.13,0,0,0-21.87,40.45,36.38,36.38,0,0,1-2,4.17c-2.08,3.21-.44,6.24.17,9.37,1.74,9,3.8,17.9,5,26.94,1.46,11,2.58,22,3.11,33,.62,12.69.46,25.41.57,38.12,0,5.25.15,10.51-.21,15.74-.45,6.47-1.19,12.92-2.1,19.34a92.84,92.84,0,0,1-7.51,26.5c-4.41,9.45-10.52,17.46-19.93,22.44a34.32,34.32,0,0,1-23,3.58c-14.57-2.76-24.48-11.69-31.64-24.14-5.11-8.88-7.68-18.56-9-28.68-1.48-11.41-.63-22.7.87-34,.88-6.65,1.71-13.32,2.94-19.91,1.42-7.6,3.13-15.16,4.94-22.68,1.71-7.15,3.56-14.29,5.64-21.35,2.32-7.91,4.7-15.81,7.52-23.55,3.77-10.37,8-20.57,12-30.88a3.64,3.64,0,0,0-.22-2.84c-8.68-13.87-18.32-27-30.2-38.37a132.12,132.12,0,0,0-50.49-30.64,49.06,49.06,0,0,0-28.76-.94c-9,2.48-15.2,8.46-19.15,16.84a60.29,60.29,0,0,0-5.42,21.09,124.42,124.42,0,0,0-.65,17.67c.6,10,3.54,19.26,11.16,26.44a40.47,40.47,0,0,0,17.77,9.43,10.26,10.26,0,0,0,2.36.57c2.66,0,2.35,1.91,2.32,3.53,0,1.85-1.66,1.68-2.81,1.8a45.68,45.68,0,0,1-46.93-27.44,85.49,85.49,0,0,1-7.08-35.06c0-6.34,0-12.78,1.08-19,3.59-20.37,13.9-36.11,33.07-45.23,11.44-5.44,23.54-7.38,36.14-7.05,18.78.49,36.06,6.33,52.61,14.66a156.21,156.21,0,0,1,33.28,22.93,154.48,154.48,0,0,1,23.71,26.54C239.63,194.69,239.91,194.91,240.38,195.41Zm7.4,106.92-.68-.09a19.24,19.24,0,0,0-1.07,2.31c-4,12.88-8.17,25.7-11.85,38.66-2.34,8.28-4.21,16.71-5.81,25.16a121.08,121.08,0,0,0-2.08,27.75,44.77,44.77,0,0,0,3.54,16.76c2.64,5.93,7.44,7.83,13.42,5.34a20.81,20.81,0,0,0,10.88-10.84c3.93-8.26,5-17.18,5-26.09,0-9.79-.92-19.59-1.68-29.36a129.7,129.7,0,0,0-1.95-13.12q-1.9-10.43-4.09-20.81C250.31,312.75,249,307.55,247.78,302.33Z"
|
|
11
|
+
transform="translate(-59.54 -106.33)" />
|
|
12
|
+
<path class="cls-1"
|
|
13
|
+
d="M371,246.77c-5,.82-9.68,1.26-14.16,2.36-8.52,2.09-13.56,6-15,16-.5,3.56-.75,7.15-1.28,10.79-.22-1.93-.33-3.88-.71-5.78-.61-3.1-1.24-6.21-2.14-9.23-2.09-7-7.42-10.34-14.16-11.83a90.23,90.23,0,0,1-10.27-2.5,27.9,27.9,0,0,0,4.29,0,69.24,69.24,0,0,0,10.58-2.09c6.09-2,8.86-7,10.35-12.85.92-3.62,1.47-7.34,2.4-11.11.1,1.29.21,2.57.31,3.86.5,6.07,1,12.1,5.89,16.64a17.54,17.54,0,0,0,9.82,4.68c4,.54,8.08.65,12.12.94Z"
|
|
14
|
+
transform="translate(-59.54 -106.33)" />
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20,2A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H6L2,22V4C2,2.89 2.9,2 4,2H20M4,4V17.17L5.17,16H20V4H4M6,7H18V9H6V7M6,11H15V13H6V11Z" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20,2H4A2,2 0 0,0 2,4V22L6,18H20A2,2 0 0,0 22,16V4A2,2 0 0,0 20,2M6,9H18V11H6M14,14H6V12H14M18,8H6V6H18" /></svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<svg id="Group_10756" data-name="Group 10756" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200" viewBox="0 0 200 200">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<rect id="Rectangle_6187" data-name="Rectangle 6187" width="200" height="200" fill="none"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<g id="Group_10755" data-name="Group 10755" clip-path="url(#clip-path)">
|
|
8
|
+
<path id="Path_9539" data-name="Path 9539" d="M110.972,73.774,36.2,86.511a9.539,9.539,0,0,1-11.006-7.8L17.941,36.131a9.54,9.54,0,0,1,7.8-11.006l74.772-12.737a9.539,9.539,0,0,1,11.006,7.8l7.253,42.578a9.539,9.539,0,0,1-7.8,11.006" fill="#8099b3"/>
|
|
9
|
+
<path id="Path_9540" data-name="Path 9540" d="M110.972,73.774,36.2,86.511a9.539,9.539,0,0,1-11.006-7.8L17.941,36.131a9.54,9.54,0,0,1,7.8-11.006l74.772-12.737a9.539,9.539,0,0,1,11.006,7.8l7.253,42.578A9.539,9.539,0,0,1,110.972,73.774Z" fill="none" stroke="#036" stroke-linejoin="round" stroke-width="4"/>
|
|
10
|
+
<line id="Line_464" data-name="Line 464" y1="4.883" x2="28.662" transform="translate(70.515 29.511)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
11
|
+
<line id="Line_465" data-name="Line 465" y1="4.883" x2="28.662" transform="translate(72.946 43.785)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
12
|
+
<line id="Line_466" data-name="Line 466" y1="4.883" x2="28.662" transform="translate(75.378 58.059)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
13
|
+
<path id="Path_9541" data-name="Path 9541" d="M44.561,37.591a7.149,7.149,0,1,1-5.847,8.248,7.149,7.149,0,0,1,5.847-8.248" fill="#036"/>
|
|
14
|
+
<path id="Path_9542" data-name="Path 9542" d="M47.407,54.287h0a11.17,11.17,0,0,1,12.887,9.136l.045.26a1.614,1.614,0,0,1-1.32,1.862l-18.843,3.21a1.615,1.615,0,0,1-1.862-1.32l-.043-.26a11.17,11.17,0,0,1,9.136-12.888" fill="#036"/>
|
|
15
|
+
<path id="Path_9543" data-name="Path 9543" d="M173.3,151.707,94.445,130.8a6.722,6.722,0,0,1-4.775-8.22l12.87-48.55a6.724,6.724,0,0,1,8.221-4.775l78.857,20.9a6.723,6.723,0,0,1,4.775,8.22l-12.871,48.55a6.722,6.722,0,0,1-8.22,4.775" fill="#8099b3"/>
|
|
16
|
+
<path id="Path_9544" data-name="Path 9544" d="M173.3,151.707,94.445,130.8a6.722,6.722,0,0,1-4.775-8.22l12.87-48.55a6.724,6.724,0,0,1,8.221-4.775l78.857,20.9a6.723,6.723,0,0,1,4.775,8.22l-12.871,48.55A6.722,6.722,0,0,1,173.3,151.707Z" fill="none" stroke="#036" stroke-linejoin="round" stroke-width="4"/>
|
|
17
|
+
<line id="Line_467" data-name="Line 467" x2="44.203" y2="11.718" transform="translate(105.474 106.538)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
18
|
+
<rect id="Rectangle_6186" data-name="Rectangle 6186" width="10.459" height="95.025" transform="translate(97.32 93.725) rotate(-75.152)" fill="#036"/>
|
|
19
|
+
<path id="Path_9545" data-name="Path 9545" d="M80.527,99.5l17.509,53.84a8.388,8.388,0,0,1-5.383,10.571L49.389,177.981A8.388,8.388,0,0,1,38.818,172.6l-17.509-53.84a8.388,8.388,0,0,1,5.383-10.571l43.264-14.07A8.389,8.389,0,0,1,80.527,99.5" fill="#8099b3"/>
|
|
20
|
+
<path id="Path_9546" data-name="Path 9546" d="M80.527,99.5l17.509,53.84a8.388,8.388,0,0,1-5.383,10.571L49.389,177.981A8.388,8.388,0,0,1,38.818,172.6l-17.509-53.84a8.388,8.388,0,0,1,5.383-10.571l43.264-14.07A8.389,8.389,0,0,1,80.527,99.5Z" fill="none" stroke="#036" stroke-linejoin="round" stroke-width="4"/>
|
|
21
|
+
<line id="Line_468" data-name="Line 468" y1="12.014" x2="36.942" transform="translate(33.27 108.538)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
22
|
+
<line id="Line_469" data-name="Line 469" y1="12.014" x2="36.942" transform="translate(37.748 122.308)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
23
|
+
<line id="Line_470" data-name="Line 470" y1="7.478" x2="22.995" transform="translate(42.226 140.614)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
24
|
+
<line id="Line_471" data-name="Line 471" y1="4.592" x2="14.119" transform="translate(46.704 157.27)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
25
|
+
<path id="Path_9547" data-name="Path 9547" d="M99.056,147.734a15.465,15.465,0,0,0-28.213,12.677,15.224,15.224,0,0,0,3.911,5.3,15.464,15.464,0,0,0,3.9,2.495,16.041,16.041,0,0,0,2.063.749c.309.078.619.156.934.222a12.689,12.689,0,0,0,2.069.316,15.061,15.061,0,0,0,4.927-.4c.352-.083.707-.188,1.049-.3.418-.136.821-.288,1.218-.459.123-.04.25-.1.371-.152q.646-.29,1.247-.627c.257-.146.512-.3.756-.456.156-.1.3-.2.448-.3q.287-.187.563-.4c.229-.169.445-.345.659-.53s.416-.367.617-.558c.146-.132.28-.27.414-.408.175-.173.338-.352.5-.531.108-.119.213-.248.319-.377.076-.088.153-.176.226-.274.112-.141.214-.279.316-.418.141-.182.278-.374.4-.572.121-.177.24-.362.349-.545a.171.171,0,0,0,.054-.091,15.426,15.426,0,0,0,.9-14.351m-3.1,9.493,0,.01a11.423,11.423,0,0,1-.648,1.725c-.19.387-.392.768-.613,1.124a4.453,4.453,0,0,1-.335.519,5.67,5.67,0,0,1-.365.5c-.108.151-.229.3-.351.441a1.06,1.06,0,0,0-.153.175,10.268,10.268,0,0,1-1.124,1.1.615.615,0,0,0-.118.091c-.289.241-.585.464-.9.683a12.286,12.286,0,0,1-1.711.945,8.383,8.383,0,0,1-1.034.41c-.019.006-.041,0-.057.019l-.067.022a11.258,11.258,0,0,1-5.515.373c-.221-.033-.445-.076-.663-.131-.012-.006-.012-.006-.022,0-.2-.049-.413-.108-.612-.169-.1-.029-.221-.065-.328-.1l-.464-.165a9.6,9.6,0,0,1-1.157-.517,4.724,4.724,0,0,1-.56-.3,5.64,5.64,0,0,1-.526-.323c-.214-.14-.422-.294-.629-.447a.574.574,0,0,0-.082-.058,11.466,11.466,0,0,1,2.325-19.526,10.719,10.719,0,0,1,1.167-.453,11.483,11.483,0,0,1,11.394,2.572,11.186,11.186,0,0,1,2.592,3.637,11.414,11.414,0,0,1,.582,7.771c-.013.025-.013.057-.026.082" fill="#036"/>
|
|
26
|
+
<path id="Path_9548" data-name="Path 9548" d="M95.986,157.145c-.013.025-.013.057-.026.082l0,.01a12.525,12.525,0,0,1-.648,1.725c-.19.387-.392.768-.612,1.124q-.155.255-.336.519a5.872,5.872,0,0,1-.364.5c-.109.151-.23.3-.352.441a1.03,1.03,0,0,0-.153.176,14.255,14.255,0,0,1-1.124,1.1.615.615,0,0,0-.118.091c-.289.241-.594.467-.9.683a12.4,12.4,0,0,1-1.711.946c-.305.13-.616.242-.926.353a1.162,1.162,0,0,0-.165.075.533.533,0,0,0-.178.037,11.3,11.3,0,0,1-5.4.358c-.221-.033-.448-.085-.663-.131-.012-.006-.012-.006-.022,0-.2-.049-.413-.108-.612-.169-.1-.029-.221-.065-.328-.1l-.464-.164a9.764,9.764,0,0,1-1.157-.518,6.231,6.231,0,0,1-.56-.3c-.18-.1-.353-.211-.526-.323-.214-.14-.422-.294-.629-.447a.6.6,0,0,0-.082-.058,11.466,11.466,0,0,1,2.325-19.526,10.719,10.719,0,0,1,1.167-.453,11.483,11.483,0,0,1,11.394,2.572,11.186,11.186,0,0,1,2.592,3.637,11.414,11.414,0,0,1,.582,7.771" fill="#8099b3"/>
|
|
27
|
+
<path id="Path_9549" data-name="Path 9549" d="M90.183,165.331a1.966,1.966,0,0,0-1.575-.382l-.038.013-.019.006a.527.527,0,0,0-.177.037,11.3,11.3,0,0,1-5.4.358c-.221-.033-.449-.085-.663-.131-.013-.006-.013-.006-.022,0-.206-.049-.414-.108-.613-.169-.1-.03-.221-.065-.328-.1a4.9,4.9,0,0,1-.464-.165,9.514,9.514,0,0,1-1.156-.517,6.249,6.249,0,0,1-.561-.3c-.179-.1-.353-.211-.526-.323-.214-.141-.421-.294-.629-.447a.48.48,0,0,0-.082-.058,2,2,0,0,0-3.129,1.565l-.042,1-.836,21.2a2.005,2.005,0,0,0,1.223,1.915,1.981,1.981,0,0,0,2.226-.461l4.825-5.049,4.422,5.417a1.994,1.994,0,0,0,2.162.633l.019-.006a1.989,1.989,0,0,0,1.367-1.812l.615-15.763.139-3.452L90.968,167a1.986,1.986,0,0,0-.785-1.669m-3.306,4.093-.5,12.687-2.514-3.073a1.927,1.927,0,0,0-1.468-.732,1.808,1.808,0,0,0-.7.09,1.992,1.992,0,0,0-.829.522l-2.738,2.867.527-13.579a15.973,15.973,0,0,0,2.062.749c.31.078.619.156.935.222a14.859,14.859,0,0,0,2.069.316,15.665,15.665,0,0,0,3.15-.079Z" fill="#036"/>
|
|
28
|
+
<path id="Path_9550" data-name="Path 9550" d="M86.874,169.415l0,.01-.5,12.686-2.513-3.073a1.933,1.933,0,0,0-1.469-.732,1.847,1.847,0,0,0-.7.09,1.992,1.992,0,0,0-.829.522l-2.738,2.867.527-13.578a16.177,16.177,0,0,0,2.062.749c.31.078.619.156.935.221a14.859,14.859,0,0,0,2.069.316,15.737,15.737,0,0,0,3.15-.078" fill="#8099b3"/>
|
|
29
|
+
<path id="Path_9551" data-name="Path 9551" d="M113.309,174.1l-13.244-16.8-.605-.76a2.017,2.017,0,0,0-1.959-.72,1.985,1.985,0,0,0-1.514,1.324c-.013.025-.014.057-.026.082l0,.009a11.3,11.3,0,0,1-1.261,2.85q-.153.255-.336.519a5.66,5.66,0,0,1-.364.5c-.108.151-.23.3-.351.44a1.111,1.111,0,0,0-.153.176,14.109,14.109,0,0,1-1.125,1.1.607.607,0,0,0-.117.091c-.29.241-.6.467-.9.683a12.24,12.24,0,0,1-1.712.945c-.3.131-.615.243-.926.354a.966.966,0,0,0-.146.069l-.019.006-.066.021a2.051,2.051,0,0,0-1.028,1.239,2.006,2.006,0,0,0,.351,1.789l.843,1.072,2.127,2.694,9.779,12.383a1.964,1.964,0,0,0,2.161.664l.019-.006a2,2,0,0,0,1.386-1.786l.38-6.98,6.882,1.243a2,2,0,0,0,1.924-3.2M103,171.721a2,2,0,0,0-1.594.4,1.973,1.973,0,0,0-.766,1.458l-.216,3.961-7.886-9.991c.257-.146.511-.3.756-.456.155-.1.3-.2.448-.3.191-.126.378-.26.563-.4.229-.169.445-.345.658-.53s.417-.367.618-.558c.146-.132.28-.27.414-.408.175-.173.338-.352.5-.531.109-.119.214-.248.319-.377.077-.088.153-.176.227-.274.111-.141.214-.28.316-.418.14-.182.278-.374.4-.573.121-.176.24-.361.348-.544a.165.165,0,0,0,.055-.091c.086-.123.175-.268.256-.41L106.9,172.43Z" fill="#036"/>
|
|
30
|
+
<path id="Path_9552" data-name="Path 9552" d="M106.9,172.43l-3.9-.709a2,2,0,0,0-1.594.4,1.969,1.969,0,0,0-.766,1.459l-.216,3.961-7.886-9.991c.257-.147.511-.3.755-.456.156-.1.3-.2.449-.3.19-.125.378-.26.562-.4.229-.169.446-.344.659-.529s.417-.367.617-.559c.147-.131.281-.27.414-.408.176-.172.338-.351.5-.531.108-.119.214-.248.319-.377.076-.088.153-.176.227-.273.111-.142.213-.28.316-.418.14-.183.278-.375.4-.573.122-.176.24-.362.349-.545a.167.167,0,0,0,.054-.091c.087-.123.176-.267.256-.409Z" fill="#8099b3"/>
|
|
31
|
+
<path id="Path_9553" data-name="Path 9553" d="M99.754,62.057c23.256,0,36.523,13.221,36.523,13.221,0,65.774-36.523,69.74-36.523,69.74s-36.523-3.966-36.523-69.74c0,0,13.267-13.221,36.523-13.221" fill="#f9f1c6"/>
|
|
32
|
+
<path id="Path_9554" data-name="Path 9554" d="M99.754,62.057c23.256,0,36.523,13.221,36.523,13.221,0,65.774-36.523,69.74-36.523,69.74s-36.523-3.966-36.523-69.74C63.231,75.278,76.5,62.057,99.754,62.057Z" fill="none" stroke="#fcba19" stroke-width="4"/>
|
|
33
|
+
<path id="Path_9555" data-name="Path 9555" d="M99.794,80.394a8.148,8.148,0,0,0-8.138,8.138v5.156h4.238v-5.3a3.859,3.859,0,0,1,7.718,0v5.3h4.323V88.532a8.149,8.149,0,0,0-8.141-8.138" fill="#fcba19"/>
|
|
34
|
+
<path id="Path_9556" data-name="Path 9556" d="M113.322,92.855H86.186a1.974,1.974,0,0,0-1.975,1.974v19.194A1.975,1.975,0,0,0,86.186,116h27.136a1.975,1.975,0,0,0,1.975-1.975V94.829a1.974,1.974,0,0,0-1.975-1.974m-12.071,13.186v3.53a.6.6,0,0,1-.6.6H98.857a.6.6,0,0,1-.6-.6v-3.53a3.831,3.831,0,1,1,2.994,0" fill="#fcba19"/>
|
|
35
|
+
</g>
|
|
36
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg id="Group_10436" data-name="Group 10436" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200" viewBox="0 0 200 200">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<rect id="Rectangle_4836" data-name="Rectangle 4836" width="200" height="200" fill="none"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
</defs>
|
|
7
|
+
<g id="Group_10435" data-name="Group 10435" clip-path="url(#clip-path)">
|
|
8
|
+
<path id="Path_9485" data-name="Path 9485" d="M173.407,101.7a69.773,69.773,0,0,1-76.619,62.177l-1.943,18.667C60.182,161.228,30.231,129.35,34.611,87.255a69.773,69.773,0,0,1,138.8,14.443" fill="#036"/>
|
|
9
|
+
<path id="Path_9486" data-name="Path 9486" d="M173.407,101.7a69.773,69.773,0,0,1-76.619,62.177l-1.943,18.667C60.182,161.228,30.231,129.35,34.611,87.255a69.773,69.773,0,0,1,138.8,14.443Z" fill="none" stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
|
|
10
|
+
<path id="Path_9487" data-name="Path 9487" d="M91.4,125.767q.462-4.44,3.078-6.466t7.162-1.553a9.427,9.427,0,0,1,6.551,3.033,10.331,10.331,0,0,1-1.4,13.241,9.256,9.256,0,0,1-7.018,1.7,9.533,9.533,0,0,1-6.628-3.068,8.849,8.849,0,0,1-1.741-6.888m17.689-16.436-12.9-1.342,2.678-51.934,18.293,1.9Z" fill="#fcba19"/>
|
|
11
|
+
<line id="Line_433" data-name="Line 433" x2="9.737" y2="9.737" transform="translate(33.492 23.218)" fill="none" stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
|
|
12
|
+
<line id="Line_434" data-name="Line 434" y2="12.194" transform="translate(57.192 11.493)" fill="none" stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
|
|
13
|
+
<line id="Line_435" data-name="Line 435" x2="12.194" transform="translate(22.132 44.945)" fill="none" stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
fill: none;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.cls-2 {
|
|
9
|
+
fill: #8099b3;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.cls-3 {
|
|
13
|
+
fill: #036;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.cls-4 {
|
|
17
|
+
fill: #f9f1c6;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.cls-5 {
|
|
21
|
+
fill: #fcba19;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.cls-6 {
|
|
25
|
+
fill: #f2dede;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.cls-7 {
|
|
29
|
+
fill: #a12622;
|
|
30
|
+
}
|
|
31
|
+
</style>
|
|
32
|
+
</defs>
|
|
33
|
+
<rect class="cls-1" width="200" height="200" />
|
|
34
|
+
<path class="cls-2"
|
|
35
|
+
d="M127.2,86.23v48.28a28.94,28.94,0,1,1-57.88,0V100.4a2.62,2.62,0,0,1,2.62-2.62h1.18a7.78,7.78,0,0,1,7.77,7.78v-31a5.79,5.79,0,1,1,11.58,0V68.8a5.79,5.79,0,1,1,11.58,0v5.76a5.79,5.79,0,0,1,5.78-5.79,5.8,5.8,0,0,1,5.79,5.79V86.23a5.79,5.79,0,1,1,11.58,0Z" />
|
|
36
|
+
<path class="cls-3"
|
|
37
|
+
d="M80.89,107.56a2,2,0,0,1-2-2v-31a7.79,7.79,0,1,1,15.58,0,2,2,0,0,1-4,0,3.79,3.79,0,1,0-7.58,0v31A2,2,0,0,1,80.89,107.56Z" />
|
|
38
|
+
<path class="cls-3"
|
|
39
|
+
d="M127.2,122.66a2,2,0,0,1-2-2V86.23a3.79,3.79,0,1,0-7.58,0,2,2,0,1,1-4,0,7.79,7.79,0,1,1,15.58,0v34.43A2,2,0,0,1,127.2,122.66Z" />
|
|
40
|
+
<path class="cls-3"
|
|
41
|
+
d="M115.62,114.38a2,2,0,0,1-2-2V74.56a3.79,3.79,0,1,0-7.58,0,2,2,0,0,1-4,0,7.79,7.79,0,0,1,15.58,0v37.82A2,2,0,0,1,115.62,114.38Z" />
|
|
42
|
+
<path class="cls-3"
|
|
43
|
+
d="M104,111a2,2,0,0,1-2-2V68.79a3.79,3.79,0,0,0-7.57,0V109a2,2,0,0,1-4,0V68.79a7.79,7.79,0,0,1,15.57,0V109A2,2,0,0,1,104,111Z" />
|
|
44
|
+
<path class="cls-3"
|
|
45
|
+
d="M98.26,165.44A31,31,0,0,1,67.32,134.5V114.72a2,2,0,0,1,4,0V134.5a26.94,26.94,0,1,0,53.88,0V114.72a2,2,0,1,1,4,0V134.5A31,31,0,0,1,98.26,165.44Z" />
|
|
46
|
+
<rect class="cls-4" x="51.48" y="54.03" width="97.05" height="65.03" rx="6.87" />
|
|
47
|
+
<path class="cls-5"
|
|
48
|
+
d="M141.66,121.06H58.34a8.87,8.87,0,0,1-8.86-8.86V60.9A8.87,8.87,0,0,1,58.34,52h83.32a8.87,8.87,0,0,1,8.86,8.87v51.3A8.87,8.87,0,0,1,141.66,121.06ZM58.34,56a4.87,4.87,0,0,0-4.86,4.87v51.3a4.87,4.87,0,0,0,4.86,4.86h83.32a4.87,4.87,0,0,0,4.86-4.86V60.9A4.87,4.87,0,0,0,141.66,56Z" />
|
|
49
|
+
<path class="cls-5" d="M109.58,94.22H62.88a2,2,0,1,1,0-4h46.7a2,2,0,1,1,0,4Z" />
|
|
50
|
+
<rect class="cls-5" x="51.48" y="71.02" width="97.05" height="10.68" />
|
|
51
|
+
<path class="cls-3"
|
|
52
|
+
d="M98.26,141.07a2,2,0,0,1-2-2,15.39,15.39,0,0,0-15.37-15.36,2,2,0,0,1-2-2V105.56a5.78,5.78,0,0,0-5.77-5.78H71.94a.62.62,0,0,0-.62.62v29.82a2,2,0,0,1-4,0V100.4a4.62,4.62,0,0,1,4.62-4.62h1.18a9.79,9.79,0,0,1,9.77,9.78v14.25a19.4,19.4,0,0,1,17.37,19.26A2,2,0,0,1,98.26,141.07Z" />
|
|
53
|
+
<path class="cls-2"
|
|
54
|
+
d="M98.26,139.07a17.37,17.37,0,0,0-17.37-17.36V105.56h0a7.77,7.77,0,0,0-7.77-7.78H71.94a2.62,2.62,0,0,0-2.62,2.62v29.82" />
|
|
55
|
+
<path class="cls-3"
|
|
56
|
+
d="M98.26,141.07a2,2,0,0,1-2-2,15.39,15.39,0,0,0-15.37-15.36,2,2,0,0,1-2-2V105.56a5.78,5.78,0,0,0-5.77-5.78H71.94a.62.62,0,0,0-.62.62v29.82a2,2,0,0,1-4,0V100.4a4.62,4.62,0,0,1,4.62-4.62h1.18a9.79,9.79,0,0,1,9.77,9.78v14.25a19.4,19.4,0,0,1,17.37,19.26A2,2,0,0,1,98.26,141.07Z" />
|
|
57
|
+
<path class="cls-3"
|
|
58
|
+
d="M127.71,88.75a4.5,4.5,0,0,0-4.5,4.5V96.1h2.34V93.17a2.14,2.14,0,0,1,4.27,0V96.1h2.39V93.25A4.51,4.51,0,0,0,127.71,88.75Z" />
|
|
59
|
+
<path class="cls-3"
|
|
60
|
+
d="M135.18,95.64h-15a1.09,1.09,0,0,0-1.09,1.09v10.61a1.09,1.09,0,0,0,1.09,1.1h15a1.1,1.1,0,0,0,1.1-1.1V96.73A1.09,1.09,0,0,0,135.18,95.64Zm-6.67,7.29v1.95a.33.33,0,0,1-.33.33h-1a.32.32,0,0,1-.33-.33v-1.95a2.12,2.12,0,1,1,1.65,0Z" />
|
|
61
|
+
<circle class="cls-6" cx="100" cy="49.79" r="15.75" />
|
|
62
|
+
<path class="cls-7"
|
|
63
|
+
d="M100,67.55a17.76,17.76,0,1,1,17.75-17.76A17.78,17.78,0,0,1,100,67.55ZM100,36a13.76,13.76,0,1,0,13.75,13.75A13.77,13.77,0,0,0,100,36Z" />
|
|
64
|
+
<path class="cls-7"
|
|
65
|
+
d="M104.33,56.33l-4.28-4.27L95.9,56.21a1.69,1.69,0,0,1-2.39,0h0a1.68,1.68,0,0,1,0-2.38l4.16-4.16-4-4a1.69,1.69,0,0,1,0-2.39h0a1.69,1.69,0,0,1,2.39,0l4,4,4.16-4.16a1.68,1.68,0,0,1,2.38,0h0a1.69,1.69,0,0,1,0,2.39l-4.15,4.15L106.71,54a1.68,1.68,0,0,1,0,2.38h0A1.68,1.68,0,0,1,104.33,56.33Z" />
|
|
66
|
+
</svg>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<svg id="Group_2444" data-name="Group 2444" 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_1660" data-name="Rectangle 1660" width="250" height="250" fill="none" />
|
|
6
|
+
</clipPath>
|
|
7
|
+
</defs>
|
|
8
|
+
<g id="Group_2443" data-name="Group 2443" clip-path="url(#clip-path)">
|
|
9
|
+
<path id="Path_640" data-name="Path 640"
|
|
10
|
+
d="M147.493,92.682v65.5a39.263,39.263,0,1,1-78.526,0V111.907a3.557,3.557,0,0,1,3.552-3.553h1.605A10.552,10.552,0,0,1,84.669,118.91V76.854a7.857,7.857,0,0,1,15.714,0V69.029a7.852,7.852,0,0,1,15.7,0v7.825a7.851,7.851,0,0,1,15.7,0V92.682a7.852,7.852,0,1,1,15.7,0"
|
|
11
|
+
transform="translate(17.242 15.293)" fill="#8099b3" />
|
|
12
|
+
<path id="Path_641" data-name="Path 641"
|
|
13
|
+
d="M128.648,162.507H81.531v38.976s5.4,7.89,23.559,7.89,23.559-7.89,23.559-7.89Z"
|
|
14
|
+
transform="translate(20.383 40.627)" fill="#8099b3" />
|
|
15
|
+
<path id="Path_642" data-name="Path 642" d="M81.531,117.345V75.281a7.853,7.853,0,0,1,15.706,0"
|
|
16
|
+
transform="translate(20.383 16.857)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
17
|
+
stroke-width="4" />
|
|
18
|
+
<path id="Path_643" data-name="Path 643" d="M119.225,87.945a7.853,7.853,0,0,1,15.705,0v46.714"
|
|
19
|
+
transform="translate(29.806 20.023)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
20
|
+
stroke-width="4" />
|
|
21
|
+
<path id="Path_644" data-name="Path 644" d="M106.66,75.281a7.853,7.853,0,0,1,15.706,0v51.308"
|
|
22
|
+
transform="translate(26.665 16.857)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
23
|
+
stroke-width="4" />
|
|
24
|
+
<path id="Path_645" data-name="Path 645" d="M94.1,123.56V69.025a7.853,7.853,0,1,1,15.706,0V123.56"
|
|
25
|
+
transform="translate(23.524 15.293)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
26
|
+
stroke-width="4" />
|
|
27
|
+
<path id="Path_646" data-name="Path 646" d="M68.966,117.3v26.849a39.264,39.264,0,0,0,78.529,0V117.3"
|
|
28
|
+
transform="translate(17.242 29.325)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
29
|
+
stroke-width="4" />
|
|
30
|
+
<line id="Line_115" data-name="Line 115" y2="35.632" transform="translate(149.031 205.649)" fill="none"
|
|
31
|
+
stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" />
|
|
32
|
+
<line id="Line_116" data-name="Line 116" y1="35.632" transform="translate(101.914 205.649)" fill="none"
|
|
33
|
+
stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" />
|
|
34
|
+
<path id="Path_647" data-name="Path 647"
|
|
35
|
+
d="M171.96,139.66H58.916a9.314,9.314,0,0,1-9.315-9.315v-69.6a9.315,9.315,0,0,1,9.315-9.315H171.96a9.315,9.315,0,0,1,9.315,9.315v69.6a9.315,9.315,0,0,1-9.315,9.315"
|
|
36
|
+
transform="translate(12.4 12.858)" fill="#f9f1c6" />
|
|
37
|
+
<rect id="Rectangle_1658" data-name="Rectangle 1658" width="131.674" height="88.227" rx="7.452"
|
|
38
|
+
transform="translate(62.001 64.291)" fill="none" stroke="#fcba19" stroke-linejoin="round" stroke-width="4" />
|
|
39
|
+
<line id="Line_117" data-name="Line 117" x2="63.366" transform="translate(77.472 116.103)" fill="none"
|
|
40
|
+
stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" />
|
|
41
|
+
<rect id="Rectangle_1659" data-name="Rectangle 1659" width="131.674" height="14.493"
|
|
42
|
+
transform="translate(62.001 87.343)" fill="#fcba19" />
|
|
43
|
+
<path id="Path_648" data-name="Path 648"
|
|
44
|
+
d="M108.231,154.94a23.559,23.559,0,0,0-23.559-23.559V109.466A10.551,10.551,0,0,0,74.121,98.915h-1.6a3.554,3.554,0,0,0-3.554,3.554v40.459"
|
|
45
|
+
transform="translate(17.242 24.729)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
46
|
+
stroke-width="4" />
|
|
47
|
+
<path id="Path_649" data-name="Path 649"
|
|
48
|
+
d="M108.231,154.94a23.559,23.559,0,0,0-23.559-23.559V109.466A10.551,10.551,0,0,0,74.121,98.915h-1.6a3.554,3.554,0,0,0-3.554,3.554v40.459"
|
|
49
|
+
transform="translate(17.242 24.729)" fill="#8099b3" />
|
|
50
|
+
<path id="Path_650" data-name="Path 650"
|
|
51
|
+
d="M108.231,154.94a23.559,23.559,0,0,0-23.559-23.559V109.466A10.551,10.551,0,0,0,74.121,98.915h-1.6a3.554,3.554,0,0,0-3.554,3.554v40.459"
|
|
52
|
+
transform="translate(17.242 24.729)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
53
|
+
stroke-width="4" />
|
|
54
|
+
<path id="Path_655" data-name="Path 655"
|
|
55
|
+
d="M133.563,89.116a6.112,6.112,0,0,0-6.1,6.105v3.868h3.18V95.117a2.894,2.894,0,1,1,5.789,0v3.971h3.243V95.221a6.112,6.112,0,0,0-6.106-6.105"
|
|
56
|
+
transform="translate(31.865 22.279)" fill="#036" />
|
|
57
|
+
<path id="Path_656" data-name="Path 656"
|
|
58
|
+
d="M144.828,96.594H124.471a1.481,1.481,0,0,0-1.481,1.481v14.4a1.481,1.481,0,0,0,1.481,1.481h20.356a1.48,1.48,0,0,0,1.481-1.481v-14.4a1.48,1.48,0,0,0-1.481-1.481m-9.055,9.891v2.647a.45.45,0,0,1-.45.45h-1.345a.451.451,0,0,1-.451-.45v-2.647a2.874,2.874,0,1,1,2.246,0"
|
|
59
|
+
transform="translate(30.747 24.149)" fill="#036" />
|
|
60
|
+
</g>
|
|
61
|
+
</svg>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<svg id="Group_2444" data-name="Group 2444" 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_1660" data-name="Rectangle 1660" width="250" height="250" fill="none" />
|
|
6
|
+
</clipPath>
|
|
7
|
+
</defs>
|
|
8
|
+
<g id="Group_2443" data-name="Group 2443" clip-path="url(#clip-path)">
|
|
9
|
+
<path id="Path_640" data-name="Path 640"
|
|
10
|
+
d="M147.493,92.682v65.5a39.263,39.263,0,1,1-78.526,0V111.907a3.557,3.557,0,0,1,3.552-3.553h1.605A10.552,10.552,0,0,1,84.669,118.91V76.854a7.857,7.857,0,0,1,15.714,0V69.029a7.852,7.852,0,0,1,15.7,0v7.825a7.851,7.851,0,0,1,15.7,0V92.682a7.852,7.852,0,1,1,15.7,0"
|
|
11
|
+
transform="translate(17.242 15.293)" fill="#8099b3" />
|
|
12
|
+
<path id="Path_641" data-name="Path 641"
|
|
13
|
+
d="M128.648,162.507H81.531v38.976s5.4,7.89,23.559,7.89,23.559-7.89,23.559-7.89Z"
|
|
14
|
+
transform="translate(20.383 40.627)" fill="#8099b3" />
|
|
15
|
+
<path id="Path_642" data-name="Path 642" d="M81.531,117.345V75.281a7.853,7.853,0,0,1,15.706,0"
|
|
16
|
+
transform="translate(20.383 16.857)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
17
|
+
stroke-width="4" />
|
|
18
|
+
<path id="Path_643" data-name="Path 643" d="M119.225,87.945a7.853,7.853,0,0,1,15.705,0v46.714"
|
|
19
|
+
transform="translate(29.806 20.023)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
20
|
+
stroke-width="4" />
|
|
21
|
+
<path id="Path_644" data-name="Path 644" d="M106.66,75.281a7.853,7.853,0,0,1,15.706,0v51.308"
|
|
22
|
+
transform="translate(26.665 16.857)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
23
|
+
stroke-width="4" />
|
|
24
|
+
<path id="Path_645" data-name="Path 645" d="M94.1,123.56V69.025a7.853,7.853,0,1,1,15.706,0V123.56"
|
|
25
|
+
transform="translate(23.524 15.293)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
26
|
+
stroke-width="4" />
|
|
27
|
+
<path id="Path_646" data-name="Path 646" d="M68.966,117.3v26.849a39.264,39.264,0,0,0,78.529,0V117.3"
|
|
28
|
+
transform="translate(17.242 29.325)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
29
|
+
stroke-width="4" />
|
|
30
|
+
<line id="Line_115" data-name="Line 115" y2="35.632" transform="translate(149.031 205.649)" fill="none"
|
|
31
|
+
stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" />
|
|
32
|
+
<line id="Line_116" data-name="Line 116" y1="35.632" transform="translate(101.914 205.649)" fill="none"
|
|
33
|
+
stroke="#036" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" />
|
|
34
|
+
<path id="Path_647" data-name="Path 647"
|
|
35
|
+
d="M171.96,139.66H58.916a9.314,9.314,0,0,1-9.315-9.315v-69.6a9.315,9.315,0,0,1,9.315-9.315H171.96a9.315,9.315,0,0,1,9.315,9.315v69.6a9.315,9.315,0,0,1-9.315,9.315"
|
|
36
|
+
transform="translate(12.4 12.858)" fill="#f9f1c6" />
|
|
37
|
+
<rect id="Rectangle_1658" data-name="Rectangle 1658" width="131.674" height="88.227" rx="7.452"
|
|
38
|
+
transform="translate(62.001 64.291)" fill="none" stroke="#fcba19" stroke-linejoin="round" stroke-width="4" />
|
|
39
|
+
<line id="Line_117" data-name="Line 117" x2="63.366" transform="translate(77.472 116.103)" fill="none"
|
|
40
|
+
stroke="#fcba19" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" />
|
|
41
|
+
<rect id="Rectangle_1659" data-name="Rectangle 1659" width="131.674" height="14.493"
|
|
42
|
+
transform="translate(62.001 87.343)" fill="#fcba19" />
|
|
43
|
+
<path id="Path_648" data-name="Path 648"
|
|
44
|
+
d="M108.231,154.94a23.559,23.559,0,0,0-23.559-23.559V109.466A10.551,10.551,0,0,0,74.121,98.915h-1.6a3.554,3.554,0,0,0-3.554,3.554v40.459"
|
|
45
|
+
transform="translate(17.242 24.729)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
46
|
+
stroke-width="4" />
|
|
47
|
+
<path id="Path_649" data-name="Path 649"
|
|
48
|
+
d="M108.231,154.94a23.559,23.559,0,0,0-23.559-23.559V109.466A10.551,10.551,0,0,0,74.121,98.915h-1.6a3.554,3.554,0,0,0-3.554,3.554v40.459"
|
|
49
|
+
transform="translate(17.242 24.729)" fill="#8099b3" />
|
|
50
|
+
<path id="Path_650" data-name="Path 650"
|
|
51
|
+
d="M108.231,154.94a23.559,23.559,0,0,0-23.559-23.559V109.466A10.551,10.551,0,0,0,74.121,98.915h-1.6a3.554,3.554,0,0,0-3.554,3.554v40.459"
|
|
52
|
+
transform="translate(17.242 24.729)" fill="none" stroke="#036" stroke-linecap="round" stroke-linejoin="round"
|
|
53
|
+
stroke-width="4" />
|
|
54
|
+
<path id="Path_651" data-name="Path 651"
|
|
55
|
+
d="M125.9,21.8a19.689,19.689,0,1,1-19.69-19.69A19.69,19.69,0,0,1,125.9,21.8" transform="translate(21.63 0.527)"
|
|
56
|
+
fill="#dff0d8" />
|
|
57
|
+
<path id="Path_652" data-name="Path 652"
|
|
58
|
+
d="M125.9,21.8a19.689,19.689,0,1,1-19.69-19.69A19.69,19.69,0,0,1,125.9,21.8Z" transform="translate(21.63 0.527)"
|
|
59
|
+
fill="none" stroke="#2d4821" stroke-miterlimit="10" stroke-width="4" />
|
|
60
|
+
<path id="Path_653" data-name="Path 653" d="M95.081,20.422,102.16,27.5l12.574-14.853"
|
|
61
|
+
transform="translate(23.77 3.162)" fill="#dff0d8" />
|
|
62
|
+
<path id="Path_654" data-name="Path 654" d="M95.081,20.422,102.16,27.5l12.574-14.853"
|
|
63
|
+
transform="translate(23.77 3.162)" fill="none" stroke="#2d4821" stroke-linecap="round" stroke-linejoin="round"
|
|
64
|
+
stroke-width="4" />
|
|
65
|
+
<path id="Path_655" data-name="Path 655"
|
|
66
|
+
d="M133.563,89.116a6.112,6.112,0,0,0-6.1,6.105v3.868h3.18V95.117a2.894,2.894,0,1,1,5.789,0v3.971h3.243V95.221a6.112,6.112,0,0,0-6.106-6.105"
|
|
67
|
+
transform="translate(31.865 22.279)" fill="#036" />
|
|
68
|
+
<path id="Path_656" data-name="Path 656"
|
|
69
|
+
d="M144.828,96.594H124.471a1.481,1.481,0,0,0-1.481,1.481v14.4a1.481,1.481,0,0,0,1.481,1.481h20.356a1.48,1.48,0,0,0,1.481-1.481v-14.4a1.48,1.48,0,0,0-1.481-1.481m-9.055,9.891v2.647a.45.45,0,0,1-.45.45h-1.345a.451.451,0,0,1-.451-.45v-2.647a2.874,2.874,0,1,1,2.246,0"
|
|
70
|
+
transform="translate(30.747 24.149)" fill="#036" />
|
|
71
|
+
</g>
|
|
72
|
+
</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:#fcba19;}.cls-2{fill:#f9f1c6;}.cls-3{fill:#036;}.cls-4{fill:#8099b3;}</style></defs><g id="Group_2455"><path id="Path_683" class="cls-4" d="M113.8,31.81v125.17c0,3.79-3.06,6.86-6.85,6.87H33.77c-3.79,0-6.86-3.07-6.86-6.86,0,0,0,0,0,0V31.81c0-3.79,3.07-6.86,6.86-6.86H106.95c3.79,0,6.86,3.07,6.86,6.86"/><path class="cls-3" d="M104.06,8.43H36.66c-8.98,0-16.27,7.29-16.27,16.27V175.3c0,8.99,7.29,16.27,16.27,16.27H104.06c8.98,0,16.27-7.29,16.27-16.27V24.7c0-8.99-7.29-16.27-16.27-16.27Zm9.74,148.56c0,3.79-3.06,6.86-6.85,6.87H33.77c-3.79,0-6.86-3.07-6.86-6.86h0V31.81c0-3.79,3.07-6.85,6.86-6.86H106.95c3.79,0,6.85,3.07,6.86,6.86v125.17Z"/><circle id="Ellipse_106" class="cls-4" cx="70.36" cy="178.1" r="7.59"/><path id="Rectangle_4575" class="cls-4" d="M62.77,15.39h15.19c1.2,0,2.17,.97,2.17,2.17h0c0,1.2-.97,2.17-2.17,2.17h-15.19c-1.2,0-2.17-.97-2.17-2.17h0c0-1.2,.97-2.17,2.17-2.17Z"/></g><path class="cls-1" d="M170.99,35.36H78.98c-4.76,0-8.62,3.86-8.62,8.62v87.77c0,1.55,1.87,2.32,2.97,1.23l25.99-25.99h71.68c4.76,0,8.62-3.86,8.62-8.62V43.98c0-4.76-3.86-8.62-8.62-8.62Z"/><path class="cls-2" d="M124.99,46.84h0c9.35,0,16.94,7.59,16.94,16.94v19.45h-33.89v-19.45c0-9.35,7.59-16.94,16.94-16.94Z"/><path class="cls-2" d="M105.17,59.65c-.1,0-.2-.01-.3-.04-.64-.16-1.03-.82-.87-1.46,1.39-5.46,4.82-10.1,9.63-13.07,.56-.35,1.31-.17,1.66,.39,.35,.57,.17,1.31-.39,1.66-4.28,2.64-7.32,6.76-8.56,11.61-.14,.54-.63,.9-1.16,.9Z"/><path class="cls-2" d="M140.25,80.73h-30.53c-2.93,2.93-4.57,4.57-7.49,7.49v2.93h45.52v-2.93c-2.93-2.93-4.57-4.57-7.49-7.49Z"/><circle class="cls-2" cx="124.99" cy="46.84" r="3.77"/><path class="cls-2" d="M144.8,59.65c-.54,0-1.03-.36-1.16-.9-1.24-4.85-4.28-8.97-8.56-11.61-.57-.35-.74-1.09-.39-1.66,.35-.57,1.09-.74,1.66-.39,4.82,2.97,8.24,7.61,9.63,13.07,.16,.64-.22,1.3-.87,1.46-.1,.03-.2,.04-.3,.04Z"/><path class="cls-2" d="M124.99,98.75c2.92,0,5.29-2.37,5.29-5.29h-10.58c0,2.92,2.37,5.29,5.29,5.29Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4,4H10V10H4V4M20,4V10H14V4H20M14,15H16V13H14V11H16V13H18V11H20V13H18V15H20V18H18V20H16V18H13V20H11V16H14V15M16,15V18H18V15H16M4,20V14H10V20H4M6,6V8H8V6H6M16,6V8H18V6H16M6,16V18H8V16H6M4,11H6V13H4V11M9,11H13V15H11V13H9V11M11,6H13V10H11V6M2,2V6H0V2A2,2 0 0,1 2,0H6V2H2M22,0A2,2 0 0,1 24,2V6H22V2H18V0H22M2,18V22H6V24H2A2,2 0 0,1 0,22V18H2M22,22V18H24V22A2,2 0 0,1 22,24H18V22H22Z" /></svg>
|