@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
31 lines (30 loc) • 1.63 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import { jsx as _jsx } from "react/jsx-runtime";
import classNames from "classnames";
import { forwardRef } from "react";
const SIZE = ["m", "l"];
export const VuiBasicInput = forwardRef((_a, ref) => {
var { className, id, name, placeholder, size = "m", fullWidth, onSubmit, isInvalid, autoFocus, autoComplete } = _a, rest = __rest(_a, ["className", "id", "name", "placeholder", "size", "fullWidth", "onSubmit", "isInvalid", "autoFocus", "autoComplete"]);
const classes = classNames("vuiInput", `vuiInput--${size}`, {
"vuiInput-isInvalid": isInvalid,
"vuiInput--fullWidth": fullWidth
}, className);
const handleKeyDown = (e) => {
if (e.key === "Enter") {
e.preventDefault();
e.stopPropagation();
onSubmit === null || onSubmit === void 0 ? void 0 : onSubmit();
}
};
return (_jsx("input", Object.assign({ type: "text", autoComplete: autoComplete === true ? "on" : autoComplete === false ? "off" : autoComplete, autoFocus: autoFocus, ref: ref, className: classes, id: id, name: name, placeholder: placeholder, onKeyDown: handleKeyDown }, rest)));
});