@izumisy-tailor/tailor-data-viewer 0.3.3 → 0.3.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@izumisy-tailor/tailor-data-viewer",
3
3
  "private": false,
4
- "version": "0.3.3",
4
+ "version": "0.3.4",
5
5
  "type": "module",
6
6
  "description": "Flexible data viewer component for Tailor Platform",
7
7
  "files": [
@@ -165,7 +165,11 @@ export function Pagination({ labels, pageSizeOptions }: PaginationProps = {}) {
165
165
  onChange={(e) => setPageSize(Number(e.target.value))}
166
166
  >
167
167
  {pageSizeOptions.map((size) => (
168
- <option key={size} value={size}>
168
+ <option
169
+ key={size}
170
+ value={size}
171
+ className="bg-popover text-popover-foreground"
172
+ >
169
173
  {size}
170
174
  </option>
171
175
  ))}