1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/dropdown-input-pair
Mark Stacey ba54a3d83b
Update ESLint config to v8 (#12886)
The ESLint config has been updated to v8. The breaking changes are:

* The Prettier rule `quoteProps` has been changed from `consistent` to
`as-needed`, meaning that if one key requires quoting, only that key is
quoted rather than all keys.
* The ESLint rule `no-shadow` has been made more strict. It now
prevents globals from being shadowed as well.

Most of these changes were applied with `yarn lint:fix`. Only the
shadowing changes required manual fixing (shadowing variable names were
either replaced with destructuring or renamed).

The dependency `globalThis` was added to the list of dynamic
dependencies in the build system, where it should have been already.
This was causing `depcheck` to fail because the new lint rules required
removing the one place where `globalThis` had been erroneously imported
previously.

A rule requiring a newline between multiline blocks and expressions has
been disabled temporarily to make this PR smaller and to avoid
introducing conflicts with other PRs.
2021-12-09 15:36:24 -03:30
..
__snapshots__ remove the ui/app and ui/lib folders (#10911) 2021-04-28 14:53:59 -05:00
dropdown-input-pair.js Update ESLint config to v8 (#12886) 2021-12-09 15:36:24 -03:30
dropdown-input-pair.stories.js Fix dropdown-input-pair component to for new Storybook format (#12895) 2021-12-07 09:44:25 -08:00
dropdown-input-pair.test.js Show custom tokens in Swaps, add a custom token in Swaps (#11200) 2021-06-03 13:38:37 -02:30
index.js remove the ui/app and ui/lib folders (#10911) 2021-04-28 14:53:59 -05:00
index.scss remove the ui/app and ui/lib folders (#10911) 2021-04-28 14:53:59 -05:00
README.mdx Fix dropdown-input-pair component to for new Storybook format (#12895) 2021-12-07 09:44:25 -08:00

import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';

import DropdownInputPair from '.';

# Dropdown Input Pair

Dropdown to choose cryptocurrency with amount input field.

<Canvas>
  <Story id="ui-pages-swaps-dropdown-input-pair-dropdown-input-pair-stories-js--default-story" />
</Canvas>

## Component API

<ArgsTable of={DropdownInputPair} />