@tanstack/query-devtools 5.61.4 → 5.62.16

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/Devtools.tsx +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/query-devtools",
3
- "version": "5.61.4",
3
+ "version": "5.62.16",
4
4
  "description": "Developer tools to interact with and visualize the TanStack Query cache",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -55,7 +55,7 @@
55
55
  "superjson": "^2.2.1",
56
56
  "tsup-preset-solid": "^2.2.0",
57
57
  "vite-plugin-solid": "^2.10.2",
58
- "@tanstack/query-core": "5.61.4"
58
+ "@tanstack/query-core": "5.62.16"
59
59
  },
60
60
  "scripts": {}
61
61
  }
package/src/Devtools.tsx CHANGED
@@ -1622,7 +1622,10 @@ const QueryStatus: Component<QueryStatusProps> = (props) => {
1622
1622
  css`
1623
1623
  cursor: pointer;
1624
1624
  &:hover {
1625
- background: ${t(colors.gray[200], colors.darkGray[400])}${alpha[80]};
1625
+ background: ${t(
1626
+ colors.gray[200],
1627
+ colors.darkGray[400],
1628
+ )}${alpha[80]};
1626
1629
  }
1627
1630
  `,
1628
1631
  'tsqd-query-status-tag',