@superdangerous/app-framework 4.16.3 → 4.16.5

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",
3
+ "version": "4.16.5",
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/50',
331
+ 'group cursor-pointer bg-background hover:bg-muted transition-none',
332
332
  isSelected && 'bg-primary/5',
333
333
  rowClassName?.(item)
334
334
  )}