remove debounce in favor of solid-primitive

This commit is contained in:
Chris Kruining 2025-01-08 11:31:16 +01:00
parent caa35c92e9
commit 7e5af28ac2
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
7 changed files with 6 additions and 49 deletions

View file

@ -1,9 +1,10 @@
import { Accessor, Component, createEffect, createMemo, createSignal, JSX } from "solid-js";
import { debounce, decode, Mutation } from "~/utilities";
import { decode, Mutation } from "~/utilities";
import { Column, GridApi as GridCompApi, Grid as GridComp } from "~/components/grid";
import { createDataSet, DataSetNode, DataSetRowNode } from "~/components/table";
import { SelectionItem } from "../selectable";
import { useI18n } from "../i18n";
import { debounce } from "@solid-primitives/scheduled";
import css from "./grid.module.css"
export type Entry = { key: string } & { [lang: string]: string };