@stoker-platform/web-app 0.5.65 → 0.5.66

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.66
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: remove list table header hover state
8
+
3
9
  ## 0.5.65
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.65",
3
+ "version": "0.5.66",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
package/src/List.tsx CHANGED
@@ -1715,7 +1715,7 @@ export function List({
1715
1715
  <Table className="list-table">
1716
1716
  <TableHeader>
1717
1717
  {table.getHeaderGroups().map((headerGroup) => (
1718
- <TableRow key={headerGroup.id}>
1718
+ <TableRow key={headerGroup.id} className="hover:bg-transparent">
1719
1719
  {headerGroup.headers.map((header) => {
1720
1720
  let className = ""
1721
1721
  if (header.id !== "select") {