hive-react-kit 0.9.0 → 0.9.2
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/README.md +3 -2
- package/dist/build.css +31 -0
- package/dist/components/HiveDetailPost.d.ts +20 -1
- package/dist/components/inlineComments/InlineCommentItem.d.ts +8 -1
- package/dist/components/inlineComments/InlineCommentSection.d.ts +8 -1
- package/dist/components/user/PollListItem.d.ts +37 -0
- package/dist/components/user/UserDetailProfile.d.ts +14 -1
- package/dist/components/user/UserGrowth.d.ts +9 -0
- package/dist/index.cjs.js +117 -117
- package/dist/index.d.ts +4 -0
- package/dist/index.esm.js +9500 -8734
- package/dist/services/userService.d.ts +121 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,10 @@ export { default as UserInfo } from './components/user/UserInfo';
|
|
|
37
37
|
export { default as UserProfilePage } from './components/user/UserProfilePage';
|
|
38
38
|
export { default as UserDetailProfile } from './components/user/UserDetailProfile';
|
|
39
39
|
export type { UserDetailProfileProps } from './components/user/UserDetailProfile';
|
|
40
|
+
export { default as UserGrowth } from './components/user/UserGrowth';
|
|
41
|
+
export type { UserGrowthProps } from './components/user/UserGrowth';
|
|
42
|
+
export { default as PollListItem } from './components/user/PollListItem';
|
|
43
|
+
export type { PollListItemProps } from './components/user/PollListItem';
|
|
40
44
|
export { default as HiveContributionsLanding } from './components/landing-page/HiveContributionsLanding';
|
|
41
45
|
export { default as ExpensesView } from './components/landing-page/ExpensesView';
|
|
42
46
|
export * from './hooks/use-mobile';
|