@tanstack/vue-query-devtools 5.52.3 → 5.53.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.
@@ -1,9 +1,9 @@
1
1
  import { DevtoolsOptions } from './types.cjs';
2
-
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<DevtoolsOptions>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<DevtoolsOptions>>>, {}, {}>;
2
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<DevtoolsOptions>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<DevtoolsOptions>>>, {}, {}>;
4
3
  export default _default;
4
+
5
5
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
6
- type __VLS_TypePropsToRuntimeProps<T> = {
6
+ type __VLS_TypePropsToOption<T> = {
7
7
  [K in keyof T]-?: {} extends Pick<T, K> ? {
8
8
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
9
9
  } : {
@@ -1,4 +1,3 @@
1
1
  import { DefineComponent } from 'vue';
2
2
  import { DevtoolsOptions } from './types.cjs';
3
-
4
3
  export declare const VueQueryDevtools: DefineComponent<DevtoolsOptions, {}, unknown>;
@@ -1,3 +1,2 @@
1
1
  import { default as devtools } from './devtools.vue';
2
-
3
2
  export default devtools;
@@ -1,6 +1,5 @@
1
1
  import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '@tanstack/query-devtools';
2
2
  import { QueryClient } from '@tanstack/vue-query';
3
-
4
3
  export interface DevtoolsOptions {
5
4
  /**
6
5
  * Set this true if you want the dev tools to default to being open
@@ -1,9 +1,9 @@
1
1
  import { DevtoolsOptions } from './types.js';
2
-
3
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<DevtoolsOptions>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<DevtoolsOptions>>>, {}, {}>;
2
+ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<DevtoolsOptions>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<DevtoolsOptions>>>, {}, {}>;
4
3
  export default _default;
4
+
5
5
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
6
- type __VLS_TypePropsToRuntimeProps<T> = {
6
+ type __VLS_TypePropsToOption<T> = {
7
7
  [K in keyof T]-?: {} extends Pick<T, K> ? {
8
8
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
9
9
  } : {
@@ -1,4 +1,3 @@
1
1
  import { DefineComponent } from 'vue';
2
2
  import { DevtoolsOptions } from './types.js';
3
-
4
3
  export declare const VueQueryDevtools: DefineComponent<DevtoolsOptions, {}, unknown>;
@@ -1,3 +1,2 @@
1
1
  import { default as devtools } from './devtools.vue';
2
-
3
2
  export default devtools;
@@ -1,6 +1,5 @@
1
1
  import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '@tanstack/query-devtools';
2
2
  import { QueryClient } from '@tanstack/vue-query';
3
-
4
3
  export interface DevtoolsOptions {
5
4
  /**
6
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.52.3",
3
+ "version": "5.53.2",
4
4
  "description": "Developer tools to interact with and visualize the TanStack/vue-query cache",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -47,11 +47,11 @@
47
47
  "vite": "^5.3.5",
48
48
  "vue": "^3.4.27",
49
49
  "vue-tsc": "^2.0.26",
50
- "@tanstack/vue-query": "5.52.3"
50
+ "@tanstack/vue-query": "5.53.2"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "vue": "^3.3.0",
54
- "@tanstack/vue-query": "^5.52.3"
54
+ "@tanstack/vue-query": "^5.53.2"
55
55
  },
56
56
  "scripts": {}
57
57
  }