Skip to content

Commit

Permalink
Fixes after merging develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jorbuedo committed May 21, 2024
1 parent c19c7a3 commit eed19ad
Show file tree
Hide file tree
Showing 6 changed files with 397 additions and 267 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,12 @@ const MnemonicInput = ({defaultMnemonic, userEntries, onPress}: MnemonicInputPro
disabled={!isLast || !recoveryWordError}
style={styles.wordBadge}
>
<Animated.View style={styles.wordBadgeView} layout={LinearTransition} entering={FadeIn} exiting={FadeOut}>
<Animated.View
style={styles.wordBadgeView}
layout={LinearTransition}
entering={FadeIn}
exiting={FadeOut}
>
<WordBadge
word={`${(index + 1).toString()}.`}
used
Expand Down Expand Up @@ -298,7 +303,12 @@ const WordBadges = ({
disabled={isUsed}
onPress={() => selectWord(entry)}
>
<Animated.View layout={LinearTransition} entering={FadeIn} exiting={FadeOut} style={[styles.wordBadgeContainer]}>
<Animated.View
layout={LinearTransition}
entering={FadeIn}
exiting={FadeOut}
style={[styles.wordBadgeContainer]}
>
<LinearGradient
style={[StyleSheet.absoluteFill, {opacity: 1}]}
start={{x: 1, y: 0}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"start": {
"line": 240,
"column": 23,
"index": 7948
"index": 7928
},
"end": {
"line": 243,
"column": 3,
"index": 8081
"index": 8061
}
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
[
{
"id": "components.walletinit.walletform.walletNameInputLabel",
"defaultMessage": "!!!Wallet name",
"file": "src/features/SetupWallet/legacy/WalletForm.tsx",
"start": {
"line": 142,
"column": 24,
"index": 5315
},
"end": {
"line": 145,
"column": 3,
"index": 5423
}
},
{
"id": "components.walletinit.walletform.newPasswordInput",
"defaultMessage": "!!!Spending password",
"file": "src/features/SetupWallet/legacy/WalletForm.tsx",
"start": {
"line": 146,
"column": 20,
"index": 5445
},
"end": {
"line": 149,
"column": 3,
"index": 5555
}
},
{
"id": "components.walletinit.walletform.continueButton",
"defaultMessage": "!!!Continue",
"file": "src/features/SetupWallet/legacy/WalletForm.tsx",
"start": {
"line": 150,
"column": 18,
"index": 5575
},
"end": {
"line": 153,
"column": 3,
"index": 5674
}
},
{
"id": "components.walletinit.createwallet.createwalletscreen.passwordLengthRequirement",
"defaultMessage": "!!!Minimum characters",
"file": "src/features/SetupWallet/legacy/WalletForm.tsx",
"start": {
"line": 154,
"column": 31,
"index": 5707
},
"end": {
"line": 157,
"column": 3,
"index": 5848
}
},
{
"id": "components.walletinit.walletform.repeatPasswordInputLabel",
"defaultMessage": "!!!Repeat password",
"file": "src/features/SetupWallet/legacy/WalletForm.tsx",
"start": {
"line": 158,
"column": 28,
"index": 5878
},
"end": {
"line": 161,
"column": 3,
"index": 5994
}
},
{
"id": "components.walletinit.walletform.repeatPasswordInputError",
"defaultMessage": "!!!Passwords do not match",
"file": "src/features/SetupWallet/legacy/WalletForm.tsx",
"start": {
"line": 162,
"column": 28,
"index": 6024
},
"end": {
"line": 165,
"column": 3,
"index": 6147
}
}
]
3 changes: 2 additions & 1 deletion packages/explorers/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
};
plugins: [['@babel/plugin-transform-private-methods', {loose: true}]],
}
6 changes: 6 additions & 0 deletions packages/explorers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,19 @@
"statements": 100
}
},
"moduleNameMapper": {
"^react-native$": "<rootDir>/node_modules/react-native"
},
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"preset": "react-native",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!react-native-mmkv)/"
]
},
"devDependencies": {
Expand Down
Loading

0 comments on commit eed19ad

Please sign in to comment.