@turtleclub/covers 0.1.0-beta.3 → 0.1.0-beta.4
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.1.0-beta.4](https://github.com/turtle-dao/turtle-tools/compare/@turtleclub/covers@0.1.0-beta.3...@turtleclub/covers@0.1.0-beta.4) (2026-02-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @turtleclub/covers
|
|
9
|
+
|
|
6
10
|
# [0.1.0-beta.3](https://github.com/turtle-dao/turtle-tools/compare/@turtleclub/covers@0.1.0-beta.2...@turtleclub/covers@0.1.0-beta.3) (2026-02-17)
|
|
7
11
|
|
|
8
12
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turtleclub/covers",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/index.ts"
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"@types/react-dom": "^18.3.5",
|
|
35
35
|
"typescript": "^5.7.2"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "bb5a28618e10daa2fe73a88a05ef61faa59c9bb2"
|
|
38
38
|
}
|
|
@@ -256,9 +256,9 @@ export function CoverOfferCard({
|
|
|
256
256
|
{/* Purchase Success State */}
|
|
257
257
|
{purchaseSuccess && !hasExistingCover && (
|
|
258
258
|
<div className="space-y-4">
|
|
259
|
-
<div className="p-4 rounded-lg
|
|
259
|
+
<div className="p-4 rounded-lg border border-border">
|
|
260
260
|
<div className="flex items-center gap-3 mb-3">
|
|
261
|
-
<div className="p-2 rounded-full
|
|
261
|
+
<div className="p-2 rounded-full">
|
|
262
262
|
<CheckCircleIcon className="w-5 h-5 text-green-500" />
|
|
263
263
|
</div>
|
|
264
264
|
<span className="text-sm font-semibold text-green-500">
|
|
@@ -22,7 +22,7 @@ export function ExistingCoverInfo({ cover }: ExistingCoverInfoProps) {
|
|
|
22
22
|
|
|
23
23
|
return (
|
|
24
24
|
<>
|
|
25
|
-
<div className="p-3 rounded-lg
|
|
25
|
+
<div className="p-3 rounded-lg border border-border">
|
|
26
26
|
<div className="flex items-center gap-2 mb-2">
|
|
27
27
|
<CheckCircleIcon className="w-4 h-4 text-green-500" />
|
|
28
28
|
<span className="text-sm font-medium text-green-500">
|
|
@@ -22,7 +22,7 @@ export function ExistingCoverRequest({
|
|
|
22
22
|
return (
|
|
23
23
|
<div className="p-4 space-y-4">
|
|
24
24
|
<div className="flex items-center gap-3">
|
|
25
|
-
<div className="p-2 rounded-lg
|
|
25
|
+
<div className="p-2 rounded-lg border border-border">
|
|
26
26
|
<ShieldCheckIcon className="w-5 h-5 text-green-500" />
|
|
27
27
|
</div>
|
|
28
28
|
<div className="space-y-1">
|