mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-18 05:56:54 +00:00
* Initial work on refactoring node definitions to reduce number of places theyre defined, amount of copy pasting. * Use makeAutoNodeNAme instead of manually appending _auto * Add getNetVersion to list of unsupported methods * PR feedback * Rework web template node selector to be a network selector. Refactor some types to help with that. Better handle removing custom nodes. * Remove color dropdown. * Fix selecting custom networks. Show notification if change network intent fails. * Use selectors for current node / network instead of intuiting from nodeSelection * Add id key to all networks, simplify add and remove custom node and network functions. * Fix a lot of uses of network.name to use network.id instead. * Dont allow network chainid conflicts * Fix web3 network by chainid * Add testnet badge to network selector * Change nomenclature from change(Node|Network)(Intent)? to change(Node|Network)(Requested|Succeeded) * tscheck * Better code for chainid collision * Remove console logs * Fix tests * Network selector becomes self contained component used both by web header and electron nav. * Dont select node again * Additional title text * tscheck * Custom node behavior in Electron * Close panel too * Convert node label data into selector function * tscheck * Parens & space
21 lines
983 B
TypeScript
21 lines
983 B
TypeScript
export { default as Dropdown } from './Dropdown';
|
|
export { default as OldDropDown } from './OldDropdown';
|
|
export { default as DropdownShell } from './DropdownShell';
|
|
export { default as Identicon } from './Identicon';
|
|
export { default as Modal } from './Modal';
|
|
export { default as UnlockHeader } from './UnlockHeader';
|
|
export { default as QRCode } from './QRCode';
|
|
export { default as NewTabLink } from './NewTabLink';
|
|
export { default as UnitDisplay } from './UnitDisplay';
|
|
export { default as Spinner } from './Spinner';
|
|
export { default as SwapDropdown } from './SwapDropdown';
|
|
export { default as Tooltip } from './Tooltip';
|
|
export { default as HelpLink } from './HelpLink';
|
|
export { default as Input } from './Input';
|
|
export { default as TextArea } from './TextArea';
|
|
export { default as Address } from './Address';
|
|
export { default as CodeBlock } from './CodeBlock';
|
|
export { default as Toggle } from './Toggle';
|
|
export * from './Expandable';
|
|
export * from './InlineSpinner';
|