You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
311 lines
9.5 KiB
JavaScript
311 lines
9.5 KiB
JavaScript
'use client';
|
|
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
const _excluded = ["aria-describedby", "aria-label", "aria-labelledby", "autoComplete", "autoFocus", "className", "defaultValue", "disabled", "endAdornment", "error", "id", "multiline", "name", "onClick", "onChange", "onKeyDown", "onKeyUp", "onFocus", "onBlur", "placeholder", "readOnly", "required", "startAdornment", "value", "type", "rows", "slotProps", "slots", "minRows", "maxRows"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { isHostComponent } from '../utils/isHostComponent';
|
|
import { getInputUtilityClass } from './inputClasses';
|
|
import { useInput } from '../useInput';
|
|
import { useSlotProps } from '../utils';
|
|
import { unstable_composeClasses as composeClasses } from '../composeClasses';
|
|
import { useClassNamesOverride } from '../utils/ClassNameConfigurator';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
disabled,
|
|
error,
|
|
focused,
|
|
formControlContext,
|
|
multiline,
|
|
startAdornment,
|
|
endAdornment
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', disabled && 'disabled', error && 'error', focused && 'focused', Boolean(formControlContext) && 'formControl', multiline && 'multiline', Boolean(startAdornment) && 'adornedStart', Boolean(endAdornment) && 'adornedEnd'],
|
|
input: ['input', disabled && 'disabled', multiline && 'multiline']
|
|
};
|
|
return composeClasses(slots, useClassNamesOverride(getInputUtilityClass));
|
|
};
|
|
|
|
/**
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [Input](https://mui.com/base-ui/react-input/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [Input API](https://mui.com/base-ui/react-input/components-api/#input)
|
|
*/
|
|
const Input = /*#__PURE__*/React.forwardRef(function Input(props, forwardedRef) {
|
|
var _slots$root, _slots$textarea, _slots$input;
|
|
const {
|
|
'aria-describedby': ariaDescribedby,
|
|
'aria-label': ariaLabel,
|
|
'aria-labelledby': ariaLabelledby,
|
|
autoComplete,
|
|
autoFocus,
|
|
className,
|
|
defaultValue,
|
|
disabled,
|
|
endAdornment,
|
|
error,
|
|
id,
|
|
multiline = false,
|
|
name,
|
|
onClick,
|
|
onChange,
|
|
onKeyDown,
|
|
onKeyUp,
|
|
onFocus,
|
|
onBlur,
|
|
placeholder,
|
|
readOnly,
|
|
required,
|
|
startAdornment,
|
|
value,
|
|
type: typeProp,
|
|
rows,
|
|
slotProps = {},
|
|
slots = {},
|
|
minRows,
|
|
maxRows
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const {
|
|
getRootProps,
|
|
getInputProps,
|
|
focused,
|
|
formControlContext,
|
|
error: errorState,
|
|
disabled: disabledState
|
|
} = useInput({
|
|
disabled,
|
|
defaultValue,
|
|
error,
|
|
onBlur,
|
|
onClick,
|
|
onChange,
|
|
onFocus,
|
|
required,
|
|
value
|
|
});
|
|
const type = !multiline ? typeProp != null ? typeProp : 'text' : undefined;
|
|
const ownerState = _extends({}, props, {
|
|
disabled: disabledState,
|
|
error: errorState,
|
|
focused,
|
|
formControlContext,
|
|
multiline,
|
|
type
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
const propsToForward = {
|
|
'aria-describedby': ariaDescribedby,
|
|
'aria-label': ariaLabel,
|
|
'aria-labelledby': ariaLabelledby,
|
|
autoComplete,
|
|
autoFocus,
|
|
id,
|
|
onKeyDown,
|
|
onKeyUp,
|
|
name,
|
|
placeholder,
|
|
readOnly,
|
|
type
|
|
};
|
|
const Root = (_slots$root = slots.root) != null ? _slots$root : 'div';
|
|
const rootProps = useSlotProps({
|
|
elementType: Root,
|
|
getSlotProps: getRootProps,
|
|
externalSlotProps: slotProps.root,
|
|
externalForwardedProps: other,
|
|
additionalProps: {
|
|
ref: forwardedRef
|
|
},
|
|
ownerState,
|
|
className: [classes.root, className]
|
|
});
|
|
const InputComponent = multiline ? (_slots$textarea = slots.textarea) != null ? _slots$textarea : 'textarea' : (_slots$input = slots.input) != null ? _slots$input : 'input';
|
|
const inputProps = useSlotProps({
|
|
elementType: InputComponent,
|
|
getSlotProps: otherHandlers => {
|
|
return getInputProps(_extends({}, propsToForward, otherHandlers));
|
|
},
|
|
externalSlotProps: slotProps.input,
|
|
additionalProps: _extends({
|
|
rows: multiline ? rows : undefined
|
|
}, multiline && !isHostComponent(InputComponent) && {
|
|
minRows: rows || minRows,
|
|
maxRows: rows || maxRows
|
|
}),
|
|
ownerState,
|
|
className: classes.input
|
|
});
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
if (multiline) {
|
|
if (rows) {
|
|
if (minRows || maxRows) {
|
|
console.warn('MUI: You can not use the `minRows` or `maxRows` props when the input `rows` prop is set.');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return /*#__PURE__*/_jsxs(Root, _extends({}, rootProps, {
|
|
children: [startAdornment, /*#__PURE__*/_jsx(InputComponent, _extends({}, inputProps)), endAdornment]
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? Input.propTypes /* remove-proptypes */ = {
|
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* @ignore
|
|
*/
|
|
'aria-describedby': PropTypes.string,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
'aria-label': PropTypes.string,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
'aria-labelledby': PropTypes.string,
|
|
/**
|
|
* This prop helps users to fill forms faster, especially on mobile devices.
|
|
* The name can be confusing, as it's more like an autofill.
|
|
* You can learn more about it [following the specification](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill).
|
|
*/
|
|
autoComplete: PropTypes.string,
|
|
/**
|
|
* If `true`, the `input` element is focused during the first mount.
|
|
*/
|
|
autoFocus: PropTypes.bool,
|
|
/**
|
|
* Class name applied to the root element.
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* The default value. Use when the component is not controlled.
|
|
*/
|
|
defaultValue: PropTypes.any,
|
|
/**
|
|
* If `true`, the component is disabled.
|
|
* The prop defaults to the value (`false`) inherited from the parent FormControl component.
|
|
*/
|
|
disabled: PropTypes.bool,
|
|
/**
|
|
* Trailing adornment for this input.
|
|
*/
|
|
endAdornment: PropTypes.node,
|
|
/**
|
|
* If `true`, the `input` will indicate an error by setting the `aria-invalid` attribute on the input and the `baseui--error` class on the root element.
|
|
* The prop defaults to the value (`false`) inherited from the parent FormControl component.
|
|
*/
|
|
error: PropTypes.bool,
|
|
/**
|
|
* The id of the `input` element.
|
|
*/
|
|
id: PropTypes.string,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
inputRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
|
|
current: PropTypes.object
|
|
})]),
|
|
/**
|
|
* Maximum number of rows to display when multiline option is set to true.
|
|
*/
|
|
maxRows: PropTypes.number,
|
|
/**
|
|
* Minimum number of rows to display when multiline option is set to true.
|
|
*/
|
|
minRows: PropTypes.number,
|
|
/**
|
|
* If `true`, a `textarea` element is rendered.
|
|
* @default false
|
|
*/
|
|
multiline: PropTypes.bool,
|
|
/**
|
|
* Name attribute of the `input` element.
|
|
*/
|
|
name: PropTypes.string,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onBlur: PropTypes.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onChange: PropTypes.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onClick: PropTypes.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onFocus: PropTypes.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onKeyDown: PropTypes.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onKeyUp: PropTypes.func,
|
|
/**
|
|
* The short hint displayed in the `input` before the user enters a value.
|
|
*/
|
|
placeholder: PropTypes.string,
|
|
/**
|
|
* It prevents the user from changing the value of the field
|
|
* (not from interacting with the field).
|
|
*/
|
|
readOnly: PropTypes.bool,
|
|
/**
|
|
* If `true`, the `input` element is required.
|
|
* The prop defaults to the value (`false`) inherited from the parent FormControl component.
|
|
*/
|
|
required: PropTypes.bool,
|
|
/**
|
|
* Number of rows to display when multiline option is set to true.
|
|
*/
|
|
rows: PropTypes.number,
|
|
/**
|
|
* The props used for each slot inside the Input.
|
|
* @default {}
|
|
*/
|
|
slotProps: PropTypes.shape({
|
|
input: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
}),
|
|
/**
|
|
* The components used for each slot inside the InputBase.
|
|
* Either a string to use a HTML element or a component.
|
|
* @default {}
|
|
*/
|
|
slots: PropTypes.shape({
|
|
input: PropTypes.elementType,
|
|
root: PropTypes.elementType,
|
|
textarea: PropTypes.elementType
|
|
}),
|
|
/**
|
|
* Leading adornment for this input.
|
|
*/
|
|
startAdornment: PropTypes.node,
|
|
/**
|
|
* Type of the `input` element. It should be [a valid HTML5 input type](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#Form_%3Cinput%3E_types).
|
|
* @default 'text'
|
|
*/
|
|
type: PropTypes /* @typescript-to-proptypes-ignore */.oneOf(['button', 'checkbox', 'color', 'date', 'datetime-local', 'email', 'file', 'hidden', 'image', 'month', 'number', 'password', 'radio', 'range', 'reset', 'search', 'submit', 'tel', 'text', 'time', 'url', 'week']),
|
|
/**
|
|
* The value of the `input` element, required for a controlled component.
|
|
*/
|
|
value: PropTypes.any
|
|
} : void 0;
|
|
export { Input }; |