@acusti/input-text
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -41,5 +41,5 @@ import * as React from 'react'; | ||
}, []); | ||
return (React.createElement("input", { autoComplete: autoComplete, className: className, defaultValue: initialValue || placeholder || '', disabled: disabled, maxLength: maxLength, minLength: minLength, onBlur: handleBlur, onChange: onChange, onFocus: onFocus, onKeyDown: onKeyDown, onKeyUp: onKeyUp, onSelect: handleSelect, pattern: pattern, placeholder: placeholder, readOnly: readOnly, ref: inputRef, title: title, type: type })); | ||
return (React.createElement("input", { autoComplete: autoComplete, className: className, defaultValue: initialValue || '', disabled: disabled, maxLength: maxLength, minLength: minLength, onBlur: handleBlur, onChange: onChange, onFocus: onFocus, onKeyDown: onKeyDown, onKeyUp: onKeyUp, onSelect: handleSelect, pattern: pattern, placeholder: placeholder, readOnly: readOnly, ref: inputRef, title: title, type: type })); | ||
}); | ||
export default InputText; | ||
//# sourceMappingURL=InputText.js.map |
{ | ||
"name": "@acusti/input-text", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "exports": "./dist/InputText.js", |
# @acusti/input-text | ||
InputText is a React component that renders an uncontrolled input whose | ||
![latest version](https://img.shields.io/npm/v/@acusti/input-text?style=for-the-badge) | ||
![dependencies status](https://img.shields.io/david/acusti/uikit?path=packages%2Finput-text&style=for-the-badge) | ||
![bundle size](https://img.shields.io/bundlephobia/min/@acusti/input-text?style=for-the-badge) | ||
![downloads per month](https://img.shields.io/npm/dm/@acusti/input-text?style=for-the-badge) | ||
`InputText` is a React component that renders an uncontrolled input whose | ||
value is overwritten whenever props.initialValue changes and that selects | ||
the contents of the input whenever it is focused. |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7790
11