Update to 1.1.14

This commit is contained in:
2026-02-05 22:16:28 +01:00
parent 3b003f3363
commit 310b5f39dc
15 changed files with 19 additions and 14 deletions
@@ -5,11 +5,11 @@ import Keyboard from '../keyboard/Keyboard';
export default function Input(props: {
type?: string;
topKeyboard?: boolean;
value: any;
value: number | string;
min?: number;
max?: number;
step?: number;
placeholder?: any;
placeholder?: string;
className?: string;
disabled?: boolean;
onChange?: (value: string) => void;