@chakra-ui/input
Version:
A React component for input text field
282 lines (276 loc) • 9.71 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/index.ts
var src_exports = {};
__export(src_exports, {
Input: () => Input,
InputAddon: () => InputAddon,
InputGroup: () => InputGroup,
InputLeftAddon: () => InputLeftAddon,
InputLeftElement: () => InputLeftElement,
InputRightAddon: () => InputRightAddon,
InputRightElement: () => InputRightElement,
useInputGroupStyles: () => useInputGroupStyles
});
module.exports = __toCommonJS(src_exports);
// src/input.tsx
var import_form_control = require("@chakra-ui/form-control");
var import_system = require("@chakra-ui/system");
var import_shared_utils = require("@chakra-ui/shared-utils");
var import_jsx_runtime = require("react/jsx-runtime");
var Input = (0, import_system.forwardRef)(function Input2(props, ref) {
const { htmlSize, ...rest } = props;
const styles = (0, import_system.useMultiStyleConfig)("Input", rest);
const ownProps = (0, import_system.omitThemingProps)(rest);
const input = (0, import_form_control.useFormControl)(ownProps);
const _className = (0, import_shared_utils.cx)("chakra-input", props.className);
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_system.chakra.input,
{
size: htmlSize,
...input,
__css: styles.field,
ref,
className: _className
}
);
});
Input.displayName = "Input";
Input.id = "Input";
// src/input-addon.tsx
var import_system3 = require("@chakra-ui/system");
var import_shared_utils3 = require("@chakra-ui/shared-utils");
// src/input-group.tsx
var import_react_context = require("@chakra-ui/react-context");
var import_react_children_utils = require("@chakra-ui/react-children-utils");
var import_system2 = require("@chakra-ui/system");
var import_shared_utils2 = require("@chakra-ui/shared-utils");
var import_object_utils = require("@chakra-ui/object-utils");
var import_react = require("react");
var import_jsx_runtime2 = require("react/jsx-runtime");
var [InputGroupStylesProvider, useInputGroupStyles] = (0, import_react_context.createContext)({
name: `InputGroupStylesContext`,
errorMessage: `useInputGroupStyles returned is 'undefined'. Seems you forgot to wrap the components in "<InputGroup />" `
});
var InputGroup = (0, import_system2.forwardRef)(
function InputGroup2(props, ref) {
const styles = (0, import_system2.useMultiStyleConfig)("Input", props);
const { children, className, ...rest } = (0, import_system2.omitThemingProps)(props);
const _className = (0, import_shared_utils2.cx)("chakra-input__group", className);
const groupStyles = {};
const validChildren = (0, import_react_children_utils.getValidChildren)(children);
const input = styles.field;
validChildren.forEach((child) => {
var _a, _b;
if (!styles)
return;
if (input && child.type.id === "InputLeftElement") {
groupStyles.paddingStart = (_a = input.height) != null ? _a : input.h;
}
if (input && child.type.id === "InputRightElement") {
groupStyles.paddingEnd = (_b = input.height) != null ? _b : input.h;
}
if (child.type.id === "InputRightAddon") {
groupStyles.borderEndRadius = 0;
}
if (child.type.id === "InputLeftAddon") {
groupStyles.borderStartRadius = 0;
}
});
const clones = validChildren.map((child) => {
var _a, _b;
const theming = (0, import_object_utils.compact)({
size: ((_a = child.props) == null ? void 0 : _a.size) || props.size,
variant: ((_b = child.props) == null ? void 0 : _b.variant) || props.variant
});
return child.type.id !== "Input" ? (0, import_react.cloneElement)(child, theming) : (0, import_react.cloneElement)(child, Object.assign(theming, groupStyles, child.props));
});
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
import_system2.chakra.div,
{
className: _className,
ref,
__css: {
width: "100%",
display: "flex",
position: "relative",
// Parts of inputs override z-index to ensure that they stack correctly on each other
// Create a new stacking context so that these overrides don't leak out and conflict with other z-indexes
isolation: "isolate",
...styles.group
},
"data-group": true,
...rest,
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(InputGroupStylesProvider, { value: styles, children: clones })
}
);
}
);
InputGroup.displayName = "InputGroup";
// src/input-addon.tsx
var import_jsx_runtime3 = require("react/jsx-runtime");
var placements = {
left: {
marginEnd: "-1px",
borderEndRadius: 0,
borderEndColor: "transparent"
},
right: {
marginStart: "-1px",
borderStartRadius: 0,
borderStartColor: "transparent"
}
};
var StyledAddon = (0, import_system3.chakra)("div", {
baseStyle: {
flex: "0 0 auto",
width: "auto",
display: "flex",
alignItems: "center",
whiteSpace: "nowrap"
}
});
var InputAddon = (0, import_system3.forwardRef)(
function InputAddon2(props, ref) {
var _a;
const { placement = "left", ...rest } = props;
const placementStyles = (_a = placements[placement]) != null ? _a : {};
const styles = useInputGroupStyles();
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
StyledAddon,
{
ref,
...rest,
__css: {
...styles.addon,
...placementStyles
}
}
);
}
);
InputAddon.displayName = "InputAddon";
var InputLeftAddon = (0, import_system3.forwardRef)(
function InputLeftAddon2(props, ref) {
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
InputAddon,
{
ref,
placement: "left",
...props,
className: (0, import_shared_utils3.cx)("chakra-input__left-addon", props.className)
}
);
}
);
InputLeftAddon.displayName = "InputLeftAddon";
InputLeftAddon.id = "InputLeftAddon";
var InputRightAddon = (0, import_system3.forwardRef)(
function InputRightAddon2(props, ref) {
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
InputAddon,
{
ref,
placement: "right",
...props,
className: (0, import_shared_utils3.cx)("chakra-input__right-addon", props.className)
}
);
}
);
InputRightAddon.displayName = "InputRightAddon";
InputRightAddon.id = "InputRightAddon";
// src/input-element.tsx
var import_system4 = require("@chakra-ui/system");
var import_shared_utils4 = require("@chakra-ui/shared-utils");
var import_jsx_runtime4 = require("react/jsx-runtime");
var StyledInputElement = (0, import_system4.chakra)("div", {
baseStyle: {
display: "flex",
alignItems: "center",
justifyContent: "center",
position: "absolute",
top: "0",
zIndex: 2
}
});
var InputElement = (0, import_system4.forwardRef)(function InputElement2(props, ref) {
var _a, _b;
const { placement = "left", ...rest } = props;
const styles = useInputGroupStyles();
const input = styles.field;
const attr = placement === "left" ? "insetStart" : "insetEnd";
const elementStyles = {
[attr]: "0",
width: (_a = input == null ? void 0 : input.height) != null ? _a : input == null ? void 0 : input.h,
height: (_b = input == null ? void 0 : input.height) != null ? _b : input == null ? void 0 : input.h,
fontSize: input == null ? void 0 : input.fontSize,
...styles.element
};
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(StyledInputElement, { ref, __css: elementStyles, ...rest });
});
InputElement.id = "InputElement";
InputElement.displayName = "InputElement";
var InputLeftElement = (0, import_system4.forwardRef)(
function InputLeftElement2(props, ref) {
const { className, ...rest } = props;
const _className = (0, import_shared_utils4.cx)("chakra-input__left-element", className);
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
InputElement,
{
ref,
placement: "left",
className: _className,
...rest
}
);
}
);
InputLeftElement.id = "InputLeftElement";
InputLeftElement.displayName = "InputLeftElement";
var InputRightElement = (0, import_system4.forwardRef)(
function InputRightElement2(props, ref) {
const { className, ...rest } = props;
const _className = (0, import_shared_utils4.cx)("chakra-input__right-element", className);
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
InputElement,
{
ref,
placement: "right",
className: _className,
...rest
}
);
}
);
InputRightElement.id = "InputRightElement";
InputRightElement.displayName = "InputRightElement";
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
Input,
InputAddon,
InputGroup,
InputLeftAddon,
InputLeftElement,
InputRightAddon,
InputRightElement,
useInputGroupStyles
});
//# sourceMappingURL=index.js.map