aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
Commit message (Collapse)AuthorAgeFilesLines
* Signature RequestDan2017-10-263-47/+323
|
* Adds revert feature to customize gas modal.Dan2017-10-261-8/+15
|
* Add Info sectionAlexander Tseung2017-10-261-0/+6
|
* Add GWEI to gas price unitChi Kei Chan2017-10-251-1/+1
|
* Fix gas input styling on mobile viewChi Kei Chan2017-10-252-7/+7
|
* Fix alignment on right arrow of confirm tx screensChi Kei Chan2017-10-252-2/+2
|
* Change download to show in Export Private Key ModalChi Kei Chan2017-10-251-2/+2
|
* Styling and UX changes on sidebarChi Kei Chan2017-10-251-10/+12
|
* Merge branch 'master' into NewUI-flatChi Kei Chan2017-10-253-6/+4
|\
| * Merge pull request #2422 from watilde/fixes-lintKevin Serrano2017-10-254-8/+6
| |\ | | | | | | Fixes lint warnings
| | * Fix lint warningsDaijiro Wachi2017-10-224-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed warnings: ```md app/scripts/controllers/computed-balances.js + 35:27 warning Missing space before function parentheses space-before-function-paren + 41:14 warning 'address' is never reassigned. Use 'const' instead prefer-const + 61:9 warning 'updater' is never reassigned. Use 'const' instead prefer-const + 68:11 warning 'newState' is never reassigned. Use 'const' instead prefer-const app/scripts/controllers/network.js + 104:29 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/createLoggerMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 15:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createOriginMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 9:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createProviderMiddleware.js + 5:34 warning Missing space before function parentheses space-before-function-paren + 13:2 warning Newline required at end of file but not found eol-last app/scripts/lib/events-proxy.js + 1:50 warning Missing space before function parentheses space-before-function-paren + 31:2 warning Newline required at end of file but not found eol-last app/scripts/lib/nodeify.js + 2:22 warning Missing space before function parentheses space-before-function-paren + 2:24 warning Missing space before opening brace space-before-blocks + 5:18 warning Missing space before function parentheses space-before-function-paren + 5:20 warning Missing space before opening brace space-before-blocks app/scripts/lib/pending-balance-calculator.js + 16:19 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/pending-tx-tracker.js + 85:11 warning '||' should be placed at the end of the line operator-linebreak + 87:11 warning '||' should be placed at the end of the line operator-linebreak + 88:11 warning '||' should be placed at the end of the line operator-linebreak + 90:11 warning '||' should be placed at the end of the line operator-linebreak + 91:11 warning '||' should be placed at the end of the line operator-linebreak app/scripts/lib/port-stream.js + 3:22 warning Missing space before function parentheses space-before-function-paren + 3:24 warning Missing space before opening brace space-before-blocks app/scripts/lib/tx-gas-utils.js + 84:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-history-helper.js + 12:37 warning Missing space before function parentheses space-before-function-paren + 23:30 warning Missing space before function parentheses space-before-function-paren + 30:23 warning Missing space before function parentheses space-before-function-paren + 35:28 warning Missing space before function parentheses space-before-function-paren + 41:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-manager.js + 94:13 warning 'value' is never reassigned. Use 'const' instead prefer-const ui/app/reducers.js + 45:7 warning 'state' is never reassigned. Use 'const' instead prefer-const + 53:7 warning 'stateString' is never reassigned. Use 'const' instead prefer-const ui/lib/tx-helper.js + 27:2 warning Newline required at end of file but not found eol-last ui/app/components/account-dropdowns.js + 163:1 warning More than 2 blank lines not allowed no-multiple-empty-lines ui/app/components/menu-droppo.js + 22:7 warning 'style' is never reassigned. Use 'const' instead prefer-const ui/app/components/shapeshift-form.js + 135:11 warning '&&' should be placed at the end of the line operator-linebreak ui/app/components/typed-message-renderer.js + 35:25 warning Missing space before function parentheses space-before-function-paren + 42:2 warning Newline required at end of file but not found eol-last mascara/server/index.js + 11:42 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 12:36 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 13:33 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 14:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 20:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 21:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 26:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat ```
* | | Hide sidebar on add tokenChi Kei Chan2017-10-251-1/+4
| | |
* | | Merge branch 'master' into NewUI-flatChi Kei Chan2017-10-257-1/+17
|\| |
| * | Merge branch 'firsttimeflow' of ↵tmashuang2017-10-246-0/+16
| |\ \ | | | | | | | | | | | | https://github.com/chikeichan/metamask-plugin into firsttimeflow
| | * | Fix linterChi Kei Chan2017-10-216-0/+16
| | |/
| * / Add support for alternative ENS TLDsDan Finlay2017-10-231-1/+1
| |/ | | | | | | Fixes #2428
* | Simply logic for rendering matching accounts in to-autocomplete dropdown.Dan2017-10-251-12/+4
| |
* | Style dropdown of to-autocomplete.Dan2017-10-252-29/+105
| |
* | Disable network dropdown on conf tx screenChi Kei Chan2017-10-241-1/+6
| |
* | Change clickable area for account detail; change network dot sizeChi Kei Chan2017-10-241-2/+4
| |
* | Fix styling in private key modalChi Kei Chan2017-10-241-1/+0
| |
* | Add "Add Token" button to side barChi Kei Chan2017-10-241-0/+5
| |
* | Fix clickable area on logoutChi Kei Chan2017-10-241-2/+3
| |
* | Account menu white check markChi Kei Chan2017-10-242-6/+7
| |
* | New Sidebar upliftChi Kei Chan2017-10-242-57/+36
| |
* | Change LOOSE label to IMPORTEDChi Kei Chan2017-10-241-1/+1
| |
* | Improve customize gas modal error handlingDan2017-10-245-36/+177
| |
* | Cleaner implementation of currency-display input.Dan2017-10-241-22/+14
| |
* | Merge pull request #2433 from danjm/NewUI-flat-precision-improvementsChi Kei Chan2017-10-242-3/+5
|\ \ | | | | | | [NewUI] Improves precision of a calculation in send, and in confirm
| * | Improve precision in send and confirm.Dan2017-10-242-3/+5
| | |
* | | Merge pull request #2434 from danjm/NewUI-flat-clear-send-stateChi Kei Chan2017-10-241-0/+1
|\ \ \ | | | | | | | | [NewUI] Clear send state on cancelling and signing.
| * | | Clear send state on cancelling and signing.Dan2017-10-241-0/+1
| |/ /
* | | Merge pull request #2431 from alextsg/nu-2406Chi Kei Chan2017-10-243-4/+4
|\ \ \ | | | | | | | | [NewUI] Change all "Buy" to "Deposit"
| * | | Change all "Buy" to "Deposit"Alexander Tseung2017-10-233-4/+4
| |/ /
* / / Update settings screen to new UIAlexander Tseung2017-10-232-30/+124
|/ /
* | Fix Conversions bugs; Fiat value bugsChi Kei Chan2017-10-214-6/+20
| |
* | Add resiliency to confirm-send-tokenChi Kei Chan2017-10-211-5/+5
| |
* | Merge pull request #2410 from alextsg/nu-2280Chi Kei Chan2017-10-212-42/+35
|\ \ | | | | | | [NewUI] Fix loading animation not showing on network change
| * | Fix loading animation not showing on network changeAlexander Tseung2017-10-202-42/+35
| | |
* | | Fixes regression in confirm-send-tokenDan2017-10-211-2/+4
|/ /
* | Fix network dropdown stylesChi Kei Chan2017-10-201-1/+1
| |
* | various styling fix on mobileChi Kei Chan2017-10-201-4/+4
| |
* | Fix selectorsChi Kei Chan2017-10-202-5/+4
| |
* | Merge branch 'NewUI-flat' into MM-128-get-currentCurrency-from-stateChi Kei Chan2017-10-201-17/+34
|\ \
| * | Min and default gas price, limit, total; comments out code for gas slider.Dan2017-10-203-15/+43
| | |
| * | Identicon in send token show who you are sending to, not the token's identicon.Dan2017-10-201-3/+3
| | |
| * | Fix handling of arithmetic on token gas in confirm-send-token.Dan2017-10-201-16/+33
| | |
* | | Get currency from state in account details, send and confirm screens.Dan2017-10-209-62/+74
| | |
* | | Min and default gas price, limit, total; comments out code for gas slider.Dan2017-10-203-15/+43
|/ /
* | Fixes mobile styling.Dan2017-10-201-1/+1
| |
* | Merge branch 'NewUI-flat' into mergeChi Kei Chan2017-10-1964-721/+6200
|\ \ | |/ |/|
| * Fix cancel button on send screen.Dan2017-10-191-0/+1
| |
| * Handling to and amount errors.Dan2017-10-193-13/+21
| |
| * Move all of send state to metamask state.Dan2017-10-194-19/+24
| |
| * Get from and update addressBook in send-v2Dan2017-10-191-4/+8
| |
| * Network dropdown updateChi Kei Chan2017-10-181-1/+2
| |
| * New Account modalChi Kei Chan2017-10-182-53/+51
| |
| * wipChi Kei Chan2017-10-183-7/+113
| |
| * Enable send-v2 functionality.Dan2017-10-183-7/+21
| |
| * Fix Import Account link not hiding sidebarAlexander Tseung2017-10-162-3/+9
| |
| * Customize Gas connected to stateDan2017-10-163-14/+80
| |
| * Fix cursor on unclickable transactions (#2356)Alexander Tseung2017-10-141-3/+9
| |
| * Fix exception thrown when tokens is null (#2355)Alexander Tseung2017-10-141-1/+2
| |
| * Fix Localhost 8545 option in network dropdown (#2357)Alexander Tseung2017-10-141-1/+1
| |
| * Fix styling for Accept buttons in notices (#2358)Alexander Tseung2017-10-141-1/+1
| |
| * Fix click to copy for private key not working (#2360)Alexander Tseung2017-10-142-3/+7
| |
| * [NewUI] SendV2-#8: Send container handles tokens; gas info dynamic from ↵Dan J Miller2017-10-1413-52/+445
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | state (#2364) * Adds memo field to send-v2. * Vertical align transaction with flexbox. * Customize Gas UI * Remove internal state from InputNumber and fix use in gastooltip. * Move customize-gas-modal to its own folder and minor cleanup * Create send container, get account info from state, and make currency display more reusable * Adjusts send-v2 and container for send-token. Dynamically getting suggested gas prices.
| * Adding Account Dropdown V2Chi Kei Chan2017-10-132-0/+100
| |
| * Various styling fixesChi Kei Chan2017-10-132-3/+10
| |
| * Refactor amount input: dynamic input width with vanilla js.Dan2017-10-131-41/+32
| |
| * Send v2 amount unit moves correctly.Dan2017-10-131-1/+19
| |
| * Adds amount and gas field to sendV2.Dan2017-10-131-0/+85
| |
| * Send v2 to autocomplete.Dan2017-10-111-0/+55
| |
| * Fix recipient on send tokenChi Kei Chan2017-10-111-2/+4
| |
| * Confirm Token and Confirm Contract v2Chi Kei Chan2017-10-112-36/+39
| |
| * Confirm eth v2Chi Kei Chan2017-10-111-19/+19
| |
| * Refactor 'rendersingleidentity' to a stand alone account-list-item component.Dan2017-10-102-49/+71
| |
| * UI for readonly from component. From dropdown opening and closing. Mockdata.Dan2017-10-101-0/+94
| |
| * Edit account modal shows and allows editing of name from props, not just ↵Dan2017-10-091-2/+3
| | | | | | | | placeholder.
| * Merge branch 'master' into NewUI-flatChi Kei Chan2017-10-041-6/+22
| |\
| * | Enables remove token and ensures add/remove update the list without need for ↵Dan2017-10-043-8/+23
| | | | | | | | | | | | refresh.
| * | Add needed iterator in tx-list and path to account in selectors.Dan2017-10-031-1/+6
| | |
| * | Hide token confirmation modal uiDan2017-10-034-3/+97
| | |
| * | Token menu ui.Dan2017-10-022-0/+56
| | |
| * | Shapeshift deposit tx modal.Dan2017-10-024-2/+54
| | |
| * | Enables the old shapeshift UI within new ui.Dan2017-10-022-2/+4
| | |
| * | Query for gas estimatesChi Kei Chan2017-09-291-2/+16
| | |
| * | Hide ShapeShift and Fix Modal StylingsChi Kei Chan2017-09-292-13/+52
| | |
| * | Always set currency to USD on app mountChi Kei Chan2017-09-294-4/+3
| | |
| * | Ensure sent token value is recognized as hex.Dan2017-09-291-1/+1
| | |
| * | Close sidebar on token selection.Dan2017-09-292-4/+20
| | |
| * | Close mobile sidebar when selecting 'Add token' from account options dropdown.Dan2017-09-291-0/+2
| | |
| * | Merge branch 'master' into mmnChi Kei Chan2017-09-281-1/+2
| |\ \
| * | | Use font-awesome icons for create and import account.Dan2017-09-281-9/+5
| | | |
| * | | Makes styling fixes to account dropdown.Dan2017-09-281-7/+10
| | | |
| * | | Keep privateKey out of state and clear it after closing export private key ↵Dan2017-09-281-7/+14
| | | | | | | | | | | | | | | | modal.
| * | | Adds a back button to export private key modal; connects account details to ↵Dan2017-09-283-5/+41
| | | | | | | | | | | | | | | | same modal.
| * | | Implement Confirm Deploy Contract screenChi Kei Chan2017-09-272-0/+350
| | | |
| * | | Update the correct values in state when estimates are received.Dan2017-09-271-8/+6
| | | |
| * | | Gets gas and price estimates when send components mount.Dan2017-09-271-20/+12
| | | |
| * | | Return null if transaction.key is shapeshiftChi Kei Chan2017-09-271-1/+6
| | | |
| * | | Connect export key modal to state and enable actions.Dan2017-09-272-14/+77
| | | |
| * | | Merge branch 'NewUI-flat' into MM-57-use-gas-estimatorChi Kei Chan2017-09-262-1/+26
| |\ \ \
| | * | | Select all in to and from of send screens, instead of clearing on focus.Dan2017-09-261-1/+1
| | | | |
| | * | | Able to change selections in to and from fields of send and send token.Dan2017-09-261-0/+1
| | | | |
| | * | | Export private key modal body ui.Dan2017-09-261-0/+22
| | | | |
| * | | | Send token now estimates gas and price.Dan2017-09-261-8/+37
| | | | |
| * | | | Update send token to handle errors onBlur events and prevent clicking send ↵Dan2017-09-261-12/+59
| | | | | | | | | | | | | | | | | | | | until all errors handled
| * | | | Handles errors with to field and renders warnings from backend in send token.Dan2017-09-261-1/+1
| |/ / /
| * | | Exports private key modal opens from dropdown.Dan2017-09-243-19/+72
| | | |
| * | | Add Confirm Send token screenChi Kei Chan2017-09-234-34/+453
| | | |
| * | | get identities from getState() instead of passing from caller, only set new ↵Dan2017-09-231-6/+6
| | | | | | | | | | | | | | | | account label if label set.
| * | | New account modal now allows for addition of account name.Dan2017-09-231-4/+16
| | | |
| * | | Default class params to empty string in readonly-inputDan2017-09-231-2/+2
| | | |
| * | | ReadOnlyInput component.Dan2017-09-232-12/+33
| | | |
| * | | Open account details modal on buy -> direct deposit.Dan2017-09-231-1/+11
| | | |
| * | | Refactor Confirmation Tx to render different screenChi Kei Chan2017-09-222-183/+163
| | | |
| * | | Integrate Add TokenChi Kei Chan2017-09-222-6/+10
| | | |
| * | | Abstract account modal.Dan2017-09-223-36/+66
| | | |
| * | | Confirm screen shows amount plus gas in total fieldDan2017-09-221-6/+19
| | | |
| * | | Handles errors with to field and renders warnings from backend in send token.Dan2017-09-221-11/+17
| | | |
| * | | Buy Modal StylingChi Kei Chan2017-09-201-3/+4
| | | |
| * | | Merge branch 'master' into NewUI-flatChi Kei Chan2017-09-193-3/+3
| |\ \ \
| * \ \ \ Merge branch 'master' into NewUI-flatChi Kei Chan2017-09-191-0/+9
| |\ \ \ \
| * | | | | Fix Merge Problems; update yarn lockChi Kei Chan2017-09-191-1/+7
| | | | | |
| * | | | | Merge branch 'master' into nmChi Kei Chan2017-09-198-31/+189
| |\ \ \ \ \
| * | | | | | Handle transaction totals in WEI in tx-list, send and pending.Dan2017-09-162-0/+6
| | | | | | |
| * | | | | | Ensures that new accounts are only created from the modal, and not when ↵Dan2017-09-162-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | clicking 'Create New Account'
| * | | | | | Adds USD to token list.Dan2017-09-161-3/+37
| | | | | | |
| * | | | | | Show dollar sign before USD on account details page.Dan2017-09-162-4/+6
| | | | | | |
| * | | | | | Show token tx properlyChi Kei Chan2017-09-143-27/+97
| | | | | | |
| * | | | | | Update yarn.lock; Fix tx-list-item overflow; Fix gas exchange rateChi Kei Chan2017-09-142-24/+50
| | | | | | |
| * | | | | | Fix send and pending.Dan2017-09-141-1/+1
| | | | | | |
| * | | | | | Stop setting 'currentCurrency' and use local state for active currency in ↵Dan2017-09-144-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | send.js
| * | | | | | Enables Cancel button in confirmation screen.Dan2017-09-141-2/+11
| | | | | | |
| * | | | | | Fixes the saving of transactions in send and display in tx-list with ↵Dan2017-09-142-8/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | conversion utility.
| * | | | | | Reapply conversion utility changes and fix calls to utility in pending-tx.Dan2017-09-141-9/+21
| | | | | | |
| * | | | | | Add token exchange ratesChi Kei Chan2017-09-134-14/+54
| | | | | | |
| * | | | | | Improve styling in Confirmation Screen; Show decoded send token dataChi Kei Chan2017-09-131-175/+164
| | | | | | |
| * | | | | | Revert "Overhaul currency conversion utility and update calls to utility in ↵Chi Kei Chan2017-09-131-20/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pending-tx." This reverts commit 080890a46ec98814bce8680f561fae3b52d81ed2.
| * | | | | | Overhaul currency conversion utility and update calls to utility in pending-tx.Dan2017-09-131-10/+20
| | | | | | |
| * | | | | | [NewUI] Color tx-list-item text depending on transaction status. (#2050)Dan J Miller2017-09-131-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Color tx-list-item text depending on transaction status. * Handle css change of text colour with scss instead on inline styles, add classnames package and helper function. * Refactored to use classnames with component property className.
| * | | | | | Added signTokenTx; Adding token confirmation screenChi Kei Chan2017-09-122-14/+44
| | | | | | |
| * | | | | | Add frontend validation to send-tokenChi Kei Chan2017-09-123-11/+93
| | | | | | |
| * | | | | | [New-UI] Confirm Screen restyle and connect to state (#2042)Dan J Miller2017-09-121-197/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adds utility for converting currencies (WIP) * Implements confirm screen * Style tweaks. * Confirm screen total ammount now uses real data. * Confirm screen total ammount now uses real data. * Replace content divider with sibling css. * Replace section divider with scss.
| * | | | | | Add buttons; handle back; add yarn.lockChi Kei Chan2017-09-123-26/+51
| | | | | | |
| * | | | | | Cleaner css for circle icon.Dan2017-09-122-17/+9
| | | | | | |
| * | | | | | Replace checkmark with font-awesome equivalent.Dan2017-09-121-6/+6
| | | | | | |
| * | | | | | Adds title, divider and descriptive text to network dropdown.Dan2017-09-121-0/+11
| | | | | | |
| * | | | | | Highlighted circle icons for the network menu.Dan2017-09-123-10/+78
| | | | | | |
| * | | | | | Style send token screenChi Kei Chan2017-09-115-30/+27
| | | | | | |
| * | | | | | New account modal top right close button working.Dan2017-09-091-1/+3
| | | | | | |
| * | | | | | Tweak styles in new-account-modal.Dan2017-09-091-2/+2
| | | | | | |
| * | | | | | Re-enable Contract tx list itemChi Kei Chan2017-09-082-19/+8
| | | | | | |
| * | | | | | Fix css merge conflictsChi Kei Chan2017-09-081-1/+1
| | | | | | |
| * | | | | | Modify readonly value in for input in qr-code.Dan2017-09-081-1/+1
| | | | | | |
| * | | | | | Account-detail address is a readonly input.Dan2017-09-081-2/+4
| | | | | | |
| * | | | | | Close button in account-details-modal working.Dan2017-09-081-1/+3
| | | | | | |
| * | | | | | Touch up style of account-details-modal.Dan2017-09-081-0/+2
| | | | | | |
| * | | | | | Modify status copy for status === 'unapproved'Dan2017-09-081-0/+1
| | | | | | |
| * | | | | | Link user from transaction list to etherscan if they have a transaction hash.Dan2017-09-082-3/+28
| | | | | | |
| * | | | | | Create tx-list-item component.Dan2017-09-082-74/+107
| | | | | | |
| * | | | | | Show confirm transaction screen when clicking a pending transaction in the list.Dan2017-09-082-3/+15
| | | | | | |
| * | | | | | Send Token screen partial UIChi Kei Chan2017-09-073-3/+219
| | | | | | |
| * | | | | | Add Contract Tx List Item; Update Token Tx on selectChi Kei Chan2017-09-074-22/+32
| | | | | | |
| * | | | | | Show token balance and identiconChi Kei Chan2017-09-077-57/+90
| | | | | | |
| * | | | | | Adding Token transaction detail screenChi Kei Chan2017-09-066-77/+213
| | | | | | |
| * | | | | | Fix token listChi Kei Chan2017-09-062-15/+24
| | | | | | |
| * | | | | | Implement tokens list UIChi Kei Chan2017-09-065-104/+83
| | | | | | |
| * | | | | | Touch up transaction list item styles, remove main-content scroll bars, ↵Dan2017-09-051-40/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | align buttons with main-content..
| * | | | | | Capitalizations via text-transform for main screen transactions.Dan2017-09-051-2/+2
| | | | | | |
| * | | | | | Fix header style; Address commentsChi Kei Chan2017-09-055-39/+37
| | | | | | |
| * | | | | | Fix merge conflictChi Kei Chan2017-09-051-6/+0
| | | | | | |
| * | | | | | Fix menu styleJacky Chan2017-09-054-38/+87
| | | | | | |
| * | | | | | Lint fixesDan2017-08-3125-166/+144
| | | | | | |
| * | | | | | Refactor gas-fee-display to include usd and eth fee displays as separate ↵Dan2017-08-313-30/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | components.
| * | | | | | Move gas fee to a separate component.Dan2017-08-311-0/+53
| | | | | | |
| * | | | | | Move currency toggle to its own component.Dan2017-08-312-1/+27
| | | | | | |
| * | | | | | Clean up send.js and eth-balance.js with es6.Dan2017-08-311-33/+25
| | | | | | |
| * | | | | | Minor clean up.Dan2017-08-301-6/+1
| | | | | | |
| * | | | | | Center tooltip on small screen size by using flexboxDan2017-08-301-1/+6
| | | | | | |
| * | | | | | Use hex values only in send.js to handle limit and price; GasTooltip accepts ↵Dan2017-08-291-7/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | and returns values as hex (allows user to enter floats)
| * | | | | | Using eth balance component to ensure proper rounding.Dan2017-08-292-28/+43
| | | | | | |
| * | | | | | Refactor for clean handling of tooltip close.Dan2017-08-291-88/+46
| | | | | | |
| * | | | | | Styles and behaviour correctDan2017-08-291-9/+11
| | | | | | |
| * | | | | | Fully connect gas data in send form and tooltip to state; final styling ↵Dan2017-08-262-8/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | improvements. Fully connect gas fields in send form and tooltip to state
| * | | | | | Tooltip closing on click outside.Dan2017-08-261-6/+56
| | | | | | |
| * | | | | | Refactor tooltip to remove external lib; tooltip now updating gas fee in parent.Dan2017-08-263-66/+136
| | | | | | |
| * | | | | | Toggling tooltip.Dan2017-08-261-0/+66
| | | | | | |
| * | | | | | Patch 3 new account modal (#1962)Dan J Miller2017-08-252-13/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Account details modal styling changes. * Tweaking styles. * New account modal re-styling. * Tweaks to paddings, margins, font sizes, colors and modal dimensions. * Replace colour codes with variables.
| * | | | | | Patch 2 account details modal (#1957)Dan J Miller2017-08-254-19/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Account details modal styling changes. * Tweaking styles.
| * | | | | | Modify buy and send buttons color, border-radius and various size ↵Dan J Miller2017-08-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | properties. (#1956)
| * | | | | | Hook up showAddToken to dropdown menu item in account options dropdownsdtsui2017-08-231-1/+4
| | | | | | |
| * | | | | | Render TxListItem component from real data: address, identicon, status, ETH ↵sdtsui2017-08-231-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | value
| * | | | | | Remove fake transactions and balances from tx-list and wallet-view, respectivelysdtsui2017-08-232-70/+10
| | | | | | |
| * | | | | | Add layout and props for send screen inputssdtsui2017-08-231-9/+2
| | | | | | |
| * | | | | | Hook up send screen action to Send Button in TxViewsdtsui2017-08-222-1/+5
| | | | | | |
| * | | | | | Hook up identicon and buttons to AccountDetailsModal, clean up colorssdtsui2017-08-225-34/+28
| | | | | | |
| * | | | | | Integrate old QR component with new modal layoutsdtsui2017-08-222-27/+31
| | | | | | |
| * | | | | | [WIP] Render a QR code in AccountDetailsModalsdtsui2017-08-222-8/+6
| | | | | | |
| * | | | | | [WIP] Aggregate data for QRViewsdtsui2017-08-222-3/+18
| | | | | | |
| * | | | | | Add wrapper CSS for NewAccountModalsdtsui2017-08-211-39/+29
| | | | | | |
| * | | | | | Add wrapper CSS for AccountDetailsModalsdtsui2017-08-212-32/+36
| | | | | | |
| * | | | | | Hook up hideModal action to close icon in EditAccountNameModalsdtsui2017-08-211-1/+5
| | | | | | |
| * | | | | | Hook up selected account label display to main wallet viewsdtsui2017-08-211-4/+3
| | | | | | |
| * | | | | | Hook up actions to EditAccountNameModalsdtsui2017-08-215-89/+90
| | | | | | |
| * | | | | | Enhance global modal to accept styles from different componentssdtsui2017-08-211-45/+62
| | | | | | |
| * | | | | | Implement new dropdown design, integrate account balancessdtsui2017-08-213-27/+67
| | | | | | |
| * | | | | | Hook up edit account name modalsdtsui2017-08-211-26/+42
| | | | | | |
| * | | | | | Remove old design - 'Show QR Code' dropdown menu item from account selection ↵sdtsui2017-08-211-16/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | dropdown
| * | | | | | Hook up template for New Account Modalsdtsui2017-08-213-1/+95
| | | | | | |
| * | | | | | Enhance global modal to handle Buy, Edit, and Details Modalssdtsui2017-08-217-52/+169
| | | | | | |
| * | | | | | Extend modal implementation and state management to accomodate multiple ↵sdtsui2017-08-212-4/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | modal types
| * | | | | | Add 'Account Details' dropdown menu item to account options dropdownsdtsui2017-08-211-0/+14
| | | | | | |
| * | | | | | Add 'Add Token' dropdown menu item to account options dropdownsdtsui2017-08-211-0/+15
| | | | | | |
| * | | | | | [WiP] Add comments for multiple modalssdtsui2017-08-151-0/+20
| | | | | | |
| * | | | | | Merge remote-tracking branch 'mm/master' into NewUI-flatsdtsui2017-08-142-47/+120
| |\ \ \ \ \ \
| * | | | | | | Lint and cleanup all scsssdtsui2017-08-141-2/+2
| | | | | | | |
| * | | | | | | Center account selection dropdown and specify useCssTransition propsdtsui2017-08-142-5/+8
| | | | | | | |
| * | | | | | | Reconfigure AccoutSelector dropdown to use new fa-caret-down instead of old iconsdtsui2017-08-141-1/+3
| | | | | | | |
| * | | | | | | Extract dropdown component into components/dropdowns, hook up to appsdtsui2017-08-146-16/+73
| | | | | | | |
| * | | | | | | Fix odd relative position conflict so main icon is rounded - See ↵sdtsui2017-08-141-22/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | flyswatter/jazzicon/issues/1
| * | | | | | | Remove unused code - network dropdown components in appsdtsui2017-08-141-10/+2
| | | | | | | |
| * | | | | | | [WIP] Extract network dropdown into own componentsdtsui2017-08-142-28/+45
| | | | | | | |
| * | | | | | | [WIP] Extract network dropdown out of main app render functionsdtsui2017-08-143-6/+277
| | | | | | | |
| * | | | | | | Move global modals into own pod, inside components/modalssdtsui2017-08-143-3/+40
| | | | | | | |
| * | | | | | | Implement infinite scrolls (no lazy loading) for wallet viewsdtsui2017-08-121-147/+23
| | | | | | | |
| * | | | | | | [WIP] Begin fixing responsive layout with many walletssdtsui2017-08-111-0/+51
| | | | | | | |
| * | | | | | | Implement responsive wallet balancessdtsui2017-08-111-17/+129
| | | | | | | |
| * | | | | | | Add UI tweaks, including separation of overflow logic for mobile ↵sdtsui2017-08-111-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (full-height) vs laptop (tx-view-only)
| * | | | | | | Improve text positioning on mobile viewsdtsui2017-08-111-11/+13
| | | | | | | |
| * | | | | | | Implement widescreen layout for tx listsdtsui2017-08-111-30/+28
| | | | | | | |
| * | | | | | | Move Txs list item styles into classessdtsui2017-08-111-37/+17
| | | | | | | |
| * | | | | | | Cleanup txList and txView componentssdtsui2017-08-112-48/+87
| | | | | | | |
| * | | | | | | added logging for account balanceSimon Liang2017-08-101-1/+3
| | | | | | | |
| * | | | | | | reverted my changesSimon Liang2017-08-101-17/+17
| | | | | | | |
| * | | | | | | connected wallet view dropdown button with real dataSimon Liang2017-08-101-17/+17
| | | | | | | |
| * | | | | | | redid tx-view and balance-component mapStateToProps logicSimon Liang2017-08-102-23/+27
| | | | | | | |
| * | | | | | | moved the props initialization steps into mapStateToPropsSimon Liang2017-08-101-14/+13
| | | | | | | |
| * | | | | | | extracted transaction listSimon Liang2017-08-102-102/+151
| | | | | | | |
| * | | | | | | removing styling commentsSimon Liang2017-08-101-4/+0
| | | | | | | |
| * | | | | | | [WIP] Position account potions dropdown correctly and hook up to action creatorssdtsui2017-08-103-42/+73
| | | | | | | |
| * | | | | | | Adjust modal styles to match new modal size, from cancel button tweaksdtsui2017-08-101-1/+1
| | | | | | | |
| * | | | | | | Switch buy modal 'cancel' from text to button for accessibilitysdtsui2017-08-101-3/+9
| | | | | | | |
| * | | | | | | Vertically center modal in mobile view - @cjeriasdtsui2017-08-101-1/+4
| | | | | | | |
| * | | | | | | Merge branch 'master' into NewUI-flatkumavis2017-08-094-75/+94
| |\ \ \ \ \ \ \
| * | | | | | | | Fix dropdown z-index valuesdtsui2017-08-091-1/+1
| | | | | | | | |
| * | | | | | | | Add backdrop styles and box shadow to new global modal defaultssdtsui2017-08-091-0/+7
| | | | | | | | |
| * | | | | | | | Add minor comments and cleanup for new componentssdtsui2017-08-092-13/+15
| | | | | | | | |
| * | | | | | | | Hook up 'Buy with Fiat', redirect to Coinbasesdtsui2017-08-091-7/+10
| | | | | | | | |