Create internal db debugger
This commit is contained in:
parent
31544d68a2
commit
ae7c2c09a4
9 changed files with 130 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue