claude-ws 0.1.18 → 0.1.19
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-ws",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A beautifully crafted workspace interface for Claude Code with real-time streaming and local SQLite database",
|
|
6
6
|
"keywords": [
|
|
@@ -135,9 +135,7 @@
|
|
|
135
135
|
"@tailwindcss/postcss": "^4",
|
|
136
136
|
"tailwindcss": "^4",
|
|
137
137
|
"tw-animate-css": "^1.4.0",
|
|
138
|
-
"drizzle-kit": "^0.31.8"
|
|
139
|
-
},
|
|
140
|
-
"devDependencies": {
|
|
138
|
+
"drizzle-kit": "^0.31.8",
|
|
141
139
|
"@types/adm-zip": "^0.5.7",
|
|
142
140
|
"@types/better-sqlite3": "^7.6.13",
|
|
143
141
|
"@types/node": "^20",
|
|
@@ -116,7 +116,7 @@ export function TaskCard({ task, attemptCount = 0 }: TaskCardProps) {
|
|
|
116
116
|
</button>
|
|
117
117
|
)}
|
|
118
118
|
|
|
119
|
-
<div className=
|
|
119
|
+
<div className={cn('pl-3.5', showDeleteButton && 'pr-6')}>
|
|
120
120
|
{/* Header: Project badge - smaller */}
|
|
121
121
|
{showProjectBadge && projectName && (
|
|
122
122
|
<div style={{ marginBottom: '5px', lineHeight: '10px' }}>
|