@superdangerous/app-framework 4.16.2 → 4.16.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdangerous/app-framework",
|
|
3
|
-
"version": "4.16.
|
|
3
|
+
"version": "4.16.4",
|
|
4
4
|
"description": "Opinionated TypeScript framework for structured vibecoding - building internal web and desktop apps with batteries included",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -328,7 +328,7 @@ export function DataTable<T>({
|
|
|
328
328
|
<TableRow
|
|
329
329
|
key={rowId}
|
|
330
330
|
className={cn(
|
|
331
|
-
'group cursor-pointer bg-background hover:bg-muted
|
|
331
|
+
'group cursor-pointer bg-background hover:bg-muted',
|
|
332
332
|
isSelected && 'bg-primary/5',
|
|
333
333
|
rowClassName?.(item)
|
|
334
334
|
)}
|
|
@@ -348,7 +348,7 @@ export function DataTable<T>({
|
|
|
348
348
|
key="select"
|
|
349
349
|
className={cn(
|
|
350
350
|
'sticky-select-cell w-10 sticky left-0 z-10 relative after:absolute after:right-0 after:top-0 after:bottom-0 after:w-px after:bg-border',
|
|
351
|
-
'bg-background group-hover:bg-muted
|
|
351
|
+
'bg-background group-hover:bg-muted',
|
|
352
352
|
isSelected && 'bg-primary/5 group-hover:bg-primary/10'
|
|
353
353
|
)}
|
|
354
354
|
onClick={(e) => e.stopPropagation()}
|
|
@@ -392,7 +392,7 @@ export function DataTable<T>({
|
|
|
392
392
|
<TableCell
|
|
393
393
|
className={cn(
|
|
394
394
|
'sticky right-0 z-10 text-center relative before:absolute before:left-0 before:top-0 before:bottom-0 before:w-px before:bg-border',
|
|
395
|
-
'bg-background group-hover:bg-muted
|
|
395
|
+
'bg-background group-hover:bg-muted',
|
|
396
396
|
isSelected && 'bg-primary/5 group-hover:bg-primary/10'
|
|
397
397
|
)}
|
|
398
398
|
style={{ width: actionsColumnWidth, minWidth: actionsColumnWidth, maxWidth: actionsColumnWidth }}
|