Newest EFB

This commit is contained in:
2025-12-07 02:09:41 +01:00
parent f708bbf72c
commit ccb96e15e2
7 changed files with 18 additions and 99 deletions
@@ -4,6 +4,7 @@ import Keyboard from '../keyboard/Keyboard';
export default function Input(props: {
type?: string;
topKeyboard?: boolean;
value: any;
min?: number;
max?: number;
@@ -66,6 +67,7 @@ export default function Input(props: {
{showKeyboard && (
<Keyboard
ref={keyboardRef}
top={props.topKeyboard}
value={String(props.value)}
blurRef={blurRef}
onInput={(value) => props.onChange && props.onChange(value)}