worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
92
node_modules/@mui/material/esm/Radio/RadioButtonIcon.js
generated
vendored
Normal file
92
node_modules/@mui/material/esm/Radio/RadioButtonIcon.js
generated
vendored
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import RadioButtonUncheckedIcon from "../internal/svg-icons/RadioButtonUnchecked.js";
|
||||
import RadioButtonCheckedIcon from "../internal/svg-icons/RadioButtonChecked.js";
|
||||
import rootShouldForwardProp from "../styles/rootShouldForwardProp.js";
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import memoTheme from "../utils/memoTheme.js";
|
||||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
||||
const RadioButtonIconRoot = styled('span', {
|
||||
name: 'MuiRadioButtonIcon',
|
||||
shouldForwardProp: rootShouldForwardProp
|
||||
})({
|
||||
position: 'relative',
|
||||
display: 'flex'
|
||||
});
|
||||
const RadioButtonIconBackground = styled(RadioButtonUncheckedIcon, {
|
||||
name: 'MuiRadioButtonIcon'
|
||||
})({
|
||||
// Scale applied to prevent dot misalignment in Safari
|
||||
transform: 'scale(1)'
|
||||
});
|
||||
const RadioButtonIconDot = styled(RadioButtonCheckedIcon, {
|
||||
name: 'MuiRadioButtonIcon'
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
transform: 'scale(0)',
|
||||
transition: theme.transitions.create('transform', {
|
||||
easing: theme.transitions.easing.easeIn,
|
||||
duration: theme.transitions.duration.shortest
|
||||
}),
|
||||
variants: [{
|
||||
props: {
|
||||
checked: true
|
||||
},
|
||||
style: {
|
||||
transform: 'scale(1)',
|
||||
transition: theme.transitions.create('transform', {
|
||||
easing: theme.transitions.easing.easeOut,
|
||||
duration: theme.transitions.duration.shortest
|
||||
})
|
||||
}
|
||||
}]
|
||||
})));
|
||||
|
||||
/**
|
||||
* @ignore - internal component.
|
||||
*/
|
||||
function RadioButtonIcon(props) {
|
||||
const {
|
||||
checked = false,
|
||||
classes = {},
|
||||
fontSize
|
||||
} = props;
|
||||
const ownerState = {
|
||||
...props,
|
||||
checked
|
||||
};
|
||||
return /*#__PURE__*/_jsxs(RadioButtonIconRoot, {
|
||||
className: classes.root,
|
||||
ownerState: ownerState,
|
||||
children: [/*#__PURE__*/_jsx(RadioButtonIconBackground, {
|
||||
fontSize: fontSize,
|
||||
className: classes.background,
|
||||
ownerState: ownerState
|
||||
}), /*#__PURE__*/_jsx(RadioButtonIconDot, {
|
||||
fontSize: fontSize,
|
||||
className: classes.dot,
|
||||
ownerState: ownerState
|
||||
})]
|
||||
});
|
||||
}
|
||||
process.env.NODE_ENV !== "production" ? RadioButtonIcon.propTypes /* remove-proptypes */ = {
|
||||
/**
|
||||
* If `true`, the component is checked.
|
||||
*/
|
||||
checked: PropTypes.bool,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* The size of the component.
|
||||
* `small` is equivalent to the dense radio styling.
|
||||
*/
|
||||
fontSize: PropTypes.oneOf(['small', 'medium'])
|
||||
} : void 0;
|
||||
export default RadioButtonIcon;
|
||||
Loading…
Add table
Add a link
Reference in a new issue