diff --git a/src/components/Playground.tsx b/src/components/Playground.tsx index a0cd069..c2d4bc2 100644 --- a/src/components/Playground.tsx +++ b/src/components/Playground.tsx @@ -44,6 +44,13 @@ export type ControlTemplate = Record< onChange: (value: string) => void; onToggle: (v: boolean) => void; } + | { + type: "number"; + value: number; + disabled?: boolean; + onChange: (value: number) => void; + onToggle: (v: boolean) => void; + } > >; @@ -115,6 +122,14 @@ export function PlaygroundControl(props: { ))} + ) : propMeta.type === "number" ? ( + + propMeta.onChange(e.currentTarget.valueAsNumber) + } + /> ) : null} ))}