Create internal db debugger

This commit is contained in:
Jamie Kyle
2025-08-20 13:00:14 -07:00
committed by GitHub
parent 31544d68a2
commit ae7c2c09a4
9 changed files with 130 additions and 3 deletions

View File

@@ -37,6 +37,7 @@ export type PropsType = {
onFocus?: () => unknown;
onEnter?: () => unknown;
placeholder: string;
readOnly?: boolean;
value?: string;
whenToShowRemainingCount?: number;
whenToWarnRemainingCount?: number;
@@ -84,6 +85,7 @@ export const Input = forwardRef<
onFocus,
onEnter,
placeholder,
readOnly,
value = '',
whenToShowRemainingCount = Infinity,
whenToWarnRemainingCount = Infinity,
@@ -226,6 +228,7 @@ export const Input = forwardRef<
onKeyDown: handleKeyDown,
onPaste: handlePaste,
placeholder,
readOnly,
ref: refMerger<HTMLInputElement | HTMLTextAreaElement | null>(
ref,
innerRef