{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "correct-number-input", "type": "registry:ui", "title": "Correct Number Input", "description": "iOS 26 liquid-glass number input with floating label, integrated stepper buttons, and haptic sound.", "dependencies": [ "motion" ], "files": [ { "path": "registry/ruixenui/correct-number-input.tsx", "content": "\"use client\";\n\nimport * as React from \"react\";\nimport { motion } from \"motion/react\";\n\n/* ── sound ── */\nlet _a: AudioContext, _b: AudioBuffer;\nconst tick = () => {\n if (typeof window === \"undefined\") return;\n if (!_a) {\n _a = new AudioContext();\n _b = _a.createBuffer(1, (_a.sampleRate * 0.003) | 0, _a.sampleRate);\n const d = _b.getChannelData(0);\n for (let i = 0; i < d.length; i++)\n d[i] = (Math.random() * 2 - 1) * (1 - i / d.length) ** 4;\n }\n const s = _a.createBufferSource();\n s.buffer = _b;\n const g = _a.createGain();\n g.gain.value = 0.08;\n s.connect(g).connect(_a.destination);\n s.start();\n};\n\n/* ── theme ── */\nconst CSS = `\n.ni{\n --ni-glass:linear-gradient(180deg,rgba(255,255,255,0.78),rgba(255,255,255,0.62));\n --ni-border:rgba(0,0,0,0.06);\n --ni-shadow:0 0 1px rgba(0,0,0,0.04),0 2px 8px rgba(0,0,0,0.04),inset 0 1px 0 rgba(255,255,255,0.8);\n --ni-dim:rgba(0,0,0,0.42);\n --ni-mid:rgba(0,0,0,0.55);\n --ni-hi:rgba(0,0,0,0.88);\n --ni-focus:rgba(0,0,0,0.12);\n --ni-btn:rgba(0,0,0,0.03);\n --ni-btn-h:rgba(0,0,0,0.07);\n --ni-sep:rgba(0,0,0,0.06)\n}\n.dark .ni,[data-theme=\"dark\"] .ni{\n --ni-glass:linear-gradient(180deg,rgba(255,255,255,0.05),rgba(255,255,255,0.02));\n --ni-border:rgba(255,255,255,0.07);\n --ni-shadow:0 1px 3px rgba(0,0,0,0.08),inset 0 1px 0 rgba(255,255,255,0.04);\n --ni-dim:rgba(255,255,255,0.28);\n --ni-mid:rgba(255,255,255,0.5);\n --ni-hi:rgba(255,255,255,0.88);\n --ni-focus:rgba(255,255,255,0.12);\n --ni-btn:rgba(255,255,255,0.03);\n --ni-btn-h:rgba(255,255,255,0.07);\n --ni-sep:rgba(255,255,255,0.06)\n}`;\n\n/* ── types ── */\ninterface CorrectNumberInputProps {\n label?: string;\n hint?: string;\n defaultValue?: number;\n min?: number;\n max?: number;\n step?: number;\n onChange?: (value: number) => void;\n sound?: boolean;\n style?: React.CSSProperties;\n}\n\n/* ── component ── */\nexport default function CorrectNumberInput({\n label = \"Amount\",\n hint,\n defaultValue = 0,\n min,\n max,\n step = 1,\n onChange,\n sound = true,\n style,\n}: CorrectNumberInputProps) {\n const [value, setValue] = React.useState(defaultValue);\n const [focused, setFocused] = React.useState(false);\n const inputRef = React.useRef(null);\n const hasValue = value !== 0 || focused;\n\n const clamp = (v: number) => {\n let n = v;\n if (min !== undefined) n = Math.max(min, n);\n if (max !== undefined) n = Math.min(max, n);\n return n;\n };\n\n const setVal = (v: number) => {\n const c = clamp(v);\n setValue(c);\n onChange?.(c);\n };\n\n const increment = () => {\n const next = clamp(value + step);\n if (next !== value) {\n if (sound) tick();\n setVal(next);\n }\n };\n\n const decrement = () => {\n const next = clamp(value - step);\n if (next !== value) {\n if (sound) tick();\n setVal(next);\n }\n };\n\n return (\n <>\n