Jesus sucks
This commit is contained in:
24
backend/frontend/node_modules/@mui/styled-engine/legacy/GlobalStyles/GlobalStyles.js
generated
vendored
Normal file
24
backend/frontend/node_modules/@mui/styled-engine/legacy/GlobalStyles/GlobalStyles.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { Global } from '@emotion/react';
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
function isEmpty(obj) {
|
||||
return obj === undefined || obj === null || Object.keys(obj).length === 0;
|
||||
}
|
||||
export default function GlobalStyles(props) {
|
||||
var styles = props.styles,
|
||||
_props$defaultTheme = props.defaultTheme,
|
||||
defaultTheme = _props$defaultTheme === void 0 ? {} : _props$defaultTheme;
|
||||
var globalStyles = typeof styles === 'function' ? function (themeInput) {
|
||||
return styles(isEmpty(themeInput) ? defaultTheme : themeInput);
|
||||
} : styles;
|
||||
return /*#__PURE__*/_jsx(Global, {
|
||||
styles: globalStyles
|
||||
});
|
||||
}
|
||||
process.env.NODE_ENV !== "production" ? GlobalStyles.propTypes = {
|
||||
defaultTheme: PropTypes.object,
|
||||
styles: PropTypes.oneOfType([PropTypes.array, PropTypes.string, PropTypes.object, PropTypes.func])
|
||||
} : void 0;
|
||||
3
backend/frontend/node_modules/@mui/styled-engine/legacy/GlobalStyles/index.js
generated
vendored
Normal file
3
backend/frontend/node_modules/@mui/styled-engine/legacy/GlobalStyles/index.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
'use client';
|
||||
|
||||
export { default } from './GlobalStyles';
|
||||
38
backend/frontend/node_modules/@mui/styled-engine/legacy/StyledEngineProvider/StyledEngineProvider.js
generated
vendored
Normal file
38
backend/frontend/node_modules/@mui/styled-engine/legacy/StyledEngineProvider/StyledEngineProvider.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
'use client';
|
||||
|
||||
import _typeof from "@babel/runtime/helpers/esm/typeof";
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { CacheProvider } from '@emotion/react';
|
||||
import createCache from '@emotion/cache';
|
||||
|
||||
// prepend: true moves MUI styles to the top of the <head> so they're loaded first.
|
||||
// It allows developers to easily override MUI styles with other styling solutions, like CSS modules.
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
var cache;
|
||||
if ((typeof document === "undefined" ? "undefined" : _typeof(document)) === 'object') {
|
||||
cache = createCache({
|
||||
key: 'css',
|
||||
prepend: true
|
||||
});
|
||||
}
|
||||
export default function StyledEngineProvider(props) {
|
||||
var injectFirst = props.injectFirst,
|
||||
children = props.children;
|
||||
return injectFirst && cache ? /*#__PURE__*/_jsx(CacheProvider, {
|
||||
value: cache,
|
||||
children: children
|
||||
}) : children;
|
||||
}
|
||||
process.env.NODE_ENV !== "production" ? StyledEngineProvider.propTypes = {
|
||||
/**
|
||||
* Your component tree.
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* By default, the styles are injected last in the <head> element of the page.
|
||||
* As a result, they gain more specificity than any other style sheet.
|
||||
* If you want to override MUI's styles, set this prop.
|
||||
*/
|
||||
injectFirst: PropTypes.bool
|
||||
} : void 0;
|
||||
3
backend/frontend/node_modules/@mui/styled-engine/legacy/StyledEngineProvider/index.js
generated
vendored
Normal file
3
backend/frontend/node_modules/@mui/styled-engine/legacy/StyledEngineProvider/index.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
'use client';
|
||||
|
||||
export { default } from './StyledEngineProvider';
|
||||
43
backend/frontend/node_modules/@mui/styled-engine/legacy/index.js
generated
vendored
Normal file
43
backend/frontend/node_modules/@mui/styled-engine/legacy/index.js
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
/**
|
||||
* @mui/styled-engine v5.16.8
|
||||
*
|
||||
* @license MIT
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
'use client';
|
||||
|
||||
/* eslint-disable no-underscore-dangle */
|
||||
import emStyled from '@emotion/styled';
|
||||
export default function styled(tag, options) {
|
||||
var stylesFactory = emStyled(tag, options);
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
return function () {
|
||||
var component = typeof tag === 'string' ? "\"".concat(tag, "\"") : 'component';
|
||||
for (var _len = arguments.length, styles = new Array(_len), _key = 0; _key < _len; _key++) {
|
||||
styles[_key] = arguments[_key];
|
||||
}
|
||||
if (styles.length === 0) {
|
||||
console.error(["MUI: Seems like you called `styled(".concat(component, ")()` without a `style` argument."), 'You must provide a `styles` argument: `styled("div")(styleYouForgotToPass)`.'].join('\n'));
|
||||
} else if (styles.some(function (style) {
|
||||
return style === undefined;
|
||||
})) {
|
||||
console.error("MUI: the styled(".concat(component, ")(...args) API requires all its args to be defined."));
|
||||
}
|
||||
return stylesFactory.apply(void 0, styles);
|
||||
};
|
||||
}
|
||||
return stylesFactory;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||
export var internal_processStyles = function internal_processStyles(tag, processor) {
|
||||
// Emotion attaches all the styles as `__emotion_styles`.
|
||||
// Ref: https://github.com/emotion-js/emotion/blob/16d971d0da229596d6bcc39d282ba9753c9ee7cf/packages/styled/src/base.js#L186
|
||||
if (Array.isArray(tag.__emotion_styles)) {
|
||||
tag.__emotion_styles = processor(tag.__emotion_styles);
|
||||
}
|
||||
};
|
||||
export { ThemeContext, keyframes, css } from '@emotion/react';
|
||||
export { default as StyledEngineProvider } from './StyledEngineProvider';
|
||||
export { default as GlobalStyles } from './GlobalStyles';
|
||||
Reference in New Issue
Block a user