15551b65e5
* add manage dialog to wallet lib, add it to trading app * add test for wallet button * add tests for manage dialog * move tooltip to ui-toolkit, add copy with tooltip component for manage dialog * add better labelling * add tooltip story * add story for copy-with-tooltip * add tests for tooltip and copy-with-tooltip * move useFakeTimers call to beforeAll * adjust design of manage dialog * fix linting issues
27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
import * as EthereumUtils from './utils/web3';
|
|
|
|
// Components
|
|
export { AgGridLazy, AgGridDynamic } from './components/ag-grid';
|
|
export { AsyncRenderer } from './components/async-renderer';
|
|
export { Button, AnchorButton } from './components/button';
|
|
export { Callout } from './components/callout';
|
|
export { CopyWithTooltip } from './components/copy-with-tooltip';
|
|
export { EthereumUtils };
|
|
export { EtherscanLink } from './components/etherscan-link';
|
|
export { FormGroup } from './components/form-group';
|
|
export { Icon } from './components/icon';
|
|
export { Input } from './components/input';
|
|
export { InputError } from './components/input-error';
|
|
export { Lozenge } from './components/lozenge';
|
|
export { Loader } from './components/loader';
|
|
export { Select } from './components/select';
|
|
export { Splash } from './components/splash';
|
|
export { TextArea } from './components/text-area';
|
|
export { ThemeSwitcher } from './components/theme-switcher';
|
|
export { Dialog } from './components/dialog/dialog';
|
|
export { VegaLogo } from './components/vega-logo';
|
|
export { Tooltip } from './components/tooltip';
|
|
|
|
// Utils
|
|
export * from './utils/intent';
|