Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@paprika/input
Advanced tools
The Input component is a standard text input with some enhancements that can be used as a controlled or uncontrolled component.
The Input component is a standard text input with some enhancements that can be used as a controlled or uncontrolled component.
yarn add @paprika/input
or with npm:
npm install @paprika/input
Prop | Type | required | default | Description |
---|---|---|---|---|
a11yText | string | false | null | Provides a non-visible label for this input for assistive technologies. |
children | node | false | null | Optional Input.Container to collect props for root DOM element. |
clearIcon | node | false | null | Custom icon for the clear action in the input. |
defaultValue | string | false | null | Sets the default input value for an uncontrolled component. |
hasClearButton | bool | false | false | If true displays a clear button inside the input if it contains a value. |
hasError | bool | false | false | If true displays a red border around input to show error. |
icon | node | false | null | Displays an icon inside the input. |
isDisabled | bool | false | false | If true it makes the input disabled. |
isReadOnly | bool | false | false | If true it makes the input read only. |
onChange | func | false | () => {} | Callback to be executed when the input value is changed. Receives the onChange event as an argument, except when the clear button is clicked, then the argument is null. Required when value prop is provided (component is controlled). |
size | [ Input.types.size.SMALL, Input.types.size.MEDIUM, Input.types.size.LARGE] | false | Input.types.size.MEDIUM | Changes the size of the input. |
type | [ Input.types.type.EMAIL, Input.types.type.PASSWORD, Input.types.type.SEARCH, Input.types.type.TELEPHONE, Input.types.type.TEXT, Input.types.type.URL] | false | Input.types.type.TEXT | Allows user to specify the type of input. |
value | string | false | undefined | The value inside of the input |
All props and attributes are spread onto the root container <div>
element.
The <Input>
can be used as a controlled or an uncontrolled component.
To use it as controlled:
import Input from "@paprika/input";
...
const [value, setValue] = React.useState("default value");
...
<Input
value={value}
onChange={event => {
setValue(event ? event.target.value : "");
}}
/>
To use it as an uncontrolled component:
import Input from "@paprika/input";
...
const refInput = React.useRef();
...
<Input
defaultValue="default value"
ref={refInput}
/>
...
refInput.current.value // latest value
The <L10n>
component is a required context provider when the hasClearButton
prop is provided. It should wrap the <Input>
(or your application) for localization of the clear button's ARIA label.
FAQs
The Input component is a standard text input with some enhancements that can be used as a controlled or uncontrolled component.
The npm package @paprika/input receives a total of 1,646 weekly downloads. As such, @paprika/input popularity was classified as popular.
We found that @paprika/input demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.