Jesus sucks
This commit is contained in:
74
backend/frontend/node_modules/@mui/material/legacy/DialogContentText/DialogContentText.js
generated
vendored
Normal file
74
backend/frontend/node_modules/@mui/material/legacy/DialogContentText/DialogContentText.js
generated
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
'use client';
|
||||
|
||||
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
||||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import clsx from 'clsx';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import styled, { rootShouldForwardProp } from '../styles/styled';
|
||||
import { useDefaultProps } from '../DefaultPropsProvider';
|
||||
import Typography from '../Typography';
|
||||
import { getDialogContentTextUtilityClass } from './dialogContentTextClasses';
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
||||
var classes = ownerState.classes;
|
||||
var slots = {
|
||||
root: ['root']
|
||||
};
|
||||
var composedClasses = composeClasses(slots, getDialogContentTextUtilityClass, classes);
|
||||
return _extends({}, classes, composedClasses);
|
||||
};
|
||||
var DialogContentTextRoot = styled(Typography, {
|
||||
shouldForwardProp: function shouldForwardProp(prop) {
|
||||
return rootShouldForwardProp(prop) || prop === 'classes';
|
||||
},
|
||||
name: 'MuiDialogContentText',
|
||||
slot: 'Root',
|
||||
overridesResolver: function overridesResolver(props, styles) {
|
||||
return styles.root;
|
||||
}
|
||||
})({});
|
||||
var DialogContentText = /*#__PURE__*/React.forwardRef(function DialogContentText(inProps, ref) {
|
||||
var props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiDialogContentText'
|
||||
});
|
||||
var children = props.children,
|
||||
className = props.className,
|
||||
ownerState = _objectWithoutProperties(props, ["children", "className"]);
|
||||
var classes = useUtilityClasses(ownerState);
|
||||
return /*#__PURE__*/_jsx(DialogContentTextRoot, _extends({
|
||||
component: "p",
|
||||
variant: "body1",
|
||||
color: "text.secondary",
|
||||
ref: ref,
|
||||
ownerState: ownerState,
|
||||
className: clsx(classes.root, className)
|
||||
}, props, {
|
||||
classes: classes
|
||||
}));
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? DialogContentText.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`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* 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 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])
|
||||
} : void 0;
|
||||
export default DialogContentText;
|
||||
7
backend/frontend/node_modules/@mui/material/legacy/DialogContentText/dialogContentTextClasses.js
generated
vendored
Normal file
7
backend/frontend/node_modules/@mui/material/legacy/DialogContentText/dialogContentTextClasses.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getDialogContentTextUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiDialogContentText', slot);
|
||||
}
|
||||
var dialogContentTextClasses = generateUtilityClasses('MuiDialogContentText', ['root']);
|
||||
export default dialogContentTextClasses;
|
||||
5
backend/frontend/node_modules/@mui/material/legacy/DialogContentText/index.js
generated
vendored
Normal file
5
backend/frontend/node_modules/@mui/material/legacy/DialogContentText/index.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
'use client';
|
||||
|
||||
export { default } from './DialogContentText';
|
||||
export { default as dialogContentTextClasses } from './dialogContentTextClasses';
|
||||
export * from './dialogContentTextClasses';
|
||||
Reference in New Issue
Block a user