hive-react-kit 1.8.1 → 1.8.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 +1 -1
- package/dist/components/comments/AddCommentInput.d.ts +1 -1
- package/dist/components/community/CommunitySnapsTab.d.ts +1 -0
- package/dist/components/user/UserDetailProfile.d.ts +1 -1
- package/dist/index.cjs.js +55 -55
- package/dist/index.esm.js +2031 -2034
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -132,7 +132,7 @@ import { UserDetailProfile } from 'hive-react-kit';
|
|
|
132
132
|
| `threeSpeakApiKey` | `string` | `undefined` | 3Speak API key. Enables audio recording/upload and video upload (TUS protocol). Hidden when not provided |
|
|
133
133
|
| `giphyApiKey` | `string` | `undefined` | GIPHY API key. Enables GIF search. Hidden when not provided |
|
|
134
134
|
| `templateToken` | `string` | `undefined` | HReplier API JWT token. Enables template picker. Hidden when not provided |
|
|
135
|
-
| `templateApiBaseUrl` | `string` | `https://
|
|
135
|
+
| `templateApiBaseUrl` | `string` | `https://api.hivesuite.app...` | Custom template API endpoint. Override when self-hosting |
|
|
136
136
|
|
|
137
137
|
**Social Action Callbacks**
|
|
138
138
|
|
|
@@ -24,7 +24,7 @@ export interface PostComposerProps {
|
|
|
24
24
|
youtubeApiKey?: string;
|
|
25
25
|
/** HReplier API token — enables template picker */
|
|
26
26
|
templateToken?: string;
|
|
27
|
-
/** Custom template API endpoint (defaults to https://
|
|
27
|
+
/** Custom template API endpoint (defaults to https://api.hivesuite.app/data/templates) */
|
|
28
28
|
templateApiBaseUrl?: string;
|
|
29
29
|
/** Hide individual toolbar features */
|
|
30
30
|
hideBold?: boolean;
|
|
@@ -63,6 +63,7 @@ export interface CommunitySnapsTabProps {
|
|
|
63
63
|
/** Collapse the per-card secondary actions (reblog · share · tip ·
|
|
64
64
|
* flag) into a single 3-dot kebab. Forwarded into <SnapsFeedView/>. */
|
|
65
65
|
actionsAsMenu?: boolean;
|
|
66
|
+
pageScroll?: boolean;
|
|
66
67
|
}
|
|
67
68
|
declare const CommunitySnapsTab: React.FC<CommunitySnapsTabProps>;
|
|
68
69
|
export default CommunitySnapsTab;
|
|
@@ -37,7 +37,7 @@ export interface UserDetailProfileProps {
|
|
|
37
37
|
giphyApiKey?: string;
|
|
38
38
|
/** HReplier API token — enables template picker in comment composer */
|
|
39
39
|
templateToken?: string;
|
|
40
|
-
/** Custom template API endpoint (defaults to https://
|
|
40
|
+
/** Custom template API endpoint (defaults to https://api.hivesuite.app/data/templates) */
|
|
41
41
|
templateApiBaseUrl?: string;
|
|
42
42
|
/** List of reported posts to exclude from feed. Each entry has { author, permlink }. */
|
|
43
43
|
reportedPosts?: {
|