Big News: Socket Selected for OpenAI's Cybersecurity Grant Program.Details
Socket
Book a DemoSign in
Socket

@tanstack/devtools

Package Overview
Dependencies
Maintainers
4
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/devtools - npm Package Compare versions

Comparing version
0.10.3
to
0.10.4
dist/devtools/7D2JIOTG.js

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);

@@ -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);

{
"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",

@@ -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