From 5e3c0c97e5f53a83ca26049713d7b8b868ae7c4f Mon Sep 17 00:00:00 2001 From: Piotr Oleszczyk Date: Fri, 27 Feb 2026 10:24:34 +0100 Subject: [PATCH] fix: re-export WithElementRef, WithoutChild, WithoutChildrenOrChild from utils MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit shadcn-svelte components import these types from \$lib/utils — add re-exports from bits-ui to resolve 25 type errors. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/lib/utils.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/lib/utils.ts b/frontend/src/lib/utils.ts index 256f86f..5c7e73b 100644 --- a/frontend/src/lib/utils.ts +++ b/frontend/src/lib/utils.ts @@ -4,3 +4,5 @@ import { twMerge } from 'tailwind-merge'; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } + +export type { WithElementRef, WithoutChild, WithoutChildrenOrChild } from 'bits-ui';