370 lines
No EOL
15 KiB
JavaScript
370 lines
No EOL
15 KiB
JavaScript
exports.id = 596;
|
|
exports.ids = [596];
|
|
exports.modules = {
|
|
|
|
/***/ 258:
|
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
|
|
"use strict";
|
|
/* unused harmony export styles */
|
|
/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(122);
|
|
/* harmony import */ var _babel_runtime_helpers_esm_objectWithoutProperties__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(375);
|
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(297);
|
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(229);
|
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
/* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(536);
|
|
/* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(clsx__WEBPACK_IMPORTED_MODULE_2__);
|
|
/* harmony import */ var _styles_withStyles__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(543);
|
|
/* harmony import */ var _utils_capitalize__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(871);
|
|
/* harmony import */ var _Paper__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(895);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var styles = function styles(theme) {
|
|
var backgroundColorDefault = theme.palette.type === 'light' ? theme.palette.grey[100] : theme.palette.grey[900];
|
|
return {
|
|
/* Styles applied to the root element. */
|
|
root: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
width: '100%',
|
|
boxSizing: 'border-box',
|
|
// Prevent padding issue with the Modal and fixed positioned AppBar.
|
|
zIndex: theme.zIndex.appBar,
|
|
flexShrink: 0
|
|
},
|
|
|
|
/* Styles applied to the root element if `position="fixed"`. */
|
|
positionFixed: {
|
|
position: 'fixed',
|
|
top: 0,
|
|
left: 'auto',
|
|
right: 0,
|
|
'@media print': {
|
|
// Prevent the app bar to be visible on each printed page.
|
|
position: 'absolute'
|
|
}
|
|
},
|
|
|
|
/* Styles applied to the root element if `position="absolute"`. */
|
|
positionAbsolute: {
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 'auto',
|
|
right: 0
|
|
},
|
|
|
|
/* Styles applied to the root element if `position="sticky"`. */
|
|
positionSticky: {
|
|
// ⚠️ sticky is not supported by IE 11.
|
|
position: 'sticky',
|
|
top: 0,
|
|
left: 'auto',
|
|
right: 0
|
|
},
|
|
|
|
/* Styles applied to the root element if `position="static"`. */
|
|
positionStatic: {
|
|
position: 'static'
|
|
},
|
|
|
|
/* Styles applied to the root element if `position="relative"`. */
|
|
positionRelative: {
|
|
position: 'relative'
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="default"`. */
|
|
colorDefault: {
|
|
backgroundColor: backgroundColorDefault,
|
|
color: theme.palette.getContrastText(backgroundColorDefault)
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="primary"`. */
|
|
colorPrimary: {
|
|
backgroundColor: theme.palette.primary.main,
|
|
color: theme.palette.primary.contrastText
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="secondary"`. */
|
|
colorSecondary: {
|
|
backgroundColor: theme.palette.secondary.main,
|
|
color: theme.palette.secondary.contrastText
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="inherit"`. */
|
|
colorInherit: {
|
|
color: 'inherit'
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="transparent"`. */
|
|
colorTransparent: {
|
|
backgroundColor: 'transparent',
|
|
color: 'inherit'
|
|
}
|
|
};
|
|
};
|
|
var AppBar = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(function AppBar(props, ref) {
|
|
var classes = props.classes,
|
|
className = props.className,
|
|
_props$color = props.color,
|
|
color = _props$color === void 0 ? 'primary' : _props$color,
|
|
_props$position = props.position,
|
|
position = _props$position === void 0 ? 'fixed' : _props$position,
|
|
other = (0,_babel_runtime_helpers_esm_objectWithoutProperties__WEBPACK_IMPORTED_MODULE_3__/* .default */ .Z)(props, ["classes", "className", "color", "position"]);
|
|
|
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_Paper__WEBPACK_IMPORTED_MODULE_4__/* .default */ .Z, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_5__/* .default */ .Z)({
|
|
square: true,
|
|
component: "header",
|
|
elevation: 4,
|
|
className: clsx__WEBPACK_IMPORTED_MODULE_2___default()(classes.root, classes["position".concat((0,_utils_capitalize__WEBPACK_IMPORTED_MODULE_6__/* .default */ .Z)(position))], classes["color".concat((0,_utils_capitalize__WEBPACK_IMPORTED_MODULE_6__/* .default */ .Z)(color))], className, position === 'fixed' && 'mui-fixed'),
|
|
ref: ref
|
|
}, other));
|
|
});
|
|
false ? 0 : void 0;
|
|
/* harmony default export */ __webpack_exports__["Z"] = ((0,_styles_withStyles__WEBPACK_IMPORTED_MODULE_7__/* .default */ .Z)(styles, {
|
|
name: 'MuiAppBar'
|
|
})(AppBar));
|
|
|
|
/***/ }),
|
|
|
|
/***/ 812:
|
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
|
|
"use strict";
|
|
/* unused harmony export styles */
|
|
/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(122);
|
|
/* harmony import */ var _babel_runtime_helpers_esm_objectWithoutProperties__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(375);
|
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(297);
|
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(229);
|
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
/* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(536);
|
|
/* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(clsx__WEBPACK_IMPORTED_MODULE_2__);
|
|
/* harmony import */ var _material_ui_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(958);
|
|
/* harmony import */ var _material_ui_utils__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_material_ui_utils__WEBPACK_IMPORTED_MODULE_3__);
|
|
/* harmony import */ var _styles_withStyles__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(543);
|
|
/* harmony import */ var _styles_colorManipulator__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(693);
|
|
/* harmony import */ var _ButtonBase__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(491);
|
|
/* harmony import */ var _utils_capitalize__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(871);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var styles = function styles(theme) {
|
|
return {
|
|
/* Styles applied to the root element. */
|
|
root: {
|
|
textAlign: 'center',
|
|
flex: '0 0 auto',
|
|
fontSize: theme.typography.pxToRem(24),
|
|
padding: 12,
|
|
borderRadius: '50%',
|
|
overflow: 'visible',
|
|
// Explicitly set the default value to solve a bug on IE 11.
|
|
color: theme.palette.action.active,
|
|
transition: theme.transitions.create('background-color', {
|
|
duration: theme.transitions.duration.shortest
|
|
}),
|
|
'&:hover': {
|
|
backgroundColor: (0,_styles_colorManipulator__WEBPACK_IMPORTED_MODULE_4__/* .fade */ .U1)(theme.palette.action.active, theme.palette.action.hoverOpacity),
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: 'transparent'
|
|
}
|
|
},
|
|
'&$disabled': {
|
|
backgroundColor: 'transparent',
|
|
color: theme.palette.action.disabled
|
|
}
|
|
},
|
|
|
|
/* Styles applied to the root element if `edge="start"`. */
|
|
edgeStart: {
|
|
marginLeft: -12,
|
|
'$sizeSmall&': {
|
|
marginLeft: -3
|
|
}
|
|
},
|
|
|
|
/* Styles applied to the root element if `edge="end"`. */
|
|
edgeEnd: {
|
|
marginRight: -12,
|
|
'$sizeSmall&': {
|
|
marginRight: -3
|
|
}
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="inherit"`. */
|
|
colorInherit: {
|
|
color: 'inherit'
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="primary"`. */
|
|
colorPrimary: {
|
|
color: theme.palette.primary.main,
|
|
'&:hover': {
|
|
backgroundColor: (0,_styles_colorManipulator__WEBPACK_IMPORTED_MODULE_4__/* .fade */ .U1)(theme.palette.primary.main, theme.palette.action.hoverOpacity),
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: 'transparent'
|
|
}
|
|
}
|
|
},
|
|
|
|
/* Styles applied to the root element if `color="secondary"`. */
|
|
colorSecondary: {
|
|
color: theme.palette.secondary.main,
|
|
'&:hover': {
|
|
backgroundColor: (0,_styles_colorManipulator__WEBPACK_IMPORTED_MODULE_4__/* .fade */ .U1)(theme.palette.secondary.main, theme.palette.action.hoverOpacity),
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: 'transparent'
|
|
}
|
|
}
|
|
},
|
|
|
|
/* Pseudo-class applied to the root element if `disabled={true}`. */
|
|
disabled: {},
|
|
|
|
/* Styles applied to the root element if `size="small"`. */
|
|
sizeSmall: {
|
|
padding: 3,
|
|
fontSize: theme.typography.pxToRem(18)
|
|
},
|
|
|
|
/* Styles applied to the children container element. */
|
|
label: {
|
|
width: '100%',
|
|
display: 'flex',
|
|
alignItems: 'inherit',
|
|
justifyContent: 'inherit'
|
|
}
|
|
};
|
|
};
|
|
/**
|
|
* Refer to the [Icons](/components/icons/) section of the documentation
|
|
* regarding the available icon options.
|
|
*/
|
|
|
|
var IconButton = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(function IconButton(props, ref) {
|
|
var _props$edge = props.edge,
|
|
edge = _props$edge === void 0 ? false : _props$edge,
|
|
children = props.children,
|
|
classes = props.classes,
|
|
className = props.className,
|
|
_props$color = props.color,
|
|
color = _props$color === void 0 ? 'default' : _props$color,
|
|
_props$disabled = props.disabled,
|
|
disabled = _props$disabled === void 0 ? false : _props$disabled,
|
|
_props$disableFocusRi = props.disableFocusRipple,
|
|
disableFocusRipple = _props$disableFocusRi === void 0 ? false : _props$disableFocusRi,
|
|
_props$size = props.size,
|
|
size = _props$size === void 0 ? 'medium' : _props$size,
|
|
other = (0,_babel_runtime_helpers_esm_objectWithoutProperties__WEBPACK_IMPORTED_MODULE_5__/* .default */ .Z)(props, ["edge", "children", "classes", "className", "color", "disabled", "disableFocusRipple", "size"]);
|
|
|
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_ButtonBase__WEBPACK_IMPORTED_MODULE_6__/* .default */ .Z, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_7__/* .default */ .Z)({
|
|
className: clsx__WEBPACK_IMPORTED_MODULE_2___default()(classes.root, className, color !== 'default' && classes["color".concat((0,_utils_capitalize__WEBPACK_IMPORTED_MODULE_8__/* .default */ .Z)(color))], disabled && classes.disabled, size === "small" && classes["size".concat((0,_utils_capitalize__WEBPACK_IMPORTED_MODULE_8__/* .default */ .Z)(size))], {
|
|
'start': classes.edgeStart,
|
|
'end': classes.edgeEnd
|
|
}[edge]),
|
|
centerRipple: true,
|
|
focusRipple: !disableFocusRipple,
|
|
disabled: disabled,
|
|
ref: ref
|
|
}, other), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("span", {
|
|
className: classes.label
|
|
}, children));
|
|
});
|
|
false ? 0 : void 0;
|
|
/* harmony default export */ __webpack_exports__["Z"] = ((0,_styles_withStyles__WEBPACK_IMPORTED_MODULE_9__/* .default */ .Z)(styles, {
|
|
name: 'MuiIconButton'
|
|
})(IconButton));
|
|
|
|
/***/ }),
|
|
|
|
/***/ 358:
|
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
|
|
"use strict";
|
|
/* unused harmony export styles */
|
|
/* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(122);
|
|
/* harmony import */ var _babel_runtime_helpers_esm_objectWithoutProperties__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(375);
|
|
/* harmony import */ var _babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(156);
|
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(297);
|
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(229);
|
|
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
|
/* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(536);
|
|
/* harmony import */ var clsx__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(clsx__WEBPACK_IMPORTED_MODULE_2__);
|
|
/* harmony import */ var _styles_withStyles__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(543);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var styles = function styles(theme) {
|
|
return {
|
|
/* Styles applied to the root element. */
|
|
root: {
|
|
position: 'relative',
|
|
display: 'flex',
|
|
alignItems: 'center'
|
|
},
|
|
|
|
/* Styles applied to the root element if `disableGutters={false}`. */
|
|
gutters: (0,_babel_runtime_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_3__/* .default */ .Z)({
|
|
paddingLeft: theme.spacing(2),
|
|
paddingRight: theme.spacing(2)
|
|
}, theme.breakpoints.up('sm'), {
|
|
paddingLeft: theme.spacing(3),
|
|
paddingRight: theme.spacing(3)
|
|
}),
|
|
|
|
/* Styles applied to the root element if `variant="regular"`. */
|
|
regular: theme.mixins.toolbar,
|
|
|
|
/* Styles applied to the root element if `variant="dense"`. */
|
|
dense: {
|
|
minHeight: 48
|
|
}
|
|
};
|
|
};
|
|
var Toolbar = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.forwardRef(function Toolbar(props, ref) {
|
|
var classes = props.classes,
|
|
className = props.className,
|
|
_props$component = props.component,
|
|
Component = _props$component === void 0 ? 'div' : _props$component,
|
|
_props$disableGutters = props.disableGutters,
|
|
disableGutters = _props$disableGutters === void 0 ? false : _props$disableGutters,
|
|
_props$variant = props.variant,
|
|
variant = _props$variant === void 0 ? 'regular' : _props$variant,
|
|
other = (0,_babel_runtime_helpers_esm_objectWithoutProperties__WEBPACK_IMPORTED_MODULE_4__/* .default */ .Z)(props, ["classes", "className", "component", "disableGutters", "variant"]);
|
|
|
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(Component, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_5__/* .default */ .Z)({
|
|
className: clsx__WEBPACK_IMPORTED_MODULE_2___default()(classes.root, classes[variant], className, !disableGutters && classes.gutters),
|
|
ref: ref
|
|
}, other));
|
|
});
|
|
false ? 0 : void 0;
|
|
/* harmony default export */ __webpack_exports__["Z"] = ((0,_styles_withStyles__WEBPACK_IMPORTED_MODULE_6__/* .default */ .Z)(styles, {
|
|
name: 'MuiToolbar'
|
|
})(Toolbar));
|
|
|
|
/***/ })
|
|
|
|
};
|
|
; |