UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

24 lines 2.22 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TextInputGroupMain = void 0; const tslib_1 = require("tslib"); const React = tslib_1.__importStar(require("react")); const text_input_group_1 = tslib_1.__importDefault(require("@patternfly/react-styles/css/components/TextInputGroup/text-input-group")); const react_styles_1 = require("@patternfly/react-styles"); const TextInputGroup_1 = require("./TextInputGroup"); const TextInputGroupMain = (_a) => { var { children, className, icon, type = 'text', hint, onChange = () => undefined, onFocus, onBlur, 'aria-label': ariaLabel = 'Type to filter', value: inputValue, placeholder: inputPlaceHolder } = _a, props = tslib_1.__rest(_a, ["children", "className", "icon", "type", "hint", "onChange", "onFocus", "onBlur", 'aria-label', "value", "placeholder"]); const { isDisabled } = React.useContext(TextInputGroup_1.TextInputGroupContext); const handleChange = (event) => { onChange(event.currentTarget.value, event); }; return (React.createElement("div", Object.assign({ className: react_styles_1.css(text_input_group_1.default.textInputGroupMain, icon && text_input_group_1.default.modifiers.icon, className) }, props), children, React.createElement("span", { className: react_styles_1.css(text_input_group_1.default.textInputGroupText) }, hint && (React.createElement("input", { className: react_styles_1.css(text_input_group_1.default.textInputGroupTextInput, text_input_group_1.default.modifiers.hint), type: "text", disabled: true, "aria-hidden": "true", value: hint })), icon && React.createElement("span", { className: react_styles_1.css(text_input_group_1.default.textInputGroupIcon) }, icon), React.createElement("input", { type: type, className: react_styles_1.css(text_input_group_1.default.textInputGroupTextInput), "aria-label": ariaLabel, disabled: isDisabled, onChange: handleChange, onFocus: onFocus, onBlur: onBlur, value: inputValue || '', placeholder: inputPlaceHolder })))); }; exports.TextInputGroupMain = TextInputGroupMain; exports.TextInputGroupMain.displayName = 'TextInputGroupMain'; //# sourceMappingURL=TextInputGroupMain.js.map