Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102484865
Paper.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
Fri, Feb 21, 05:08
Size
5 KB
Mime Type
text/x-java
Expires
Sun, Feb 23, 05:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24331420
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Paper.js
View Options
import
_objectWithoutPropertiesLoose
from
"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"
;
import
_extends
from
"@babel/runtime/helpers/esm/extends"
;
const
_excluded
=
[
"className"
,
"component"
,
"elevation"
,
"square"
,
"variant"
];
import
*
as
React
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
clsx
from
'clsx'
;
import
{
chainPropTypes
,
integerPropType
}
from
'@mui/utils'
;
import
{
unstable_composeClasses
as
composeClasses
}
from
'@mui/base'
;
import
{
alpha
}
from
'@mui/system'
;
import
styled
from
'../styles/styled'
;
import
getOverlayAlpha
from
'../styles/getOverlayAlpha'
;
import
useThemeProps
from
'../styles/useThemeProps'
;
import
useTheme
from
'../styles/useTheme'
;
import
{
getPaperUtilityClass
}
from
'./paperClasses'
;
import
{
jsx
as
_jsx
}
from
"react/jsx-runtime"
;
const
useUtilityClasses
=
ownerState
=>
{
const
{
square
,
elevation
,
variant
,
classes
}
=
ownerState
;
const
slots
=
{
root
:
[
'root'
,
variant
,
!
square
&&
'rounded'
,
variant
===
'elevation'
&&
`
elevation$
{
elevation
}
`
]
};
return
composeClasses
(
slots
,
getPaperUtilityClass
,
classes
);
};
const
PaperRoot
=
styled
(
'div'
,
{
name
:
'MuiPaper'
,
slot
:
'Root'
,
overridesResolver
:
(
props
,
styles
)
=>
{
const
{
ownerState
}
=
props
;
return
[
styles
.
root
,
styles
[
ownerState
.
variant
],
!
ownerState
.
square
&&
styles
.
rounded
,
ownerState
.
variant
===
'elevation'
&&
styles
[
`
elevation$
{
ownerState
.
elevation
}
`
]];
}
})(({
theme
,
ownerState
})
=>
_extends
({
backgroundColor
:
(
theme
.
vars
||
theme
).
palette
.
background
.
paper
,
color
:
(
theme
.
vars
||
theme
).
palette
.
text
.
primary
,
transition
:
theme
.
transitions
.
create
(
'box-shadow'
)
},
!
ownerState
.
square
&&
{
borderRadius
:
theme
.
shape
.
borderRadius
},
ownerState
.
variant
===
'outlined'
&&
{
border
:
`
1
px
solid
$
{(
theme
.
vars
||
theme
).
palette
.
divider
}
`
},
ownerState
.
variant
===
'elevation'
&&
_extends
({
boxShadow
:
(
theme
.
vars
||
theme
).
shadows
[
ownerState
.
elevation
]
},
!
theme
.
vars
&&
theme
.
palette
.
mode
===
'dark'
&&
{
backgroundImage
:
`
linear
-
gradient
(
$
{
alpha
(
'#fff'
,
getOverlayAlpha
(
ownerState
.
elevation
))},
$
{
alpha
(
'#fff'
,
getOverlayAlpha
(
ownerState
.
elevation
))})
`
},
theme
.
vars
&&
{
backgroundImage
:
theme
.
vars
.
overlays
?
.[
ownerState
.
elevation
]
})));
const
Paper
=
/*#__PURE__*/
React
.
forwardRef
(
function
Paper
(
inProps
,
ref
)
{
const
props
=
useThemeProps
({
props
:
inProps
,
name
:
'MuiPaper'
});
const
{
className
,
component
=
'div'
,
elevation
=
1
,
square
=
false
,
variant
=
'elevation'
}
=
props
,
other
=
_objectWithoutPropertiesLoose
(
props
,
_excluded
);
const
ownerState
=
_extends
({},
props
,
{
component
,
elevation
,
square
,
variant
});
const
classes
=
useUtilityClasses
(
ownerState
);
if
(
process
.
env
.
NODE_ENV
!==
'production'
)
{
// eslint-disable-next-line react-hooks/rules-of-hooks
const
theme
=
useTheme
();
if
(
theme
.
shadows
[
elevation
]
===
undefined
)
{
console
.
error
([
`
MUI
:
The
elevation
provided
<
Paper
elevation
=
{
$
{
elevation
}}
>
is
not
available
in
the
theme
.
`
,
`
Please
make
sure
that
\`
theme
.
shadows
[
$
{
elevation
}]
\`
is
defined
.
`
].
join
(
'\n'
));
}
}
return
/*#__PURE__*/
_jsx
(
PaperRoot
,
_extends
({
as
:
component
,
ownerState
:
ownerState
,
className
:
clsx
(
classes
.
root
,
className
),
ref
:
ref
},
other
));
});
process
.
env
.
NODE_ENV
!==
"production"
?
Paper
.
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" |
// ----------------------------------------------------------------------
/**
* 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 component used for the root node.
* Either a string to use a HTML element or a component.
*/
component
:
PropTypes
.
elementType
,
/**
* Shadow depth, corresponds to `dp` in the spec.
* It accepts values between 0 and 24 inclusive.
* @default 1
*/
elevation
:
chainPropTypes
(
integerPropType
,
props
=>
{
const
{
elevation
,
variant
}
=
props
;
if
(
elevation
>
0
&&
variant
===
'outlined'
)
{
return
new
Error
(
`
MUI
:
Combining
\`
elevation
=
{
$
{
elevation
}}
\`
with
\`
variant
=
"${variant}"
\`
has
no
effect
.
Either
use
\`
elevation
=
{
0
}
\`
or
use
a
different
\`
variant
\`
.
`
);
}
return
null
;
}),
/**
* If `true`, rounded corners are disabled.
* @default false
*/
square
:
PropTypes
.
bool
,
/**
* 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
]),
/**
* The variant to use.
* @default 'elevation'
*/
variant
:
PropTypes
/* @typescript-to-proptypes-ignore */
.
oneOfType
([
PropTypes
.
oneOf
([
'elevation'
,
'outlined'
]),
PropTypes
.
string
])
}
:
void
0
;
export
default
Paper
;
Event Timeline
Log In to Comment