mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
118 lines
3.8 KiB
JavaScript
118 lines
3.8 KiB
JavaScript
import * as Constants from "~/common/constants";
|
|
|
|
// NOTE(martina): Actions
|
|
import { dispatchCustomEvent } from "~/common/custom-events";
|
|
|
|
// NOTE(jim): Modules
|
|
import { CreateToken } from "~/components/system/modules/CreateToken";
|
|
import { PeersList } from "~/components/system/modules/PeersList";
|
|
import { CreateFilecoinAddress } from "~/components/system/modules/CreateFilecoinAddress";
|
|
import { CreateFilecoinStorageDeal } from "~/components/system/modules/CreateFilecoinStorageDeal";
|
|
import { SendAddressFilecoin } from "~/components/system/modules/SendAddressFilecoin";
|
|
import { FilecoinBalancesList } from "~/components/system/modules/FilecoinBalancesList";
|
|
import { FilecoinTransactionsList } from "~/components/system/modules/FilecoinTransactionsList";
|
|
import {
|
|
FilecoinStorageDealsList,
|
|
FilecoinRetrievalDealsList,
|
|
} from "~/components/system/modules/FilecoinDealsList";
|
|
|
|
// NOTE(jim): Components
|
|
import {
|
|
ButtonPrimary,
|
|
ButtonPrimaryFull,
|
|
ButtonSecondary,
|
|
ButtonSecondaryFull,
|
|
ButtonDisabled,
|
|
ButtonDisabledFull,
|
|
} from "~/components/system/components/Buttons";
|
|
import { CardTabGroup } from "~/components/system/components/CardTabGroup";
|
|
import { CheckBox } from "~/components/system/components/CheckBox";
|
|
import { CodeBlock } from "~/components/system/components/CodeBlock";
|
|
import { CodeTextarea } from "~/components/system/components/CodeTextarea";
|
|
import { DatePicker } from "~/components/system/components/DatePicker";
|
|
import { GlobalModal } from "~/components/system/components/GlobalModal";
|
|
import { GlobalNotification } from "~/components/system/components/GlobalNotification";
|
|
import { Input } from "~/components/system/components/Input";
|
|
import { ListEditor } from "~/components/system/components/ListEditor";
|
|
import { PopoverNavigation } from "~/components/system/components/PopoverNavigation";
|
|
import { RadioGroup } from "~/components/system/components/RadioGroup";
|
|
import {
|
|
SelectCountryMenu,
|
|
SelectMenu,
|
|
} from "~/components/system/components/SelectMenus";
|
|
import { StatUpload, StatDownload } from "~/components/system/components/Stat";
|
|
import { TabGroup } from "~/components/system/components/TabGroup";
|
|
import { Table } from "~/components/system/components/Table";
|
|
import { Textarea } from "~/components/system/components/Textarea";
|
|
import { Toggle } from "~/components/system/components/Toggle";
|
|
import { H1, H2, P, UL, LI } from "~/components/system/components/Typography";
|
|
|
|
// NOTE(jim): Fragments
|
|
import { CodeText } from "~/components/system/components/fragments/CodeText";
|
|
import { TooltipAnchor } from "~/components/system/components/fragments/TooltipAnchor";
|
|
import { DescriptionGroup } from "~/components/system/components/fragments/DescriptionGroup";
|
|
import {
|
|
TableContent,
|
|
TableColumn,
|
|
} from "~/components/system/components/fragments/TableComponents";
|
|
|
|
import * as SVG from "~/components/system/svg";
|
|
import * as OldSVG from "~/common/svg";
|
|
|
|
// NOTE(jim): Export everything.
|
|
export {
|
|
// NOTE(martina): Actions
|
|
dispatchCustomEvent,
|
|
// NOTE(jim): Modules
|
|
CreateToken,
|
|
PeersList,
|
|
CreateFilecoinAddress,
|
|
CreateFilecoinStorageDeal,
|
|
SendAddressFilecoin,
|
|
FilecoinBalancesList,
|
|
FilecoinTransactionsList,
|
|
FilecoinRetrievalDealsList,
|
|
FilecoinStorageDealsList,
|
|
// NOTE(jim): Components
|
|
ButtonPrimary,
|
|
ButtonPrimaryFull,
|
|
ButtonSecondary,
|
|
ButtonSecondaryFull,
|
|
ButtonDisabled,
|
|
ButtonDisabledFull,
|
|
CardTabGroup,
|
|
CheckBox,
|
|
CodeBlock,
|
|
CodeText,
|
|
CodeTextarea,
|
|
DatePicker,
|
|
GlobalModal,
|
|
GlobalNotification,
|
|
Input,
|
|
ListEditor,
|
|
PopoverNavigation,
|
|
RadioGroup,
|
|
SelectCountryMenu,
|
|
SelectMenu,
|
|
StatUpload,
|
|
StatDownload,
|
|
TabGroup,
|
|
Table,
|
|
Textarea,
|
|
Toggle,
|
|
H1,
|
|
H2,
|
|
P,
|
|
UL,
|
|
LI,
|
|
// NOTE(jim): Fragments, not meant to be used.
|
|
TooltipAnchor,
|
|
DescriptionGroup,
|
|
TableContent,
|
|
TableColumn,
|
|
// NOTE(jim): System values
|
|
Constants,
|
|
SVG,
|
|
OldSVG,
|
|
};
|