@tanstack/devtools
Advanced tools
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
+1
-1
@@ -33,3 +33,3 @@ import { initialState, DevtoolsProvider, PiPProvider } from './chunk/KKMMZ2TR.js'; | ||
| const _self$ = this; | ||
| this.#Component = lazy(() => import('./devtools/RZMDLR3T.js')); | ||
| this.#Component = lazy(() => import('./devtools/PYVV4DLY.js')); | ||
| const Devtools = this.#Component; | ||
@@ -36,0 +36,0 @@ this.#eventBus = new ClientEventBus(this.#eventBusConfig); |
+1
-1
@@ -33,3 +33,3 @@ import { initialState, DevtoolsProvider, PiPProvider } from './chunk/KKMMZ2TR.js'; | ||
| const _self$ = this; | ||
| this.#Component = lazy(() => import('./devtools/RZMDLR3T.js')); | ||
| this.#Component = lazy(() => import('./devtools/PYVV4DLY.js')); | ||
| const Devtools = this.#Component; | ||
@@ -36,0 +36,0 @@ this.#eventBus = new ClientEventBus(this.#eventBusConfig); |
+1
-1
| { | ||
| "name": "@tanstack/devtools", | ||
| "version": "0.10.3", | ||
| "version": "0.10.4", | ||
| "description": "TanStack Devtools is a set of tools for building advanced devtools for your application.", | ||
@@ -5,0 +5,0 @@ "author": "Tanner Linsley", |
+15
-0
@@ -168,2 +168,16 @@ import { Show, createEffect, createSignal, onCleanup } from 'solid-js' | ||
| createEffect(() => { | ||
| const isEditableTarget = (element: Element | null) => { | ||
| if (!element || !(element instanceof HTMLElement)) return false | ||
| if (element.isContentEditable) return true | ||
| const tagName = element.tagName | ||
| if ( | ||
| tagName === 'INPUT' || | ||
| tagName === 'TEXTAREA' || | ||
| tagName === 'SELECT' | ||
| ) { | ||
| return true | ||
| } | ||
| return element.getAttribute('role') === 'textbox' | ||
| } | ||
| const permutations = getHotkeyPermutations(settings().openHotkey) | ||
@@ -173,2 +187,3 @@ | ||
| createShortcut(permutation, () => { | ||
| if (isEditableTarget(document.activeElement)) return | ||
| toggleOpen() | ||
@@ -175,0 +190,0 @@ }) |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
552525
0.25%15471
0.22%