mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
43f7a44c25
* Initial push * Refactored the code * Additional code * Removed the unused message * Added a tooltip * Fixed tests * Lint fix * Added style to a tooltip * Fix e2e test failure * Lint fix and code revert * Fix e2e test * Fixed paddings * Fixed paddings * CSS fix * Minified svg files * Applied requested changes * Fixed theme issue * Code revert * Added back overridden code * Icon problem fixed * Lint fix * Replaced H3 with H4 * Added unit test * Added breadcrumbs * Added const props for networks * Lint fix * Lint fix * Added toggle button for showing the custom network list and resolved few issues * Fixed routes * Refactored a piece of code * Enabled searching for the newly created option * Fixed unit test * Updated theme
36 lines
983 B
JavaScript
36 lines
983 B
JavaScript
import Button from '../../ui/button';
|
|
import Chip from '../../ui/chip';
|
|
import DefinitionList from '../../ui/definition-list';
|
|
import TruncatedDefinitionList from '../../ui/truncated-definition-list';
|
|
import Popover from '../../ui/popover';
|
|
import Typography from '../../ui/typography';
|
|
import Box from '../../ui/box';
|
|
import MetaMaskTranslation from '../metamask-translation';
|
|
import NetworkDisplay from '../network-display';
|
|
import TextArea from '../../ui/textarea/textarea';
|
|
import ConfirmationNetworkSwitch from '../../../pages/confirmation/components/confirmation-network-switch';
|
|
import UrlIcon from '../../ui/url-icon';
|
|
import Tooltip from '../../ui/tooltip/tooltip';
|
|
|
|
export const safeComponentList = {
|
|
MetaMaskTranslation,
|
|
a: 'a',
|
|
b: 'b',
|
|
p: 'p',
|
|
div: 'div',
|
|
span: 'span',
|
|
Typography,
|
|
Chip,
|
|
DefinitionList,
|
|
TruncatedDefinitionList,
|
|
Button,
|
|
Popover,
|
|
Box,
|
|
NetworkDisplay,
|
|
TextArea,
|
|
ConfirmationNetworkSwitch,
|
|
UrlIcon,
|
|
Tooltip,
|
|
i: 'i',
|
|
};
|