hive-react-kit 0.5.8 → 0.6.0
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 +24 -0
- package/dist/components/user/UserDetailProfile.d.ts +1 -1
- package/dist/index.cjs.js +101 -106
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +13826 -13796
- package/dist/types/wallet.d.ts +14 -0
- package/package.json +1 -1
package/dist/build.css
CHANGED
|
@@ -127,6 +127,7 @@
|
|
|
127
127
|
--radius-lg: 0.5rem;
|
|
128
128
|
--radius-xl: 0.75rem;
|
|
129
129
|
--radius-2xl: 1rem;
|
|
130
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
130
131
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
131
132
|
--animate-spin: spin 1s linear infinite;
|
|
132
133
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
@@ -453,6 +454,9 @@
|
|
|
453
454
|
.mx-1 {
|
|
454
455
|
margin-inline: calc(var(--spacing) * 1);
|
|
455
456
|
}
|
|
457
|
+
.mx-1\.5 {
|
|
458
|
+
margin-inline: calc(var(--spacing) * 1.5);
|
|
459
|
+
}
|
|
456
460
|
.mx-2 {
|
|
457
461
|
margin-inline: calc(var(--spacing) * 2);
|
|
458
462
|
}
|
|
@@ -1265,6 +1269,9 @@
|
|
|
1265
1269
|
.border-yellow-800 {
|
|
1266
1270
|
border-color: var(--color-yellow-800);
|
|
1267
1271
|
}
|
|
1272
|
+
.border-t-blue-400 {
|
|
1273
|
+
border-top-color: var(--color-blue-400);
|
|
1274
|
+
}
|
|
1268
1275
|
.border-t-transparent {
|
|
1269
1276
|
border-top-color: transparent;
|
|
1270
1277
|
}
|
|
@@ -1511,6 +1518,12 @@
|
|
|
1511
1518
|
background-color: color-mix(in oklab, var(--color-red-500) 10%, transparent);
|
|
1512
1519
|
}
|
|
1513
1520
|
}
|
|
1521
|
+
.bg-red-500\/15 {
|
|
1522
|
+
background-color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 15%, transparent);
|
|
1523
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1524
|
+
background-color: color-mix(in oklab, var(--color-red-500) 15%, transparent);
|
|
1525
|
+
}
|
|
1526
|
+
}
|
|
1514
1527
|
.bg-red-600 {
|
|
1515
1528
|
background-color: var(--color-red-600);
|
|
1516
1529
|
}
|
|
@@ -1856,6 +1869,9 @@
|
|
|
1856
1869
|
.text-\[11px\] {
|
|
1857
1870
|
font-size: 11px;
|
|
1858
1871
|
}
|
|
1872
|
+
.text-\[13px\] {
|
|
1873
|
+
font-size: 13px;
|
|
1874
|
+
}
|
|
1859
1875
|
.leading-none {
|
|
1860
1876
|
--tw-leading: 1;
|
|
1861
1877
|
line-height: 1;
|
|
@@ -2194,6 +2210,10 @@
|
|
|
2194
2210
|
--tw-duration: 300ms;
|
|
2195
2211
|
transition-duration: 300ms;
|
|
2196
2212
|
}
|
|
2213
|
+
.duration-500 {
|
|
2214
|
+
--tw-duration: 500ms;
|
|
2215
|
+
transition-duration: 500ms;
|
|
2216
|
+
}
|
|
2197
2217
|
.duration-1000 {
|
|
2198
2218
|
--tw-duration: 1000ms;
|
|
2199
2219
|
transition-duration: 1000ms;
|
|
@@ -2202,6 +2222,10 @@
|
|
|
2202
2222
|
--tw-ease: var(--ease-in-out);
|
|
2203
2223
|
transition-timing-function: var(--ease-in-out);
|
|
2204
2224
|
}
|
|
2225
|
+
.ease-out {
|
|
2226
|
+
--tw-ease: var(--ease-out);
|
|
2227
|
+
transition-timing-function: var(--ease-out);
|
|
2228
|
+
}
|
|
2205
2229
|
.group-hover\:pointer-events-auto {
|
|
2206
2230
|
&:is(:where(.group):hover *) {
|
|
2207
2231
|
@media (hover: hover) {
|
|
@@ -48,6 +48,6 @@ export interface UserDetailProfileProps {
|
|
|
48
48
|
onShare?: (username: string) => void;
|
|
49
49
|
onSharePost?: (author: string, permlink: string) => void;
|
|
50
50
|
}
|
|
51
|
-
type TabType = "blogs" | "posts" | "snaps" | "polls" | "comments" | "replies" | "activities" | "authorRewards" | "curationRewards" | "followers" | "following" | "wallet";
|
|
51
|
+
type TabType = "blogs" | "posts" | "snaps" | "polls" | "comments" | "replies" | "activities" | "authorRewards" | "curationRewards" | "followers" | "following" | "wallet" | "votingPower" | "badges" | "witnessVotes";
|
|
52
52
|
declare const UserDetailProfile: React.FC<UserDetailProfileProps>;
|
|
53
53
|
export default UserDetailProfile;
|