hive-react-kit 0.10.1 → 0.10.3
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/build.css +51 -16
- package/dist/components/BlogPostList.d.ts +4 -0
- package/dist/components/UpvoteListModal.d.ts +7 -1
- package/dist/components/actionButtons/MoreActionsMenu.d.ts +17 -0
- package/dist/components/actionButtons/PostActionButton.d.ts +6 -1
- package/dist/components/actionButtons/index.d.ts +1 -0
- package/dist/components/community/CommunityDetail.d.ts +5 -1
- package/dist/components/feed/SnapsFeedCard.d.ts +8 -2
- package/dist/components/feed/SnapsFeedView.d.ts +9 -2
- package/dist/config/hiveEndpoint.d.ts +20 -0
- package/dist/index.cjs.js +164 -164
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +18602 -18158
- package/dist/services/communityService.d.ts +3 -1
- package/dist/services/userService.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export { default as UserChannel } from './components/UserChannel';
|
|
|
19
19
|
export { default as HiveToolbar, type HiveToolbarProps } from './components/HiveToolbar';
|
|
20
20
|
export { HiveDetailPost, type HiveDetailPostProps } from './components/HiveDetailPost';
|
|
21
21
|
export { default as CommentsModal } from './components/comments/CommentsModal';
|
|
22
|
-
export { PostActionButton, type PostActionButtonProps } from './components/actionButtons';
|
|
22
|
+
export { PostActionButton, type PostActionButtonProps, MoreActionsMenu, type MoreActionsMenuProps, } from './components/actionButtons';
|
|
23
23
|
export { PostComposer, default as AddCommentInput } from './components/comments/AddCommentInput';
|
|
24
24
|
export type { PostComposerProps, AddCommentInputProps } from './components/comments/AddCommentInput';
|
|
25
25
|
export { ImageUploader, AudioUploader, VideoUploader, GiphyPicker, EmojiPicker, TemplatePicker, PollCreator, BeneficiariesEditor, ParentPostComposer } from './components/composer';
|
|
@@ -67,6 +67,7 @@ export * from './types/video';
|
|
|
67
67
|
export * from './types/poll';
|
|
68
68
|
export * from './types/reward';
|
|
69
69
|
export * from './types/wallet';
|
|
70
|
+
export { getHiveApiEndpoint, setHiveApiEndpoint, subscribeHiveApiEndpoint, getHiveClient, } from './config/hiveEndpoint';
|
|
70
71
|
export * from './services/apiService';
|
|
71
72
|
export * from './services/userService';
|
|
72
73
|
export * from './services/witnessService';
|