
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@rc-component/input
Advanced tools
import Input from '@rc-component/input';
import { render } from 'react-dom';
render(<Input placeholder="input" allowClear />, mountNode);
import Input from '@rc-component/input';
import { render } from 'react-dom';
render(<Input.TextArea autoSize showCount />, mountNode);
| Property | Type | Default | Description |
|---|---|---|---|
| prefixCls | string | rc-input | |
| className | string | '' | additional class name of input |
| style | React.CSSProperties | style properties of input | |
| affixWrapperClassName | string | - | className with '@rc-component/input-affix-wrapper' |
| groupClassName | string | - | className with '@rc-component/input-group-wrapper' |
| wrapperClassName | string | - | className with '@rc-component/input-wrapper' |
| addonAfter | ReactNode | - | The label text displayed after (on the right side of) the input field |
| addonBefore | ReactNode | - | The label text displayed before (on the left side of) the input field |
| allowClear | boolean | { clearIcon: ReactNode } | false | If allow to remove input content with clear icon |
| bordered | boolean | true | Whether has border style |
| defaultValue | string | - | The initial input content |
| disabled | boolean | false | Whether the input is disabled |
| id | string | - | The ID for input |
| maxLength | number | - | The max length |
| showCount | boolean | { formatter: ({ value: string, count: number, maxLength?: number }) => ReactNode } | false | Whether show text count |
| prefix | ReactNode | - | The prefix icon for the Input |
| suffix | ReactNode | - | The suffix icon for the Input |
| type | string | text | The type of input, see: MDN( use Input.TextArea instead of type="textarea") |
| value | string | - | The input content value |
| onChange | function(e) | - | Callback when user input |
| onPressEnter | function(e) | - | The callback function that is triggered when Enter key is pressed |
rc-textarea has been migrated into @rc-component/input. Use Input.TextArea or the named TextArea export for all textarea-related features.
import Input, { TextArea } from '@rc-component/input';
<Input.TextArea allowClear autoSize />;
<TextArea showCount maxLength={100} />;
| Property | Type | Default | Description |
|---|---|---|---|
| prefixCls | string | rc-textarea | |
| className | string | '' | additional class name of textarea |
| style | React.CSSProperties | - | style properties of textarea |
| autoSize | boolean | object | - | Height autosize feature, can be set to true|false or an object { minRows: 2, maxRows: 6 } |
| allowClear | boolean | { clearIcon } | false | If allow to remove textarea content with clear icon |
| showCount | boolean | { formatter } | false | Whether show text count |
| count | CountConfig | - | Custom count strategy / max / exceed formatter |
| onPressEnter | function(e) | - | The callback function that is triggered when Enter key is pressed |
| onResize | function({ width, height }) | - | The callback function that is triggered when resize |
const inputRef = useRef(null);
useEffect(() => {
inputRef.current.focus(); // the input will get focus
inputRef.current.blur(); // the input will lose focus
console.log(inputRef.current.input); // The origin input element
}, []);
// ....
<Input ref={inputRef} />;
| Property | Type | Description |
|---|---|---|
| focus | (options?: InputFocusOptions) => void | The input get focus when called |
| blur | () => void | The input loses focus when called |
| input | HTMLInputElement | null | The origin input element |
const textareaRef = useRef(null);
useEffect(() => {
textareaRef.current.focus();
textareaRef.current.blur();
console.log(textareaRef.current.resizableTextArea);
}, []);
<Input.TextArea ref={textareaRef} />;
| Property | Type | Description |
|---|---|---|
| focus | () => void | The textarea get focus when called |
| blur | () => void | The textarea loses focus when called |
| resizableTextArea | ResizableTextAreaRef | Wrapped resizable textarea instance |
| nativeElement | HTMLElement | null | The outer holder element or textarea DOM |
npm install
npm start
@rc-component/input is released under the MIT license.
FAQs
React input component
The npm package @rc-component/input receives a total of 432,531 weekly downloads. As such, @rc-component/input popularity was classified as popular.
We found that @rc-component/input demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.