From 81ab127f6321e53a3d3e39fcc26c88d5443a7900 Mon Sep 17 00:00:00 2001 From: Adam <2363879+adamdotdevin@users.noreply.github.com> Date: Thu, 6 Nov 2025 09:49:39 -0600 Subject: [PATCH] fix(desktop): demo type error --- packages/ui/src/demo.tsx | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/packages/ui/src/demo.tsx b/packages/ui/src/demo.tsx index 5893ca75..6d60c25a 100644 --- a/packages/ui/src/demo.tsx +++ b/packages/ui/src/demo.tsx @@ -126,7 +126,7 @@ const Demo: Component = () => { - `Dynamic tooltip: ${new Date().toLocaleTimeString()}`} placement="top"> + @@ -141,7 +141,9 @@ const Demo: Component = () => { setInputValue(e.currentTarget.value)} + onInput={(e: InputEvent & { currentTarget: HTMLInputElement }) => + setInputValue(e.currentTarget.value) + } /> @@ -158,8 +160,15 @@ const Demo: Component = () => { checked={checked()} onChange={setChecked} /> - - + + { Example Dialog - This is an example dialog with a title and description. -
+ + This is an example dialog with a title and description. + +
@@ -249,7 +267,10 @@ const Demo: Component = () => {
-

Kobalte is a UI toolkit for building accessible web apps and design systems with SolidJS.

+

+ Kobalte is a UI toolkit for building accessible web apps and design systems with + SolidJS. +