ecency-mobile/src/components/index.js

195 lines
5.2 KiB
JavaScript
Raw Normal View History

import { AvatarHeader } from './avatarHeader';
import { BasicHeader } from './basicHeader';
import { BoostIndicatorAnimation } from './animations';
import { BottomTabBar } from './bottomTabBar';
import { CheckBox } from './checkbox';
import { CircularButton, TextButton, SquareButton } from './buttons';
import { CollapsibleCard } from './collapsibleCard';
import { ContainerHeader } from './containerHeader';
import { DateTimePicker } from './dateTimePicker';
import { DropdownButton } from './dropdownButton';
import { FilterBar } from './filterBar';
import { FormatedCurrency } from './formatedElements';
2019-07-02 23:41:37 +03:00
import { FormInput } from './formInput';
import { Header } from './header';
import { Icon } from './icon';
import { IconButton } from './iconButton';
import { InformationArea } from './informationArea';
import { InformationBox } from './informationBox';
import { LoginHeader } from './loginHeader';
import { MainButton } from './mainButton';
import { MarkdownEditor } from './markdownEditor';
import { Modal } from './modal';
import { NotificationLine } from './notificationLine';
2018-10-04 05:53:10 +03:00
import { NumericKeyboard } from './numericKeyboard';
import { ParentPost } from './parentPost';
import { PercentBar } from './percentBar';
2018-10-04 05:53:10 +03:00
import { PinAnimatedInput } from './pinAnimatedInput';
import { PostCard } from './postCard';
import { PostDisplay } from './postView';
import { PostDropdown } from './postDropdown';
import { PostForm } from './postForm';
import { PostHeaderDescription, PostBody, Tags } from './postElements';
import { PostListItem } from './postListItem';
import { ProfileSummary } from './profileSummary';
import { PulseAnimation } from './animations';
import { SearchInput } from './searchInput';
import { SearchModal } from './searchModal';
import { SettingsItem } from './settingsItem';
import { SideMenu } from './sideMenu';
import { SpinIndicator } from './animations';
import { SummaryArea, TagArea, TextArea, TitleArea } from './editorElements';
import { TabBar } from './tabBar';
2019-07-19 01:18:19 +03:00
import { TextInput } from './textInput';
import { ToastNotification } from './toastNotification';
import { ToggleSwitch } from './toggleSwitch';
import { TransferFormItem } from './transferFormItem';
import { Upvote } from './upvote';
import { UserAvatar } from './userAvatar';
2019-07-02 23:41:37 +03:00
import Logo from './logo/logo';
import PostButton from './postButton/postButtonView';
2019-09-05 23:35:42 +03:00
import ProfileEditForm from './profileEditForm/profileEditFormView';
2019-09-15 11:27:52 +03:00
import ScaleSlider from './scaleSlider/scaleSliderView';
import { ProductItemLine } from './productItemLine/productItemLineView';
import { HorizontalIconList } from './horizontalIconList/horizontalIconListView';
import { PopoverWrapper } from './popoverWrapper/popoverWrapperView';
// View
import { Comment } from './comment';
import { Comments } from './comments';
import { CommentsDisplay } from './commentsDisplay';
import { LeaderBoard } from './leaderboard';
import { Notification } from './notification';
2019-11-25 17:54:07 +03:00
import { WalletHeader } from './walletHeader';
import { Posts } from './posts';
import { Transaction } from './transaction';
import { VotersDisplay } from './votersDisplay';
import { Wallet } from './wallet';
import { WalletDetails } from './walletDetails';
import PostBoost from './postBoost/postBoostView';
2019-09-20 00:19:31 +03:00
import Profile from './profile/profileView';
import Promote from './promote/promoteView';
import { SpinGame } from './spinGame/spinGameView';
// Basic UI Elements
import {
BoostPlaceHolder,
Card,
Chip,
GrayWrapper,
LineBreak,
ListItemPlaceHolder,
ListPlaceHolder,
NoInternetConnection,
NoPost,
PostCardPlaceHolder,
PostPlaceHolder,
ProfileSummaryPlaceHolder,
StickyBar,
Tag,
TextWithIcon,
UserListItem,
WalletDetailsPlaceHolder,
WalletLineItem,
WalletUnclaimedPlaceHolder,
} from './basicUIElements';
2018-09-09 17:52:50 +03:00
export {
AvatarHeader,
BasicHeader,
2019-10-04 00:27:50 +03:00
BoostIndicatorAnimation,
BoostPlaceHolder,
BottomTabBar,
2019-10-04 00:27:50 +03:00
Card,
CheckBox,
2019-10-04 00:27:50 +03:00
Chip,
2018-09-28 02:16:24 +03:00
CircularButton,
CollapsibleCard,
Comment,
Comments,
CommentsDisplay,
ContainerHeader,
DateTimePicker,
DropdownButton,
FilterBar,
FormatedCurrency,
2019-07-02 23:41:37 +03:00
FormInput,
2019-10-04 00:27:50 +03:00
GrayWrapper,
Header,
2019-07-02 23:41:37 +03:00
Icon,
2018-10-02 03:51:43 +03:00
IconButton,
InformationArea,
2019-10-04 00:27:50 +03:00
InformationBox,
LeaderBoard,
2019-10-04 00:27:50 +03:00
LineBreak,
ListItemPlaceHolder,
ListPlaceHolder,
LoginHeader,
2019-07-02 23:41:37 +03:00
Logo,
MainButton,
MarkdownEditor,
2019-07-02 23:41:37 +03:00
Modal,
2019-10-04 00:27:50 +03:00
NoInternetConnection,
NoPost,
Notification,
NotificationLine,
2018-09-28 02:16:24 +03:00
NumericKeyboard,
ParentPost,
PercentBar,
2018-09-29 21:24:14 +03:00
PinAnimatedInput,
2019-11-25 17:54:07 +03:00
WalletHeader,
PostBody,
PostBoost,
2019-09-05 23:35:42 +03:00
PostButton,
PostCard,
2019-10-04 00:27:50 +03:00
PostCardPlaceHolder,
PostDisplay,
PostDropdown,
PostForm,
PostHeaderDescription,
PostListItem,
2019-10-04 00:27:50 +03:00
PostPlaceHolder,
Posts,
ProductItemLine,
2019-09-20 00:19:31 +03:00
Profile,
2019-09-05 23:35:42 +03:00
ProfileEditForm,
ProfileSummary,
2019-10-04 00:27:50 +03:00
ProfileSummaryPlaceHolder,
Promote,
PulseAnimation,
2019-07-12 00:55:17 +03:00
ScaleSlider,
SearchInput,
SearchModal,
SettingsItem,
2018-10-05 06:42:27 +03:00
SideMenu,
2019-10-04 00:27:50 +03:00
SpinGame,
SpinIndicator,
SquareButton,
2019-10-04 00:27:50 +03:00
StickyBar,
SummaryArea,
TabBar,
2019-10-04 00:27:50 +03:00
Tag,
TagArea,
Tags,
TextArea,
2019-07-02 23:41:37 +03:00
TextButton,
2019-07-16 18:47:05 +03:00
TextInput,
2019-10-04 00:27:50 +03:00
TextWithIcon,
TitleArea,
ToastNotification,
ToggleSwitch,
Transaction,
TransferFormItem,
Upvote,
UserAvatar,
2019-10-04 00:27:50 +03:00
UserListItem,
VotersDisplay,
Wallet,
WalletDetails,
2019-10-04 00:27:50 +03:00
WalletDetailsPlaceHolder,
WalletLineItem,
WalletUnclaimedPlaceHolder,
HorizontalIconList,
PopoverWrapper,
};