-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: externalize send form components (#695)
* dev: switch to kristapsks backend branch * dev: add directSendTxFee to feature toggles * dev: add tx_fee to DirectSendRequest * refactor: reusable TxFeeInputField component * refactor: move validate method of tx fee input field * refactor(wip): split send form into reusable components * refactor: pass loadNewWalletAddress to SendFrom * refactor: SourceJarSelector component * fix(ui): do not display number input as textfield on Send page * fix(style): input groups with validation in SendForm * build(deps): update formik from v2.2.9 to v2.4.5 * ui(send): show form feedback for source jar index value
- Loading branch information
1 parent
101ab4a
commit a246ad3
Showing
30 changed files
with
1,633 additions
and
1,126 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.inputLoader { | ||
height: 3.5rem; | ||
border-radius: 0.25rem; | ||
} | ||
|
||
.input { | ||
height: 3.5rem; | ||
width: 100%; | ||
} | ||
|
||
.button { | ||
font-size: 0.875rem !important; | ||
} |
Oops, something went wrong.