hive-react-kit 0.0.27 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/App.d.ts +2 -0
- package/dist/components/ActivityHistory.d.ts +7 -0
- package/dist/components/ActivityList.d.ts +15 -0
- package/dist/components/FollowersList.d.ts +8 -0
- package/dist/components/FollowingList.d.ts +8 -0
- package/dist/components/ListOfWitnesses.d.ts +4 -0
- package/dist/components/PostFeedList.d.ts +17 -0
- package/dist/components/ProposalsList.d.ts +4 -0
- package/dist/components/TransactionHistory.d.ts +6 -0
- package/dist/components/UpvoteListModal.d.ts +11 -0
- package/dist/components/VideoCard.d.ts +9 -0
- package/dist/components/VideoDetail.d.ts +17 -0
- package/dist/components/VideoFeed.d.ts +11 -0
- package/dist/components/VideoInfo.d.ts +19 -0
- package/dist/components/VoteSlider.d.ts +7 -0
- package/dist/components/Wallet.d.ts +7 -0
- package/dist/components/WitnessFilters.d.ts +8 -0
- package/dist/components/comments/AddCommentInput.d.ts +10 -0
- package/dist/components/comments/CommentSearchBar.d.ts +8 -0
- package/dist/components/comments/CommentTile.d.ts +16 -0
- package/dist/components/comments/CommentsModal.d.ts +13 -0
- package/dist/components/comments/ReplyModal.d.ts +9 -0
- package/dist/components/common/FavouriteWidget.d.ts +10 -0
- package/dist/components/community/CommunitiesList.d.ts +5 -0
- package/dist/components/community/CommunityAbout.d.ts +5 -0
- package/dist/components/community/CommunityDetail.d.ts +16 -0
- package/dist/components/community/CommunityDetails.d.ts +13 -0
- package/dist/components/community/CommunityMembers.d.ts +6 -0
- package/dist/components/community/CommunityTeam.d.ts +6 -0
- package/dist/components/index.d.ts +25 -0
- package/dist/components/modals/CommentsModal.d.ts +8 -0
- package/dist/components/modals/DescriptionModal.d.ts +8 -0
- package/dist/components/modals/Modal.d.ts +10 -0
- package/dist/components/modals/UpvoteListModal.d.ts +7 -0
- package/dist/components/user/UserAccount.d.ts +14 -0
- package/dist/components/user/UserFollowers.d.ts +6 -0
- package/dist/components/user/UserFollowing.d.ts +6 -0
- package/dist/components/user/UserInfo.d.ts +5 -0
- package/dist/components/user/UserProfilePage.d.ts +16 -0
- package/dist/hooks/CommunityFavouriteProvider.d.ts +5 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/use-mobile.d.ts +1 -0
- package/dist/hooks/use-toast.d.ts +52 -0
- package/dist/index.cjs.js +96 -104
- package/dist/index.d.ts +37 -0
- package/dist/index.esm.js +19012 -19032
- package/dist/main.d.ts +1 -0
- package/dist/pages/Index.d.ts +2 -0
- package/dist/pages/NotFound.d.ts +2 -0
- package/dist/pages/UserProfile.d.ts +2 -0
- package/dist/services/activityListService.d.ts +79 -0
- package/dist/services/activityService.d.ts +104 -0
- package/dist/services/apiService.d.ts +51 -0
- package/dist/services/communityService.d.ts +15 -0
- package/dist/services/proposalService.d.ts +9 -0
- package/dist/services/transactionService.d.ts +69 -0
- package/dist/services/userService.d.ts +15 -0
- package/dist/services/witnessService.d.ts +61 -0
- package/dist/store/index.d.ts +2 -0
- package/dist/store/walletStore.d.ts +2 -0
- package/dist/store/witnessStore.d.ts +31 -0
- package/dist/types/activity.d.ts +108 -0
- package/dist/types/activityList.d.ts +46 -0
- package/dist/types/comment.d.ts +19 -0
- package/dist/types/community.d.ts +136 -0
- package/dist/types/graphql.d.ts +28 -0
- package/dist/types/index.d.ts +8 -0
- package/dist/types/post.d.ts +53 -0
- package/dist/types/proposal.d.ts +35 -0
- package/dist/types/transaction.d.ts +90 -0
- package/dist/types/trending.d.ts +4 -0
- package/dist/types/user.d.ts +135 -0
- package/dist/types/video.d.ts +106 -0
- package/dist/types/wallet.d.ts +17 -0
- package/dist/types/witness.d.ts +57 -0
- package/dist/utils/thumbnail.d.ts +1 -0
- package/package.json +8 -9
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export { default as VideoCard } from './components/VideoCard';
|
|
2
|
+
export { default as VideoDetail } from './components/VideoDetail';
|
|
3
|
+
export { default as VideoFeed } from './components/VideoFeed';
|
|
4
|
+
export { default as VideoInfo } from './components/VideoInfo';
|
|
5
|
+
export { default as Wallet } from './components/Wallet';
|
|
6
|
+
export { default as PostFeedList } from './components/PostFeedList';
|
|
7
|
+
export { default as ProposalsList } from './components/ProposalsList';
|
|
8
|
+
export { default as FollowersList } from './components/FollowersList';
|
|
9
|
+
export { default as FollowingList } from './components/FollowingList';
|
|
10
|
+
export { default as ActivityList } from './components/ActivityList';
|
|
11
|
+
export { default as ListOfWitnesses } from './components/ListOfWitnesses';
|
|
12
|
+
export { default as FavouriteWidget } from './components/common/FavouriteWidget';
|
|
13
|
+
export { default as CommunitiesList } from './components/community/CommunitiesList';
|
|
14
|
+
export { default as CommunityAbout } from './components/community/CommunityAbout';
|
|
15
|
+
export { default as CommunityDetail } from './components/community/CommunityDetail';
|
|
16
|
+
export { default as CommunityMembers } from './components/community/CommunityMembers';
|
|
17
|
+
export { default as CommunityTeam } from './components/community/CommunityTeam';
|
|
18
|
+
export { default as CommentsModal } from './components/modals/CommentsModal';
|
|
19
|
+
export { default as DescriptionModal } from './components/modals/DescriptionModal';
|
|
20
|
+
export { default as Modal } from './components/modals/Modal';
|
|
21
|
+
export { default as UpvoteListModal } from './components/modals/UpvoteListModal';
|
|
22
|
+
export { default as UserAccount } from './components/user/UserAccount';
|
|
23
|
+
export { default as UserFollowers } from './components/user/UserFollowers';
|
|
24
|
+
export { default as UserFollowing } from './components/user/UserFollowing';
|
|
25
|
+
export { default as UserInfo } from './components/user/UserInfo';
|
|
26
|
+
export { default as UserProfilePage } from './components/user/UserProfilePage';
|
|
27
|
+
export * from './hooks/use-mobile';
|
|
28
|
+
export * from './hooks/use-toast';
|
|
29
|
+
export * from './types/comment';
|
|
30
|
+
export * from './types/graphql';
|
|
31
|
+
export * from './types/trending';
|
|
32
|
+
export * from './types/video';
|
|
33
|
+
export * from './types/wallet';
|
|
34
|
+
export * from './types/witness';
|
|
35
|
+
export * from './services/apiService';
|
|
36
|
+
export * from './services/witnessService';
|
|
37
|
+
export * from './store/walletStore';
|