Create internal db debugger

This commit is contained in:
Jamie Kyle 2025-08-20 13:00:14 -07:00 committed by GitHub
commit ae7c2c09a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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