Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109693853
ThemeProvider.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 23, 00:52
Size
1 KB
Mime Type
text/x-java
Expires
Fri, Apr 25, 00:52 (2 d)
Engine
blob
Format
Raw Data
Handle
25750856
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
ThemeProvider.js
View Options
import _typeof from "@babel/runtime/helpers/esm/typeof";
import * as React from 'react';
import PropTypes from 'prop-types';
import { ThemeProvider as MuiThemeProvider } from '@mui/private-theming';
import { exactProp } from '@mui/utils';
import { ThemeContext as StyledEngineThemeContext } from '@mui/styled-engine';
import useTheme from '../useTheme';
import { jsx as _jsx } from "react/jsx-runtime";
var EMPTY_THEME = {};
function InnerThemeProvider(props) {
var theme = useTheme();
return /*#__PURE__*/_jsx(StyledEngineThemeContext.Provider, {
value: _typeof(theme) === 'object' ? theme : EMPTY_THEME,
children: props.children
});
}
process.env.NODE_ENV !== "production" ? InnerThemeProvider.propTypes = {
/**
* Your component tree.
*/
children: PropTypes.node
} : void 0;
/**
* This component makes the `theme` available down the React tree.
* It should preferably be used at **the root of your component tree**.
*/
function ThemeProvider(props) {
var children = props.children,
localTheme = props.theme;
return /*#__PURE__*/_jsx(MuiThemeProvider, {
theme: localTheme,
children: /*#__PURE__*/_jsx(InnerThemeProvider, {
children: children
})
});
}
process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes /* remove-proptypes */ = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the d.ts file and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* Your component tree.
*/
children: PropTypes.node,
/**
* A theme object. You can provide a function to extend the outer theme.
*/
theme: PropTypes.oneOfType([PropTypes.func, PropTypes.object]).isRequired
} : void 0;
if (process.env.NODE_ENV !== 'production') {
process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes = exactProp(ThemeProvider.propTypes) : void 0;
}
export default ThemeProvider;
Event Timeline
Log In to Comment