305 lines
No EOL
10 KiB
JavaScript
305 lines
No EOL
10 KiB
JavaScript
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["label", "autoFocus", "disableUnderline", "hiddenLabel", "classes"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { styled, useThemeProps } from '@mui/material/styles';
|
|
import { shouldForwardProp } from '@mui/system';
|
|
import refType from '@mui/utils/refType';
|
|
import composeClasses from '@mui/utils/composeClasses';
|
|
import { pickersFilledInputClasses, getPickersFilledInputUtilityClass } from "./pickersFilledInputClasses.js";
|
|
import { PickersInputBase } from "../PickersInputBase/index.js";
|
|
import { PickersInputBaseRoot, PickersInputBaseSectionsContainer } from "../PickersInputBase/PickersInputBase.js";
|
|
import { usePickerTextFieldOwnerState } from "../usePickerTextFieldOwnerState.js";
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
const PickersFilledInputRoot = styled(PickersInputBaseRoot, {
|
|
name: 'MuiPickersFilledInput',
|
|
slot: 'Root',
|
|
shouldForwardProp: prop => shouldForwardProp(prop) && prop !== 'disableUnderline'
|
|
})(({
|
|
theme
|
|
}) => {
|
|
const light = theme.palette.mode === 'light';
|
|
const bottomLineColor = light ? 'rgba(0, 0, 0, 0.42)' : 'rgba(255, 255, 255, 0.7)';
|
|
const backgroundColor = light ? 'rgba(0, 0, 0, 0.06)' : 'rgba(255, 255, 255, 0.09)';
|
|
const hoverBackground = light ? 'rgba(0, 0, 0, 0.09)' : 'rgba(255, 255, 255, 0.13)';
|
|
const disabledBackground = light ? 'rgba(0, 0, 0, 0.12)' : 'rgba(255, 255, 255, 0.12)';
|
|
return {
|
|
backgroundColor: theme.vars ? theme.vars.palette.FilledInput.bg : backgroundColor,
|
|
borderTopLeftRadius: (theme.vars || theme).shape.borderRadius,
|
|
borderTopRightRadius: (theme.vars || theme).shape.borderRadius,
|
|
transition: theme.transitions.create('background-color', {
|
|
duration: theme.transitions.duration.shorter,
|
|
easing: theme.transitions.easing.easeOut
|
|
}),
|
|
'&:hover': {
|
|
backgroundColor: theme.vars ? theme.vars.palette.FilledInput.hoverBg : hoverBackground,
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: theme.vars ? theme.vars.palette.FilledInput.bg : backgroundColor
|
|
}
|
|
},
|
|
[`&.${pickersFilledInputClasses.focused}`]: {
|
|
backgroundColor: theme.vars ? theme.vars.palette.FilledInput.bg : backgroundColor
|
|
},
|
|
[`&.${pickersFilledInputClasses.disabled}`]: {
|
|
backgroundColor: theme.vars ? theme.vars.palette.FilledInput.disabledBg : disabledBackground
|
|
},
|
|
variants: [...Object.keys((theme.vars ?? theme).palette)
|
|
// @ts-ignore
|
|
.filter(key => (theme.vars ?? theme).palette[key].main).map(color => ({
|
|
props: {
|
|
inputColor: color,
|
|
disableUnderline: false
|
|
},
|
|
style: {
|
|
'&::after': {
|
|
// @ts-ignore
|
|
borderBottom: `2px solid ${(theme.vars || theme).palette[color]?.main}`
|
|
}
|
|
}
|
|
})), {
|
|
props: {
|
|
disableUnderline: false
|
|
},
|
|
style: {
|
|
'&::after': {
|
|
left: 0,
|
|
bottom: 0,
|
|
// Doing the other way around crash on IE11 "''" https://github.com/cssinjs/jss/issues/242
|
|
content: '""',
|
|
position: 'absolute',
|
|
right: 0,
|
|
transform: 'scaleX(0)',
|
|
transition: theme.transitions.create('transform', {
|
|
duration: theme.transitions.duration.shorter,
|
|
easing: theme.transitions.easing.easeOut
|
|
}),
|
|
pointerEvents: 'none' // Transparent to the hover style.
|
|
},
|
|
[`&.${pickersFilledInputClasses.focused}:after`]: {
|
|
// translateX(0) is a workaround for Safari transform scale bug
|
|
// See https://github.com/mui/material-ui/issues/31766
|
|
transform: 'scaleX(1) translateX(0)'
|
|
},
|
|
[`&.${pickersFilledInputClasses.error}`]: {
|
|
'&:before, &:after': {
|
|
borderBottomColor: (theme.vars || theme).palette.error.main
|
|
}
|
|
},
|
|
'&::before': {
|
|
borderBottom: `1px solid ${theme.vars ? `rgba(${theme.vars.palette.common.onBackgroundChannel} / ${theme.vars.opacity.inputUnderline})` : bottomLineColor}`,
|
|
left: 0,
|
|
bottom: 0,
|
|
// Doing the other way around crash on IE11 "''" https://github.com/cssinjs/jss/issues/242
|
|
content: '"\\00a0"',
|
|
position: 'absolute',
|
|
right: 0,
|
|
transition: theme.transitions.create('border-bottom-color', {
|
|
duration: theme.transitions.duration.shorter
|
|
}),
|
|
pointerEvents: 'none' // Transparent to the hover style.
|
|
},
|
|
[`&:hover:not(.${pickersFilledInputClasses.disabled}, .${pickersFilledInputClasses.error}):before`]: {
|
|
borderBottom: `1px solid ${(theme.vars || theme).palette.text.primary}`
|
|
},
|
|
[`&.${pickersFilledInputClasses.disabled}:before`]: {
|
|
borderBottomStyle: 'dotted'
|
|
}
|
|
}
|
|
}, {
|
|
props: {
|
|
hasStartAdornment: true
|
|
},
|
|
style: {
|
|
paddingLeft: 12
|
|
}
|
|
}, {
|
|
props: {
|
|
hasEndAdornment: true
|
|
},
|
|
style: {
|
|
paddingRight: 12
|
|
}
|
|
}]
|
|
};
|
|
});
|
|
const PickersFilledSectionsContainer = styled(PickersInputBaseSectionsContainer, {
|
|
name: 'MuiPickersFilledInput',
|
|
slot: 'sectionsContainer',
|
|
shouldForwardProp: prop => shouldForwardProp(prop) && prop !== 'hiddenLabel'
|
|
})({
|
|
paddingTop: 25,
|
|
paddingRight: 12,
|
|
paddingBottom: 8,
|
|
paddingLeft: 12,
|
|
variants: [{
|
|
props: {
|
|
inputSize: 'small'
|
|
},
|
|
style: {
|
|
paddingTop: 21,
|
|
paddingBottom: 4
|
|
}
|
|
}, {
|
|
props: {
|
|
hasStartAdornment: true
|
|
},
|
|
style: {
|
|
paddingLeft: 0
|
|
}
|
|
}, {
|
|
props: {
|
|
hasEndAdornment: true
|
|
},
|
|
style: {
|
|
paddingRight: 0
|
|
}
|
|
}, {
|
|
props: {
|
|
hiddenLabel: true
|
|
},
|
|
style: {
|
|
paddingTop: 16,
|
|
paddingBottom: 17
|
|
}
|
|
}, {
|
|
props: {
|
|
hiddenLabel: true,
|
|
inputSize: 'small'
|
|
},
|
|
style: {
|
|
paddingTop: 8,
|
|
paddingBottom: 9
|
|
}
|
|
}]
|
|
});
|
|
const useUtilityClasses = (classes, ownerState) => {
|
|
const {
|
|
inputHasUnderline
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', inputHasUnderline && 'underline'],
|
|
input: ['input']
|
|
};
|
|
const composedClasses = composeClasses(slots, getPickersFilledInputUtilityClass, classes);
|
|
return _extends({}, classes, composedClasses);
|
|
};
|
|
|
|
/**
|
|
* @ignore - internal component.
|
|
*/
|
|
const PickersFilledInput = /*#__PURE__*/React.forwardRef(function PickersFilledInput(inProps, ref) {
|
|
const props = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiPickersFilledInput'
|
|
});
|
|
const {
|
|
label,
|
|
disableUnderline = false,
|
|
hiddenLabel = false,
|
|
classes: classesProp
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const pickerTextFieldOwnerState = usePickerTextFieldOwnerState();
|
|
const ownerState = _extends({}, pickerTextFieldOwnerState, {
|
|
inputHasUnderline: !disableUnderline
|
|
});
|
|
const classes = useUtilityClasses(classesProp, ownerState);
|
|
return /*#__PURE__*/_jsx(PickersInputBase, _extends({
|
|
slots: {
|
|
root: PickersFilledInputRoot,
|
|
input: PickersFilledSectionsContainer
|
|
},
|
|
slotProps: {
|
|
root: {
|
|
disableUnderline
|
|
},
|
|
input: {
|
|
hiddenLabel
|
|
}
|
|
}
|
|
}, other, {
|
|
label: label,
|
|
classes: classes,
|
|
ref: ref,
|
|
ownerState: ownerState
|
|
}));
|
|
});
|
|
if (process.env.NODE_ENV !== "production") PickersFilledInput.displayName = "PickersFilledInput";
|
|
process.env.NODE_ENV !== "production" ? PickersFilledInput.propTypes = {
|
|
// ----------------------------- Warning --------------------------------
|
|
// | These PropTypes are generated from the TypeScript type definitions |
|
|
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
// ----------------------------------------------------------------------
|
|
/**
|
|
* Is `true` if the current values equals the empty value.
|
|
* For a single item value, it means that `value === null`
|
|
* For a range value, it means that `value === [null, null]`
|
|
*/
|
|
areAllSectionsEmpty: PropTypes.bool.isRequired,
|
|
className: PropTypes.string,
|
|
component: PropTypes.elementType,
|
|
/**
|
|
* If true, the whole element is editable.
|
|
* Useful when all the sections are selected.
|
|
*/
|
|
contentEditable: PropTypes.bool.isRequired,
|
|
'data-multi-input': PropTypes.string,
|
|
disableUnderline: PropTypes.bool,
|
|
/**
|
|
* The elements to render.
|
|
* Each element contains the prop to edit a section of the value.
|
|
*/
|
|
elements: PropTypes.arrayOf(PropTypes.shape({
|
|
after: PropTypes.object.isRequired,
|
|
before: PropTypes.object.isRequired,
|
|
container: PropTypes.object.isRequired,
|
|
content: PropTypes.object.isRequired
|
|
})).isRequired,
|
|
endAdornment: PropTypes.node,
|
|
fullWidth: PropTypes.bool,
|
|
hiddenLabel: PropTypes.bool,
|
|
id: PropTypes.string,
|
|
inputProps: PropTypes.object,
|
|
inputRef: refType,
|
|
label: PropTypes.node,
|
|
margin: PropTypes.oneOf(['dense', 'none', 'normal']),
|
|
name: PropTypes.string,
|
|
onChange: PropTypes.func.isRequired,
|
|
onClick: PropTypes.func.isRequired,
|
|
onInput: PropTypes.func.isRequired,
|
|
onKeyDown: PropTypes.func.isRequired,
|
|
onPaste: PropTypes.func.isRequired,
|
|
ownerState: PropTypes /* @typescript-to-proptypes-ignore */.any,
|
|
readOnly: PropTypes.bool,
|
|
renderSuffix: PropTypes.func,
|
|
sectionListRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
|
|
current: PropTypes.shape({
|
|
getRoot: PropTypes.func.isRequired,
|
|
getSectionContainer: PropTypes.func.isRequired,
|
|
getSectionContent: PropTypes.func.isRequired,
|
|
getSectionIndexFromDOMElement: PropTypes.func.isRequired
|
|
})
|
|
})]),
|
|
/**
|
|
* The props used for each component slot.
|
|
* @default {}
|
|
*/
|
|
slotProps: PropTypes.object,
|
|
/**
|
|
* The components used for each slot inside.
|
|
*
|
|
* @default {}
|
|
*/
|
|
slots: PropTypes.object,
|
|
startAdornment: PropTypes.node,
|
|
style: PropTypes.object,
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
value: PropTypes.string.isRequired
|
|
} : void 0;
|
|
export { PickersFilledInput };
|
|
PickersFilledInput.muiName = 'Input'; |