@yamada-ui/input
Version:
Yamada UI input component
53 lines (52 loc) • 1.95 kB
JavaScript
"use client"
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/input.tsx
var input_exports = {};
__export(input_exports, {
Input: () => Input
});
module.exports = __toCommonJS(input_exports);
var import_core = require("@yamada-ui/core");
var import_form_control = require("@yamada-ui/form-control");
var import_utils = require("@yamada-ui/utils");
var import_jsx_runtime = require("react/jsx-runtime");
var Input = (0, import_core.forwardRef)((props, ref) => {
const [styles, mergedProps] = (0, import_core.useComponentMultiStyle)("Input", props);
const computedProps = (0, import_core.omitThemeProps)(mergedProps);
const { className, htmlSize, __css, ...rest } = (0, import_form_control.useFormControlProps)(computedProps);
const css = { ...styles.field, ...__css };
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_core.ui.input,
{
ref,
className: (0, import_utils.cx)("ui-input", className),
size: htmlSize,
__css: css,
...rest
}
);
});
Input.displayName = "Input";
Input.__ui__ = "Input";
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Input
});
//# sourceMappingURL=input.js.map