@tanstack/vue-query-devtools 5.74.5 → 5.74.7

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.
@@ -1,5 +1,5 @@
1
- import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '../../query-devtools/src';
2
- import { QueryClient } from '../../vue-query/src';
1
+ import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '@tanstack/query-devtools';
2
+ import { QueryClient } from '@tanstack/vue-query';
3
3
  export interface DevtoolsOptions {
4
4
  /**
5
5
  * Set this true if you want the dev tools to default to being open
@@ -1,5 +1,5 @@
1
- import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '../../query-devtools/src';
2
- import { QueryClient } from '../../vue-query/src';
1
+ import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '@tanstack/query-devtools';
2
+ import { QueryClient } from '@tanstack/vue-query';
3
3
  export interface DevtoolsOptions {
4
4
  /**
5
5
  * Set this true if you want the dev tools to default to being open
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/vue-query-devtools",
3
- "version": "5.74.5",
3
+ "version": "5.74.7",
4
4
  "description": "Developer tools to interact with and visualize the TanStack/vue-query cache",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -20,10 +20,12 @@
20
20
  "main": "dist/esm/index.js",
21
21
  "exports": {
22
22
  ".": {
23
+ "@tanstack/custom-condition": "./src/index.ts",
23
24
  "types": "./dist/esm/index.d.ts",
24
25
  "default": "./dist/esm/index.js"
25
26
  },
26
27
  "./production": {
28
+ "@tanstack/custom-condition": "./src/production.ts",
27
29
  "types": "./dist/esm/production.d.ts",
28
30
  "default": "./dist/esm/production.js"
29
31
  },
@@ -40,7 +42,7 @@
40
42
  "!src/__tests__"
41
43
  ],
42
44
  "dependencies": {
43
- "@tanstack/query-devtools": "5.73.3"
45
+ "@tanstack/query-devtools": "5.74.7"
44
46
  },
45
47
  "devDependencies": {
46
48
  "@vitejs/plugin-vue": "^5.2.1",
@@ -49,11 +51,11 @@
49
51
  "vite": "^6.2.4",
50
52
  "vue": "^3.4.27",
51
53
  "vue-tsc": "^2.2.8",
52
- "@tanstack/vue-query": "5.74.5"
54
+ "@tanstack/vue-query": "5.74.7"
53
55
  },
54
56
  "peerDependencies": {
55
57
  "vue": "^3.3.0",
56
- "@tanstack/vue-query": "^5.74.5"
58
+ "@tanstack/vue-query": "^5.74.7"
57
59
  },
58
60
  "scripts": {}
59
61
  }