Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101798571
Container.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
Thu, Feb 13, 19:51
Size
2 KB
Mime Type
text/x-java
Expires
Sat, Feb 15, 19:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24233373
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Container.js
View Options
/* eslint-disable material-ui/mui-name-matches-component-name */
import
PropTypes
from
'prop-types'
;
import
{
createContainer
}
from
'@mui/system'
;
import
capitalize
from
'../utils/capitalize'
;
import
styled
from
'../styles/styled'
;
import
_useThemeProps
from
'../styles/useThemeProps'
;
var
Container
=
createContainer
({
createStyledComponent
:
styled
(
'div'
,
{
name
:
'MuiContainer'
,
slot
:
'Root'
,
overridesResolver
:
function
overridesResolver
(
props
,
styles
)
{
var
ownerState
=
props
.
ownerState
;
return
[
styles
.
root
,
styles
[
"maxWidth"
.
concat
(
capitalize
(
String
(
ownerState
.
maxWidth
)))],
ownerState
.
fixed
&&
styles
.
fixed
,
ownerState
.
disableGutters
&&
styles
.
disableGutters
];
}
}),
useThemeProps
:
function
useThemeProps
(
inProps
)
{
return
_useThemeProps
({
props
:
inProps
,
name
:
'MuiContainer'
});
}
});
process
.
env
.
NODE_ENV
!==
"production"
?
Container
.
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" |
// ----------------------------------------------------------------------
/**
* @ignore
*/
children
:
PropTypes
.
node
,
/**
* Override or extend the styles applied to the component.
*/
classes
:
PropTypes
.
object
,
/**
* The component used for the root node.
* Either a string to use a HTML element or a component.
*/
component
:
PropTypes
.
elementType
,
/**
* If `true`, the left and right padding is removed.
* @default false
*/
disableGutters
:
PropTypes
.
bool
,
/**
* Set the max-width to match the min-width of the current breakpoint.
* This is useful if you'd prefer to design for a fixed set of sizes
* instead of trying to accommodate a fully fluid viewport.
* It's fluid by default.
* @default false
*/
fixed
:
PropTypes
.
bool
,
/**
* Determine the max-width of the container.
* The container width grows with the size of the screen.
* Set to `false` to disable `maxWidth`.
* @default 'lg'
*/
maxWidth
:
PropTypes
/* @typescript-to-proptypes-ignore */
.
oneOfType
([
PropTypes
.
oneOf
([
'xs'
,
'sm'
,
'md'
,
'lg'
,
'xl'
,
false
]),
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
Container
;
Event Timeline
Log In to Comment