@superdangerous/app-framework 4.15.5 → 4.15.6

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.15.5",
3
+ "version": "4.15.6",
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",
@@ -240,11 +240,12 @@ export function DataTable<T>({
240
240
  return (
241
241
  <TooltipProvider>
242
242
  <>
243
- {/* Table - scrolling handled by parent container */}
244
- <Table
245
- style={getTableStyle()}
246
- className={cn('resizable-table sticky-actions-table', className)}
247
- >
243
+ {/* Table with scroll container and border */}
244
+ <div className="overflow-x-auto border rounded-lg">
245
+ <Table
246
+ style={getTableStyle()}
247
+ className={cn('resizable-table sticky-actions-table', className)}
248
+ >
248
249
  <TableHeader>
249
250
  <TableRow onContextMenu={handleHeaderContextMenu}>
250
251
  {columnOrder.map((colKey) => {
@@ -403,7 +404,8 @@ export function DataTable<T>({
403
404
  })
404
405
  )}
405
406
  </TableBody>
406
- </Table>
407
+ </Table>
408
+ </div>
407
409
 
408
410
  {/* Empty state - rendered outside table for proper positioning */}
409
411
  {!loading && pagination.paginatedData.length === 0 && (