@procivis/one-react-native-components 0.1.63 → 0.2.54
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/README.md +17 -6
- package/lib/commonjs/components/backup/index.js +17 -0
- package/lib/commonjs/components/backup/index.js.map +1 -0
- package/lib/commonjs/components/backup/preview-credentials.js +42 -0
- package/lib/commonjs/components/backup/preview-credentials.js.map +1 -0
- package/lib/commonjs/components/credential/credential.js +63 -0
- package/lib/commonjs/components/credential/credential.js.map +1 -0
- package/lib/commonjs/components/credential/index.js +17 -0
- package/lib/commonjs/components/credential/index.js.map +1 -0
- package/lib/commonjs/components/entity/EntityButtons.js +69 -0
- package/lib/commonjs/components/entity/EntityButtons.js.map +1 -0
- package/lib/commonjs/components/entity/entity-attributes.js +52 -0
- package/lib/commonjs/components/entity/entity-attributes.js.map +1 -0
- package/lib/commonjs/components/entity/entity-details-with-buttons.js +91 -0
- package/lib/commonjs/components/entity/entity-details-with-buttons.js.map +1 -0
- package/lib/commonjs/components/entity/entity-details.js +74 -0
- package/lib/commonjs/components/entity/entity-details.js.map +1 -0
- package/lib/commonjs/components/entity/index.js +27 -0
- package/lib/commonjs/components/entity/index.js.map +1 -0
- package/lib/commonjs/components/index.js +61 -0
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/components/navigation/header-buttons.js +82 -0
- package/lib/commonjs/components/navigation/header-buttons.js.map +1 -0
- package/lib/commonjs/components/navigation/index.js +17 -0
- package/lib/commonjs/components/navigation/index.js.map +1 -0
- package/lib/commonjs/components/proof-request/group.js +36 -0
- package/lib/commonjs/components/proof-request/group.js.map +1 -0
- package/lib/commonjs/components/proof-request/index.js +39 -0
- package/lib/commonjs/components/proof-request/index.js.map +1 -0
- package/lib/commonjs/components/proof-request/select-credential.js +49 -0
- package/lib/commonjs/components/proof-request/select-credential.js.map +1 -0
- package/lib/commonjs/components/proof-request/share-credential.js +163 -0
- package/lib/commonjs/components/proof-request/share-credential.js.map +1 -0
- package/lib/commonjs/index.js +8 -261
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/ui-components/accessibility/accessibilityHistory.js +81 -0
- package/lib/commonjs/ui-components/accessibility/accessibilityHistory.js.map +1 -0
- package/lib/commonjs/ui-components/blur/blur-view.js +76 -0
- package/lib/commonjs/ui-components/blur/blur-view.js.map +1 -0
- package/lib/commonjs/ui-components/buttons/back-button.js.map +1 -0
- package/lib/commonjs/ui-components/buttons/button.js +153 -0
- package/lib/commonjs/ui-components/buttons/button.js.map +1 -0
- package/lib/commonjs/ui-components/buttons/connectivity-button.js +82 -0
- package/lib/commonjs/ui-components/buttons/connectivity-button.js.map +1 -0
- package/lib/commonjs/ui-components/credential/card/credential-card.js +183 -0
- package/lib/commonjs/ui-components/credential/card/credential-card.js.map +1 -0
- package/lib/commonjs/ui-components/credential/card/credential-details-card.js +199 -0
- package/lib/commonjs/ui-components/credential/card/credential-details-card.js.map +1 -0
- package/lib/commonjs/ui-components/credential/card/credential-header.js +173 -0
- package/lib/commonjs/ui-components/credential/card/credential-header.js.map +1 -0
- package/lib/commonjs/ui-components/credential/card/credential-image-carousel.js +124 -0
- package/lib/commonjs/ui-components/credential/card/credential-image-carousel.js.map +1 -0
- package/lib/commonjs/ui-components/credential/card/index.js +91 -0
- package/lib/commonjs/ui-components/credential/card/index.js.map +1 -0
- package/lib/commonjs/ui-components/credential/credential-attribute-item.js +289 -0
- package/lib/commonjs/ui-components/credential/credential-attribute-item.js.map +1 -0
- package/lib/commonjs/ui-components/credential/selector.js +79 -0
- package/lib/commonjs/ui-components/credential/selector.js.map +1 -0
- package/lib/commonjs/ui-components/detail/detail.js +84 -0
- package/lib/commonjs/ui-components/detail/detail.js.map +1 -0
- package/lib/commonjs/ui-components/entity/avatar.js +106 -0
- package/lib/commonjs/ui-components/entity/avatar.js.map +1 -0
- package/lib/commonjs/ui-components/entity/entity-cluster.js +75 -0
- package/lib/commonjs/ui-components/entity/entity-cluster.js.map +1 -0
- package/lib/commonjs/ui-components/header/header.js +105 -0
- package/lib/commonjs/ui-components/header/header.js.map +1 -0
- package/lib/commonjs/ui-components/header/navigation-header.js +148 -0
- package/lib/commonjs/ui-components/header/navigation-header.js.map +1 -0
- package/lib/commonjs/ui-components/history/data-item.js +70 -0
- package/lib/commonjs/ui-components/history/data-item.js.map +1 -0
- package/lib/commonjs/ui-components/history/history-list-item.js +90 -0
- package/lib/commonjs/ui-components/history/history-list-item.js.map +1 -0
- package/lib/commonjs/ui-components/history/history-section-header.js +49 -0
- package/lib/commonjs/ui-components/history/history-section-header.js.map +1 -0
- package/lib/commonjs/ui-components/icons/entity.js +52 -0
- package/lib/commonjs/ui-components/icons/entity.js.map +1 -0
- package/lib/commonjs/ui-components/index.js +281 -0
- package/lib/commonjs/ui-components/index.js.map +1 -0
- package/lib/commonjs/ui-components/input/selection-input.js +102 -0
- package/lib/commonjs/ui-components/input/selection-input.js.map +1 -0
- package/lib/commonjs/ui-components/input/text-input.js +195 -0
- package/lib/commonjs/ui-components/input/text-input.js.map +1 -0
- package/lib/commonjs/ui-components/loader/loader.js +140 -0
- package/lib/commonjs/ui-components/loader/loader.js.map +1 -0
- package/lib/commonjs/ui-components/nerd-view/nerd-mode-item.js +238 -0
- package/lib/commonjs/ui-components/nerd-view/nerd-mode-item.js.map +1 -0
- package/lib/commonjs/ui-components/pin/index.js +47 -0
- package/lib/commonjs/ui-components/pin/index.js.map +1 -0
- package/lib/commonjs/ui-components/pin/keypad.js +201 -0
- package/lib/commonjs/ui-components/pin/keypad.js.map +1 -0
- package/lib/commonjs/ui-components/pin/pin-code-screen.js +162 -0
- package/lib/commonjs/ui-components/pin/pin-code-screen.js.map +1 -0
- package/lib/commonjs/ui-components/pin/pin-lock-animation.js +824 -0
- package/lib/commonjs/ui-components/pin/pin-lock-animation.js.map +1 -0
- package/lib/commonjs/ui-components/pin/pin-lock.js +83 -0
- package/lib/commonjs/ui-components/pin/pin-lock.js.map +1 -0
- package/lib/commonjs/ui-components/screens/backup-screen.js +87 -0
- package/lib/commonjs/ui-components/screens/backup-screen.js.map +1 -0
- package/lib/commonjs/ui-components/screens/image-preview-screen.js +92 -0
- package/lib/commonjs/ui-components/screens/image-preview-screen.js.map +1 -0
- package/lib/commonjs/ui-components/screens/nerd-mode-screen.js +172 -0
- package/lib/commonjs/ui-components/screens/nerd-mode-screen.js.map +1 -0
- package/lib/commonjs/ui-components/screens/qr-code-scanner-screen.js +120 -0
- package/lib/commonjs/ui-components/screens/qr-code-scanner-screen.js.map +1 -0
- package/lib/commonjs/ui-components/screens/scroll-view-screen.js +94 -0
- package/lib/commonjs/ui-components/screens/scroll-view-screen.js.map +1 -0
- package/lib/commonjs/ui-components/screens/section-list-screen.js +67 -0
- package/lib/commonjs/ui-components/screens/section-list-screen.js.map +1 -0
- package/lib/commonjs/ui-components/searchbar/search-bar.js +99 -0
- package/lib/commonjs/ui-components/searchbar/search-bar.js.map +1 -0
- package/lib/commonjs/utils/array.js +10 -0
- package/lib/commonjs/utils/array.js.map +1 -0
- package/lib/commonjs/utils/backup.js +12 -0
- package/lib/commonjs/utils/backup.js.map +1 -0
- package/lib/commonjs/utils/date.js +98 -1
- package/lib/commonjs/utils/date.js.map +1 -1
- package/lib/commonjs/utils/hooks/connectivity/connectivity.js +148 -0
- package/lib/commonjs/utils/hooks/connectivity/connectivity.js.map +1 -0
- package/lib/commonjs/utils/hooks/connectivity/connectivity.test.js +56 -0
- package/lib/commonjs/utils/hooks/connectivity/connectivity.test.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/backup.js +155 -0
- package/lib/commonjs/utils/hooks/core/backup.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/core-config.js +19 -0
- package/lib/commonjs/utils/hooks/core/core-config.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/core-context.js +72 -0
- package/lib/commonjs/utils/hooks/core/core-context.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/core-init.js +91 -0
- package/lib/commonjs/utils/hooks/core/core-init.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/credential-schemas.js +111 -0
- package/lib/commonjs/utils/hooks/core/credential-schemas.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/credentials.js +170 -0
- package/lib/commonjs/utils/hooks/core/credentials.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/dids.js +35 -0
- package/lib/commonjs/utils/hooks/core/dids.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/error-code.js +15 -0
- package/lib/commonjs/utils/hooks/core/error-code.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/history.js +65 -0
- package/lib/commonjs/utils/hooks/core/history.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/index.js +138 -0
- package/lib/commonjs/utils/hooks/core/index.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/proof-schemas.js +132 -0
- package/lib/commonjs/utils/hooks/core/proof-schemas.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/proofs.js +336 -0
- package/lib/commonjs/utils/hooks/core/proofs.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/query.js +25 -0
- package/lib/commonjs/utils/hooks/core/query.js.map +1 -0
- package/lib/commonjs/utils/hooks/core/trust-entity.js +95 -0
- package/lib/commonjs/utils/hooks/core/trust-entity.js.map +1 -0
- package/lib/commonjs/utils/hooks/credential-card/credential-card-expanding.js +51 -0
- package/lib/commonjs/utils/hooks/credential-card/credential-card-expanding.js.map +1 -0
- package/lib/commonjs/utils/hooks/http/client.js +20 -0
- package/lib/commonjs/utils/hooks/http/client.js.map +1 -0
- package/lib/commonjs/utils/hooks/index.js +85 -11
- package/lib/commonjs/utils/hooks/index.js.map +1 -1
- package/lib/commonjs/utils/hooks/navigation/before-remove.js +28 -0
- package/lib/commonjs/utils/hooks/navigation/before-remove.js.map +1 -0
- package/lib/commonjs/utils/hooks/navigation/close-button-timeout.js +34 -0
- package/lib/commonjs/utils/hooks/navigation/close-button-timeout.js.map +1 -0
- package/lib/commonjs/utils/hooks/navigation/deep-link.js +46 -0
- package/lib/commonjs/utils/hooks/navigation/deep-link.js.map +1 -0
- package/lib/commonjs/utils/hooks/navigation/index.js +50 -0
- package/lib/commonjs/utils/hooks/navigation/index.js.map +1 -0
- package/lib/commonjs/utils/hooks/navigation/open-settings.js +43 -0
- package/lib/commonjs/utils/hooks/navigation/open-settings.js.map +1 -0
- package/lib/commonjs/utils/hooks/pin-security/pin-security.js +87 -0
- package/lib/commonjs/utils/hooks/pin-security/pin-security.js.map +1 -0
- package/lib/commonjs/utils/hooks/revocation/credential-status.js +67 -0
- package/lib/commonjs/utils/hooks/revocation/credential-status.js.map +1 -0
- package/lib/commonjs/utils/index.js +119 -45
- package/lib/commonjs/utils/index.js.map +1 -1
- package/lib/commonjs/utils/parsers/credential-images.js +86 -0
- package/lib/commonjs/utils/parsers/credential-images.js.map +1 -0
- package/lib/commonjs/utils/parsers/credential-sharing.js +255 -0
- package/lib/commonjs/utils/parsers/credential-sharing.js.map +1 -0
- package/lib/commonjs/utils/parsers/credential.js +323 -0
- package/lib/commonjs/utils/parsers/credential.js.map +1 -0
- package/lib/commonjs/utils/parsers/index.js +50 -0
- package/lib/commonjs/utils/parsers/index.js.map +1 -0
- package/lib/commonjs/utils/parsers/query.js +103 -0
- package/lib/commonjs/utils/parsers/query.js.map +1 -0
- package/lib/commonjs/utils/reporting.js +86 -0
- package/lib/commonjs/utils/reporting.js.map +1 -0
- package/lib/commonjs/utils/string.js +20 -0
- package/lib/commonjs/utils/string.js.map +1 -0
- package/lib/commonjs/utils/useMemoAsync.js +1 -1
- package/lib/commonjs/utils/useMemoAsync.js.map +1 -1
- package/lib/commonjs/utils/uuid.js +16 -0
- package/lib/commonjs/utils/uuid.js.map +1 -0
- package/lib/module/components/backup/index.js +2 -0
- package/lib/module/components/backup/index.js.map +1 -0
- package/lib/module/components/backup/preview-credentials.js +34 -0
- package/lib/module/components/backup/preview-credentials.js.map +1 -0
- package/lib/module/components/credential/credential.js +55 -0
- package/lib/module/components/credential/credential.js.map +1 -0
- package/lib/module/components/credential/index.js +2 -0
- package/lib/module/components/credential/index.js.map +1 -0
- package/lib/module/components/entity/EntityButtons.js +60 -0
- package/lib/module/components/entity/EntityButtons.js.map +1 -0
- package/lib/module/components/entity/entity-attributes.js +43 -0
- package/lib/module/components/entity/entity-attributes.js.map +1 -0
- package/lib/module/components/entity/entity-details-with-buttons.js +81 -0
- package/lib/module/components/entity/entity-details-with-buttons.js.map +1 -0
- package/lib/module/components/entity/entity-details.js +64 -0
- package/lib/module/components/entity/entity-details.js.map +1 -0
- package/lib/module/components/entity/index.js +3 -0
- package/lib/module/components/entity/index.js.map +1 -0
- package/lib/module/components/index.js +6 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/components/navigation/header-buttons.js +70 -0
- package/lib/module/components/navigation/header-buttons.js.map +1 -0
- package/lib/module/components/navigation/index.js +2 -0
- package/lib/module/components/navigation/index.js.map +1 -0
- package/lib/module/components/proof-request/group.js +28 -0
- package/lib/module/components/proof-request/group.js.map +1 -0
- package/lib/module/components/proof-request/index.js +4 -0
- package/lib/module/components/proof-request/index.js.map +1 -0
- package/lib/module/components/proof-request/select-credential.js +41 -0
- package/lib/module/components/proof-request/select-credential.js.map +1 -0
- package/lib/module/components/proof-request/share-credential.js +154 -0
- package/lib/module/components/proof-request/share-credential.js.map +1 -0
- package/lib/module/index.js +2 -25
- package/lib/module/index.js.map +1 -1
- package/lib/module/ui-components/accessibility/accessibilityHistory.js +71 -0
- package/lib/module/ui-components/accessibility/accessibilityHistory.js.map +1 -0
- package/lib/module/ui-components/blur/blur-view.js +67 -0
- package/lib/module/ui-components/blur/blur-view.js.map +1 -0
- package/lib/module/ui-components/buttons/back-button.js.map +1 -0
- package/lib/module/ui-components/buttons/button.js +143 -0
- package/lib/module/ui-components/buttons/button.js.map +1 -0
- package/lib/module/ui-components/buttons/connectivity-button.js +73 -0
- package/lib/module/ui-components/buttons/connectivity-button.js.map +1 -0
- package/lib/module/ui-components/credential/card/credential-card.js +171 -0
- package/lib/module/ui-components/credential/card/credential-card.js.map +1 -0
- package/lib/module/ui-components/credential/card/credential-details-card.js +189 -0
- package/lib/module/ui-components/credential/card/credential-details-card.js.map +1 -0
- package/lib/module/ui-components/credential/card/credential-header.js +163 -0
- package/lib/module/ui-components/credential/card/credential-header.js.map +1 -0
- package/lib/module/ui-components/credential/card/credential-image-carousel.js +113 -0
- package/lib/module/ui-components/credential/card/credential-image-carousel.js.map +1 -0
- package/lib/module/ui-components/credential/card/index.js +11 -0
- package/lib/module/ui-components/credential/card/index.js.map +1 -0
- package/lib/module/ui-components/credential/credential-attribute-item.js +279 -0
- package/lib/module/ui-components/credential/credential-attribute-item.js.map +1 -0
- package/lib/module/ui-components/credential/selector.js +70 -0
- package/lib/module/ui-components/credential/selector.js.map +1 -0
- package/lib/module/ui-components/detail/detail.js +75 -0
- package/lib/module/ui-components/detail/detail.js.map +1 -0
- package/lib/module/ui-components/entity/avatar.js +96 -0
- package/lib/module/ui-components/entity/avatar.js.map +1 -0
- package/lib/module/ui-components/entity/entity-cluster.js +65 -0
- package/lib/module/ui-components/entity/entity-cluster.js.map +1 -0
- package/lib/module/ui-components/header/header.js +97 -0
- package/lib/module/ui-components/header/header.js.map +1 -0
- package/lib/module/ui-components/header/navigation-header.js +138 -0
- package/lib/module/ui-components/header/navigation-header.js.map +1 -0
- package/lib/module/ui-components/history/data-item.js +60 -0
- package/lib/module/ui-components/history/data-item.js.map +1 -0
- package/lib/module/ui-components/history/history-list-item.js +80 -0
- package/lib/module/ui-components/history/history-list-item.js.map +1 -0
- package/lib/module/ui-components/history/history-section-header.js +42 -0
- package/lib/module/ui-components/history/history-section-header.js.map +1 -0
- package/lib/module/ui-components/icons/entity.js +43 -0
- package/lib/module/ui-components/icons/entity.js.map +1 -0
- package/lib/module/ui-components/index.js +26 -0
- package/lib/module/ui-components/index.js.map +1 -0
- package/lib/module/ui-components/input/selection-input.js +92 -0
- package/lib/module/ui-components/input/selection-input.js.map +1 -0
- package/lib/module/ui-components/input/text-input.js +185 -0
- package/lib/module/ui-components/input/text-input.js.map +1 -0
- package/lib/module/ui-components/loader/loader.js +130 -0
- package/lib/module/ui-components/loader/loader.js.map +1 -0
- package/lib/module/ui-components/nerd-view/nerd-mode-item.js +227 -0
- package/lib/module/ui-components/nerd-view/nerd-mode-item.js.map +1 -0
- package/lib/module/ui-components/pin/index.js +5 -0
- package/lib/module/ui-components/pin/index.js.map +1 -0
- package/lib/module/ui-components/pin/keypad.js +191 -0
- package/lib/module/ui-components/pin/keypad.js.map +1 -0
- package/lib/module/ui-components/pin/pin-code-screen.js +152 -0
- package/lib/module/ui-components/pin/pin-code-screen.js.map +1 -0
- package/lib/module/ui-components/pin/pin-lock-animation.js +817 -0
- package/lib/module/ui-components/pin/pin-lock-animation.js.map +1 -0
- package/lib/module/ui-components/pin/pin-lock.js +73 -0
- package/lib/module/ui-components/pin/pin-lock.js.map +1 -0
- package/lib/module/ui-components/screens/backup-screen.js +78 -0
- package/lib/module/ui-components/screens/backup-screen.js.map +1 -0
- package/lib/module/ui-components/screens/image-preview-screen.js +83 -0
- package/lib/module/ui-components/screens/image-preview-screen.js.map +1 -0
- package/lib/module/ui-components/screens/nerd-mode-screen.js +161 -0
- package/lib/module/ui-components/screens/nerd-mode-screen.js.map +1 -0
- package/lib/module/ui-components/screens/qr-code-scanner-screen.js +110 -0
- package/lib/module/ui-components/screens/qr-code-scanner-screen.js.map +1 -0
- package/lib/module/ui-components/screens/scroll-view-screen.js +86 -0
- package/lib/module/ui-components/screens/scroll-view-screen.js.map +1 -0
- package/lib/module/ui-components/screens/section-list-screen.js +59 -0
- package/lib/module/ui-components/screens/section-list-screen.js.map +1 -0
- package/lib/module/ui-components/searchbar/search-bar.js +89 -0
- package/lib/module/ui-components/searchbar/search-bar.js.map +1 -0
- package/lib/module/utils/array.js +4 -0
- package/lib/module/utils/array.js.map +1 -0
- package/lib/module/utils/backup.js +5 -0
- package/lib/module/utils/backup.js.map +1 -0
- package/lib/module/utils/date.js +89 -1
- package/lib/module/utils/date.js.map +1 -1
- package/lib/module/utils/hooks/connectivity/connectivity.js +136 -0
- package/lib/module/utils/hooks/connectivity/connectivity.js.map +1 -0
- package/lib/module/utils/hooks/connectivity/connectivity.test.js +54 -0
- package/lib/module/utils/hooks/connectivity/connectivity.test.js.map +1 -0
- package/lib/module/utils/hooks/core/backup.js +143 -0
- package/lib/module/utils/hooks/core/backup.js.map +1 -0
- package/lib/module/utils/hooks/core/core-config.js +12 -0
- package/lib/module/utils/hooks/core/core-config.js.map +1 -0
- package/lib/module/utils/hooks/core/core-context.js +62 -0
- package/lib/module/utils/hooks/core/core-context.js.map +1 -0
- package/lib/module/utils/hooks/core/core-init.js +82 -0
- package/lib/module/utils/hooks/core/core-init.js.map +1 -0
- package/lib/module/utils/hooks/core/credential-schemas.js +95 -0
- package/lib/module/utils/hooks/core/credential-schemas.js.map +1 -0
- package/lib/module/utils/hooks/core/credentials.js +155 -0
- package/lib/module/utils/hooks/core/credentials.js.map +1 -0
- package/lib/module/utils/hooks/core/dids.js +27 -0
- package/lib/module/utils/hooks/core/dids.js.map +1 -0
- package/lib/module/utils/hooks/core/error-code.js +8 -0
- package/lib/module/utils/hooks/core/error-code.js.map +1 -0
- package/lib/module/utils/hooks/core/history.js +57 -0
- package/lib/module/utils/hooks/core/history.js.map +1 -0
- package/lib/module/utils/hooks/core/index.js +13 -0
- package/lib/module/utils/hooks/core/index.js.map +1 -0
- package/lib/module/utils/hooks/core/proof-schemas.js +115 -0
- package/lib/module/utils/hooks/core/proof-schemas.js.map +1 -0
- package/lib/module/utils/hooks/core/proofs.js +312 -0
- package/lib/module/utils/hooks/core/proofs.js.map +1 -0
- package/lib/module/utils/hooks/core/query.js +18 -0
- package/lib/module/utils/hooks/core/query.js.map +1 -0
- package/lib/module/utils/hooks/core/trust-entity.js +84 -0
- package/lib/module/utils/hooks/core/trust-entity.js.map +1 -0
- package/lib/module/utils/hooks/credential-card/credential-card-expanding.js +43 -0
- package/lib/module/utils/hooks/credential-card/credential-card-expanding.js.map +1 -0
- package/lib/module/utils/hooks/http/client.js +13 -0
- package/lib/module/utils/hooks/http/client.js.map +1 -0
- package/lib/module/utils/hooks/index.js +8 -4
- package/lib/module/utils/hooks/index.js.map +1 -1
- package/lib/module/utils/hooks/navigation/before-remove.js +21 -0
- package/lib/module/utils/hooks/navigation/before-remove.js.map +1 -0
- package/lib/module/utils/hooks/navigation/close-button-timeout.js +27 -0
- package/lib/module/utils/hooks/navigation/close-button-timeout.js.map +1 -0
- package/lib/module/utils/hooks/navigation/deep-link.js +38 -0
- package/lib/module/utils/hooks/navigation/deep-link.js.map +1 -0
- package/lib/module/utils/hooks/navigation/index.js +5 -0
- package/lib/module/utils/hooks/navigation/index.js.map +1 -0
- package/lib/module/utils/hooks/navigation/open-settings.js +36 -0
- package/lib/module/utils/hooks/navigation/open-settings.js.map +1 -0
- package/lib/module/utils/hooks/pin-security/pin-security.js +80 -0
- package/lib/module/utils/hooks/pin-security/pin-security.js.map +1 -0
- package/lib/module/utils/hooks/revocation/credential-status.js +61 -0
- package/lib/module/utils/hooks/revocation/credential-status.js.map +1 -0
- package/lib/module/utils/index.js +11 -5
- package/lib/module/utils/index.js.map +1 -1
- package/lib/module/utils/parsers/credential-images.js +78 -0
- package/lib/module/utils/parsers/credential-images.js.map +1 -0
- package/lib/module/utils/parsers/credential-sharing.js +242 -0
- package/lib/module/utils/parsers/credential-sharing.js.map +1 -0
- package/lib/module/utils/parsers/credential.js +304 -0
- package/lib/module/utils/parsers/credential.js.map +1 -0
- package/lib/module/utils/parsers/index.js +5 -0
- package/lib/module/utils/parsers/index.js.map +1 -0
- package/lib/module/utils/parsers/query.js +91 -0
- package/lib/module/utils/parsers/query.js.map +1 -0
- package/lib/module/utils/reporting.js +76 -0
- package/lib/module/utils/reporting.js.map +1 -0
- package/lib/module/utils/string.js +10 -0
- package/lib/module/utils/string.js.map +1 -0
- package/lib/module/utils/useMemoAsync.js +1 -1
- package/lib/module/utils/useMemoAsync.js.map +1 -1
- package/lib/module/utils/uuid.js +9 -0
- package/lib/module/utils/uuid.js.map +1 -0
- package/lib/typescript/components/backup/index.d.ts +1 -0
- package/lib/typescript/components/backup/preview-credentials.d.ts +11 -0
- package/lib/typescript/components/credential/credential.d.ts +16 -0
- package/lib/typescript/components/credential/index.d.ts +1 -0
- package/lib/typescript/components/entity/EntityButtons.d.ts +14 -0
- package/lib/typescript/components/entity/entity-attributes.d.ts +12 -0
- package/lib/typescript/components/entity/entity-details-with-buttons.d.ts +18 -0
- package/lib/typescript/components/entity/entity-details.d.ts +19 -0
- package/lib/typescript/components/entity/index.d.ts +2 -0
- package/lib/typescript/components/index.d.ts +5 -0
- package/lib/typescript/components/navigation/header-buttons.d.ts +21 -0
- package/lib/typescript/components/navigation/index.d.ts +1 -0
- package/lib/typescript/components/proof-request/group.d.ts +2 -0
- package/lib/typescript/components/proof-request/index.d.ts +3 -0
- package/lib/typescript/components/proof-request/select-credential.d.ts +14 -0
- package/lib/typescript/components/proof-request/share-credential.d.ts +27 -0
- package/lib/typescript/index.d.ts +2 -25
- package/lib/typescript/ui-components/accessibility/accessibilityHistory.d.ts +13 -0
- package/lib/typescript/ui-components/buttons/back-button.d.ts +9 -0
- package/lib/typescript/ui-components/credential/card/credential-card.d.ts +25 -0
- package/lib/typescript/ui-components/credential/card/index.d.ts +10 -0
- package/lib/typescript/ui-components/credential/credential-attribute-item.d.ts +49 -0
- package/lib/typescript/ui-components/entity/avatar.d.ts +11 -0
- package/lib/typescript/ui-components/entity/entity-cluster.d.ts +13 -0
- package/lib/typescript/ui-components/index.d.ts +25 -0
- package/lib/typescript/ui-components/pin/index.d.ts +4 -0
- package/lib/typescript/ui-components/pin/pin-lock-animation.d.ts +731 -0
- package/lib/typescript/ui-components/pin/pin-lock.d.ts +13 -0
- package/lib/typescript/ui-components/screens/nerd-mode-screen.d.ts +49 -0
- package/lib/typescript/ui-components/text/typography.d.ts +112 -0
- package/lib/typescript/utils/array.d.ts +1 -0
- package/lib/typescript/utils/backup.d.ts +1 -0
- package/lib/typescript/utils/date.d.ts +32 -0
- package/lib/typescript/utils/hooks/connectivity/connectivity.d.ts +27 -0
- package/lib/typescript/utils/hooks/connectivity/connectivity.test.d.ts +1 -0
- package/lib/typescript/utils/hooks/core/backup.d.ts +12 -0
- package/lib/typescript/utils/hooks/core/core-config.d.ts +1 -0
- package/lib/typescript/utils/hooks/core/core-context.d.ts +15 -0
- package/lib/typescript/utils/hooks/core/core-init.d.ts +3 -0
- package/lib/typescript/utils/hooks/core/credential-schemas.d.ts +11 -0
- package/lib/typescript/utils/hooks/core/credentials.d.ts +18 -0
- package/lib/typescript/utils/hooks/core/dids.d.ts +3 -0
- package/lib/typescript/utils/hooks/core/error-code.d.ts +6 -0
- package/lib/typescript/utils/hooks/core/history.d.ts +6 -0
- package/lib/typescript/utils/hooks/core/index.d.ts +12 -0
- package/lib/typescript/utils/hooks/core/proof-schemas.d.ts +14 -0
- package/lib/typescript/utils/hooks/core/proofs.d.ts +37 -0
- package/lib/typescript/utils/hooks/core/query.d.ts +2 -0
- package/lib/typescript/utils/hooks/core/trust-entity.d.ts +6 -0
- package/lib/typescript/utils/hooks/credential-card/credential-card-expanding.d.ts +10 -0
- package/lib/typescript/utils/hooks/http/client.d.ts +2 -0
- package/lib/typescript/utils/hooks/index.d.ts +8 -4
- package/lib/typescript/utils/hooks/navigation/before-remove.d.ts +1 -0
- package/lib/typescript/utils/hooks/navigation/close-button-timeout.d.ts +3 -0
- package/lib/typescript/utils/hooks/navigation/deep-link.d.ts +2 -0
- package/lib/typescript/utils/hooks/navigation/index.d.ts +4 -0
- package/lib/typescript/utils/hooks/navigation/open-settings.d.ts +6 -0
- package/lib/typescript/utils/hooks/pin-security/pin-security.d.ts +6 -0
- package/lib/typescript/utils/hooks/revocation/credential-status.d.ts +7 -0
- package/lib/typescript/utils/index.d.ts +11 -5
- package/lib/typescript/utils/parsers/credential-images.d.ts +3 -0
- package/lib/typescript/utils/parsers/credential-sharing.d.ts +16 -0
- package/lib/typescript/utils/parsers/credential.d.ts +76 -0
- package/lib/typescript/utils/parsers/index.d.ts +4 -0
- package/lib/typescript/utils/parsers/query.d.ts +7 -0
- package/lib/typescript/utils/ref.d.ts +1 -1
- package/lib/typescript/utils/reporting.d.ts +4 -0
- package/lib/typescript/utils/string.d.ts +4 -0
- package/lib/typescript/utils/uuid.d.ts +6 -0
- package/package.json +29 -2
- package/src/components/backup/index.ts +1 -0
- package/src/components/backup/preview-credentials.tsx +38 -0
- package/src/components/credential/credential.tsx +72 -0
- package/src/components/credential/index.ts +1 -0
- package/src/components/entity/EntityButtons.tsx +79 -0
- package/src/components/entity/entity-attributes.tsx +62 -0
- package/src/components/entity/entity-details-with-buttons.tsx +98 -0
- package/src/components/entity/entity-details.tsx +85 -0
- package/src/components/entity/index.ts +3 -0
- package/src/components/index.ts +5 -0
- package/src/components/navigation/header-buttons.tsx +64 -0
- package/src/components/navigation/index.ts +1 -0
- package/src/components/proof-request/group.tsx +26 -0
- package/src/components/proof-request/index.ts +3 -0
- package/src/components/proof-request/select-credential.tsx +48 -0
- package/src/components/proof-request/share-credential.tsx +194 -0
- package/src/index.ts +2 -25
- package/src/ui-components/accessibility/accessibilityHistory.tsx +77 -0
- package/src/ui-components/blur/blur-view.tsx +82 -0
- package/src/ui-components/buttons/back-button.tsx +30 -0
- package/src/ui-components/buttons/button.tsx +169 -0
- package/src/ui-components/buttons/connectivity-button.tsx +95 -0
- package/src/ui-components/credential/card/credential-card.stories.tsx +54 -0
- package/src/ui-components/credential/card/credential-card.tsx +189 -0
- package/src/ui-components/credential/card/credential-details-card.stories.tsx +299 -0
- package/src/ui-components/credential/card/credential-details-card.tsx +242 -0
- package/src/ui-components/credential/card/credential-header.stories.tsx +50 -0
- package/src/ui-components/credential/card/credential-header.tsx +196 -0
- package/src/ui-components/credential/card/credential-image-carousel.tsx +113 -0
- package/src/ui-components/credential/card/index.ts +16 -0
- package/src/ui-components/credential/credential-attribute-item.tsx +373 -0
- package/src/ui-components/credential/selector.tsx +64 -0
- package/src/ui-components/detail/detail.stories.tsx +65 -0
- package/src/ui-components/detail/detail.tsx +98 -0
- package/src/ui-components/entity/avatar.tsx +100 -0
- package/src/ui-components/entity/entity-cluster.tsx +82 -0
- package/src/ui-components/header/header.stories.tsx +59 -0
- package/src/ui-components/header/header.tsx +105 -0
- package/src/ui-components/header/navigation-header.stories.tsx +56 -0
- package/src/ui-components/header/navigation-header.tsx +147 -0
- package/src/ui-components/history/data-item.tsx +79 -0
- package/src/ui-components/history/history-list-item.tsx +102 -0
- package/src/ui-components/history/history-section-header.tsx +44 -0
- package/src/ui-components/icons/entity.tsx +31 -0
- package/src/ui-components/index.ts +25 -0
- package/src/ui-components/input/selection-input.tsx +112 -0
- package/src/ui-components/input/text-input.tsx +253 -0
- package/src/ui-components/loader/loader.tsx +171 -0
- package/src/ui-components/nerd-view/nerd-mode-item.tsx +299 -0
- package/src/ui-components/pin/index.ts +5 -0
- package/src/ui-components/pin/keypad.tsx +166 -0
- package/src/ui-components/pin/pin-code-screen.tsx +195 -0
- package/src/ui-components/pin/pin-lock-animation.tsx +500 -0
- package/src/ui-components/pin/pin-lock.tsx +82 -0
- package/src/ui-components/screens/backup-screen.tsx +92 -0
- package/src/ui-components/screens/image-preview-screen.stories.tsx +28 -0
- package/src/ui-components/screens/image-preview-screen.tsx +82 -0
- package/src/ui-components/screens/nerd-mode-screen.tsx +214 -0
- package/src/ui-components/screens/qr-code-scanner-screen.stories.tsx +37 -0
- package/src/ui-components/screens/qr-code-scanner-screen.tsx +124 -0
- package/src/ui-components/screens/scroll-view-screen.tsx +91 -0
- package/src/ui-components/screens/section-list-screen.tsx +61 -0
- package/src/ui-components/searchbar/search-bar.tsx +94 -0
- package/src/ui-components/text/typography.stories.tsx +70 -0
- package/src/utils/array.ts +3 -0
- package/src/utils/backup.ts +5 -0
- package/src/utils/date.ts +105 -1
- package/src/utils/hooks/connectivity/connectivity.test.ts +87 -0
- package/src/utils/hooks/connectivity/connectivity.ts +162 -0
- package/src/utils/hooks/core/backup.ts +140 -0
- package/src/utils/hooks/core/core-config.ts +13 -0
- package/src/utils/hooks/core/core-context.tsx +101 -0
- package/src/utils/hooks/core/core-init.ts +92 -0
- package/src/utils/hooks/core/credential-schemas.ts +110 -0
- package/src/utils/hooks/core/credentials.ts +171 -0
- package/src/utils/hooks/core/dids.ts +28 -0
- package/src/utils/hooks/core/error-code.ts +6 -0
- package/src/utils/hooks/core/history.ts +85 -0
- package/src/utils/hooks/core/index.ts +12 -0
- package/src/utils/hooks/core/proof-schemas.ts +130 -0
- package/src/utils/hooks/core/proofs.ts +351 -0
- package/src/utils/hooks/core/query.ts +19 -0
- package/src/utils/hooks/core/trust-entity.ts +109 -0
- package/src/utils/hooks/credential-card/credential-card-expanding.tsx +45 -0
- package/src/utils/hooks/http/client.ts +13 -0
- package/src/utils/hooks/index.ts +8 -5
- package/src/utils/hooks/navigation/before-remove.tsx +22 -0
- package/src/utils/hooks/navigation/close-button-timeout.tsx +29 -0
- package/src/utils/hooks/navigation/deep-link.ts +40 -0
- package/src/utils/hooks/navigation/index.ts +4 -0
- package/src/utils/hooks/navigation/open-settings.ts +40 -0
- package/src/utils/hooks/pin-security/pin-security.ts +99 -0
- package/src/utils/hooks/revocation/credential-status.ts +44 -0
- package/src/utils/index.ts +11 -14
- package/src/utils/parsers/credential-images.tsx +78 -0
- package/src/utils/parsers/credential-sharing.tsx +366 -0
- package/src/utils/parsers/credential.ts +365 -0
- package/src/utils/parsers/index.ts +4 -0
- package/src/utils/parsers/query.tsx +80 -0
- package/src/utils/reporting.ts +84 -0
- package/src/utils/string.ts +17 -0
- package/src/utils/useMemoAsync.ts +1 -1
- package/src/utils/uuid.ts +8 -0
- package/lib/commonjs/accessibility/accessibilityHistory.js +0 -81
- package/lib/commonjs/accessibility/accessibilityHistory.js.map +0 -1
- package/lib/commonjs/blur/blur-view.js +0 -76
- package/lib/commonjs/blur/blur-view.js.map +0 -1
- package/lib/commonjs/buttons/back-button.js.map +0 -1
- package/lib/commonjs/buttons/button.js +0 -153
- package/lib/commonjs/buttons/button.js.map +0 -1
- package/lib/commonjs/buttons/connectivity-button.js +0 -82
- package/lib/commonjs/buttons/connectivity-button.js.map +0 -1
- package/lib/commonjs/credential/card/credential-card.js +0 -189
- package/lib/commonjs/credential/card/credential-card.js.map +0 -1
- package/lib/commonjs/credential/card/credential-details-card.js +0 -201
- package/lib/commonjs/credential/card/credential-details-card.js.map +0 -1
- package/lib/commonjs/credential/card/credential-header.js +0 -172
- package/lib/commonjs/credential/card/credential-header.js.map +0 -1
- package/lib/commonjs/credential/card/credential-image-carousel.js +0 -124
- package/lib/commonjs/credential/card/credential-image-carousel.js.map +0 -1
- package/lib/commonjs/credential/card/index.js +0 -85
- package/lib/commonjs/credential/card/index.js.map +0 -1
- package/lib/commonjs/credential/credential-attribute-item.js +0 -289
- package/lib/commonjs/credential/credential-attribute-item.js.map +0 -1
- package/lib/commonjs/credential/selector.js +0 -79
- package/lib/commonjs/credential/selector.js.map +0 -1
- package/lib/commonjs/detail/detail.js +0 -84
- package/lib/commonjs/detail/detail.js.map +0 -1
- package/lib/commonjs/entity/avatar.js +0 -96
- package/lib/commonjs/entity/avatar.js.map +0 -1
- package/lib/commonjs/entity/entity-cluster.js +0 -66
- package/lib/commonjs/entity/entity-cluster.js.map +0 -1
- package/lib/commonjs/header/header.js +0 -105
- package/lib/commonjs/header/header.js.map +0 -1
- package/lib/commonjs/header/navigation-header.js +0 -148
- package/lib/commonjs/header/navigation-header.js.map +0 -1
- package/lib/commonjs/history/data-item.js +0 -70
- package/lib/commonjs/history/data-item.js.map +0 -1
- package/lib/commonjs/history/history-list-item.js +0 -90
- package/lib/commonjs/history/history-list-item.js.map +0 -1
- package/lib/commonjs/history/history-section-header.js +0 -49
- package/lib/commonjs/history/history-section-header.js.map +0 -1
- package/lib/commonjs/icons/entity.js +0 -34
- package/lib/commonjs/icons/entity.js.map +0 -1
- package/lib/commonjs/input/selection-input.js +0 -102
- package/lib/commonjs/input/selection-input.js.map +0 -1
- package/lib/commonjs/input/text-input.js +0 -195
- package/lib/commonjs/input/text-input.js.map +0 -1
- package/lib/commonjs/loader/loader.js +0 -140
- package/lib/commonjs/loader/loader.js.map +0 -1
- package/lib/commonjs/nerd-view/nerd-mode-item.js +0 -235
- package/lib/commonjs/nerd-view/nerd-mode-item.js.map +0 -1
- package/lib/commonjs/pin/index.js +0 -32
- package/lib/commonjs/pin/index.js.map +0 -1
- package/lib/commonjs/pin/keypad.js +0 -201
- package/lib/commonjs/pin/keypad.js.map +0 -1
- package/lib/commonjs/pin/pin-code-screen.js +0 -162
- package/lib/commonjs/pin/pin-code-screen.js.map +0 -1
- package/lib/commonjs/screens/backup-screen.js +0 -87
- package/lib/commonjs/screens/backup-screen.js.map +0 -1
- package/lib/commonjs/screens/image-preview-screen.js +0 -92
- package/lib/commonjs/screens/image-preview-screen.js.map +0 -1
- package/lib/commonjs/screens/nerd-mode-screen.js +0 -142
- package/lib/commonjs/screens/nerd-mode-screen.js.map +0 -1
- package/lib/commonjs/screens/qr-code-scanner-screen.js +0 -120
- package/lib/commonjs/screens/qr-code-scanner-screen.js.map +0 -1
- package/lib/commonjs/screens/scroll-view-screen.js +0 -94
- package/lib/commonjs/screens/scroll-view-screen.js.map +0 -1
- package/lib/commonjs/screens/section-list-screen.js +0 -67
- package/lib/commonjs/screens/section-list-screen.js.map +0 -1
- package/lib/commonjs/searchbar/search-bar.js +0 -99
- package/lib/commonjs/searchbar/search-bar.js.map +0 -1
- package/lib/module/accessibility/accessibilityHistory.js +0 -71
- package/lib/module/accessibility/accessibilityHistory.js.map +0 -1
- package/lib/module/blur/blur-view.js +0 -67
- package/lib/module/blur/blur-view.js.map +0 -1
- package/lib/module/buttons/back-button.js.map +0 -1
- package/lib/module/buttons/button.js +0 -143
- package/lib/module/buttons/button.js.map +0 -1
- package/lib/module/buttons/connectivity-button.js +0 -73
- package/lib/module/buttons/connectivity-button.js.map +0 -1
- package/lib/module/credential/card/credential-card.js +0 -177
- package/lib/module/credential/card/credential-card.js.map +0 -1
- package/lib/module/credential/card/credential-details-card.js +0 -191
- package/lib/module/credential/card/credential-details-card.js.map +0 -1
- package/lib/module/credential/card/credential-header.js +0 -162
- package/lib/module/credential/card/credential-header.js.map +0 -1
- package/lib/module/credential/card/credential-image-carousel.js +0 -113
- package/lib/module/credential/card/credential-image-carousel.js.map +0 -1
- package/lib/module/credential/card/index.js +0 -11
- package/lib/module/credential/card/index.js.map +0 -1
- package/lib/module/credential/credential-attribute-item.js +0 -279
- package/lib/module/credential/credential-attribute-item.js.map +0 -1
- package/lib/module/credential/selector.js +0 -70
- package/lib/module/credential/selector.js.map +0 -1
- package/lib/module/detail/detail.js +0 -75
- package/lib/module/detail/detail.js.map +0 -1
- package/lib/module/entity/avatar.js +0 -86
- package/lib/module/entity/avatar.js.map +0 -1
- package/lib/module/entity/entity-cluster.js +0 -56
- package/lib/module/entity/entity-cluster.js.map +0 -1
- package/lib/module/header/header.js +0 -97
- package/lib/module/header/header.js.map +0 -1
- package/lib/module/header/navigation-header.js +0 -138
- package/lib/module/header/navigation-header.js.map +0 -1
- package/lib/module/history/data-item.js +0 -60
- package/lib/module/history/data-item.js.map +0 -1
- package/lib/module/history/history-list-item.js +0 -80
- package/lib/module/history/history-list-item.js.map +0 -1
- package/lib/module/history/history-section-header.js +0 -42
- package/lib/module/history/history-section-header.js.map +0 -1
- package/lib/module/icons/entity.js +0 -25
- package/lib/module/icons/entity.js.map +0 -1
- package/lib/module/input/selection-input.js +0 -92
- package/lib/module/input/selection-input.js.map +0 -1
- package/lib/module/input/text-input.js +0 -185
- package/lib/module/input/text-input.js.map +0 -1
- package/lib/module/loader/loader.js +0 -130
- package/lib/module/loader/loader.js.map +0 -1
- package/lib/module/nerd-view/nerd-mode-item.js +0 -224
- package/lib/module/nerd-view/nerd-mode-item.js.map +0 -1
- package/lib/module/pin/index.js +0 -4
- package/lib/module/pin/index.js.map +0 -1
- package/lib/module/pin/keypad.js +0 -191
- package/lib/module/pin/keypad.js.map +0 -1
- package/lib/module/pin/pin-code-screen.js +0 -152
- package/lib/module/pin/pin-code-screen.js.map +0 -1
- package/lib/module/screens/backup-screen.js +0 -78
- package/lib/module/screens/backup-screen.js.map +0 -1
- package/lib/module/screens/image-preview-screen.js +0 -83
- package/lib/module/screens/image-preview-screen.js.map +0 -1
- package/lib/module/screens/nerd-mode-screen.js +0 -132
- package/lib/module/screens/nerd-mode-screen.js.map +0 -1
- package/lib/module/screens/qr-code-scanner-screen.js +0 -110
- package/lib/module/screens/qr-code-scanner-screen.js.map +0 -1
- package/lib/module/screens/scroll-view-screen.js +0 -86
- package/lib/module/screens/scroll-view-screen.js.map +0 -1
- package/lib/module/screens/section-list-screen.js +0 -59
- package/lib/module/screens/section-list-screen.js.map +0 -1
- package/lib/module/searchbar/search-bar.js +0 -89
- package/lib/module/searchbar/search-bar.js.map +0 -1
- package/lib/typescript/accessibility/accessibilityHistory.d.ts +0 -13
- package/lib/typescript/buttons/back-button.d.ts +0 -9
- package/lib/typescript/credential/card/credential-card.d.ts +0 -22
- package/lib/typescript/credential/card/index.d.ts +0 -10
- package/lib/typescript/credential/credential-attribute-item.d.ts +0 -48
- package/lib/typescript/entity/avatar.d.ts +0 -10
- package/lib/typescript/entity/entity-cluster.d.ts +0 -12
- package/lib/typescript/pin/index.d.ts +0 -3
- package/lib/typescript/screens/nerd-mode-screen.d.ts +0 -22
- package/lib/typescript/text/typography.d.ts +0 -112
- package/src/accessibility/accessibilityHistory.tsx +0 -77
- package/src/blur/blur-view.tsx +0 -82
- package/src/buttons/back-button.tsx +0 -31
- package/src/buttons/button.tsx +0 -169
- package/src/buttons/connectivity-button.tsx +0 -95
- package/src/credential/card/credential-card.stories.tsx +0 -52
- package/src/credential/card/credential-card.tsx +0 -195
- package/src/credential/card/credential-details-card.stories.tsx +0 -268
- package/src/credential/card/credential-details-card.tsx +0 -242
- package/src/credential/card/credential-header.stories.tsx +0 -50
- package/src/credential/card/credential-header.tsx +0 -195
- package/src/credential/card/credential-image-carousel.tsx +0 -113
- package/src/credential/card/index.ts +0 -11
- package/src/credential/credential-attribute-item.tsx +0 -372
- package/src/credential/selector.tsx +0 -64
- package/src/detail/detail.stories.tsx +0 -65
- package/src/detail/detail.tsx +0 -98
- package/src/entity/avatar.tsx +0 -87
- package/src/entity/entity-cluster.tsx +0 -72
- package/src/header/header.stories.tsx +0 -59
- package/src/header/header.tsx +0 -105
- package/src/header/navigation-header.stories.tsx +0 -56
- package/src/header/navigation-header.tsx +0 -147
- package/src/history/data-item.tsx +0 -79
- package/src/history/history-list-item.tsx +0 -102
- package/src/history/history-section-header.tsx +0 -44
- package/src/icons/entity.tsx +0 -21
- package/src/input/selection-input.tsx +0 -112
- package/src/input/text-input.tsx +0 -253
- package/src/loader/loader.tsx +0 -169
- package/src/nerd-view/nerd-mode-item.tsx +0 -296
- package/src/pin/index.ts +0 -4
- package/src/pin/keypad.tsx +0 -166
- package/src/pin/pin-code-screen.tsx +0 -195
- package/src/screens/backup-screen.tsx +0 -92
- package/src/screens/image-preview-screen.stories.tsx +0 -28
- package/src/screens/image-preview-screen.tsx +0 -82
- package/src/screens/nerd-mode-screen.tsx +0 -150
- package/src/screens/qr-code-scanner-screen.stories.tsx +0 -37
- package/src/screens/qr-code-scanner-screen.tsx +0 -124
- package/src/screens/scroll-view-screen.tsx +0 -91
- package/src/screens/section-list-screen.tsx +0 -61
- package/src/searchbar/search-bar.tsx +0 -94
- package/src/text/typography.stories.tsx +0 -70
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/accessibility.js +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/accessibility.js.map +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/accessibilityHistoryWrappers.js +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/accessibilityHistoryWrappers.js.map +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/accessibilityLanguage.js +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/accessibilityLanguage.js.map +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/index.js +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/index.js.map +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale/de.json +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale/en.json +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale/fr.json +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale/index.js +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale/index.js.map +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale/it.json +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale.test.js +0 -0
- /package/lib/commonjs/{accessibility → ui-components/accessibility}/locale.test.js.map +0 -0
- /package/lib/commonjs/{action-modal → ui-components/action-modal}/ActionModal.js +0 -0
- /package/lib/commonjs/{action-modal → ui-components/action-modal}/ActionModal.js.map +0 -0
- /package/lib/commonjs/{action-modal → ui-components/action-modal}/index.js +0 -0
- /package/lib/commonjs/{action-modal → ui-components/action-modal}/index.js.map +0 -0
- /package/lib/commonjs/{activity-indicator → ui-components/activity-indicator}/activity-indicator.js +0 -0
- /package/lib/commonjs/{activity-indicator → ui-components/activity-indicator}/activity-indicator.js.map +0 -0
- /package/lib/commonjs/{activity-indicator → ui-components/activity-indicator}/index.js +0 -0
- /package/lib/commonjs/{activity-indicator → ui-components/activity-indicator}/index.js.map +0 -0
- /package/lib/commonjs/{blur → ui-components/blur}/index.js +0 -0
- /package/lib/commonjs/{blur → ui-components/blur}/index.js.map +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/back-button.js +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/filter-button.js +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/filter-button.js.map +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/ghost-button.js +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/ghost-button.js.map +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/index.js +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/index.js.map +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/scan-button.js +0 -0
- /package/lib/commonjs/{buttons → ui-components/buttons}/scan-button.js.map +0 -0
- /package/lib/commonjs/{camera → ui-components/camera}/camera-overlay.js +0 -0
- /package/lib/commonjs/{camera → ui-components/camera}/camera-overlay.js.map +0 -0
- /package/lib/commonjs/{camera → ui-components/camera}/index.js +0 -0
- /package/lib/commonjs/{camera → ui-components/camera}/index.js.map +0 -0
- /package/lib/commonjs/{camera → ui-components/camera}/qr-code-scanner.js +0 -0
- /package/lib/commonjs/{camera → ui-components/camera}/qr-code-scanner.js.map +0 -0
- /package/lib/commonjs/{control → ui-components/control}/checkbox.js +0 -0
- /package/lib/commonjs/{control → ui-components/control}/checkbox.js.map +0 -0
- /package/lib/commonjs/{control → ui-components/control}/index.js +0 -0
- /package/lib/commonjs/{control → ui-components/control}/index.js.map +0 -0
- /package/lib/commonjs/{control → ui-components/control}/switch.js +0 -0
- /package/lib/commonjs/{control → ui-components/control}/switch.js.map +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/card/credential-details-list-item.js +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/card/credential-details-list-item.js.map +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/credential-carousel-images.js +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/credential-carousel-images.js.map +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/index.js +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/index.js.map +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/selector-status.js +0 -0
- /package/lib/commonjs/{credential → ui-components/credential}/selector-status.js.map +0 -0
- /package/lib/commonjs/{detail → ui-components/detail}/index.js +0 -0
- /package/lib/commonjs/{detail → ui-components/detail}/index.js.map +0 -0
- /package/lib/commonjs/{entity → ui-components/entity}/index.js +0 -0
- /package/lib/commonjs/{entity → ui-components/entity}/index.js.map +0 -0
- /package/lib/commonjs/{header → ui-components/header}/focus-aware-status-bar.js +0 -0
- /package/lib/commonjs/{header → ui-components/header}/focus-aware-status-bar.js.map +0 -0
- /package/lib/commonjs/{header → ui-components/header}/foldable-header.js +0 -0
- /package/lib/commonjs/{header → ui-components/header}/foldable-header.js.map +0 -0
- /package/lib/commonjs/{header → ui-components/header}/index.js +0 -0
- /package/lib/commonjs/{header → ui-components/header}/index.js.map +0 -0
- /package/lib/commonjs/{history → ui-components/history}/history-section-list-item.js +0 -0
- /package/lib/commonjs/{history → ui-components/history}/history-section-list-item.js.map +0 -0
- /package/lib/commonjs/{history → ui-components/history}/index.js +0 -0
- /package/lib/commonjs/{history → ui-components/history}/index.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/connectivity.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/connectivity.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/credential.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/credential.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/history.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/history.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/icons.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/icons.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/index.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/index.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/input.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/input.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/keypad.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/keypad.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/loader.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/loader.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/nerd-view.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/nerd-view.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/selector.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/selector.js.map +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/wallet.js +0 -0
- /package/lib/commonjs/{icons → ui-components/icons}/wallet.js.map +0 -0
- /package/lib/commonjs/{image → ui-components/image}/image-or-component.js +0 -0
- /package/lib/commonjs/{image → ui-components/image}/image-or-component.js.map +0 -0
- /package/lib/commonjs/{image → ui-components/image}/index.js +0 -0
- /package/lib/commonjs/{image → ui-components/image}/index.js.map +0 -0
- /package/lib/commonjs/{input → ui-components/input}/index.js +0 -0
- /package/lib/commonjs/{input → ui-components/input}/index.js.map +0 -0
- /package/lib/commonjs/{input → ui-components/input}/radio-group.js +0 -0
- /package/lib/commonjs/{input → ui-components/input}/radio-group.js.map +0 -0
- /package/lib/commonjs/{list → ui-components/list}/index.js +0 -0
- /package/lib/commonjs/{list → ui-components/list}/index.js.map +0 -0
- /package/lib/commonjs/{list → ui-components/list}/list-section-header.js +0 -0
- /package/lib/commonjs/{list → ui-components/list}/list-section-header.js.map +0 -0
- /package/lib/commonjs/{list → ui-components/list}/list-title-header.js +0 -0
- /package/lib/commonjs/{list → ui-components/list}/list-title-header.js.map +0 -0
- /package/lib/commonjs/{loader → ui-components/loader}/index.js +0 -0
- /package/lib/commonjs/{loader → ui-components/loader}/index.js.map +0 -0
- /package/lib/commonjs/{loader → ui-components/loader}/loading-result.js +0 -0
- /package/lib/commonjs/{loader → ui-components/loader}/loading-result.js.map +0 -0
- /package/lib/commonjs/{nerd-view → ui-components/nerd-view}/index.js +0 -0
- /package/lib/commonjs/{nerd-view → ui-components/nerd-view}/index.js.map +0 -0
- /package/lib/commonjs/{pin → ui-components/pin}/pins.js +0 -0
- /package/lib/commonjs/{pin → ui-components/pin}/pins.js.map +0 -0
- /package/lib/commonjs/{screens → ui-components/screens}/index.js +0 -0
- /package/lib/commonjs/{screens → ui-components/screens}/index.js.map +0 -0
- /package/lib/commonjs/{searchbar → ui-components/searchbar}/animated-search-bar.js +0 -0
- /package/lib/commonjs/{searchbar → ui-components/searchbar}/animated-search-bar.js.map +0 -0
- /package/lib/commonjs/{searchbar → ui-components/searchbar}/index.js +0 -0
- /package/lib/commonjs/{searchbar → ui-components/searchbar}/index.js.map +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/button-setting.js +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/button-setting.js.map +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/index.js +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/index.js.map +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/setting-item-separator.js +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/setting-item-separator.js.map +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/setting-item.js +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/setting-item.js.map +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/settings-button.js +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/settings-button.js.map +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/switch-setting.js +0 -0
- /package/lib/commonjs/{settings → ui-components/settings}/switch-setting.js.map +0 -0
- /package/lib/commonjs/{state → ui-components/state}/error-screen.js +0 -0
- /package/lib/commonjs/{state → ui-components/state}/error-screen.js.map +0 -0
- /package/lib/commonjs/{state → ui-components/state}/index.js +0 -0
- /package/lib/commonjs/{state → ui-components/state}/index.js.map +0 -0
- /package/lib/commonjs/{text → ui-components/text}/base.js +0 -0
- /package/lib/commonjs/{text → ui-components/text}/base.js.map +0 -0
- /package/lib/commonjs/{text → ui-components/text}/font.js +0 -0
- /package/lib/commonjs/{text → ui-components/text}/font.js.map +0 -0
- /package/lib/commonjs/{text → ui-components/text}/index.js +0 -0
- /package/lib/commonjs/{text → ui-components/text}/index.js.map +0 -0
- /package/lib/commonjs/{text → ui-components/text}/typography.js +0 -0
- /package/lib/commonjs/{text → ui-components/text}/typography.js.map +0 -0
- /package/lib/commonjs/{theme → ui-components/theme}/color-scheme-context.js +0 -0
- /package/lib/commonjs/{theme → ui-components/theme}/color-scheme-context.js.map +0 -0
- /package/lib/commonjs/{theme → ui-components/theme}/color-scheme.js +0 -0
- /package/lib/commonjs/{theme → ui-components/theme}/color-scheme.js.map +0 -0
- /package/lib/commonjs/{theme → ui-components/theme}/index.js +0 -0
- /package/lib/commonjs/{theme → ui-components/theme}/index.js.map +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/accessibility.js +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/accessibility.js.map +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/accessibilityHistoryWrappers.js +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/accessibilityHistoryWrappers.js.map +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/accessibilityLanguage.js +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/accessibilityLanguage.js.map +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/index.js +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/index.js.map +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale/de.json +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale/en.json +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale/fr.json +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale/index.js +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale/index.js.map +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale/it.json +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale.test.js +0 -0
- /package/lib/module/{accessibility → ui-components/accessibility}/locale.test.js.map +0 -0
- /package/lib/module/{action-modal → ui-components/action-modal}/ActionModal.js +0 -0
- /package/lib/module/{action-modal → ui-components/action-modal}/ActionModal.js.map +0 -0
- /package/lib/module/{action-modal → ui-components/action-modal}/index.js +0 -0
- /package/lib/module/{action-modal → ui-components/action-modal}/index.js.map +0 -0
- /package/lib/module/{activity-indicator → ui-components/activity-indicator}/activity-indicator.js +0 -0
- /package/lib/module/{activity-indicator → ui-components/activity-indicator}/activity-indicator.js.map +0 -0
- /package/lib/module/{activity-indicator → ui-components/activity-indicator}/index.js +0 -0
- /package/lib/module/{activity-indicator → ui-components/activity-indicator}/index.js.map +0 -0
- /package/lib/module/{blur → ui-components/blur}/index.js +0 -0
- /package/lib/module/{blur → ui-components/blur}/index.js.map +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/back-button.js +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/filter-button.js +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/filter-button.js.map +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/ghost-button.js +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/ghost-button.js.map +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/index.js +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/index.js.map +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/scan-button.js +0 -0
- /package/lib/module/{buttons → ui-components/buttons}/scan-button.js.map +0 -0
- /package/lib/module/{camera → ui-components/camera}/camera-overlay.js +0 -0
- /package/lib/module/{camera → ui-components/camera}/camera-overlay.js.map +0 -0
- /package/lib/module/{camera → ui-components/camera}/index.js +0 -0
- /package/lib/module/{camera → ui-components/camera}/index.js.map +0 -0
- /package/lib/module/{camera → ui-components/camera}/qr-code-scanner.js +0 -0
- /package/lib/module/{camera → ui-components/camera}/qr-code-scanner.js.map +0 -0
- /package/lib/module/{control → ui-components/control}/checkbox.js +0 -0
- /package/lib/module/{control → ui-components/control}/checkbox.js.map +0 -0
- /package/lib/module/{control → ui-components/control}/index.js +0 -0
- /package/lib/module/{control → ui-components/control}/index.js.map +0 -0
- /package/lib/module/{control → ui-components/control}/switch.js +0 -0
- /package/lib/module/{control → ui-components/control}/switch.js.map +0 -0
- /package/lib/module/{credential → ui-components/credential}/card/credential-details-list-item.js +0 -0
- /package/lib/module/{credential → ui-components/credential}/card/credential-details-list-item.js.map +0 -0
- /package/lib/module/{credential → ui-components/credential}/credential-carousel-images.js +0 -0
- /package/lib/module/{credential → ui-components/credential}/credential-carousel-images.js.map +0 -0
- /package/lib/module/{credential → ui-components/credential}/index.js +0 -0
- /package/lib/module/{credential → ui-components/credential}/index.js.map +0 -0
- /package/lib/module/{credential → ui-components/credential}/selector-status.js +0 -0
- /package/lib/module/{credential → ui-components/credential}/selector-status.js.map +0 -0
- /package/lib/module/{detail → ui-components/detail}/index.js +0 -0
- /package/lib/module/{detail → ui-components/detail}/index.js.map +0 -0
- /package/lib/module/{entity → ui-components/entity}/index.js +0 -0
- /package/lib/module/{entity → ui-components/entity}/index.js.map +0 -0
- /package/lib/module/{header → ui-components/header}/focus-aware-status-bar.js +0 -0
- /package/lib/module/{header → ui-components/header}/focus-aware-status-bar.js.map +0 -0
- /package/lib/module/{header → ui-components/header}/foldable-header.js +0 -0
- /package/lib/module/{header → ui-components/header}/foldable-header.js.map +0 -0
- /package/lib/module/{header → ui-components/header}/index.js +0 -0
- /package/lib/module/{header → ui-components/header}/index.js.map +0 -0
- /package/lib/module/{history → ui-components/history}/history-section-list-item.js +0 -0
- /package/lib/module/{history → ui-components/history}/history-section-list-item.js.map +0 -0
- /package/lib/module/{history → ui-components/history}/index.js +0 -0
- /package/lib/module/{history → ui-components/history}/index.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/connectivity.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/connectivity.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/credential.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/credential.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/history.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/history.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/icons.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/icons.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/index.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/index.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/input.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/input.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/keypad.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/keypad.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/loader.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/loader.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/nerd-view.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/nerd-view.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/selector.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/selector.js.map +0 -0
- /package/lib/module/{icons → ui-components/icons}/wallet.js +0 -0
- /package/lib/module/{icons → ui-components/icons}/wallet.js.map +0 -0
- /package/lib/module/{image → ui-components/image}/image-or-component.js +0 -0
- /package/lib/module/{image → ui-components/image}/image-or-component.js.map +0 -0
- /package/lib/module/{image → ui-components/image}/index.js +0 -0
- /package/lib/module/{image → ui-components/image}/index.js.map +0 -0
- /package/lib/module/{input → ui-components/input}/index.js +0 -0
- /package/lib/module/{input → ui-components/input}/index.js.map +0 -0
- /package/lib/module/{input → ui-components/input}/radio-group.js +0 -0
- /package/lib/module/{input → ui-components/input}/radio-group.js.map +0 -0
- /package/lib/module/{list → ui-components/list}/index.js +0 -0
- /package/lib/module/{list → ui-components/list}/index.js.map +0 -0
- /package/lib/module/{list → ui-components/list}/list-section-header.js +0 -0
- /package/lib/module/{list → ui-components/list}/list-section-header.js.map +0 -0
- /package/lib/module/{list → ui-components/list}/list-title-header.js +0 -0
- /package/lib/module/{list → ui-components/list}/list-title-header.js.map +0 -0
- /package/lib/module/{loader → ui-components/loader}/index.js +0 -0
- /package/lib/module/{loader → ui-components/loader}/index.js.map +0 -0
- /package/lib/module/{loader → ui-components/loader}/loading-result.js +0 -0
- /package/lib/module/{loader → ui-components/loader}/loading-result.js.map +0 -0
- /package/lib/module/{nerd-view → ui-components/nerd-view}/index.js +0 -0
- /package/lib/module/{nerd-view → ui-components/nerd-view}/index.js.map +0 -0
- /package/lib/module/{pin → ui-components/pin}/pins.js +0 -0
- /package/lib/module/{pin → ui-components/pin}/pins.js.map +0 -0
- /package/lib/module/{screens → ui-components/screens}/index.js +0 -0
- /package/lib/module/{screens → ui-components/screens}/index.js.map +0 -0
- /package/lib/module/{searchbar → ui-components/searchbar}/animated-search-bar.js +0 -0
- /package/lib/module/{searchbar → ui-components/searchbar}/animated-search-bar.js.map +0 -0
- /package/lib/module/{searchbar → ui-components/searchbar}/index.js +0 -0
- /package/lib/module/{searchbar → ui-components/searchbar}/index.js.map +0 -0
- /package/lib/module/{settings → ui-components/settings}/button-setting.js +0 -0
- /package/lib/module/{settings → ui-components/settings}/button-setting.js.map +0 -0
- /package/lib/module/{settings → ui-components/settings}/index.js +0 -0
- /package/lib/module/{settings → ui-components/settings}/index.js.map +0 -0
- /package/lib/module/{settings → ui-components/settings}/setting-item-separator.js +0 -0
- /package/lib/module/{settings → ui-components/settings}/setting-item-separator.js.map +0 -0
- /package/lib/module/{settings → ui-components/settings}/setting-item.js +0 -0
- /package/lib/module/{settings → ui-components/settings}/setting-item.js.map +0 -0
- /package/lib/module/{settings → ui-components/settings}/settings-button.js +0 -0
- /package/lib/module/{settings → ui-components/settings}/settings-button.js.map +0 -0
- /package/lib/module/{settings → ui-components/settings}/switch-setting.js +0 -0
- /package/lib/module/{settings → ui-components/settings}/switch-setting.js.map +0 -0
- /package/lib/module/{state → ui-components/state}/error-screen.js +0 -0
- /package/lib/module/{state → ui-components/state}/error-screen.js.map +0 -0
- /package/lib/module/{state → ui-components/state}/index.js +0 -0
- /package/lib/module/{state → ui-components/state}/index.js.map +0 -0
- /package/lib/module/{text → ui-components/text}/base.js +0 -0
- /package/lib/module/{text → ui-components/text}/base.js.map +0 -0
- /package/lib/module/{text → ui-components/text}/font.js +0 -0
- /package/lib/module/{text → ui-components/text}/font.js.map +0 -0
- /package/lib/module/{text → ui-components/text}/index.js +0 -0
- /package/lib/module/{text → ui-components/text}/index.js.map +0 -0
- /package/lib/module/{text → ui-components/text}/typography.js +0 -0
- /package/lib/module/{text → ui-components/text}/typography.js.map +0 -0
- /package/lib/module/{theme → ui-components/theme}/color-scheme-context.js +0 -0
- /package/lib/module/{theme → ui-components/theme}/color-scheme-context.js.map +0 -0
- /package/lib/module/{theme → ui-components/theme}/color-scheme.js +0 -0
- /package/lib/module/{theme → ui-components/theme}/color-scheme.js.map +0 -0
- /package/lib/module/{theme → ui-components/theme}/index.js +0 -0
- /package/lib/module/{theme → ui-components/theme}/index.js.map +0 -0
- /package/lib/typescript/{accessibility → ui-components/accessibility}/accessibility.d.ts +0 -0
- /package/lib/typescript/{accessibility → ui-components/accessibility}/accessibilityHistoryWrappers.d.ts +0 -0
- /package/lib/typescript/{accessibility → ui-components/accessibility}/accessibilityLanguage.d.ts +0 -0
- /package/lib/typescript/{accessibility → ui-components/accessibility}/index.d.ts +0 -0
- /package/lib/typescript/{accessibility → ui-components/accessibility}/locale/index.d.ts +0 -0
- /package/lib/typescript/{accessibility → ui-components/accessibility}/locale.test.d.ts +0 -0
- /package/lib/typescript/{action-modal → ui-components/action-modal}/ActionModal.d.ts +0 -0
- /package/lib/typescript/{action-modal → ui-components/action-modal}/index.d.ts +0 -0
- /package/lib/typescript/{activity-indicator → ui-components/activity-indicator}/activity-indicator.d.ts +0 -0
- /package/lib/typescript/{activity-indicator → ui-components/activity-indicator}/index.d.ts +0 -0
- /package/lib/typescript/{blur → ui-components/blur}/blur-view.d.ts +0 -0
- /package/lib/typescript/{blur → ui-components/blur}/index.d.ts +0 -0
- /package/lib/typescript/{buttons → ui-components/buttons}/button.d.ts +0 -0
- /package/lib/typescript/{buttons → ui-components/buttons}/connectivity-button.d.ts +0 -0
- /package/lib/typescript/{buttons → ui-components/buttons}/filter-button.d.ts +0 -0
- /package/lib/typescript/{buttons → ui-components/buttons}/ghost-button.d.ts +0 -0
- /package/lib/typescript/{buttons → ui-components/buttons}/index.d.ts +0 -0
- /package/lib/typescript/{buttons → ui-components/buttons}/scan-button.d.ts +0 -0
- /package/lib/typescript/{camera → ui-components/camera}/camera-overlay.d.ts +0 -0
- /package/lib/typescript/{camera → ui-components/camera}/index.d.ts +0 -0
- /package/lib/typescript/{camera → ui-components/camera}/qr-code-scanner.d.ts +0 -0
- /package/lib/typescript/{control → ui-components/control}/checkbox.d.ts +0 -0
- /package/lib/typescript/{control → ui-components/control}/index.d.ts +0 -0
- /package/lib/typescript/{control → ui-components/control}/switch.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/card/credential-details-card.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/card/credential-details-list-item.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/card/credential-header.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/card/credential-image-carousel.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/credential-carousel-images.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/index.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/selector-status.d.ts +0 -0
- /package/lib/typescript/{credential → ui-components/credential}/selector.d.ts +0 -0
- /package/lib/typescript/{detail → ui-components/detail}/detail.d.ts +0 -0
- /package/lib/typescript/{detail → ui-components/detail}/index.d.ts +0 -0
- /package/lib/typescript/{entity → ui-components/entity}/index.d.ts +0 -0
- /package/lib/typescript/{header → ui-components/header}/focus-aware-status-bar.d.ts +0 -0
- /package/lib/typescript/{header → ui-components/header}/foldable-header.d.ts +0 -0
- /package/lib/typescript/{header → ui-components/header}/header.d.ts +0 -0
- /package/lib/typescript/{header → ui-components/header}/index.d.ts +0 -0
- /package/lib/typescript/{header → ui-components/header}/navigation-header.d.ts +0 -0
- /package/lib/typescript/{history → ui-components/history}/data-item.d.ts +0 -0
- /package/lib/typescript/{history → ui-components/history}/history-list-item.d.ts +0 -0
- /package/lib/typescript/{history → ui-components/history}/history-section-header.d.ts +0 -0
- /package/lib/typescript/{history → ui-components/history}/history-section-list-item.d.ts +0 -0
- /package/lib/typescript/{history → ui-components/history}/index.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/connectivity.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/credential.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/entity.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/history.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/icons.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/index.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/input.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/keypad.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/loader.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/nerd-view.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/selector.d.ts +0 -0
- /package/lib/typescript/{icons → ui-components/icons}/wallet.d.ts +0 -0
- /package/lib/typescript/{image → ui-components/image}/image-or-component.d.ts +0 -0
- /package/lib/typescript/{image → ui-components/image}/index.d.ts +0 -0
- /package/lib/typescript/{input → ui-components/input}/index.d.ts +0 -0
- /package/lib/typescript/{input → ui-components/input}/radio-group.d.ts +0 -0
- /package/lib/typescript/{input → ui-components/input}/selection-input.d.ts +0 -0
- /package/lib/typescript/{input → ui-components/input}/text-input.d.ts +0 -0
- /package/lib/typescript/{list → ui-components/list}/index.d.ts +0 -0
- /package/lib/typescript/{list → ui-components/list}/list-section-header.d.ts +0 -0
- /package/lib/typescript/{list → ui-components/list}/list-title-header.d.ts +0 -0
- /package/lib/typescript/{loader → ui-components/loader}/index.d.ts +0 -0
- /package/lib/typescript/{loader → ui-components/loader}/loader.d.ts +0 -0
- /package/lib/typescript/{loader → ui-components/loader}/loading-result.d.ts +0 -0
- /package/lib/typescript/{nerd-view → ui-components/nerd-view}/index.d.ts +0 -0
- /package/lib/typescript/{nerd-view → ui-components/nerd-view}/nerd-mode-item.d.ts +0 -0
- /package/lib/typescript/{pin → ui-components/pin}/keypad.d.ts +0 -0
- /package/lib/typescript/{pin → ui-components/pin}/pin-code-screen.d.ts +0 -0
- /package/lib/typescript/{pin → ui-components/pin}/pins.d.ts +0 -0
- /package/lib/typescript/{screens → ui-components/screens}/backup-screen.d.ts +0 -0
- /package/lib/typescript/{screens → ui-components/screens}/image-preview-screen.d.ts +0 -0
- /package/lib/typescript/{screens → ui-components/screens}/index.d.ts +0 -0
- /package/lib/typescript/{screens → ui-components/screens}/qr-code-scanner-screen.d.ts +0 -0
- /package/lib/typescript/{screens → ui-components/screens}/scroll-view-screen.d.ts +0 -0
- /package/lib/typescript/{screens → ui-components/screens}/section-list-screen.d.ts +0 -0
- /package/lib/typescript/{searchbar → ui-components/searchbar}/animated-search-bar.d.ts +0 -0
- /package/lib/typescript/{searchbar → ui-components/searchbar}/index.d.ts +0 -0
- /package/lib/typescript/{searchbar → ui-components/searchbar}/search-bar.d.ts +0 -0
- /package/lib/typescript/{settings → ui-components/settings}/button-setting.d.ts +0 -0
- /package/lib/typescript/{settings → ui-components/settings}/index.d.ts +0 -0
- /package/lib/typescript/{settings → ui-components/settings}/setting-item-separator.d.ts +0 -0
- /package/lib/typescript/{settings → ui-components/settings}/setting-item.d.ts +0 -0
- /package/lib/typescript/{settings → ui-components/settings}/settings-button.d.ts +0 -0
- /package/lib/typescript/{settings → ui-components/settings}/switch-setting.d.ts +0 -0
- /package/lib/typescript/{state → ui-components/state}/error-screen.d.ts +0 -0
- /package/lib/typescript/{state → ui-components/state}/index.d.ts +0 -0
- /package/lib/typescript/{text → ui-components/text}/base.d.ts +0 -0
- /package/lib/typescript/{text → ui-components/text}/font.d.ts +0 -0
- /package/lib/typescript/{text → ui-components/text}/index.d.ts +0 -0
- /package/lib/typescript/{theme → ui-components/theme}/color-scheme-context.d.ts +0 -0
- /package/lib/typescript/{theme → ui-components/theme}/color-scheme.d.ts +0 -0
- /package/lib/typescript/{theme → ui-components/theme}/index.d.ts +0 -0
- /package/src/{accessibility → ui-components/accessibility}/accessibility.ts +0 -0
- /package/src/{accessibility → ui-components/accessibility}/accessibilityHistoryWrappers.tsx +0 -0
- /package/src/{accessibility → ui-components/accessibility}/accessibilityLanguage.tsx +0 -0
- /package/src/{accessibility → ui-components/accessibility}/index.ts +0 -0
- /package/src/{accessibility → ui-components/accessibility}/locale/de.json +0 -0
- /package/src/{accessibility → ui-components/accessibility}/locale/en.json +0 -0
- /package/src/{accessibility → ui-components/accessibility}/locale/fr.json +0 -0
- /package/src/{accessibility → ui-components/accessibility}/locale/index.ts +0 -0
- /package/src/{accessibility → ui-components/accessibility}/locale/it.json +0 -0
- /package/src/{accessibility → ui-components/accessibility}/locale.test.ts +0 -0
- /package/src/{action-modal → ui-components/action-modal}/ActionModal.stories.tsx +0 -0
- /package/src/{action-modal → ui-components/action-modal}/ActionModal.tsx +0 -0
- /package/src/{action-modal → ui-components/action-modal}/index.ts +0 -0
- /package/src/{activity-indicator → ui-components/activity-indicator}/activity-indicator.stories.tsx +0 -0
- /package/src/{activity-indicator → ui-components/activity-indicator}/activity-indicator.tsx +0 -0
- /package/src/{activity-indicator → ui-components/activity-indicator}/index.ts +0 -0
- /package/src/{blur → ui-components/blur}/index.ts +0 -0
- /package/src/{buttons → ui-components/buttons}/back-button.stories.tsx +0 -0
- /package/src/{buttons → ui-components/buttons}/button.stories.tsx +0 -0
- /package/src/{buttons → ui-components/buttons}/connectivity-button.stories.tsx +0 -0
- /package/src/{buttons → ui-components/buttons}/filter-button.tsx +0 -0
- /package/src/{buttons → ui-components/buttons}/ghost-button.stories.tsx +0 -0
- /package/src/{buttons → ui-components/buttons}/ghost-button.tsx +0 -0
- /package/src/{buttons → ui-components/buttons}/index.ts +0 -0
- /package/src/{buttons → ui-components/buttons}/scan-button.stories.tsx +0 -0
- /package/src/{buttons → ui-components/buttons}/scan-button.tsx +0 -0
- /package/src/{camera → ui-components/camera}/camera-overlay.tsx +0 -0
- /package/src/{camera → ui-components/camera}/index.tsx +0 -0
- /package/src/{camera → ui-components/camera}/qr-code-scanner.tsx +0 -0
- /package/src/{control → ui-components/control}/checkbox.stories.tsx +0 -0
- /package/src/{control → ui-components/control}/checkbox.tsx +0 -0
- /package/src/{control → ui-components/control}/index.ts +0 -0
- /package/src/{control → ui-components/control}/switch.stories.tsx +0 -0
- /package/src/{control → ui-components/control}/switch.tsx +0 -0
- /package/src/{credential → ui-components/credential}/card/credential-details-list-item.tsx +0 -0
- /package/src/{credential → ui-components/credential}/credential-carousel-images.tsx +0 -0
- /package/src/{credential → ui-components/credential}/index.ts +0 -0
- /package/src/{credential → ui-components/credential}/selector-status.ts +0 -0
- /package/src/{credential → ui-components/credential}/selector.stories.tsx +0 -0
- /package/src/{detail → ui-components/detail}/index.tsx +0 -0
- /package/src/{entity → ui-components/entity}/avatar.stories.tsx +0 -0
- /package/src/{entity → ui-components/entity}/entity-cluster.stories.tsx +0 -0
- /package/src/{entity → ui-components/entity}/index.ts +0 -0
- /package/src/{header → ui-components/header}/focus-aware-status-bar.tsx +0 -0
- /package/src/{header → ui-components/header}/foldable-header.tsx +0 -0
- /package/src/{header → ui-components/header}/index.ts +0 -0
- /package/src/{history → ui-components/history}/history-section-list-item.tsx +0 -0
- /package/src/{history → ui-components/history}/index.ts +0 -0
- /package/src/{icons → ui-components/icons}/connectivity.tsx +0 -0
- /package/src/{icons → ui-components/icons}/credential.tsx +0 -0
- /package/src/{icons → ui-components/icons}/history.tsx +0 -0
- /package/src/{icons → ui-components/icons}/icons.tsx +0 -0
- /package/src/{icons → ui-components/icons}/index.ts +0 -0
- /package/src/{icons → ui-components/icons}/input.tsx +0 -0
- /package/src/{icons → ui-components/icons}/keypad.tsx +0 -0
- /package/src/{icons → ui-components/icons}/loader.tsx +0 -0
- /package/src/{icons → ui-components/icons}/nerd-view.tsx +0 -0
- /package/src/{icons → ui-components/icons}/selector.tsx +0 -0
- /package/src/{icons → ui-components/icons}/wallet.tsx +0 -0
- /package/src/{image → ui-components/image}/image-or-component.tsx +0 -0
- /package/src/{image → ui-components/image}/index.tsx +0 -0
- /package/src/{input → ui-components/input}/index.ts +0 -0
- /package/src/{input → ui-components/input}/radio-group.tsx +0 -0
- /package/src/{input → ui-components/input}/selection-input.stories.tsx +0 -0
- /package/src/{list → ui-components/list}/index.ts +0 -0
- /package/src/{list → ui-components/list}/list-section-header.tsx +0 -0
- /package/src/{list → ui-components/list}/list-title-header.tsx +0 -0
- /package/src/{loader → ui-components/loader}/index.ts +0 -0
- /package/src/{loader → ui-components/loader}/loader.stories.tsx +0 -0
- /package/src/{loader → ui-components/loader}/loading-result.stories.tsx +0 -0
- /package/src/{loader → ui-components/loader}/loading-result.tsx +0 -0
- /package/src/{nerd-view → ui-components/nerd-view}/index.ts +0 -0
- /package/src/{pin → ui-components/pin}/pin-code-screen.stories.tsx +0 -0
- /package/src/{pin → ui-components/pin}/pins.tsx +0 -0
- /package/src/{screens → ui-components/screens}/index.ts +0 -0
- /package/src/{searchbar → ui-components/searchbar}/animated-search-bar.tsx +0 -0
- /package/src/{searchbar → ui-components/searchbar}/index.ts +0 -0
- /package/src/{searchbar → ui-components/searchbar}/search-bar.stories.tsx +0 -0
- /package/src/{settings → ui-components/settings}/button-setting.tsx +0 -0
- /package/src/{settings → ui-components/settings}/index.ts +0 -0
- /package/src/{settings → ui-components/settings}/setting-item-separator.tsx +0 -0
- /package/src/{settings → ui-components/settings}/setting-item.tsx +0 -0
- /package/src/{settings → ui-components/settings}/settings-button.tsx +0 -0
- /package/src/{settings → ui-components/settings}/switch-setting.tsx +0 -0
- /package/src/{state → ui-components/state}/error-screen.stories.tsx +0 -0
- /package/src/{state → ui-components/state}/error-screen.tsx +0 -0
- /package/src/{state → ui-components/state}/index.ts +0 -0
- /package/src/{text → ui-components/text}/base.tsx +0 -0
- /package/src/{text → ui-components/text}/font.ts +0 -0
- /package/src/{text → ui-components/text}/index.ts +0 -0
- /package/src/{text → ui-components/text}/typography.tsx +0 -0
- /package/src/{theme → ui-components/theme}/color-scheme-context.tsx +0 -0
- /package/src/{theme → ui-components/theme}/color-scheme.ts +0 -0
- /package/src/{theme → ui-components/theme}/index.ts +0 -0
package/lib/module/pin/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["Biometry","PinCodeScreen","PinCodeScreenActions","PinCodeScreenProps"],"sources":["index.ts"],"sourcesContent":["import { Biometry } from './keypad';\nimport { PinCodeScreen, PinCodeScreenActions, PinCodeScreenProps } from './pin-code-screen';\n\nexport { Biometry, PinCodeScreen, PinCodeScreenActions, PinCodeScreenProps };\n"],"mappings":"AAAA,SAASA,QAAQ,QAAQ,UAAU;AACnC,SAASC,aAAa,EAAEC,oBAAoB,EAAEC,kBAAkB,QAAQ,mBAAmB;AAE3F,SAASH,QAAQ,EAAEC,aAAa,EAAEC,oBAAoB,EAAEC,kBAAkB"}
|
package/lib/module/pin/keypad.js
DELETED
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
import React, { useCallback, useMemo, useState } from 'react';
|
|
2
|
-
import { StyleSheet, View } from 'react-native';
|
|
3
|
-
import { TouchableOpacity } from '../accessibility';
|
|
4
|
-
import { useAccessibilityTranslation } from '../accessibility/accessibilityLanguage';
|
|
5
|
-
import { FaceIDIcon, FingerprintIcon, KeypadBackspaceIcon, KeypadClearIcon } from '../icons/keypad';
|
|
6
|
-
import { Typography } from '../text';
|
|
7
|
-
import { useAppColorScheme } from '../theme';
|
|
8
|
-
import { concatTestID } from '../utils/testID';
|
|
9
|
-
const DigitKey = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
10
|
-
let {
|
|
11
|
-
onPress,
|
|
12
|
-
testID,
|
|
13
|
-
digit
|
|
14
|
-
} = _ref;
|
|
15
|
-
const colorScheme = useAppColorScheme();
|
|
16
|
-
return /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
17
|
-
testID: concatTestID(testID, String(digit)),
|
|
18
|
-
ref: ref,
|
|
19
|
-
accessibilityRole: "button",
|
|
20
|
-
style: [styles.key, {
|
|
21
|
-
backgroundColor: colorScheme.background
|
|
22
|
-
}],
|
|
23
|
-
disabled: !onPress,
|
|
24
|
-
onPress: () => onPress === null || onPress === void 0 ? void 0 : onPress(digit)
|
|
25
|
-
}, /*#__PURE__*/React.createElement(Typography, {
|
|
26
|
-
maxFontSizeMultiplier: 1.5,
|
|
27
|
-
color: colorScheme.text,
|
|
28
|
-
preset: "xl"
|
|
29
|
-
}, digit));
|
|
30
|
-
});
|
|
31
|
-
DigitKey.displayName = 'DigitKey';
|
|
32
|
-
export let Biometry;
|
|
33
|
-
(function (Biometry) {
|
|
34
|
-
Biometry["FaceID"] = "faceID";
|
|
35
|
-
Biometry["Other"] = "other";
|
|
36
|
-
})(Biometry || (Biometry = {}));
|
|
37
|
-
const MIN_HEIGHT = 360;
|
|
38
|
-
const MIN_WIDTH = 264;
|
|
39
|
-
const KEY_SIZE = 72;
|
|
40
|
-
export const Keypad = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
|
|
41
|
-
let {
|
|
42
|
-
testID,
|
|
43
|
-
onPressDigit,
|
|
44
|
-
onPressDelete,
|
|
45
|
-
biometry,
|
|
46
|
-
onBiometricPress,
|
|
47
|
-
style,
|
|
48
|
-
onDeleteAll
|
|
49
|
-
} = _ref2;
|
|
50
|
-
const t = useAccessibilityTranslation();
|
|
51
|
-
const colorScheme = useAppColorScheme();
|
|
52
|
-
const [layout, setLayout] = useState();
|
|
53
|
-
const onLayout = useCallback(event => setLayout(event.nativeEvent.layout), []);
|
|
54
|
-
const {
|
|
55
|
-
width,
|
|
56
|
-
height
|
|
57
|
-
} = useMemo(() => {
|
|
58
|
-
if (!layout) {
|
|
59
|
-
return {};
|
|
60
|
-
}
|
|
61
|
-
const RATIO = MIN_WIDTH / MIN_HEIGHT;
|
|
62
|
-
if (layout.width > layout.height * RATIO) {
|
|
63
|
-
return {
|
|
64
|
-
height: layout.height,
|
|
65
|
-
width: layout.height * RATIO
|
|
66
|
-
};
|
|
67
|
-
} else {
|
|
68
|
-
return {
|
|
69
|
-
width: layout.width,
|
|
70
|
-
height: layout.width / RATIO
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
}, [layout]);
|
|
74
|
-
const gap = width ? (width - 3 * KEY_SIZE) / 4 : undefined;
|
|
75
|
-
const lineStyles = [styles.line, {
|
|
76
|
-
width,
|
|
77
|
-
marginBottom: gap
|
|
78
|
-
}];
|
|
79
|
-
return /*#__PURE__*/React.createElement(View, {
|
|
80
|
-
testID: testID,
|
|
81
|
-
style: [styles.cover, style],
|
|
82
|
-
onLayout: onLayout
|
|
83
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
84
|
-
style: {
|
|
85
|
-
height
|
|
86
|
-
}
|
|
87
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
88
|
-
style: lineStyles
|
|
89
|
-
}, /*#__PURE__*/React.createElement(DigitKey, {
|
|
90
|
-
testID: testID,
|
|
91
|
-
ref: ref,
|
|
92
|
-
digit: 1,
|
|
93
|
-
onPress: onPressDigit
|
|
94
|
-
}), /*#__PURE__*/React.createElement(DigitKey, {
|
|
95
|
-
testID: testID,
|
|
96
|
-
digit: 2,
|
|
97
|
-
onPress: onPressDigit
|
|
98
|
-
}), /*#__PURE__*/React.createElement(DigitKey, {
|
|
99
|
-
testID: testID,
|
|
100
|
-
digit: 3,
|
|
101
|
-
onPress: onPressDigit
|
|
102
|
-
})), /*#__PURE__*/React.createElement(View, {
|
|
103
|
-
style: lineStyles
|
|
104
|
-
}, /*#__PURE__*/React.createElement(DigitKey, {
|
|
105
|
-
testID: testID,
|
|
106
|
-
digit: 4,
|
|
107
|
-
onPress: onPressDigit
|
|
108
|
-
}), /*#__PURE__*/React.createElement(DigitKey, {
|
|
109
|
-
testID: testID,
|
|
110
|
-
digit: 5,
|
|
111
|
-
onPress: onPressDigit
|
|
112
|
-
}), /*#__PURE__*/React.createElement(DigitKey, {
|
|
113
|
-
testID: testID,
|
|
114
|
-
digit: 6,
|
|
115
|
-
onPress: onPressDigit
|
|
116
|
-
})), /*#__PURE__*/React.createElement(View, {
|
|
117
|
-
style: lineStyles
|
|
118
|
-
}, /*#__PURE__*/React.createElement(DigitKey, {
|
|
119
|
-
testID: testID,
|
|
120
|
-
digit: 7,
|
|
121
|
-
onPress: onPressDigit
|
|
122
|
-
}), /*#__PURE__*/React.createElement(DigitKey, {
|
|
123
|
-
testID: testID,
|
|
124
|
-
digit: 8,
|
|
125
|
-
onPress: onPressDigit
|
|
126
|
-
}), /*#__PURE__*/React.createElement(DigitKey, {
|
|
127
|
-
testID: testID,
|
|
128
|
-
digit: 9,
|
|
129
|
-
onPress: onPressDigit
|
|
130
|
-
})), /*#__PURE__*/React.createElement(View, {
|
|
131
|
-
style: lineStyles
|
|
132
|
-
}, /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
133
|
-
testID: concatTestID(testID, 'delete-all'),
|
|
134
|
-
accessibilityRole: "button",
|
|
135
|
-
accessibilityLabel: t('accessibility.control.clear'),
|
|
136
|
-
style: styles.key,
|
|
137
|
-
disabled: !onDeleteAll,
|
|
138
|
-
onPress: onDeleteAll
|
|
139
|
-
}, onDeleteAll ? /*#__PURE__*/React.createElement(KeypadClearIcon, {
|
|
140
|
-
color: colorScheme.text
|
|
141
|
-
}) : null), /*#__PURE__*/React.createElement(DigitKey, {
|
|
142
|
-
testID: testID,
|
|
143
|
-
digit: 0,
|
|
144
|
-
onPress: onPressDigit
|
|
145
|
-
}), biometry ? /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
146
|
-
testID: concatTestID(testID, 'biometry'),
|
|
147
|
-
accessibilityRole: "button",
|
|
148
|
-
accessibilityLabel: t(biometry === Biometry.FaceID ? 'accessibility.key.faceId' : 'accessibility.key.fingerprint'),
|
|
149
|
-
style: styles.key,
|
|
150
|
-
disabled: !onBiometricPress,
|
|
151
|
-
onPress: onBiometricPress
|
|
152
|
-
}, biometry === Biometry.FaceID ? /*#__PURE__*/React.createElement(FaceIDIcon, {
|
|
153
|
-
color: colorScheme.text
|
|
154
|
-
}) : /*#__PURE__*/React.createElement(FingerprintIcon, {
|
|
155
|
-
color: colorScheme.text
|
|
156
|
-
})) : /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
157
|
-
testID: concatTestID(testID, 'delete'),
|
|
158
|
-
accessibilityRole: "button",
|
|
159
|
-
accessibilityLabel: t('accessibility.control.delete'),
|
|
160
|
-
style: styles.key,
|
|
161
|
-
disabled: !onPressDelete,
|
|
162
|
-
onPress: onPressDelete
|
|
163
|
-
}, onPressDelete ? /*#__PURE__*/React.createElement(KeypadBackspaceIcon, {
|
|
164
|
-
color: colorScheme.text
|
|
165
|
-
}) : null))));
|
|
166
|
-
});
|
|
167
|
-
Keypad.displayName = 'Keypad';
|
|
168
|
-
const styles = StyleSheet.create({
|
|
169
|
-
cover: {
|
|
170
|
-
alignItems: 'center',
|
|
171
|
-
flex: 1,
|
|
172
|
-
justifyContent: 'center',
|
|
173
|
-
maxHeight: 2 * MIN_HEIGHT,
|
|
174
|
-
maxWidth: 2 * MIN_WIDTH,
|
|
175
|
-
minHeight: MIN_HEIGHT,
|
|
176
|
-
minWidth: MIN_WIDTH,
|
|
177
|
-
width: '100%'
|
|
178
|
-
},
|
|
179
|
-
key: {
|
|
180
|
-
alignItems: 'center',
|
|
181
|
-
borderRadius: KEY_SIZE / 2,
|
|
182
|
-
height: KEY_SIZE,
|
|
183
|
-
justifyContent: 'center',
|
|
184
|
-
width: KEY_SIZE
|
|
185
|
-
},
|
|
186
|
-
line: {
|
|
187
|
-
flexDirection: 'row',
|
|
188
|
-
justifyContent: 'space-evenly'
|
|
189
|
-
}
|
|
190
|
-
});
|
|
191
|
-
//# sourceMappingURL=keypad.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","useCallback","useMemo","useState","StyleSheet","View","TouchableOpacity","useAccessibilityTranslation","FaceIDIcon","FingerprintIcon","KeypadBackspaceIcon","KeypadClearIcon","Typography","useAppColorScheme","concatTestID","DigitKey","forwardRef","_ref","ref","onPress","testID","digit","colorScheme","createElement","String","accessibilityRole","style","styles","key","backgroundColor","background","disabled","maxFontSizeMultiplier","color","text","preset","displayName","Biometry","MIN_HEIGHT","MIN_WIDTH","KEY_SIZE","Keypad","_ref2","onPressDigit","onPressDelete","biometry","onBiometricPress","onDeleteAll","t","layout","setLayout","onLayout","event","nativeEvent","width","height","RATIO","gap","undefined","lineStyles","line","marginBottom","cover","accessibilityLabel","FaceID","create","alignItems","flex","justifyContent","maxHeight","maxWidth","minHeight","minWidth","borderRadius","flexDirection"],"sources":["keypad.tsx"],"sourcesContent":["import React, { useCallback, useMemo, useState } from 'react';\nimport { LayoutChangeEvent, LayoutRectangle, StyleProp, StyleSheet, View, ViewStyle } from 'react-native';\n\nimport { TouchableOpacity, TouchableOpacityRef } from '../accessibility';\nimport { useAccessibilityTranslation } from '../accessibility/accessibilityLanguage';\nimport { FaceIDIcon, FingerprintIcon, KeypadBackspaceIcon, KeypadClearIcon } from '../icons/keypad';\nimport { Typography } from '../text';\nimport { useAppColorScheme } from '../theme';\nimport { concatTestID } from '../utils/testID';\n\ninterface DigitKeyProps {\n testID: string | undefined;\n digit: number;\n onPress?: (digit: number) => void;\n}\n\nconst DigitKey = React.forwardRef<TouchableOpacityRef, DigitKeyProps>(({ onPress, testID, digit }, ref) => {\n const colorScheme = useAppColorScheme();\n return (\n <TouchableOpacity\n testID={concatTestID(testID, String(digit))}\n ref={ref}\n accessibilityRole=\"button\"\n style={[styles.key, { backgroundColor: colorScheme.background }]}\n disabled={!onPress}\n onPress={() => onPress?.(digit)}>\n <Typography maxFontSizeMultiplier={1.5} color={colorScheme.text} preset=\"xl\">\n {digit}\n </Typography>\n </TouchableOpacity>\n );\n});\n\nDigitKey.displayName = 'DigitKey';\n\nexport enum Biometry {\n FaceID = 'faceID',\n Other = 'other',\n}\n\nexport interface KeypadProps {\n testID?: string;\n biometry?: Biometry | null;\n onBiometricPress?: () => void;\n onPressDigit?: (digit: number) => void;\n onPressDelete?: () => void;\n style?: StyleProp<ViewStyle>;\n onDeleteAll?: () => void;\n}\n\nconst MIN_HEIGHT = 360;\nconst MIN_WIDTH = 264;\nconst KEY_SIZE = 72;\n\nexport const Keypad = React.forwardRef<TouchableOpacityRef, KeypadProps>(\n ({ testID, onPressDigit, onPressDelete, biometry, onBiometricPress, style, onDeleteAll }, ref) => {\n const t = useAccessibilityTranslation();\n const colorScheme = useAppColorScheme();\n\n const [layout, setLayout] = useState<LayoutRectangle>();\n const onLayout = useCallback((event: LayoutChangeEvent) => setLayout(event.nativeEvent.layout), []);\n\n const { width, height } = useMemo(() => {\n if (!layout) {\n return {};\n }\n\n const RATIO = MIN_WIDTH / MIN_HEIGHT;\n if (layout.width > layout.height * RATIO) {\n return { height: layout.height, width: layout.height * RATIO };\n } else {\n return { width: layout.width, height: layout.width / RATIO };\n }\n }, [layout]);\n\n const gap = width ? (width - 3 * KEY_SIZE) / 4 : undefined;\n const lineStyles = [styles.line, { width, marginBottom: gap }];\n\n return (\n <View testID={testID} style={[styles.cover, style]} onLayout={onLayout}>\n <View style={{ height }}>\n <View style={lineStyles}>\n <DigitKey testID={testID} ref={ref} digit={1} onPress={onPressDigit} />\n <DigitKey testID={testID} digit={2} onPress={onPressDigit} />\n <DigitKey testID={testID} digit={3} onPress={onPressDigit} />\n </View>\n <View style={lineStyles}>\n <DigitKey testID={testID} digit={4} onPress={onPressDigit} />\n <DigitKey testID={testID} digit={5} onPress={onPressDigit} />\n <DigitKey testID={testID} digit={6} onPress={onPressDigit} />\n </View>\n <View style={lineStyles}>\n <DigitKey testID={testID} digit={7} onPress={onPressDigit} />\n <DigitKey testID={testID} digit={8} onPress={onPressDigit} />\n <DigitKey testID={testID} digit={9} onPress={onPressDigit} />\n </View>\n <View style={lineStyles}>\n <TouchableOpacity\n testID={concatTestID(testID, 'delete-all')}\n accessibilityRole=\"button\"\n accessibilityLabel={t('accessibility.control.clear')}\n style={styles.key}\n disabled={!onDeleteAll}\n onPress={onDeleteAll}>\n {onDeleteAll ? <KeypadClearIcon color={colorScheme.text} /> : null}\n </TouchableOpacity>\n <DigitKey testID={testID} digit={0} onPress={onPressDigit} />\n {biometry ? (\n <TouchableOpacity\n testID={concatTestID(testID, 'biometry')}\n accessibilityRole=\"button\"\n accessibilityLabel={t(\n biometry === Biometry.FaceID ? 'accessibility.key.faceId' : 'accessibility.key.fingerprint',\n )}\n style={styles.key}\n disabled={!onBiometricPress}\n onPress={onBiometricPress}>\n {biometry === Biometry.FaceID ? (\n <FaceIDIcon color={colorScheme.text} />\n ) : (\n <FingerprintIcon color={colorScheme.text} />\n )}\n </TouchableOpacity>\n ) : (\n <TouchableOpacity\n testID={concatTestID(testID, 'delete')}\n accessibilityRole=\"button\"\n accessibilityLabel={t('accessibility.control.delete')}\n style={styles.key}\n disabled={!onPressDelete}\n onPress={onPressDelete}>\n {onPressDelete ? <KeypadBackspaceIcon color={colorScheme.text} /> : null}\n </TouchableOpacity>\n )}\n </View>\n </View>\n </View>\n );\n },\n);\n\nKeypad.displayName = 'Keypad';\n\nconst styles = StyleSheet.create({\n cover: {\n alignItems: 'center',\n flex: 1,\n justifyContent: 'center',\n maxHeight: 2 * MIN_HEIGHT,\n maxWidth: 2 * MIN_WIDTH,\n minHeight: MIN_HEIGHT,\n minWidth: MIN_WIDTH,\n width: '100%',\n },\n key: {\n alignItems: 'center',\n borderRadius: KEY_SIZE / 2,\n height: KEY_SIZE,\n justifyContent: 'center',\n width: KEY_SIZE,\n },\n line: {\n flexDirection: 'row',\n justifyContent: 'space-evenly',\n },\n});\n"],"mappings":"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"}
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
import React, { forwardRef, useImperativeHandle, useState } from 'react';
|
|
2
|
-
import { Animated, Easing, StyleSheet, View } from 'react-native';
|
|
3
|
-
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
4
|
-
import { BackButton } from '../buttons';
|
|
5
|
-
import { Typography } from '../text';
|
|
6
|
-
import { useAppColorScheme } from '../theme';
|
|
7
|
-
import { concatTestID } from '../utils';
|
|
8
|
-
import ContrastingStatusBar from '../utils/contrasting-status-bar';
|
|
9
|
-
import { Keypad } from './keypad';
|
|
10
|
-
import { Pins } from './pins';
|
|
11
|
-
const SHAKE_ITERATIONS = 4;
|
|
12
|
-
const animationConfig = {
|
|
13
|
-
useNativeDriver: true,
|
|
14
|
-
easing: Easing.linear
|
|
15
|
-
};
|
|
16
|
-
export const PinCodeScreen = /*#__PURE__*/forwardRef((_ref, ref) => {
|
|
17
|
-
let {
|
|
18
|
-
testID,
|
|
19
|
-
length,
|
|
20
|
-
instruction,
|
|
21
|
-
title,
|
|
22
|
-
onBack,
|
|
23
|
-
enteredLength,
|
|
24
|
-
error,
|
|
25
|
-
onPressDigit,
|
|
26
|
-
onPressDelete,
|
|
27
|
-
biometry,
|
|
28
|
-
onBiometricPress,
|
|
29
|
-
keypadRef,
|
|
30
|
-
onDeleteAll,
|
|
31
|
-
...props
|
|
32
|
-
} = _ref;
|
|
33
|
-
const colorScheme = useAppColorScheme();
|
|
34
|
-
const [shakePosition] = useState(() => new Animated.Value(0));
|
|
35
|
-
useImperativeHandle(ref, () => ({
|
|
36
|
-
shakeKeypad: params => {
|
|
37
|
-
const {
|
|
38
|
-
amount = 10,
|
|
39
|
-
duration = 300
|
|
40
|
-
} = params !== null && params !== void 0 ? params : {};
|
|
41
|
-
const partialDuration = duration / SHAKE_ITERATIONS / 4;
|
|
42
|
-
return new Promise(resolve => Animated.loop(Animated.sequence([Animated.timing(shakePosition, {
|
|
43
|
-
...animationConfig,
|
|
44
|
-
toValue: -amount,
|
|
45
|
-
duration: partialDuration
|
|
46
|
-
}), Animated.timing(shakePosition, {
|
|
47
|
-
...animationConfig,
|
|
48
|
-
toValue: amount,
|
|
49
|
-
duration: 2 * partialDuration
|
|
50
|
-
}), Animated.timing(shakePosition, {
|
|
51
|
-
...animationConfig,
|
|
52
|
-
toValue: 0,
|
|
53
|
-
duration: partialDuration
|
|
54
|
-
})]), {
|
|
55
|
-
iterations: SHAKE_ITERATIONS
|
|
56
|
-
}).start(resolve));
|
|
57
|
-
}
|
|
58
|
-
}), [shakePosition]);
|
|
59
|
-
return /*#__PURE__*/React.createElement(SafeAreaView, {
|
|
60
|
-
testID: testID,
|
|
61
|
-
style: [styles.container, {
|
|
62
|
-
backgroundColor: colorScheme.white
|
|
63
|
-
}]
|
|
64
|
-
}, /*#__PURE__*/React.createElement(ContrastingStatusBar, {
|
|
65
|
-
backgroundColor: colorScheme.white
|
|
66
|
-
}), /*#__PURE__*/React.createElement(View, {
|
|
67
|
-
style: styles.backButton
|
|
68
|
-
}, onBack && /*#__PURE__*/React.createElement(BackButton, {
|
|
69
|
-
testID: concatTestID(testID, 'back'),
|
|
70
|
-
onPress: onBack
|
|
71
|
-
})), /*#__PURE__*/React.createElement(View, {
|
|
72
|
-
style: styles.content
|
|
73
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
74
|
-
style: styles.upperContent
|
|
75
|
-
}, /*#__PURE__*/React.createElement(Typography, {
|
|
76
|
-
testID: concatTestID(testID, 'title'),
|
|
77
|
-
accessible: false,
|
|
78
|
-
color: colorScheme.text,
|
|
79
|
-
align: "center",
|
|
80
|
-
preset: "l",
|
|
81
|
-
style: styles.title
|
|
82
|
-
}, title), /*#__PURE__*/React.createElement(Pins, {
|
|
83
|
-
style: styles.pins,
|
|
84
|
-
enteredLength: enteredLength,
|
|
85
|
-
maxLength: length
|
|
86
|
-
}), instruction ? /*#__PURE__*/React.createElement(Typography, {
|
|
87
|
-
testID: concatTestID(testID, 'instruction'),
|
|
88
|
-
align: "center",
|
|
89
|
-
announcementActive: true,
|
|
90
|
-
onAnnouncementFinished: props.onAccessibilityAnnounced,
|
|
91
|
-
color: colorScheme.text,
|
|
92
|
-
style: styles.instruction
|
|
93
|
-
}, instruction) : null, /*#__PURE__*/React.createElement(Typography, {
|
|
94
|
-
testID: concatTestID(testID, 'error'),
|
|
95
|
-
announcementActive: true,
|
|
96
|
-
accessible: Boolean(error),
|
|
97
|
-
color: colorScheme.error
|
|
98
|
-
}, error !== null && error !== void 0 ? error : '' /* always displayed to keep the same layout */)), /*#__PURE__*/React.createElement(Animated.View, {
|
|
99
|
-
style: [styles.keyboard, {
|
|
100
|
-
transform: [{
|
|
101
|
-
translateX: shakePosition
|
|
102
|
-
}]
|
|
103
|
-
}]
|
|
104
|
-
}, /*#__PURE__*/React.createElement(Keypad, {
|
|
105
|
-
testID: concatTestID(testID, 'keypad'),
|
|
106
|
-
ref: keypadRef,
|
|
107
|
-
onPressDigit: enteredLength < length ? onPressDigit : undefined,
|
|
108
|
-
onPressDelete: enteredLength && enteredLength < length ? onPressDelete : undefined,
|
|
109
|
-
biometry: !enteredLength ? biometry : undefined,
|
|
110
|
-
onBiometricPress: onBiometricPress,
|
|
111
|
-
onDeleteAll: enteredLength && enteredLength < length ? onDeleteAll : undefined
|
|
112
|
-
}))));
|
|
113
|
-
});
|
|
114
|
-
const styles = StyleSheet.create({
|
|
115
|
-
backButton: {
|
|
116
|
-
minHeight: 24,
|
|
117
|
-
paddingHorizontal: 24
|
|
118
|
-
},
|
|
119
|
-
container: {
|
|
120
|
-
flex: 1,
|
|
121
|
-
paddingTop: 8
|
|
122
|
-
},
|
|
123
|
-
content: {
|
|
124
|
-
flex: 1,
|
|
125
|
-
justifyContent: 'space-between',
|
|
126
|
-
paddingHorizontal: 24
|
|
127
|
-
},
|
|
128
|
-
instruction: {
|
|
129
|
-
marginVertical: 24,
|
|
130
|
-
opacity: 0.7
|
|
131
|
-
},
|
|
132
|
-
keyboard: {
|
|
133
|
-
alignItems: 'center',
|
|
134
|
-
flex: 5,
|
|
135
|
-
justifyContent: 'center',
|
|
136
|
-
marginVertical: 24
|
|
137
|
-
},
|
|
138
|
-
pins: {
|
|
139
|
-
paddingHorizontal: 20
|
|
140
|
-
},
|
|
141
|
-
title: {
|
|
142
|
-
marginBottom: 24
|
|
143
|
-
},
|
|
144
|
-
upperContent: {
|
|
145
|
-
alignItems: 'center',
|
|
146
|
-
flex: 3,
|
|
147
|
-
marginTop: 12,
|
|
148
|
-
paddingHorizontal: 20
|
|
149
|
-
}
|
|
150
|
-
});
|
|
151
|
-
PinCodeScreen.displayName = 'PinCodeScreen';
|
|
152
|
-
//# sourceMappingURL=pin-code-screen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","forwardRef","useImperativeHandle","useState","Animated","Easing","StyleSheet","View","SafeAreaView","BackButton","Typography","useAppColorScheme","concatTestID","ContrastingStatusBar","Keypad","Pins","SHAKE_ITERATIONS","animationConfig","useNativeDriver","easing","linear","PinCodeScreen","_ref","ref","testID","length","instruction","title","onBack","enteredLength","error","onPressDigit","onPressDelete","biometry","onBiometricPress","keypadRef","onDeleteAll","props","colorScheme","shakePosition","Value","shakeKeypad","params","amount","duration","partialDuration","Promise","resolve","loop","sequence","timing","toValue","iterations","start","createElement","style","styles","container","backgroundColor","white","backButton","onPress","content","upperContent","accessible","color","text","align","preset","pins","maxLength","announcementActive","onAnnouncementFinished","onAccessibilityAnnounced","Boolean","keyboard","transform","translateX","undefined","create","minHeight","paddingHorizontal","flex","paddingTop","justifyContent","marginVertical","opacity","alignItems","marginBottom","marginTop","displayName"],"sources":["pin-code-screen.tsx"],"sourcesContent":["import React, { forwardRef, Ref, useImperativeHandle, useState } from 'react';\nimport { Animated, Easing, StyleSheet, View } from 'react-native';\nimport { SafeAreaView } from 'react-native-safe-area-context';\n\nimport type { TouchableOpacityRef } from '../accessibility';\nimport { BackButton } from '../buttons';\nimport { Typography } from '../text';\nimport { useAppColorScheme } from '../theme';\nimport { concatTestID } from '../utils';\nimport ContrastingStatusBar from '../utils/contrasting-status-bar';\nimport { Biometry, Keypad } from './keypad';\nimport { Pins } from './pins';\n\nexport type PinCodeScreenProps = {\n title: string;\n\n testID?: string;\n length: number;\n enteredLength: number;\n onBack?: () => void;\n error?: string;\n\n keypadRef?: Ref<TouchableOpacityRef>;\n onPressDigit: (digit: number) => void;\n onPressDelete: () => void;\n onDeleteAll: () => void;\n\n biometry?: Biometry | null;\n onBiometricPress?: () => void;\n} & (\n | {\n instruction: string;\n onAccessibilityAnnounced?: (finished: boolean) => void;\n }\n | {\n instruction?: undefined;\n onAccessibilityAnnounced?: undefined;\n }\n);\n\nexport interface PinCodeScreenActions {\n shakeKeypad: (params?: { amount?: number; duration?: number }) => Promise<{ finished: boolean }>;\n}\nconst SHAKE_ITERATIONS = 4;\nconst animationConfig = {\n useNativeDriver: true,\n easing: Easing.linear,\n};\n\nexport const PinCodeScreen = forwardRef<PinCodeScreenActions, PinCodeScreenProps>(\n (\n {\n testID,\n length,\n instruction,\n title,\n onBack,\n enteredLength,\n error,\n onPressDigit,\n onPressDelete,\n biometry,\n onBiometricPress,\n keypadRef,\n onDeleteAll,\n ...props\n },\n ref,\n ) => {\n const colorScheme = useAppColorScheme();\n const [shakePosition] = useState(() => new Animated.Value(0));\n useImperativeHandle(\n ref,\n () => ({\n shakeKeypad: (params) => {\n const { amount = 10, duration = 300 } = params ?? {};\n const partialDuration = duration / SHAKE_ITERATIONS / 4;\n return new Promise((resolve) =>\n Animated.loop(\n Animated.sequence([\n Animated.timing(shakePosition, { ...animationConfig, toValue: -amount, duration: partialDuration }),\n Animated.timing(shakePosition, {\n ...animationConfig,\n toValue: amount,\n duration: 2 * partialDuration,\n }),\n Animated.timing(shakePosition, { ...animationConfig, toValue: 0, duration: partialDuration }),\n ]),\n { iterations: SHAKE_ITERATIONS },\n ).start(resolve),\n );\n },\n }),\n [shakePosition],\n );\n\n return (\n <SafeAreaView testID={testID} style={[styles.container, { backgroundColor: colorScheme.white }]}>\n <ContrastingStatusBar backgroundColor={colorScheme.white} />\n <View style={styles.backButton}>\n {onBack && <BackButton testID={concatTestID(testID, 'back')} onPress={onBack} />}\n </View>\n <View style={styles.content}>\n <View style={styles.upperContent}>\n <Typography\n testID={concatTestID(testID, 'title')}\n accessible={false}\n color={colorScheme.text}\n align=\"center\"\n preset=\"l\"\n style={styles.title}>\n {title}\n </Typography>\n <Pins style={styles.pins} enteredLength={enteredLength} maxLength={length} />\n {instruction ? (\n <Typography\n testID={concatTestID(testID, 'instruction')}\n align=\"center\"\n announcementActive={true}\n onAnnouncementFinished={props.onAccessibilityAnnounced}\n color={colorScheme.text}\n style={styles.instruction}>\n {instruction}\n </Typography>\n ) : null}\n <Typography\n testID={concatTestID(testID, 'error')}\n announcementActive={true}\n accessible={Boolean(error)}\n color={colorScheme.error}>\n {error ?? '' /* always displayed to keep the same layout */}\n </Typography>\n </View>\n <Animated.View\n style={[\n styles.keyboard,\n {\n transform: [{ translateX: shakePosition }],\n },\n ]}>\n <Keypad\n testID={concatTestID(testID, 'keypad')}\n ref={keypadRef}\n onPressDigit={enteredLength < length ? onPressDigit : undefined}\n onPressDelete={enteredLength && enteredLength < length ? onPressDelete : undefined}\n biometry={!enteredLength ? biometry : undefined}\n onBiometricPress={onBiometricPress}\n onDeleteAll={enteredLength && enteredLength < length ? onDeleteAll : undefined}\n />\n </Animated.View>\n </View>\n </SafeAreaView>\n );\n },\n);\n\nconst styles = StyleSheet.create({\n backButton: {\n minHeight: 24,\n paddingHorizontal: 24,\n },\n container: {\n flex: 1,\n paddingTop: 8,\n },\n content: {\n flex: 1,\n justifyContent: 'space-between',\n paddingHorizontal: 24,\n },\n instruction: {\n marginVertical: 24,\n opacity: 0.7,\n },\n keyboard: {\n alignItems: 'center',\n flex: 5,\n justifyContent: 'center',\n marginVertical: 24,\n },\n pins: {\n paddingHorizontal: 20,\n },\n title: {\n marginBottom: 24,\n },\n upperContent: {\n alignItems: 'center',\n flex: 3,\n marginTop: 12,\n paddingHorizontal: 20,\n },\n});\n\nPinCodeScreen.displayName = 'PinCodeScreen';\n"],"mappings":"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"}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { StyleSheet, View } from 'react-native';
|
|
3
|
-
import BackButton from '../buttons/back-button';
|
|
4
|
-
import { Button, ButtonType } from '../buttons/button';
|
|
5
|
-
import ScrollViewScreen from '../screens/scroll-view-screen';
|
|
6
|
-
import Typography from '../text/typography';
|
|
7
|
-
import { useAppColorScheme } from '../theme/color-scheme-context';
|
|
8
|
-
import { concatTestID } from '../utils/testID';
|
|
9
|
-
export let BackupScreenMode;
|
|
10
|
-
(function (BackupScreenMode) {
|
|
11
|
-
BackupScreenMode["Create"] = "create";
|
|
12
|
-
BackupScreenMode["Restore"] = "restore";
|
|
13
|
-
})(BackupScreenMode || (BackupScreenMode = {}));
|
|
14
|
-
const BackupScreen = _ref => {
|
|
15
|
-
let {
|
|
16
|
-
children,
|
|
17
|
-
cta,
|
|
18
|
-
description,
|
|
19
|
-
isCtaDisabled,
|
|
20
|
-
onBack,
|
|
21
|
-
onCta,
|
|
22
|
-
testID,
|
|
23
|
-
title
|
|
24
|
-
} = _ref;
|
|
25
|
-
const colorScheme = useAppColorScheme();
|
|
26
|
-
return /*#__PURE__*/React.createElement(ScrollViewScreen, {
|
|
27
|
-
header: {
|
|
28
|
-
backgroundColor: colorScheme.white,
|
|
29
|
-
leftItem: /*#__PURE__*/React.createElement(BackButton, {
|
|
30
|
-
onPress: onBack,
|
|
31
|
-
testID: concatTestID(testID, 'back')
|
|
32
|
-
}),
|
|
33
|
-
title
|
|
34
|
-
},
|
|
35
|
-
scrollView: {
|
|
36
|
-
testID: concatTestID(testID, 'scroll')
|
|
37
|
-
},
|
|
38
|
-
style: {
|
|
39
|
-
backgroundColor: colorScheme.white
|
|
40
|
-
},
|
|
41
|
-
testID: testID
|
|
42
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
43
|
-
style: styles.contentWrapper
|
|
44
|
-
}, /*#__PURE__*/React.createElement(View, {
|
|
45
|
-
style: styles.content
|
|
46
|
-
}, /*#__PURE__*/React.createElement(Typography, {
|
|
47
|
-
color: colorScheme.text,
|
|
48
|
-
style: styles.description
|
|
49
|
-
}, description), children), /*#__PURE__*/React.createElement(View, {
|
|
50
|
-
style: styles.bottom
|
|
51
|
-
}, /*#__PURE__*/React.createElement(Button, {
|
|
52
|
-
disabled: isCtaDisabled,
|
|
53
|
-
onPress: onCta,
|
|
54
|
-
testID: concatTestID(testID, 'mainButton'),
|
|
55
|
-
title: cta,
|
|
56
|
-
type: isCtaDisabled ? ButtonType.Border : ButtonType.Primary
|
|
57
|
-
}))));
|
|
58
|
-
};
|
|
59
|
-
const styles = StyleSheet.create({
|
|
60
|
-
bottom: {
|
|
61
|
-
flex: 1,
|
|
62
|
-
justifyContent: 'flex-end',
|
|
63
|
-
minHeight: 84
|
|
64
|
-
},
|
|
65
|
-
content: {
|
|
66
|
-
marginHorizontal: 8
|
|
67
|
-
},
|
|
68
|
-
contentWrapper: {
|
|
69
|
-
flex: 1,
|
|
70
|
-
marginHorizontal: 12
|
|
71
|
-
},
|
|
72
|
-
description: {
|
|
73
|
-
marginBottom: 24,
|
|
74
|
-
opacity: 0.7
|
|
75
|
-
}
|
|
76
|
-
});
|
|
77
|
-
export default BackupScreen;
|
|
78
|
-
//# sourceMappingURL=backup-screen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","StyleSheet","View","BackButton","Button","ButtonType","ScrollViewScreen","Typography","useAppColorScheme","concatTestID","BackupScreenMode","BackupScreen","_ref","children","cta","description","isCtaDisabled","onBack","onCta","testID","title","colorScheme","createElement","header","backgroundColor","white","leftItem","onPress","scrollView","style","styles","contentWrapper","content","color","text","bottom","disabled","type","Border","Primary","create","flex","justifyContent","minHeight","marginHorizontal","marginBottom","opacity"],"sources":["backup-screen.tsx"],"sourcesContent":["import React, { FC, PropsWithChildren } from 'react';\nimport { StyleSheet, View } from 'react-native';\n\nimport BackButton from '../buttons/back-button';\nimport { Button, ButtonType } from '../buttons/button';\nimport ScrollViewScreen from '../screens/scroll-view-screen';\nimport Typography from '../text/typography';\nimport { useAppColorScheme } from '../theme/color-scheme-context';\nimport { concatTestID } from '../utils/testID';\n\nexport enum BackupScreenMode {\n Create = 'create',\n Restore = 'restore',\n}\n\nexport type BackupScreenProps = PropsWithChildren<{\n cta: string;\n description: string;\n isCtaDisabled?: boolean;\n onBack: () => void;\n onCta: () => void;\n testID: string;\n title: string;\n}>;\n\nconst BackupScreen: FC<BackupScreenProps> = ({\n children,\n cta,\n description,\n isCtaDisabled,\n onBack,\n onCta,\n testID,\n title,\n}) => {\n const colorScheme = useAppColorScheme();\n\n return (\n <ScrollViewScreen\n header={{\n backgroundColor: colorScheme.white,\n leftItem: <BackButton onPress={onBack} testID={concatTestID(testID, 'back')} />,\n title,\n }}\n scrollView={{\n testID: concatTestID(testID, 'scroll'),\n }}\n style={{ backgroundColor: colorScheme.white }}\n testID={testID}>\n <View style={styles.contentWrapper}>\n <View style={styles.content}>\n <Typography color={colorScheme.text} style={styles.description}>\n {description}\n </Typography>\n\n {children}\n </View>\n\n <View style={styles.bottom}>\n <Button\n disabled={isCtaDisabled}\n onPress={onCta}\n testID={concatTestID(testID, 'mainButton')}\n title={cta}\n type={isCtaDisabled ? ButtonType.Border : ButtonType.Primary}\n />\n </View>\n </View>\n </ScrollViewScreen>\n );\n};\n\nconst styles = StyleSheet.create({\n bottom: {\n flex: 1,\n justifyContent: 'flex-end',\n minHeight: 84,\n },\n content: {\n marginHorizontal: 8,\n },\n contentWrapper: {\n flex: 1,\n marginHorizontal: 12,\n },\n description: {\n marginBottom: 24,\n opacity: 0.7,\n },\n});\n\nexport default BackupScreen;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAiC,OAAO;AACpD,SAASC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAE/C,OAAOC,UAAU,MAAM,wBAAwB;AAC/C,SAASC,MAAM,EAAEC,UAAU,QAAQ,mBAAmB;AACtD,OAAOC,gBAAgB,MAAM,+BAA+B;AAC5D,OAAOC,UAAU,MAAM,oBAAoB;AAC3C,SAASC,iBAAiB,QAAQ,+BAA+B;AACjE,SAASC,YAAY,QAAQ,iBAAiB;AAE9C,WAAYC,gBAAgB;AAG3B,WAHWA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;AAAA,GAAhBA,gBAAgB,KAAhBA,gBAAgB;AAe5B,MAAMC,YAAmC,GAAGC,IAAA,IAStC;EAAA,IATuC;IAC3CC,QAAQ;IACRC,GAAG;IACHC,WAAW;IACXC,aAAa;IACbC,MAAM;IACNC,KAAK;IACLC,MAAM;IACNC;EACF,CAAC,GAAAR,IAAA;EACC,MAAMS,WAAW,GAAGb,iBAAiB,EAAE;EAEvC,oBACER,KAAA,CAAAsB,aAAA,CAAChB,gBAAgB;IACfiB,MAAM,EAAE;MACNC,eAAe,EAAEH,WAAW,CAACI,KAAK;MAClCC,QAAQ,eAAE1B,KAAA,CAAAsB,aAAA,CAACnB,UAAU;QAACwB,OAAO,EAAEV,MAAO;QAACE,MAAM,EAAEV,YAAY,CAACU,MAAM,EAAE,MAAM;MAAE,EAAG;MAC/EC;IACF,CAAE;IACFQ,UAAU,EAAE;MACVT,MAAM,EAAEV,YAAY,CAACU,MAAM,EAAE,QAAQ;IACvC,CAAE;IACFU,KAAK,EAAE;MAAEL,eAAe,EAAEH,WAAW,CAACI;IAAM,CAAE;IAC9CN,MAAM,EAAEA;EAAO,gBACfnB,KAAA,CAAAsB,aAAA,CAACpB,IAAI;IAAC2B,KAAK,EAAEC,MAAM,CAACC;EAAe,gBACjC/B,KAAA,CAAAsB,aAAA,CAACpB,IAAI;IAAC2B,KAAK,EAAEC,MAAM,CAACE;EAAQ,gBAC1BhC,KAAA,CAAAsB,aAAA,CAACf,UAAU;IAAC0B,KAAK,EAAEZ,WAAW,CAACa,IAAK;IAACL,KAAK,EAAEC,MAAM,CAACf;EAAY,GAC5DA,WAAW,CACD,EAEZF,QAAQ,CACJ,eAEPb,KAAA,CAAAsB,aAAA,CAACpB,IAAI;IAAC2B,KAAK,EAAEC,MAAM,CAACK;EAAO,gBACzBnC,KAAA,CAAAsB,aAAA,CAAClB,MAAM;IACLgC,QAAQ,EAAEpB,aAAc;IACxBW,OAAO,EAAET,KAAM;IACfC,MAAM,EAAEV,YAAY,CAACU,MAAM,EAAE,YAAY,CAAE;IAC3CC,KAAK,EAAEN,GAAI;IACXuB,IAAI,EAAErB,aAAa,GAAGX,UAAU,CAACiC,MAAM,GAAGjC,UAAU,CAACkC;EAAQ,EAC7D,CACG,CACF,CACU;AAEvB,CAAC;AAED,MAAMT,MAAM,GAAG7B,UAAU,CAACuC,MAAM,CAAC;EAC/BL,MAAM,EAAE;IACNM,IAAI,EAAE,CAAC;IACPC,cAAc,EAAE,UAAU;IAC1BC,SAAS,EAAE;EACb,CAAC;EACDX,OAAO,EAAE;IACPY,gBAAgB,EAAE;EACpB,CAAC;EACDb,cAAc,EAAE;IACdU,IAAI,EAAE,CAAC;IACPG,gBAAgB,EAAE;EACpB,CAAC;EACD7B,WAAW,EAAE;IACX8B,YAAY,EAAE,EAAE;IAChBC,OAAO,EAAE;EACX;AACF,CAAC,CAAC;AAEF,eAAenC,YAAY"}
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
-
import React, { useCallback, useState } from 'react';
|
|
3
|
-
import { Image, StyleSheet, View } from 'react-native';
|
|
4
|
-
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
5
|
-
import { TouchableOpacity } from '../accessibility/accessibilityHistoryWrappers';
|
|
6
|
-
import { NavigationHeader } from '../header';
|
|
7
|
-
import { CloseIcon } from '../icons';
|
|
8
|
-
import { useAppColorScheme } from '../theme';
|
|
9
|
-
import { concatTestID, ContrastingStatusBar } from '../utils';
|
|
10
|
-
const ImagePreviewScreen = _ref => {
|
|
11
|
-
let {
|
|
12
|
-
image,
|
|
13
|
-
onClose,
|
|
14
|
-
title,
|
|
15
|
-
testID,
|
|
16
|
-
style,
|
|
17
|
-
...viewProps
|
|
18
|
-
} = _ref;
|
|
19
|
-
const colorScheme = useAppColorScheme();
|
|
20
|
-
const insets = useSafeAreaInsets();
|
|
21
|
-
const [imageSize, setImageSize] = useState();
|
|
22
|
-
const layoutHandler = useCallback(event => {
|
|
23
|
-
const {
|
|
24
|
-
width,
|
|
25
|
-
height
|
|
26
|
-
} = event.nativeEvent.layout;
|
|
27
|
-
setImageSize({
|
|
28
|
-
height,
|
|
29
|
-
width
|
|
30
|
-
});
|
|
31
|
-
}, []);
|
|
32
|
-
return /*#__PURE__*/React.createElement(View, _extends({
|
|
33
|
-
style: [styles.screen, {
|
|
34
|
-
backgroundColor: colorScheme.nerdView.background
|
|
35
|
-
}, style],
|
|
36
|
-
testID: testID
|
|
37
|
-
}, viewProps), /*#__PURE__*/React.createElement(ContrastingStatusBar, {
|
|
38
|
-
backgroundColor: colorScheme.nerdView.background
|
|
39
|
-
}), /*#__PURE__*/React.createElement(NavigationHeader, {
|
|
40
|
-
backgroundColor: "transparent",
|
|
41
|
-
blurred: false,
|
|
42
|
-
leftItem: /*#__PURE__*/React.createElement(TouchableOpacity, {
|
|
43
|
-
onPress: onClose,
|
|
44
|
-
testID: concatTestID(testID, 'close')
|
|
45
|
-
}, /*#__PURE__*/React.createElement(CloseIcon, {
|
|
46
|
-
color: colorScheme.white
|
|
47
|
-
})),
|
|
48
|
-
style: {
|
|
49
|
-
paddingTop: insets.top
|
|
50
|
-
},
|
|
51
|
-
title: title,
|
|
52
|
-
titleColor: colorScheme.white,
|
|
53
|
-
testID: concatTestID(testID, 'header')
|
|
54
|
-
}), /*#__PURE__*/React.createElement(View, {
|
|
55
|
-
onLayout: layoutHandler,
|
|
56
|
-
style: styles.imageContainer
|
|
57
|
-
}, imageSize && /*#__PURE__*/React.createElement(Image, {
|
|
58
|
-
accessibilityLabel: title,
|
|
59
|
-
accessibilityRole: "image",
|
|
60
|
-
accessible: true,
|
|
61
|
-
resizeMethod: "resize",
|
|
62
|
-
resizeMode: "contain",
|
|
63
|
-
source: image,
|
|
64
|
-
style: [styles.image, imageSize],
|
|
65
|
-
testID: concatTestID(testID, 'image')
|
|
66
|
-
})));
|
|
67
|
-
};
|
|
68
|
-
const styles = StyleSheet.create({
|
|
69
|
-
image: {
|
|
70
|
-
position: 'absolute'
|
|
71
|
-
},
|
|
72
|
-
imageContainer: {
|
|
73
|
-
alignItems: 'center',
|
|
74
|
-
flex: 1,
|
|
75
|
-
justifyContent: 'center',
|
|
76
|
-
marginHorizontal: 18
|
|
77
|
-
},
|
|
78
|
-
screen: {
|
|
79
|
-
flex: 1
|
|
80
|
-
}
|
|
81
|
-
});
|
|
82
|
-
export default ImagePreviewScreen;
|
|
83
|
-
//# sourceMappingURL=image-preview-screen.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","useCallback","useState","Image","StyleSheet","View","useSafeAreaInsets","TouchableOpacity","NavigationHeader","CloseIcon","useAppColorScheme","concatTestID","ContrastingStatusBar","ImagePreviewScreen","_ref","image","onClose","title","testID","style","viewProps","colorScheme","insets","imageSize","setImageSize","layoutHandler","event","width","height","nativeEvent","layout","createElement","_extends","styles","screen","backgroundColor","nerdView","background","blurred","leftItem","onPress","color","white","paddingTop","top","titleColor","onLayout","imageContainer","accessibilityLabel","accessibilityRole","accessible","resizeMethod","resizeMode","source","create","position","alignItems","flex","justifyContent","marginHorizontal"],"sources":["image-preview-screen.tsx"],"sourcesContent":["import React, { FC, useCallback, useState } from 'react';\nimport { Image, ImageSourcePropType, ImageStyle, LayoutChangeEvent, StyleSheet, View, ViewProps } from 'react-native';\nimport { useSafeAreaInsets } from 'react-native-safe-area-context';\n\nimport { TouchableOpacity } from '../accessibility/accessibilityHistoryWrappers';\nimport { NavigationHeader } from '../header';\nimport { CloseIcon } from '../icons';\nimport { useAppColorScheme } from '../theme';\nimport { concatTestID, ContrastingStatusBar } from '../utils';\n\nexport type ImagePreviewScreenProps = ViewProps & {\n image: ImageSourcePropType;\n onClose: () => void;\n title: string;\n};\n\nconst ImagePreviewScreen: FC<ImagePreviewScreenProps> = ({ image, onClose, title, testID, style, ...viewProps }) => {\n const colorScheme = useAppColorScheme();\n const insets = useSafeAreaInsets();\n\n const [imageSize, setImageSize] = useState<ImageStyle>();\n const layoutHandler = useCallback((event: LayoutChangeEvent) => {\n const { width, height } = event.nativeEvent.layout;\n setImageSize({ height, width });\n }, []);\n\n return (\n <View\n style={[styles.screen, { backgroundColor: colorScheme.nerdView.background }, style]}\n testID={testID}\n {...viewProps}>\n <ContrastingStatusBar backgroundColor={colorScheme.nerdView.background} />\n <NavigationHeader\n backgroundColor=\"transparent\"\n blurred={false}\n leftItem={\n <TouchableOpacity onPress={onClose} testID={concatTestID(testID, 'close')}>\n <CloseIcon color={colorScheme.white} />\n </TouchableOpacity>\n }\n style={{\n paddingTop: insets.top,\n }}\n title={title}\n titleColor={colorScheme.white}\n testID={concatTestID(testID, 'header')}\n />\n\n <View onLayout={layoutHandler} style={styles.imageContainer}>\n {imageSize && (\n <Image\n accessibilityLabel={title}\n accessibilityRole=\"image\"\n accessible={true}\n resizeMethod=\"resize\"\n resizeMode=\"contain\"\n source={image}\n style={[styles.image, imageSize]}\n testID={concatTestID(testID, 'image')}\n />\n )}\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n image: {\n position: 'absolute',\n },\n imageContainer: {\n alignItems: 'center',\n flex: 1,\n justifyContent: 'center',\n marginHorizontal: 18,\n },\n screen: {\n flex: 1,\n },\n});\n\nexport default ImagePreviewScreen;\n"],"mappings":"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"}
|