@tanstack/vue-query-devtools 6.2.1 → 6.2.2

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.
@@ -8,13 +8,15 @@ export interface DevtoolsOptions {
8
8
  /**
9
9
  * The position of the TanStack logo to open and close the devtools panel.
10
10
  * 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'relative'
11
- * Defaults to 'bottom-right'.
11
+ *
12
+ * @defaultValue bottom-right
12
13
  */
13
14
  buttonPosition?: DevtoolsButtonPosition;
14
15
  /**
15
16
  * The position of the Vue Query devtools panel.
16
17
  * 'top' | 'bottom' | 'left' | 'right'
17
- * Defaults to 'bottom'.
18
+ *
19
+ * @defaultValue bottom
18
20
  */
19
21
  position?: DevtoolsPosition;
20
22
  /**
@@ -39,7 +41,8 @@ export interface DevtoolsOptions {
39
41
  hideDisabledQueries?: boolean;
40
42
  /**
41
43
  * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel.
42
- * Defaults to 'system'.
44
+ *
45
+ * @defaultValue system
43
46
  */
44
47
  theme?: Theme;
45
48
  }
@@ -77,7 +80,8 @@ export interface DevtoolsPanelOptions {
77
80
  hideDisabledQueries?: boolean;
78
81
  /**
79
82
  * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel.
80
- * Defaults to 'system'.
83
+ *
84
+ * @defaultValue system
81
85
  */
82
86
  theme?: Theme;
83
87
  }
@@ -8,13 +8,15 @@ export interface DevtoolsOptions {
8
8
  /**
9
9
  * The position of the TanStack logo to open and close the devtools panel.
10
10
  * 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'relative'
11
- * Defaults to 'bottom-right'.
11
+ *
12
+ * @defaultValue bottom-right
12
13
  */
13
14
  buttonPosition?: DevtoolsButtonPosition;
14
15
  /**
15
16
  * The position of the Vue Query devtools panel.
16
17
  * 'top' | 'bottom' | 'left' | 'right'
17
- * Defaults to 'bottom'.
18
+ *
19
+ * @defaultValue bottom
18
20
  */
19
21
  position?: DevtoolsPosition;
20
22
  /**
@@ -39,7 +41,8 @@ export interface DevtoolsOptions {
39
41
  hideDisabledQueries?: boolean;
40
42
  /**
41
43
  * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel.
42
- * Defaults to 'system'.
44
+ *
45
+ * @defaultValue system
43
46
  */
44
47
  theme?: Theme;
45
48
  }
@@ -77,7 +80,8 @@ export interface DevtoolsPanelOptions {
77
80
  hideDisabledQueries?: boolean;
78
81
  /**
79
82
  * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel.
80
- * Defaults to 'system'.
83
+ *
84
+ * @defaultValue system
81
85
  */
82
86
  theme?: Theme;
83
87
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/vue-query-devtools",
3
- "version": "6.2.1",
3
+ "version": "6.2.2",
4
4
  "description": "Developer tools to interact with and visualize the TanStack/vue-query cache",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  "!src/__tests__"
43
43
  ],
44
44
  "dependencies": {
45
- "@tanstack/query-devtools": "5.103.1"
45
+ "@tanstack/query-devtools": "5.103.2"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@vitejs/plugin-vue": "^5.2.4",
@@ -51,11 +51,11 @@
51
51
  "vite": "^6.4.1",
52
52
  "vue": "^3.4.27",
53
53
  "vue-tsc": "^2.2.8",
54
- "@tanstack/vue-query": "5.103.1"
54
+ "@tanstack/vue-query": "5.103.2"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "vue": "^3.3.0",
58
- "@tanstack/vue-query": "^5.103.1"
58
+ "@tanstack/vue-query": "^5.103.2"
59
59
  },
60
60
  "nx": {
61
61
  "targets": {
package/src/types.ts CHANGED
@@ -14,13 +14,15 @@ export interface DevtoolsOptions {
14
14
  /**
15
15
  * The position of the TanStack logo to open and close the devtools panel.
16
16
  * 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'relative'
17
- * Defaults to 'bottom-right'.
17
+ *
18
+ * @defaultValue bottom-right
18
19
  */
19
20
  buttonPosition?: DevtoolsButtonPosition
20
21
  /**
21
22
  * The position of the Vue Query devtools panel.
22
23
  * 'top' | 'bottom' | 'left' | 'right'
23
- * Defaults to 'bottom'.
24
+ *
25
+ * @defaultValue bottom
24
26
  */
25
27
  position?: DevtoolsPosition
26
28
  /**
@@ -45,7 +47,8 @@ export interface DevtoolsOptions {
45
47
  hideDisabledQueries?: boolean
46
48
  /**
47
49
  * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel.
48
- * Defaults to 'system'.
50
+ *
51
+ * @defaultValue system
49
52
  */
50
53
  theme?: Theme
51
54
  }
@@ -86,7 +89,8 @@ export interface DevtoolsPanelOptions {
86
89
  hideDisabledQueries?: boolean
87
90
  /**
88
91
  * Set this to 'light', 'dark', or 'system' to change the theme of the devtools panel.
89
- * Defaults to 'system'.
92
+ *
93
+ * @defaultValue system
90
94
  */
91
95
  theme?: Theme
92
96
  }