chore(deps): update runtime and development packages

This commit is contained in:
Federico Jaramillo Martinez
2026-07-10 22:10:40 +02:00
parent abcf44b962
commit 32907bba5f
9 changed files with 1140 additions and 1326 deletions
@@ -64,9 +64,10 @@ describe("selectable row activation", () => {
type EventWithPath = Pick<Event, "composedPath">;
type KeyboardEventWithPath = EventWithPath & Pick<KeyboardEvent, "key" | "preventDefault" | "stopPropagation">;
type MatchTarget = EventTarget & Pick<Element, "matches">;
type MatchTarget = EventTarget & { matches: (selector: string) => boolean };
type MatchPredicate = (selector: string) => boolean;
function matchTarget(matches: Element["matches"]): MatchTarget {
function matchTarget(matches: MatchPredicate): MatchTarget {
return Object.assign(new EventTarget(), { matches });
}
+1
View File
@@ -0,0 +1 @@
/// <reference types="vite/client" />