aboutsummaryrefslogtreecommitdiffstats
path: root/yarn.lock
Commit message (Collapse)AuthorAgeFilesLines
* Right-to-left CSS (using module for conversion) (#7072)Nick Doiron2019-09-041-2/+63
| | | | | | | | | | | | | | | | | | | | | | | * Create RTL stylesheets using `gulp-rtl` * Handle RTL stylesheet special cases Certain blocks of Sass were set to bypass "rtlcss" using ignore comments. Certain icons had to be flipped 180 degrees. * Switch stylesheets when locale changes A second stylesheet has been added to each HTML page for use with right-to-left locales. It is disabled by default. It is enabled on startup if a RTL locale is set, and when switching to a RTL locale. Similarly the LTR stylesheet is disabled when a RTL locale is used. Unfortunately there is an unpleasant flash of unstyled content when switching between a LTR and a RTL locale. There is also a slightly longer page load time when using a RTL locale (<1s difference). We couldn't think of an easy way to avoid these problems. * Set `dir="auto"` as default on `TextFields`
* Remove Babel 6 from internal dependencies (#7037)Erik Marks2019-08-271-191/+135
| | | | | | remove babel@6 from internal deps update internal deps to latest published versions
* Update mobile sync (#6967)Bruno Barbieri2019-08-071-4/+4
| | | | | | * update mobile sync * update lockfile
* Upgrade to Babel 7 (#6942)Mark Stacey2019-08-021-220/+390
| | | | | | | Babel 7 moved to a new configuration format, and they've scoped all of their packages under `@babel/`. This brings MetaMask in-line with dependencies we use that _already_ use Babel 7, and it eliminates a few unfortunate edge cases that can prevent dependencies from being correctly transpiled.
* Address book send plus contact list (#6914)Dan J Miller2019-08-011-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Style Send Header * Move Send to-row to send view and restyle * Add "Recents" group to select recipient view * Rename SendToRow to AddRecipient * Basic UI and Layout * New ENSInput component * wip - fuzzy search for input * small refactor * Add Dialog * contact list initial * initial error on invalid address * clean up edit * Click to open modal * Create AddToAddressBookModal component * Modal styling and layout * modal i18n * Add to Addressbook * ens wip * ens wip * ENS Resolution * Reset input * Send to explicit address * Happy Path Complete * Add back error checking * Reset send-to when emptying input * Add back warning object * Fix linter * Fix unit test #1 - fix import paths * Remove dead tests * One more to go * Fix all unit tests * add unit test for reducers and actions * test rendering AddRecipient * Add tests for dialog boxes in AddRecipient * Add test for validating * Fix linter * Fix e2e tests * Token send e2e fix * Style View Contact * Style edit-contact * Fix e2e * Fix from-import-beta-ui e2e spec * Make section header say "add recipient” by default * Auto-focus add recipient input * Update placeholder text * Update input title font size * Auto advance to next step if user paste a valid address * Ellipsify address when recipient is selected * Fix app header background color on desktop * Give each form row a margin of 16px * Use .container/.component naming pattern for ens-input * Auto-focus on input when add to addressbook modal is opened; Save on Enter * Fix and add unit test * Fix selectors name in e2e tests * Correct e2e test token amount for address-book-send changes * Adds e2e test for editing a transaction * Delete test/integration/lib/send-new-ui.js * Add tests for amount max button and high value error on send screen to test/e2e/metamask-ui.spec.js * lint and revert to address as object keys * add chainId based on current network to address book entry * fix test * only display contacts for the current network * Improve ENS message when not found on current network * Add error to indicate when network does not support ENS * bump gaba * address book, resolve comments * Move contact-list to its own component * De-duplicate getaddressbook selector and refactor name selection logic in contact-list-tab/ * Use contact-list component in contact-list-tab.component (i.e. in settings) * Improve/fix settings headers for popup and browser views * Lint fixes related to address book updates * Add 'My accounts' page to settings address book * Update add new contact button in settings to match floating circular design * Improve styles of view contact page * Improve styles and labels of the add-contact.component * Further lint fixes related to address book updates * Update unit tests as per address book updates * Ensure that contact list groups are sorted alphabetically * Refactor settings component to use a container for connection to redux; allow display of addressbook name in settings header * Decouple ens-input.component from send context * Add ens resolution to add contact screen in settings * Switching networks when an ens address is shown on send form removes the ens address. * Resolve send screen search for ensAddress to matching address book entry if it exists * Show resolved ens icon and address if exists (settings: add-contact.component) * Make the displayed and copied address in view-contact.component the checksummed address * Default alias state prop in AddToAddressBookModal to empty string * Use keyCode to detect enter key in AddToAddressBookModal * Ensure add-contact component properly updates after QR code detection * Fix display of all recents after clicking 'Load More' in contact list * Fix send screen contact searching after network switching * Code cleanup related to address book changes * Update unit tests for address book changes * Update ENS name not found on network message * Add ens registration error message * Cancel on edit mode takes user back to view screen * Adds support for memo to settings contact list view and edit screens * Modify designs of edit and view contact in popup environment * Update settings content list UX to show split columns in fullscreen and proper internal navigation * Correct background address book API usages in UI
* Switch from `npm` to `yarn` (#6843)Mark Stacey2019-07-311-0/+23229
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As a solution to the constant lockfile churn issues we've had with `npm`, the project now uses `yarn` to manage dependencies. The `package-lock.json` file has been replaced with `yarn.lock`, which was created using `yarn import`. It should approximate the contents of `package-lock.json` fairly well, though there may be some changes due to deduplication. The codeowners file has been updated to reference this new lockfile. All documentation and npm scripts have been updated to reference `yarn` rather than `npm`. Note that running scripts using `npm run` still works fine, but it seemed better to switch those to `yarn` as well to avoid confusion. The `npm-audit` Bash script has been replaced with `yarn-audit`. The output of `yarn audit` is a bit different than `npm audit` in that it returns a bitmask to describe which severity issues were found. This made it simpler to check the results directly from the Bash script, so the associated `npm-audit-check.js` script was no longer required. The output should be exactly the same, and the information is still sourced from the same place (the npm registry). The new `yarn-audit` script does have an external dependency: `jq`. However, `jq` is already assumed to be present by another CI script, and is present on all CI images we use. `jq` was not added to `package.json` as a dependency because there is no official package on the npm registry, just wrapper scripts. We don't need it anywhere exept on CI anyway. The section in `CONTRIBUTING` about how to develop inside the `node_modules` folder was removed, as the advice was a bit dated, and wasn't specific to this project anyway.
* Please, this is my third PR already, stop adding extra baggage. Also, ↵Kevin Serrano2018-05-221-13432/+0
| | | | removed the yarn.lock.
* Merge branch 'master' into i3580-InternationalizeCurrencyDan2018-04-101-1347/+1122
|\
| * Fix transaction confirmationsAlexander Tseung2018-04-041-1/+48
| |
| * Fix merge conflicts. Modify send workflowAlexander Tseung2018-04-031-84/+1110
| |\
| * | Fix conf-tx renderAlexander Tseung2018-03-311-5/+42
| | |
| * | Fix i18n merge conflictsAlexander Tseung2018-03-301-51/+162
| |\ \
| * \ \ Fix merge conflictsAlexander Tseung2018-03-271-598/+1078
| |\ \ \
| * \ \ \ Fix merge conflicts from uat-nextAlexander Tseung2018-02-011-7/+89
| |\ \ \ \
| * | | | | Add create new account routes, fix conflicts from uat updatesAlexander Tseung2018-02-011-417/+517
| | | | | |
| * | | | | Merge branch 'uat' of https://github.com/MetaMask/metamask-extension into cb-254Alexander Tseung2018-01-301-1291/+2205
| |\ \ \ \ \
| * | | | | | Add react-router to allow use of the browser back buttonAlexander Tseung2017-12-151-3/+86
| | | | | | |
* | | | | | | Improve display of crypto currencies when selected as the 'Current Conversion'Dan2018-04-101-31/+1193
| |_|_|_|_|/ |/| | | | |
* | | | | | UpdateSendErrors only called when balance defined, recalled if balance updates.Dan2018-04-031-327/+232
| |_|_|_|/ |/| | | |
* | | | | Merge branch 'master' into i18n-translator-reduxDan2018-03-271-2/+42
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Merge branch 'master' into i3326-addtokenscreendesignupdateDan2018-03-271-2/+42
| | | | |
* | | | | i18n redux solution doesn't require importing t() and passing state to each ↵Dan2018-03-221-2/+227
|/ / / / | | | | | | | | | | | | t() call; t is just available on props.
* | | | Update Deposit Eth icon (#3569)Alexander Tseung2018-03-161-446/+222
| | | |
* | | | Explicitly define state in import account from json component (#3491)Alexander Tseung2018-03-091-94/+641
| | | |
* | | | Fix flashing to Log in screen after logging in or restoring from seed phrase ↵Alexander Tseung2018-03-081-50/+24
| | | | | | | | | | | | | | | | (#3466)
* | | | Fix inpage provider name regressionDan Finlay2018-03-031-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #3372 by not minifying the name of our inpage provider, which some people were using to identify MetaMask (not our preferred, supported method of web3.currentProvider.isMetaMask).
* | | | Fix network menu for custom URLs (#3366)Alexander Tseung2018-03-021-32/+159
| |_|/ |/| |
* | | [NewUI] Use tooltip for copy to clipboard helper text on main screen. (#3120)Dan J Miller2018-02-011-6/+59
| | | | | | | | | | | | | | | | | | | | | | | | * Use tooltip for display of helper text in wallet views copy to clipboard feature. * Use react-tippy in wallet-view.js; center arrow tooltip throughout tooltip text change. * Remove unnecessary tabIndex attribute from wallet view address element.
* | | update yarn.lockChi Kei Chan2018-01-201-24/+99
| |/ |/|
* | [NewUI-flat] Fix gulp build (#2975)Dan J Miller2018-01-161-4/+67
| | | | | | | | | | | | * Only run uglify when building for prod; set environment when building for prod; use gulp-uglify-es. * Revert change of dist script.
* | [NewUI] Place all users of extension into old UI (disable auto adding). (#2946)Dan J Miller2018-01-161-0/+42
| | | | | | | | | | | | * Place all users of extension into old UI (disable auto adding). * Fix lint errors.
* | [NewUI-flat] New deposit ether modal UI. (#2642)Dan J Miller2018-01-131-17/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New deposit ether modal. * New deposit modal full screen on mobile, and other style fixes. * Hide shapeshift option from deposit modal for now. * Add shapeshift form to new deposit modal. * Store recipient address for shapeshift tx in background. * Use Simpledropdown to achieve desired styling in coin selector. * Lint fix * Fix typos and remove dead code. * Remove storage of shapeshift receiving address from background. * Fix typos
* | Fix sign typed dataAlexander Tseung2017-12-301-1295/+2085
|/
* Fix isMascara and update yarn.lockChi Kei Chan2017-12-131-288/+462
|
* Version BumpChi Kei Chan2017-11-161-0/+4
|
* Adds revert feature to customize gas modal.Dan2017-10-261-7/+1
|
* Merge branch 'master' into NewUI-flatChi Kei Chan2017-10-251-97/+221
|\
| * Add Import With Seed PhraseChi Kei Chan2017-10-211-11/+9
| |
| * Add mobile responsivenessChi Kei Chan2017-10-211-175/+119
| |
| * Add Integration TestsChi Kei Chan2017-10-211-1/+5
| |
| * Fix linterChi Kei Chan2017-10-211-119/+225
| |
| * Add ShapeShift UIChi Kei Chan2017-10-211-7/+17
| |
| * Fix merge conflict; separate onboarding buy screenChi Kei Chan2017-10-211-0/+9503
|
* Update token menu cssChi Kei Chan2017-10-241-8/+6
|
* Fix selectorsChi Kei Chan2017-10-201-18/+74
|
* Confirm eth v2Chi Kei Chan2017-10-111-120/+65
|
* Query for gas estimatesChi Kei Chan2017-09-291-1/+8
|
* Update yarn.lockChi Kei Chan2017-09-291-116/+249
|
* Return null if transaction.key is shapeshiftChi Kei Chan2017-09-271-52/+12
|
* Add Add Token UI; Add Fuzzy search for tokensChi Kei Chan2017-09-201-13/+57
|
* Fix Merge Problems; update yarn lockChi Kei Chan2017-09-191-48/+551
|
* Update yarn.lock; Fix tx-list-item overflow; Fix gas exchange rateChi Kei Chan2017-09-141-28/+219
|
* Added signTokenTx; Adding token confirmation screenChi Kei Chan2017-09-121-1/+1
|
* Add buttons; handle back; add yarn.lockChi Kei Chan2017-09-121-0/+9756