@tanstack/svelte-query-devtools 5.0.0-alpha.82 → 5.0.0-alpha.84
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/dist/Devtools.svelte
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>import { onMount } from "svelte";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { BROWSER, DEV } from "esm-env";
|
|
3
|
+
import { onlineManager, useQueryClient } from "@tanstack/svelte-query";
|
|
4
4
|
export let initialIsOpen = false;
|
|
5
5
|
export let buttonPosition = "bottom-left";
|
|
6
6
|
export let position = "bottom";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SvelteComponentTyped } from "svelte";
|
|
2
2
|
import type { QueryClient } from '@tanstack/svelte-query';
|
|
3
|
-
import type {
|
|
3
|
+
import type { DevToolsErrorType, DevtoolsPosition } from '@tanstack/query-devtools';
|
|
4
4
|
declare const __propDef: {
|
|
5
5
|
props: {
|
|
6
6
|
initialIsOpen?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Devtools.svelte.d.ts","sourceRoot":"","sources":["../../src/Devtools.svelte.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,QAAQ,CAAA;
|
|
1
|
+
{"version":3,"file":"Devtools.svelte.d.ts","sourceRoot":"","sources":["../../src/Devtools.svelte.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,QAAQ,CAAA;AAM7C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AACzD,OAAO,KAAK,EACR,iBAAiB,EAEjB,gBAAgB,EAEjB,MAAM,0BAA0B,CAAA;AAqDnC,QAAA,MAAM,SAAS;;;;;;;;;;;;CAAwC,CAAC;AACxD,MAAM,MAAM,aAAa,GAAG,OAAO,SAAS,CAAC,KAAK,CAAC;AACnD,MAAM,MAAM,cAAc,GAAG,OAAO,SAAS,CAAC,MAAM,CAAC;AACrD,MAAM,MAAM,aAAa,GAAG,OAAO,SAAS,CAAC,KAAK,CAAC;AAEnD,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,oBAAoB,CAAC,aAAa,EAAE,cAAc,EAAE,aAAa,CAAC;CACvG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/svelte-query-devtools",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.84",
|
|
4
4
|
"description": "Developer tools to interact with and visualize the TanStack/svelte-query cache",
|
|
5
5
|
"author": "Lachlan Collins",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"esm-env": "^1.0.0",
|
|
32
|
-
"@tanstack/query-devtools": "5.0.0-alpha.
|
|
32
|
+
"@tanstack/query-devtools": "5.0.0-alpha.84"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@sveltejs/package": "^2.1.0",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"tslib": "^2.5.2",
|
|
41
41
|
"typescript": "^5.0.4",
|
|
42
42
|
"vite": "^4.2.0",
|
|
43
|
-
"@tanstack/svelte-query": "5.0.0-alpha.
|
|
43
|
+
"@tanstack/svelte-query": "5.0.0-alpha.84"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"svelte": ">=3 <5",
|
|
47
|
-
"@tanstack/svelte-query": "5.0.0-alpha.
|
|
47
|
+
"@tanstack/svelte-query": "5.0.0-alpha.84"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"clean": "rimraf ./dist && rimraf ./coverage",
|
package/src/Devtools.svelte
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import { onMount } from 'svelte'
|
|
3
|
-
import {
|
|
3
|
+
import { BROWSER, DEV } from 'esm-env'
|
|
4
|
+
import { onlineManager, useQueryClient } from '@tanstack/svelte-query'
|
|
4
5
|
import type { QueryClient } from '@tanstack/svelte-query'
|
|
5
|
-
import { useQueryClient, onlineManager } from '@tanstack/svelte-query'
|
|
6
6
|
import type {
|
|
7
|
-
|
|
7
|
+
DevToolsErrorType,
|
|
8
8
|
DevtoolsButtonPosition,
|
|
9
9
|
DevtoolsPosition,
|
|
10
|
-
|
|
10
|
+
TanstackQueryDevtools,
|
|
11
11
|
} from '@tanstack/query-devtools'
|
|
12
12
|
|
|
13
13
|
export let initialIsOpen = false
|