mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-03-02 19:50:38 +00:00
* Reorganize files to better match other components. * Initial UI for wallet buttons. * Fix leftover rebase conflict. * Wallet selection, styling, mobile handling. * Initial work on animations. * Adjusted animations. * Adjust wallet unlock forms to be more uniform. Fix view address saying 'unlock' * Adjust tooltips. * Fix embedded decrypt components. * Cover whole sign msg form with decrypt. * Give deploy contract a better unlock treatment like sign msg. * Reset decrypt component on hide / show * Unused var * Fix tooltip hover. * Fix hover lift. * Make spacing better on mobile. * Back button mobile handling. * Redesign mobile button icons. Prevent clicking through when clicking on icons. * TSCheck fixes. * Attempt to unlock MetaMask onClick, and provide existing flow with notification when unlock fails. * Get rid of outline. * Remove decrypt min height. Make view only textarea. * Add change wallet buttons to deploy contract and sign msg. * Standardize
19 lines
734 B
TypeScript
19 lines
734 B
TypeScript
export * from './AddressField';
|
|
export * from './DataField';
|
|
export * from './GasField';
|
|
export * from './NonceField';
|
|
export * from './AmountField';
|
|
export * from './SendEverything';
|
|
export * from './UnitDropDown';
|
|
export * from './CurrentCustomMessage';
|
|
export * from './GenerateTransaction';
|
|
export * from './SendButton';
|
|
export * from './SigningStatus';
|
|
export * from './OfflineAwareUnlockHeader';
|
|
export { default as Header } from './Header';
|
|
export { default as Footer } from './Footer';
|
|
export { default as BalanceSidebar } from './BalanceSidebar';
|
|
export { default as PaperWallet } from './PaperWallet';
|
|
export { default as AlphaAgreement } from './AlphaAgreement';
|
|
export { default as WalletDecrypt } from './WalletDecrypt';
|