@izumisy-tailor/tailor-data-viewer 0.2.26 → 0.2.28

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@izumisy-tailor/tailor-data-viewer",
3
3
  "private": false,
4
- "version": "0.2.26",
4
+ "version": "0.2.28",
5
5
  "type": "module",
6
6
  "description": "Flexible data viewer component for Tailor Platform",
7
7
  "files": [
@@ -94,7 +94,7 @@ export interface PaginationProps {
94
94
  }
95
95
 
96
96
  const btnClass =
97
- "inline-flex items-center justify-center rounded-md border p-1.5 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground disabled:pointer-events-none disabled:opacity-50";
97
+ "inline-flex h-8 w-8 items-center justify-center rounded-md border text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground disabled:pointer-events-none disabled:opacity-50";
98
98
 
99
99
  /**
100
100
  * Pagination controls with first/prev/next/last navigation and page indicator.
@@ -12,7 +12,7 @@ interface TableRootProps extends ComponentProps<"table"> {
12
12
 
13
13
  function Root({ className, tableLayout = "fixed", ...props }: TableRootProps) {
14
14
  return (
15
- <div className="relative w-full overflow-x-auto">
15
+ <div className="relative w-full overflow-x-auto rounded-md border bg-background">
16
16
  <table
17
17
  className={cn(
18
18
  "w-full caption-bottom text-sm",