@tanstack/query-devtools 5.13.5 → 5.14.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/build/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { createSignal, render, lazy, setupStyleSheet, createComponent, mergeProps } from './chunk/7TPOKDOT.js';
1
+ import { createSignal, render, lazy, setupStyleSheet, createComponent, mergeProps } from './chunk/CQKFH7YS.js';
2
2
 
3
3
  // src/index.tsx
4
4
  var TanstackQueryDevtools = class {
@@ -65,7 +65,7 @@ var TanstackQueryDevtools = class {
65
65
  if (this.#Component) {
66
66
  Devtools = this.#Component;
67
67
  } else {
68
- Devtools = lazy(() => import('./Devtools/N66J3ZXT.js'));
68
+ Devtools = lazy(() => import('./Devtools/2NWMMIDL.js'));
69
69
  this.#Component = Devtools;
70
70
  }
71
71
  setupStyleSheet(this.#styleNonce);
package/build/index.jsx CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  lazy,
4
4
  render,
5
5
  setupStyleSheet
6
- } from "./chunk/LRQXE5TJ.jsx";
6
+ } from "./chunk/4WPHY6P7.jsx";
7
7
 
8
8
  // src/index.tsx
9
9
  var TanstackQueryDevtools = class {
@@ -70,7 +70,7 @@ var TanstackQueryDevtools = class {
70
70
  if (this.#Component) {
71
71
  Devtools = this.#Component;
72
72
  } else {
73
- Devtools = lazy(() => import("./Devtools/KEJBG6PF.jsx"));
73
+ Devtools = lazy(() => import("./Devtools/RB22CS4R.jsx"));
74
74
  this.#Component = Devtools;
75
75
  }
76
76
  setupStyleSheet(this.#styleNonce);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/query-devtools",
3
- "version": "5.13.5",
3
+ "version": "5.14.6",
4
4
  "description": "Developer tools to interact with and visualize the TanStack Query cache",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -38,19 +38,19 @@
38
38
  "src"
39
39
  ],
40
40
  "devDependencies": {
41
- "@kobalte/core": "^0.11.0",
41
+ "@kobalte/core": "^0.11.2",
42
42
  "@solid-primitives/keyed": "^1.2.0",
43
- "@solid-primitives/resize-observer": "^2.0.18",
43
+ "@solid-primitives/resize-observer": "^2.0.22",
44
44
  "@solid-primitives/storage": "^1.3.11",
45
45
  "@tanstack/match-sorter-utils": "^8.8.4",
46
46
  "clsx": "^2.0.0",
47
47
  "goober": "^2.1.13",
48
48
  "solid-js": "^1.8.1",
49
- "solid-transition-group": "^0.2.2",
50
- "superjson": "^1.12.4",
49
+ "solid-transition-group": "^0.2.3",
50
+ "superjson": "^1.13.3",
51
51
  "tsup-preset-solid": "^2.1.0",
52
52
  "vite-plugin-solid": "^2.7.2",
53
- "@tanstack/query-core": "5.13.4"
53
+ "@tanstack/query-core": "5.14.2"
54
54
  },
55
55
  "scripts": {
56
56
  "clean": "rimraf ./build && rimraf ./coverage",
package/src/Devtools.tsx CHANGED
@@ -57,7 +57,6 @@ import {
57
57
  useQueryDevtoolsContext,
58
58
  useTheme,
59
59
  } from './Context'
60
- import { loadFonts } from './fonts'
61
60
  import type {
62
61
  DevToolsErrorType,
63
62
  DevtoolsButtonPosition,
@@ -138,8 +137,6 @@ const DevtoolsComponent: DevtoolsComponentType = (props) => {
138
137
  export default DevtoolsComponent
139
138
 
140
139
  const Devtools: Component<DevtoolsPanelProps> = (props) => {
141
- loadFonts()
142
-
143
140
  const theme = useTheme()
144
141
  const styles = createMemo(() => {
145
142
  return theme() === 'dark' ? darkStyles : lightStyles
package/src/fonts.ts DELETED
@@ -1,7 +0,0 @@
1
- export const loadFonts = () => {
2
- const link = document.createElement('link')
3
- link.href =
4
- 'https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto&display=swap'
5
- link.rel = 'stylesheet'
6
- document.head.appendChild(link)
7
- }