hive-react-kit 0.2.2 → 0.2.5
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 +65 -0
- package/dist/components/CommentsList.d.ts +1 -1
- package/dist/components/HiveDetailPost.d.ts +1 -1
- package/dist/components/actionButtons/PostActionButton.d.ts +26 -0
- package/dist/components/actionButtons/index.d.ts +1 -0
- package/dist/components/comments/CommentTile.d.ts +2 -1
- package/dist/components/comments/CommentsModal.d.ts +5 -2
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs.js +59 -59
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +3840 -3542
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { default as ListOfWitnesses } from './components/ListOfWitnesses';
|
|
|
12
12
|
export { default as TransactionHistory } from './components/TransactionHistory';
|
|
13
13
|
export { default as UserChannel } from './components/UserChannel';
|
|
14
14
|
export { default as CommentsModal } from './components/comments/CommentsModal';
|
|
15
|
+
export { PostActionButton, type PostActionButtonProps } from './components/actionButtons';
|
|
15
16
|
export { default as FavouriteWidget } from './components/common/FavouriteWidget';
|
|
16
17
|
export { default as CommunitiesList } from './components/community/CommunitiesList';
|
|
17
18
|
export { default as CommunityAbout } from './components/community/CommunityAbout';
|