* show abbreviated enode * CopyToClipboard component * CopyToClipboard: improved styling * put CopyToClipboard into enode status * Rename CopyToClipboard.js to copyToClipboard.js
82 lines
2.3 KiB
JavaScript
82 lines
2.3 KiB
JavaScript
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import Actionbar from './Actionbar';
|
|
import ActionbarExport from './Actionbar/Export';
|
|
import ActionbarSearch from './Actionbar/Search';
|
|
import ActionbarSort from './Actionbar/Sort';
|
|
import Badge from './Badge';
|
|
import Balance from './Balance';
|
|
import BlockStatus from './BlockStatus';
|
|
import Button from './Button';
|
|
import ConfirmDialog from './ConfirmDialog';
|
|
import Container, { Title as ContainerTitle } from './Container';
|
|
import ContextProvider from './ContextProvider';
|
|
import CopyToClipboard from './CopyToClipboard';
|
|
import Errors from './Errors';
|
|
import Form, { AddressSelect, FormWrap, Input, InputAddress, InputAddressSelect, InputChip, InputInline, Select } from './Form';
|
|
import IdentityIcon from './IdentityIcon';
|
|
import IdentityName from './IdentityName';
|
|
import MethodDecoding from './MethodDecoding';
|
|
import Modal, { Busy as BusyStep, Completed as CompletedStep } from './Modal';
|
|
import muiTheme from './Theme';
|
|
import Page from './Page';
|
|
import ParityBackground from './ParityBackground';
|
|
import SignerIcon from './SignerIcon';
|
|
import Tags from './Tags';
|
|
import Tooltips, { Tooltip } from './Tooltips';
|
|
import TxHash from './TxHash';
|
|
|
|
export {
|
|
Actionbar,
|
|
ActionbarExport,
|
|
ActionbarSearch,
|
|
ActionbarSort,
|
|
AddressSelect,
|
|
Badge,
|
|
Balance,
|
|
BlockStatus,
|
|
Button,
|
|
ConfirmDialog,
|
|
Container,
|
|
ContainerTitle,
|
|
ContextProvider,
|
|
CopyToClipboard,
|
|
Errors,
|
|
Form,
|
|
FormWrap,
|
|
Input,
|
|
InputAddress,
|
|
InputAddressSelect,
|
|
InputChip,
|
|
InputInline,
|
|
Select,
|
|
IdentityIcon,
|
|
IdentityName,
|
|
MethodDecoding,
|
|
Modal,
|
|
BusyStep,
|
|
CompletedStep,
|
|
muiTheme,
|
|
Page,
|
|
ParityBackground,
|
|
SignerIcon,
|
|
Tags,
|
|
Tooltip,
|
|
Tooltips,
|
|
TxHash
|
|
};
|