Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions semcore/inline-input/src/index.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,23 @@ export type InlineInputProps = BoxProps & {
) => void;
/**
* Text value of input. Should be used with `onChange` property together
* @deprecated
*/
value?: string;
Comment thread
Valeria-Zimnitskaya marked this conversation as resolved.
/**
* Initial text value of input
* @deprecated
*/
defaultValue?: string;
/**
* Makes component to catch browser focus on component mount
* @default false
* @deprecated
*/
autoFocus?: boolean;
/**
* Gray text displayed in empty input
* @deprecated
*/
placeholder?: string;
/**
Expand Down Expand Up @@ -90,10 +94,12 @@ export type InlineInputValueProps = BoxProps & {
onChange?: (value: string, event: React.ChangeEvent) => void;
/**
* visual state of component
* @deprecated
*/
state?: 'normal' | 'valid' | 'invalid';
/**
* shows spinner in `InlineInput.ConfirmControl` and disables other interactive elements
* @deprecated
*/
loading?: boolean;
/**
Expand Down
Loading