paradiego
This commit is contained in:
153
node_modules/@mui/material/modern/OutlinedInput/NotchedOutline.js
generated
vendored
Normal file
153
node_modules/@mui/material/modern/OutlinedInput/NotchedOutline.js
generated
vendored
Normal file
@@ -0,0 +1,153 @@
|
||||
'use client';
|
||||
|
||||
var _span;
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import rootShouldForwardProp from "../styles/rootShouldForwardProp.js";
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import memoTheme from "../utils/memoTheme.js";
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
const NotchedOutlineRoot = styled('fieldset', {
|
||||
shouldForwardProp: rootShouldForwardProp
|
||||
})({
|
||||
textAlign: 'left',
|
||||
position: 'absolute',
|
||||
bottom: 0,
|
||||
right: 0,
|
||||
top: -5,
|
||||
left: 0,
|
||||
margin: 0,
|
||||
padding: '0 8px',
|
||||
pointerEvents: 'none',
|
||||
borderRadius: 'inherit',
|
||||
borderStyle: 'solid',
|
||||
borderWidth: 1,
|
||||
overflow: 'hidden',
|
||||
minWidth: '0%'
|
||||
});
|
||||
const NotchedOutlineLegend = styled('legend', {
|
||||
shouldForwardProp: rootShouldForwardProp
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
float: 'unset',
|
||||
// Fix conflict with bootstrap
|
||||
width: 'auto',
|
||||
// Fix conflict with bootstrap
|
||||
overflow: 'hidden',
|
||||
// Fix Horizontal scroll when label too long
|
||||
variants: [{
|
||||
props: ({
|
||||
ownerState
|
||||
}) => !ownerState.withLabel,
|
||||
style: {
|
||||
padding: 0,
|
||||
lineHeight: '11px',
|
||||
// sync with `height` in `legend` styles
|
||||
transition: theme.transitions.create('width', {
|
||||
duration: 150,
|
||||
easing: theme.transitions.easing.easeOut
|
||||
})
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.withLabel,
|
||||
style: {
|
||||
display: 'block',
|
||||
// Fix conflict with normalize.css and sanitize.css
|
||||
padding: 0,
|
||||
height: 11,
|
||||
// sync with `lineHeight` in `legend` styles
|
||||
fontSize: '0.75em',
|
||||
visibility: 'hidden',
|
||||
maxWidth: 0.01,
|
||||
transition: theme.transitions.create('max-width', {
|
||||
duration: 50,
|
||||
easing: theme.transitions.easing.easeOut
|
||||
}),
|
||||
whiteSpace: 'nowrap',
|
||||
'& > span': {
|
||||
paddingLeft: 5,
|
||||
paddingRight: 5,
|
||||
display: 'inline-block',
|
||||
opacity: 0,
|
||||
visibility: 'visible'
|
||||
}
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.withLabel && ownerState.notched,
|
||||
style: {
|
||||
maxWidth: '100%',
|
||||
transition: theme.transitions.create('max-width', {
|
||||
duration: 100,
|
||||
easing: theme.transitions.easing.easeOut,
|
||||
delay: 50
|
||||
})
|
||||
}
|
||||
}]
|
||||
})));
|
||||
|
||||
/**
|
||||
* @ignore - internal component.
|
||||
*/
|
||||
export default function NotchedOutline(props) {
|
||||
const {
|
||||
children,
|
||||
classes,
|
||||
className,
|
||||
label,
|
||||
notched,
|
||||
...other
|
||||
} = props;
|
||||
const withLabel = label != null && label !== '';
|
||||
const ownerState = {
|
||||
...props,
|
||||
notched,
|
||||
withLabel
|
||||
};
|
||||
return /*#__PURE__*/_jsx(NotchedOutlineRoot, {
|
||||
"aria-hidden": true,
|
||||
className: className,
|
||||
ownerState: ownerState,
|
||||
...other,
|
||||
children: /*#__PURE__*/_jsx(NotchedOutlineLegend, {
|
||||
ownerState: ownerState,
|
||||
children: withLabel ? /*#__PURE__*/_jsx("span", {
|
||||
children: label
|
||||
}) : // notranslate needed while Google Translate will not fix zero-width space issue
|
||||
_span || (_span = /*#__PURE__*/_jsx("span", {
|
||||
className: "notranslate",
|
||||
children: "\u200B"
|
||||
}))
|
||||
})
|
||||
});
|
||||
}
|
||||
process.env.NODE_ENV !== "production" ? NotchedOutline.propTypes /* remove-proptypes */ = {
|
||||
/**
|
||||
* The content of the component.
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: PropTypes.string,
|
||||
/**
|
||||
* The label.
|
||||
*/
|
||||
label: PropTypes.node,
|
||||
/**
|
||||
* If `true`, the outline is notched to accommodate the label.
|
||||
*/
|
||||
notched: PropTypes.bool.isRequired,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
style: PropTypes.object
|
||||
} : void 0;
|
||||
412
node_modules/@mui/material/modern/OutlinedInput/OutlinedInput.js
generated
vendored
Normal file
412
node_modules/@mui/material/modern/OutlinedInput/OutlinedInput.js
generated
vendored
Normal file
@@ -0,0 +1,412 @@
|
||||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import refType from '@mui/utils/refType';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import NotchedOutline from "./NotchedOutline.js";
|
||||
import useFormControl from "../FormControl/useFormControl.js";
|
||||
import formControlState from "../FormControl/formControlState.js";
|
||||
import rootShouldForwardProp from "../styles/rootShouldForwardProp.js";
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import memoTheme from "../utils/memoTheme.js";
|
||||
import createSimplePaletteValueFilter from "../utils/createSimplePaletteValueFilter.js";
|
||||
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
|
||||
import outlinedInputClasses, { getOutlinedInputUtilityClass } from "./outlinedInputClasses.js";
|
||||
import InputBase, { rootOverridesResolver as inputBaseRootOverridesResolver, inputOverridesResolver as inputBaseInputOverridesResolver, InputBaseRoot, InputBaseInput } from "../InputBase/InputBase.js";
|
||||
import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root'],
|
||||
notchedOutline: ['notchedOutline'],
|
||||
input: ['input']
|
||||
};
|
||||
const composedClasses = composeClasses(slots, getOutlinedInputUtilityClass, classes);
|
||||
return {
|
||||
...classes,
|
||||
// forward classes to the InputBase
|
||||
...composedClasses
|
||||
};
|
||||
};
|
||||
const OutlinedInputRoot = styled(InputBaseRoot, {
|
||||
shouldForwardProp: prop => rootShouldForwardProp(prop) || prop === 'classes',
|
||||
name: 'MuiOutlinedInput',
|
||||
slot: 'Root',
|
||||
overridesResolver: inputBaseRootOverridesResolver
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => {
|
||||
const borderColor = theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)';
|
||||
return {
|
||||
position: 'relative',
|
||||
borderRadius: (theme.vars || theme).shape.borderRadius,
|
||||
[`&:hover .${outlinedInputClasses.notchedOutline}`]: {
|
||||
borderColor: (theme.vars || theme).palette.text.primary
|
||||
},
|
||||
[`&.${outlinedInputClasses.focused} .${outlinedInputClasses.notchedOutline}`]: {
|
||||
borderWidth: 2
|
||||
},
|
||||
variants: [...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color]) => ({
|
||||
props: {
|
||||
color
|
||||
},
|
||||
style: {
|
||||
[`&.${outlinedInputClasses.focused} .${outlinedInputClasses.notchedOutline}`]: {
|
||||
borderColor: (theme.vars || theme).palette[color].main
|
||||
}
|
||||
}
|
||||
})), {
|
||||
props: {},
|
||||
// to overide the above style
|
||||
style: {
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
[`&:hover .${outlinedInputClasses.notchedOutline}`]: {
|
||||
borderColor: theme.vars ? `rgba(${theme.vars.palette.common.onBackgroundChannel} / 0.23)` : borderColor
|
||||
}
|
||||
},
|
||||
[`&.${outlinedInputClasses.error} .${outlinedInputClasses.notchedOutline}`]: {
|
||||
borderColor: (theme.vars || theme).palette.error.main
|
||||
},
|
||||
[`&.${outlinedInputClasses.disabled} .${outlinedInputClasses.notchedOutline}`]: {
|
||||
borderColor: (theme.vars || theme).palette.action.disabled
|
||||
}
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.startAdornment,
|
||||
style: {
|
||||
paddingLeft: 14
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.endAdornment,
|
||||
style: {
|
||||
paddingRight: 14
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.multiline,
|
||||
style: {
|
||||
padding: '16.5px 14px'
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState,
|
||||
size
|
||||
}) => ownerState.multiline && size === 'small',
|
||||
style: {
|
||||
padding: '8.5px 14px'
|
||||
}
|
||||
}]
|
||||
};
|
||||
}));
|
||||
const NotchedOutlineRoot = styled(NotchedOutline, {
|
||||
name: 'MuiOutlinedInput',
|
||||
slot: 'NotchedOutline',
|
||||
overridesResolver: (props, styles) => styles.notchedOutline
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => {
|
||||
const borderColor = theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)';
|
||||
return {
|
||||
borderColor: theme.vars ? `rgba(${theme.vars.palette.common.onBackgroundChannel} / 0.23)` : borderColor
|
||||
};
|
||||
}));
|
||||
const OutlinedInputInput = styled(InputBaseInput, {
|
||||
name: 'MuiOutlinedInput',
|
||||
slot: 'Input',
|
||||
overridesResolver: inputBaseInputOverridesResolver
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
padding: '16.5px 14px',
|
||||
...(!theme.vars && {
|
||||
'&:-webkit-autofill': {
|
||||
WebkitBoxShadow: theme.palette.mode === 'light' ? null : '0 0 0 100px #266798 inset',
|
||||
WebkitTextFillColor: theme.palette.mode === 'light' ? null : '#fff',
|
||||
caretColor: theme.palette.mode === 'light' ? null : '#fff',
|
||||
borderRadius: 'inherit'
|
||||
}
|
||||
}),
|
||||
...(theme.vars && {
|
||||
'&:-webkit-autofill': {
|
||||
borderRadius: 'inherit'
|
||||
},
|
||||
[theme.getColorSchemeSelector('dark')]: {
|
||||
'&:-webkit-autofill': {
|
||||
WebkitBoxShadow: '0 0 0 100px #266798 inset',
|
||||
WebkitTextFillColor: '#fff',
|
||||
caretColor: '#fff'
|
||||
}
|
||||
}
|
||||
}),
|
||||
variants: [{
|
||||
props: {
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
padding: '8.5px 14px'
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.multiline,
|
||||
style: {
|
||||
padding: 0
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.startAdornment,
|
||||
style: {
|
||||
paddingLeft: 0
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.endAdornment,
|
||||
style: {
|
||||
paddingRight: 0
|
||||
}
|
||||
}]
|
||||
})));
|
||||
const OutlinedInput = /*#__PURE__*/React.forwardRef(function OutlinedInput(inProps, ref) {
|
||||
var _React$Fragment;
|
||||
const props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiOutlinedInput'
|
||||
});
|
||||
const {
|
||||
components = {},
|
||||
fullWidth = false,
|
||||
inputComponent = 'input',
|
||||
label,
|
||||
multiline = false,
|
||||
notched,
|
||||
slots = {},
|
||||
type = 'text',
|
||||
...other
|
||||
} = props;
|
||||
const classes = useUtilityClasses(props);
|
||||
const muiFormControl = useFormControl();
|
||||
const fcs = formControlState({
|
||||
props,
|
||||
muiFormControl,
|
||||
states: ['color', 'disabled', 'error', 'focused', 'hiddenLabel', 'size', 'required']
|
||||
});
|
||||
const ownerState = {
|
||||
...props,
|
||||
color: fcs.color || 'primary',
|
||||
disabled: fcs.disabled,
|
||||
error: fcs.error,
|
||||
focused: fcs.focused,
|
||||
formControl: muiFormControl,
|
||||
fullWidth,
|
||||
hiddenLabel: fcs.hiddenLabel,
|
||||
multiline,
|
||||
size: fcs.size,
|
||||
type
|
||||
};
|
||||
const RootSlot = slots.root ?? components.Root ?? OutlinedInputRoot;
|
||||
const InputSlot = slots.input ?? components.Input ?? OutlinedInputInput;
|
||||
return /*#__PURE__*/_jsx(InputBase, {
|
||||
slots: {
|
||||
root: RootSlot,
|
||||
input: InputSlot
|
||||
},
|
||||
renderSuffix: state => /*#__PURE__*/_jsx(NotchedOutlineRoot, {
|
||||
ownerState: ownerState,
|
||||
className: classes.notchedOutline,
|
||||
label: label != null && label !== '' && fcs.required ? _React$Fragment || (_React$Fragment = /*#__PURE__*/_jsxs(React.Fragment, {
|
||||
children: [label, "\u2009", '*']
|
||||
})) : label,
|
||||
notched: typeof notched !== 'undefined' ? notched : Boolean(state.startAdornment || state.filled || state.focused)
|
||||
}),
|
||||
fullWidth: fullWidth,
|
||||
inputComponent: inputComponent,
|
||||
multiline: multiline,
|
||||
ref: ref,
|
||||
type: type,
|
||||
...other,
|
||||
classes: {
|
||||
...classes,
|
||||
notchedOutline: null
|
||||
}
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? OutlinedInput.propTypes /* remove-proptypes */ = {
|
||||
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||||
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||||
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* 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,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* The color of the component.
|
||||
* It supports both default and custom theme colors, which can be added as shown in the
|
||||
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
|
||||
* The prop defaults to the value (`'primary'`) inherited from the parent FormControl component.
|
||||
*/
|
||||
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['primary', 'secondary']), PropTypes.string]),
|
||||
/**
|
||||
* The components used for each slot inside.
|
||||
*
|
||||
* @deprecated use the `slots` prop instead. This prop will be removed in v7. See [Migrating from deprecated APIs](https://mui.com/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
*
|
||||
* @default {}
|
||||
*/
|
||||
components: PropTypes.shape({
|
||||
Input: PropTypes.elementType,
|
||||
Root: PropTypes.elementType
|
||||
}),
|
||||
/**
|
||||
* 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,
|
||||
/**
|
||||
* End `InputAdornment` for this component.
|
||||
*/
|
||||
endAdornment: PropTypes.node,
|
||||
/**
|
||||
* If `true`, the `input` will indicate an error.
|
||||
* The prop defaults to the value (`false`) inherited from the parent FormControl component.
|
||||
*/
|
||||
error: PropTypes.bool,
|
||||
/**
|
||||
* If `true`, the `input` will take up the full width of its container.
|
||||
* @default false
|
||||
*/
|
||||
fullWidth: PropTypes.bool,
|
||||
/**
|
||||
* The id of the `input` element.
|
||||
*/
|
||||
id: PropTypes.string,
|
||||
/**
|
||||
* The component used for the `input` element.
|
||||
* Either a string to use a HTML element or a component.
|
||||
* @default 'input'
|
||||
*/
|
||||
inputComponent: PropTypes.elementType,
|
||||
/**
|
||||
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#Attributes) applied to the `input` element.
|
||||
* @default {}
|
||||
*/
|
||||
inputProps: PropTypes.object,
|
||||
/**
|
||||
* Pass a ref to the `input` element.
|
||||
*/
|
||||
inputRef: refType,
|
||||
/**
|
||||
* The label of the `input`. It is only used for layout. The actual labelling
|
||||
* is handled by `InputLabel`.
|
||||
*/
|
||||
label: PropTypes.node,
|
||||
/**
|
||||
* If `dense`, will adjust vertical spacing. This is normally obtained via context from
|
||||
* FormControl.
|
||||
* The prop defaults to the value (`'none'`) inherited from the parent FormControl component.
|
||||
*/
|
||||
margin: PropTypes.oneOf(['dense', 'none']),
|
||||
/**
|
||||
* Maximum number of rows to display when multiline option is set to true.
|
||||
*/
|
||||
maxRows: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
||||
/**
|
||||
* Minimum number of rows to display when multiline option is set to true.
|
||||
*/
|
||||
minRows: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
||||
/**
|
||||
* If `true`, a [TextareaAutosize](https://mui.com/material-ui/react-textarea-autosize/) element is rendered.
|
||||
* @default false
|
||||
*/
|
||||
multiline: PropTypes.bool,
|
||||
/**
|
||||
* Name attribute of the `input` element.
|
||||
*/
|
||||
name: PropTypes.string,
|
||||
/**
|
||||
* If `true`, the outline is notched to accommodate the label.
|
||||
*/
|
||||
notched: PropTypes.bool,
|
||||
/**
|
||||
* Callback fired when the value is changed.
|
||||
*
|
||||
* @param {React.ChangeEvent<HTMLTextAreaElement | HTMLInputElement>} event The event source of the callback.
|
||||
* You can pull out the new value by accessing `event.target.value` (string).
|
||||
*/
|
||||
onChange: 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.oneOfType([PropTypes.number, PropTypes.string]),
|
||||
/**
|
||||
* The components used for each slot inside.
|
||||
*
|
||||
* This prop is an alias for the `components` prop, which will be deprecated in the future.
|
||||
*
|
||||
* @default {}
|
||||
*/
|
||||
slots: PropTypes.shape({
|
||||
input: PropTypes.elementType,
|
||||
root: PropTypes.elementType
|
||||
}),
|
||||
/**
|
||||
* Start `InputAdornment` for this component.
|
||||
*/
|
||||
startAdornment: PropTypes.node,
|
||||
/**
|
||||
* 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]),
|
||||
/**
|
||||
* 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.string,
|
||||
/**
|
||||
* The value of the `input` element, required for a controlled component.
|
||||
*/
|
||||
value: PropTypes.any
|
||||
} : void 0;
|
||||
if (OutlinedInput) {
|
||||
OutlinedInput.muiName = 'Input';
|
||||
}
|
||||
export default OutlinedInput;
|
||||
3
node_modules/@mui/material/modern/OutlinedInput/index.js
generated
vendored
Normal file
3
node_modules/@mui/material/modern/OutlinedInput/index.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export { default } from "./OutlinedInput.js";
|
||||
export { default as outlinedInputClasses } from "./outlinedInputClasses.js";
|
||||
export * from "./outlinedInputClasses.js";
|
||||
11
node_modules/@mui/material/modern/OutlinedInput/outlinedInputClasses.js
generated
vendored
Normal file
11
node_modules/@mui/material/modern/OutlinedInput/outlinedInputClasses.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
import { inputBaseClasses } from "../InputBase/index.js";
|
||||
export function getOutlinedInputUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiOutlinedInput', slot);
|
||||
}
|
||||
const outlinedInputClasses = {
|
||||
...inputBaseClasses,
|
||||
...generateUtilityClasses('MuiOutlinedInput', ['root', 'notchedOutline', 'input'])
|
||||
};
|
||||
export default outlinedInputClasses;
|
||||
Reference in New Issue
Block a user