hive-react-kit 1.10.6 → 1.10.8
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 +11 -1
- package/dist/components/composer/ParentPostComposer.d.ts +1 -0
- package/dist/components/inlineComments/InlineCommentItem.d.ts +2 -1
- package/dist/index.cjs.js +228 -227
- package/dist/index.esm.js +30497 -30170
- package/package.json +1 -1
package/dist/build.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.3.
|
|
1
|
+
/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -4027,6 +4027,16 @@
|
|
|
4027
4027
|
}
|
|
4028
4028
|
}
|
|
4029
4029
|
}
|
|
4030
|
+
.hover\:bg-blue-800\/70 {
|
|
4031
|
+
&:hover {
|
|
4032
|
+
@media (hover: hover) {
|
|
4033
|
+
background-color: color-mix(in srgb, oklch(42.4% 0.199 265.638) 70%, transparent);
|
|
4034
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4035
|
+
background-color: color-mix(in oklab, var(--color-blue-800) 70%, transparent);
|
|
4036
|
+
}
|
|
4037
|
+
}
|
|
4038
|
+
}
|
|
4039
|
+
}
|
|
4030
4040
|
.hover\:bg-gray-50 {
|
|
4031
4041
|
&:hover {
|
|
4032
4042
|
@media (hover: hover) {
|
|
@@ -81,6 +81,7 @@ export interface ParentPostComposerProps {
|
|
|
81
81
|
/** Reward routing default + favorites for the beneficiary editor. */
|
|
82
82
|
defaultReward?: RewardOption;
|
|
83
83
|
defaultBeneficiaries?: Beneficiary[];
|
|
84
|
+
lockedBeneficiaries?: Beneficiary[];
|
|
84
85
|
beneficiaryFavorites?: Beneficiary[];
|
|
85
86
|
/** Upload tokens — same plumbing the kit's PostComposer uses. */
|
|
86
87
|
ecencyToken?: string;
|
|
@@ -76,6 +76,7 @@ interface InlineCommentItemProps {
|
|
|
76
76
|
postBaseUrl?: string;
|
|
77
77
|
ipfsGateway?: string;
|
|
78
78
|
};
|
|
79
|
+
parentTags?: string[];
|
|
79
80
|
}
|
|
80
|
-
export default function InlineCommentItem({ comment, allComments, onReply, onCancelReply, onCommentSubmit, activeReplyKey, currentUser, token, depth, onVotedRefresh, onClickCommentUpvote, ecencyToken, threeSpeakApiKey, giphyApiKey, templateToken, templateApiBaseUrl, hiveIconUrl, onShareComment, onTipComment, onReportComment, onToggleCommentBookmark, isCommentBookmarked, mentionSeedAccounts, onEditComment, onDeleteComment, onNavigateToPost, onUserClick, defaultReward, defaultBeneficiaries, beneficiaryFavorites, defaultVotePercent, voteWeightStep, allowLandscapeVideos, awaitingWalletApproval, renderOptions, }: InlineCommentItemProps): import("react/jsx-runtime").JSX.Element;
|
|
81
|
+
export default function InlineCommentItem({ comment, allComments, onReply, onCancelReply, onCommentSubmit, activeReplyKey, currentUser, token, depth, onVotedRefresh, onClickCommentUpvote, ecencyToken, threeSpeakApiKey, giphyApiKey, templateToken, templateApiBaseUrl, hiveIconUrl, onShareComment, onTipComment, onReportComment, onToggleCommentBookmark, isCommentBookmarked, mentionSeedAccounts, onEditComment, onDeleteComment, onNavigateToPost, onUserClick, defaultReward, defaultBeneficiaries, beneficiaryFavorites, defaultVotePercent, voteWeightStep, allowLandscapeVideos, awaitingWalletApproval, renderOptions, parentTags, }: InlineCommentItemProps): import("react/jsx-runtime").JSX.Element;
|
|
81
82
|
export {};
|