mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 21:52:19 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
156
web/node_modules/@material-ui/core/Dialog/Dialog.d.ts
generated
vendored
Normal file
156
web/node_modules/@material-ui/core/Dialog/Dialog.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,156 @@
|
|||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { PaperProps } from '../Paper';
|
||||
import { ModalProps } from '../Modal';
|
||||
import { TransitionHandlerProps, TransitionProps } from '../transitions/transition';
|
||||
|
||||
export interface DialogProps
|
||||
extends StandardProps<ModalProps & Partial<TransitionHandlerProps>, DialogClassKey, 'children'> {
|
||||
/**
|
||||
* The id(s) of the element(s) that describe the dialog.
|
||||
*/
|
||||
'aria-describedby'?: string;
|
||||
/**
|
||||
* The id(s) of the element(s) that label the dialog.
|
||||
*/
|
||||
'aria-labelledby'?: string;
|
||||
/**
|
||||
* Dialog children, usually the included sub-components.
|
||||
*/
|
||||
children?: React.ReactNode;
|
||||
/**
|
||||
* If `true`, clicking the backdrop will not fire the `onClose` callback.
|
||||
* @deprecated Use the onClose prop with the `reason` argument to filter the `backdropClick` events.
|
||||
*/
|
||||
disableBackdropClick?: boolean;
|
||||
/**
|
||||
* If `true`, hitting escape will not fire the `onClose` callback.
|
||||
*/
|
||||
disableEscapeKeyDown?: boolean;
|
||||
/**
|
||||
* If `true`, the dialog will be full-screen
|
||||
*/
|
||||
fullScreen?: boolean;
|
||||
/**
|
||||
* If `true`, the dialog stretches to `maxWidth`.
|
||||
*
|
||||
* Notice that the dialog width grow is limited by the default margin.
|
||||
*/
|
||||
fullWidth?: boolean;
|
||||
/**
|
||||
* Determine the max-width of the dialog.
|
||||
* The dialog width grows with the size of the screen.
|
||||
* Set to `false` to disable `maxWidth`.
|
||||
*/
|
||||
maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | false;
|
||||
/**
|
||||
* Callback fired when the backdrop is clicked.
|
||||
* @deprecated Use the onClose prop with the `reason` argument to handle the `backdropClick` events.
|
||||
*/
|
||||
onBackdropClick?: ModalProps['onBackdropClick'];
|
||||
/**
|
||||
* Callback fired when the component requests to be closed.
|
||||
*
|
||||
* @param {object} event The event source of the callback.
|
||||
* @param {string} reason Can be: `"escapeKeyDown"`, `"backdropClick"`.
|
||||
*/
|
||||
onClose?: ModalProps['onClose'];
|
||||
/**
|
||||
* Callback fired before the dialog enters.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onEnter?: TransitionHandlerProps['onEnter'];
|
||||
/**
|
||||
* Callback fired when the dialog has entered.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onEntered?: TransitionHandlerProps['onEntered'];
|
||||
/**
|
||||
* Callback fired when the dialog is entering.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onEntering?: TransitionHandlerProps['onEntering'];
|
||||
/**
|
||||
* Callback fired when the escape key is pressed,
|
||||
* `disableKeyboard` is false and the modal is in focus.
|
||||
* @deprecated Use the onClose prop with the `reason` argument to handle the `escapeKeyDown` events.
|
||||
*/
|
||||
onEscapeKeyDown?: ModalProps['onEscapeKeyDown'];
|
||||
/**
|
||||
* Callback fired before the dialog exits.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onExit?: TransitionHandlerProps['onExit'];
|
||||
/**
|
||||
* Callback fired when the dialog has exited.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onExited?: TransitionHandlerProps['onExited'];
|
||||
/**
|
||||
* Callback fired when the dialog is exiting.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onExiting?: TransitionHandlerProps['onExiting'];
|
||||
/**
|
||||
* If `true`, the Dialog is open.
|
||||
*/
|
||||
open: ModalProps['open'];
|
||||
/**
|
||||
* The component used to render the body of the dialog.
|
||||
*/
|
||||
PaperComponent?: React.ComponentType<PaperProps>;
|
||||
/**
|
||||
* Props applied to the [`Paper`](/api/paper/) element.
|
||||
*/
|
||||
PaperProps?: Partial<PaperProps>;
|
||||
/**
|
||||
* Determine the container for scrolling the dialog.
|
||||
*/
|
||||
scroll?: 'body' | 'paper';
|
||||
/**
|
||||
* The component used for the transition.
|
||||
* [Follow this guide](/components/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.
|
||||
*/
|
||||
TransitionComponent?: React.ComponentType<
|
||||
TransitionProps & { children?: React.ReactElement<any, any> }
|
||||
>;
|
||||
/**
|
||||
* The duration for the transition, in milliseconds.
|
||||
* You may specify a single timeout for all transitions, or individually with an object.
|
||||
*/
|
||||
transitionDuration?: TransitionProps['timeout'];
|
||||
/**
|
||||
* Props applied to the [`Transition`](http://reactcommunity.org/react-transition-group/transition#Transition-props) element.
|
||||
*/
|
||||
TransitionProps?: TransitionProps;
|
||||
}
|
||||
|
||||
export type DialogClassKey =
|
||||
| 'root'
|
||||
| 'scrollPaper'
|
||||
| 'scrollBody'
|
||||
| 'container'
|
||||
| 'paper'
|
||||
| 'paperScrollPaper'
|
||||
| 'paperScrollBody'
|
||||
| 'paperWidthFalse'
|
||||
| 'paperWidthXs'
|
||||
| 'paperWidthSm'
|
||||
| 'paperWidthMd'
|
||||
| 'paperWidthLg'
|
||||
| 'paperWidthXl'
|
||||
| 'paperFullWidth'
|
||||
| 'paperFullScreen';
|
||||
|
||||
/**
|
||||
* Dialogs are overlaid modal paper based components with a backdrop.
|
||||
* Demos:
|
||||
*
|
||||
* - [Dialogs](https://material-ui.com/components/dialogs/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Dialog API](https://material-ui.com/api/dialog/)
|
||||
* - inherits [Modal API](https://material-ui.com/api/modal/)
|
||||
*/
|
||||
export default function Dialog(props: DialogProps): JSX.Element;
|
460
web/node_modules/@material-ui/core/Dialog/Dialog.js
generated
vendored
Normal file
460
web/node_modules/@material-ui/core/Dialog/Dialog.js
generated
vendored
Normal file
|
@ -0,0 +1,460 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = exports.styles = void 0;
|
||||
|
||||
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
||||
|
||||
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
||||
|
||||
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
||||
|
||||
var React = _interopRequireWildcard(require("react"));
|
||||
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
|
||||
var _clsx = _interopRequireDefault(require("clsx"));
|
||||
|
||||
var _withStyles = _interopRequireDefault(require("../styles/withStyles"));
|
||||
|
||||
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
|
||||
|
||||
var _deprecatedPropType = _interopRequireDefault(require("../utils/deprecatedPropType"));
|
||||
|
||||
var _Modal = _interopRequireDefault(require("../Modal"));
|
||||
|
||||
var _Backdrop = _interopRequireDefault(require("../Backdrop"));
|
||||
|
||||
var _Fade = _interopRequireDefault(require("../Fade"));
|
||||
|
||||
var _transitions = require("../styles/transitions");
|
||||
|
||||
var _Paper = _interopRequireDefault(require("../Paper"));
|
||||
|
||||
var styles = function styles(theme) {
|
||||
return {
|
||||
/* Styles applied to the root element. */
|
||||
root: {
|
||||
'@media print': {
|
||||
// Use !important to override the Modal inline-style.
|
||||
position: 'absolute !important'
|
||||
}
|
||||
},
|
||||
|
||||
/* Styles applied to the container element if `scroll="paper"`. */
|
||||
scrollPaper: {
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center'
|
||||
},
|
||||
|
||||
/* Styles applied to the container element if `scroll="body"`. */
|
||||
scrollBody: {
|
||||
overflowY: 'auto',
|
||||
overflowX: 'hidden',
|
||||
textAlign: 'center',
|
||||
'&:after': {
|
||||
content: '""',
|
||||
display: 'inline-block',
|
||||
verticalAlign: 'middle',
|
||||
height: '100%',
|
||||
width: '0'
|
||||
}
|
||||
},
|
||||
|
||||
/* Styles applied to the container element. */
|
||||
container: {
|
||||
height: '100%',
|
||||
'@media print': {
|
||||
height: 'auto'
|
||||
},
|
||||
// We disable the focus ring for mouse, touch and keyboard users.
|
||||
outline: 0
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component. */
|
||||
paper: {
|
||||
margin: 32,
|
||||
position: 'relative',
|
||||
overflowY: 'auto',
|
||||
// Fix IE 11 issue, to remove at some point.
|
||||
'@media print': {
|
||||
overflowY: 'visible',
|
||||
boxShadow: 'none'
|
||||
}
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `scroll="paper"`. */
|
||||
paperScrollPaper: {
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
maxHeight: 'calc(100% - 64px)'
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `scroll="body"`. */
|
||||
paperScrollBody: {
|
||||
display: 'inline-block',
|
||||
verticalAlign: 'middle',
|
||||
textAlign: 'left' // 'initial' doesn't work on IE 11
|
||||
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `maxWidth=false`. */
|
||||
paperWidthFalse: {
|
||||
maxWidth: 'calc(100% - 64px)'
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `maxWidth="xs"`. */
|
||||
paperWidthXs: {
|
||||
maxWidth: Math.max(theme.breakpoints.values.xs, 444),
|
||||
'&$paperScrollBody': (0, _defineProperty2.default)({}, theme.breakpoints.down(Math.max(theme.breakpoints.values.xs, 444) + 32 * 2), {
|
||||
maxWidth: 'calc(100% - 64px)'
|
||||
})
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `maxWidth="sm"`. */
|
||||
paperWidthSm: {
|
||||
maxWidth: theme.breakpoints.values.sm,
|
||||
'&$paperScrollBody': (0, _defineProperty2.default)({}, theme.breakpoints.down(theme.breakpoints.values.sm + 32 * 2), {
|
||||
maxWidth: 'calc(100% - 64px)'
|
||||
})
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `maxWidth="md"`. */
|
||||
paperWidthMd: {
|
||||
maxWidth: theme.breakpoints.values.md,
|
||||
'&$paperScrollBody': (0, _defineProperty2.default)({}, theme.breakpoints.down(theme.breakpoints.values.md + 32 * 2), {
|
||||
maxWidth: 'calc(100% - 64px)'
|
||||
})
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `maxWidth="lg"`. */
|
||||
paperWidthLg: {
|
||||
maxWidth: theme.breakpoints.values.lg,
|
||||
'&$paperScrollBody': (0, _defineProperty2.default)({}, theme.breakpoints.down(theme.breakpoints.values.lg + 32 * 2), {
|
||||
maxWidth: 'calc(100% - 64px)'
|
||||
})
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `maxWidth="xl"`. */
|
||||
paperWidthXl: {
|
||||
maxWidth: theme.breakpoints.values.xl,
|
||||
'&$paperScrollBody': (0, _defineProperty2.default)({}, theme.breakpoints.down(theme.breakpoints.values.xl + 32 * 2), {
|
||||
maxWidth: 'calc(100% - 64px)'
|
||||
})
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `fullWidth={true}`. */
|
||||
paperFullWidth: {
|
||||
width: 'calc(100% - 64px)'
|
||||
},
|
||||
|
||||
/* Styles applied to the `Paper` component if `fullScreen={true}`. */
|
||||
paperFullScreen: {
|
||||
margin: 0,
|
||||
width: '100%',
|
||||
maxWidth: '100%',
|
||||
height: '100%',
|
||||
maxHeight: 'none',
|
||||
borderRadius: 0,
|
||||
'&$paperScrollBody': {
|
||||
margin: 0,
|
||||
maxWidth: '100%'
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
exports.styles = styles;
|
||||
var defaultTransitionDuration = {
|
||||
enter: _transitions.duration.enteringScreen,
|
||||
exit: _transitions.duration.leavingScreen
|
||||
};
|
||||
/**
|
||||
* Dialogs are overlaid modal paper based components with a backdrop.
|
||||
*/
|
||||
|
||||
var Dialog = /*#__PURE__*/React.forwardRef(function Dialog(props, ref) {
|
||||
var BackdropProps = props.BackdropProps,
|
||||
children = props.children,
|
||||
classes = props.classes,
|
||||
className = props.className,
|
||||
_props$disableBackdro = props.disableBackdropClick,
|
||||
disableBackdropClick = _props$disableBackdro === void 0 ? false : _props$disableBackdro,
|
||||
_props$disableEscapeK = props.disableEscapeKeyDown,
|
||||
disableEscapeKeyDown = _props$disableEscapeK === void 0 ? false : _props$disableEscapeK,
|
||||
_props$fullScreen = props.fullScreen,
|
||||
fullScreen = _props$fullScreen === void 0 ? false : _props$fullScreen,
|
||||
_props$fullWidth = props.fullWidth,
|
||||
fullWidth = _props$fullWidth === void 0 ? false : _props$fullWidth,
|
||||
_props$maxWidth = props.maxWidth,
|
||||
maxWidth = _props$maxWidth === void 0 ? 'sm' : _props$maxWidth,
|
||||
onBackdropClick = props.onBackdropClick,
|
||||
onClose = props.onClose,
|
||||
onEnter = props.onEnter,
|
||||
onEntered = props.onEntered,
|
||||
onEntering = props.onEntering,
|
||||
onEscapeKeyDown = props.onEscapeKeyDown,
|
||||
onExit = props.onExit,
|
||||
onExited = props.onExited,
|
||||
onExiting = props.onExiting,
|
||||
open = props.open,
|
||||
_props$PaperComponent = props.PaperComponent,
|
||||
PaperComponent = _props$PaperComponent === void 0 ? _Paper.default : _props$PaperComponent,
|
||||
_props$PaperProps = props.PaperProps,
|
||||
PaperProps = _props$PaperProps === void 0 ? {} : _props$PaperProps,
|
||||
_props$scroll = props.scroll,
|
||||
scroll = _props$scroll === void 0 ? 'paper' : _props$scroll,
|
||||
_props$TransitionComp = props.TransitionComponent,
|
||||
TransitionComponent = _props$TransitionComp === void 0 ? _Fade.default : _props$TransitionComp,
|
||||
_props$transitionDura = props.transitionDuration,
|
||||
transitionDuration = _props$transitionDura === void 0 ? defaultTransitionDuration : _props$transitionDura,
|
||||
TransitionProps = props.TransitionProps,
|
||||
ariaDescribedby = props['aria-describedby'],
|
||||
ariaLabelledby = props['aria-labelledby'],
|
||||
other = (0, _objectWithoutProperties2.default)(props, ["BackdropProps", "children", "classes", "className", "disableBackdropClick", "disableEscapeKeyDown", "fullScreen", "fullWidth", "maxWidth", "onBackdropClick", "onClose", "onEnter", "onEntered", "onEntering", "onEscapeKeyDown", "onExit", "onExited", "onExiting", "open", "PaperComponent", "PaperProps", "scroll", "TransitionComponent", "transitionDuration", "TransitionProps", "aria-describedby", "aria-labelledby"]);
|
||||
var mouseDownTarget = React.useRef();
|
||||
|
||||
var handleMouseDown = function handleMouseDown(event) {
|
||||
mouseDownTarget.current = event.target;
|
||||
};
|
||||
|
||||
var handleBackdropClick = function handleBackdropClick(event) {
|
||||
// Ignore the events not coming from the "backdrop"
|
||||
// We don't want to close the dialog when clicking the dialog content.
|
||||
if (event.target !== event.currentTarget) {
|
||||
return;
|
||||
} // Make sure the event starts and ends on the same DOM element.
|
||||
|
||||
|
||||
if (event.target !== mouseDownTarget.current) {
|
||||
return;
|
||||
}
|
||||
|
||||
mouseDownTarget.current = null;
|
||||
|
||||
if (onBackdropClick) {
|
||||
onBackdropClick(event);
|
||||
}
|
||||
|
||||
if (!disableBackdropClick && onClose) {
|
||||
onClose(event, 'backdropClick');
|
||||
}
|
||||
};
|
||||
|
||||
return /*#__PURE__*/React.createElement(_Modal.default, (0, _extends2.default)({
|
||||
className: (0, _clsx.default)(classes.root, className),
|
||||
BackdropComponent: _Backdrop.default,
|
||||
BackdropProps: (0, _extends2.default)({
|
||||
transitionDuration: transitionDuration
|
||||
}, BackdropProps),
|
||||
closeAfterTransition: true
|
||||
}, disableBackdropClick ? {
|
||||
disableBackdropClick: disableBackdropClick
|
||||
} : {}, {
|
||||
disableEscapeKeyDown: disableEscapeKeyDown,
|
||||
onEscapeKeyDown: onEscapeKeyDown,
|
||||
onClose: onClose,
|
||||
open: open,
|
||||
ref: ref
|
||||
}, other), /*#__PURE__*/React.createElement(TransitionComponent, (0, _extends2.default)({
|
||||
appear: true,
|
||||
in: open,
|
||||
timeout: transitionDuration,
|
||||
onEnter: onEnter,
|
||||
onEntering: onEntering,
|
||||
onEntered: onEntered,
|
||||
onExit: onExit,
|
||||
onExiting: onExiting,
|
||||
onExited: onExited,
|
||||
role: "none presentation"
|
||||
}, TransitionProps), /*#__PURE__*/React.createElement("div", {
|
||||
className: (0, _clsx.default)(classes.container, classes["scroll".concat((0, _capitalize.default)(scroll))]),
|
||||
onMouseUp: handleBackdropClick,
|
||||
onMouseDown: handleMouseDown
|
||||
}, /*#__PURE__*/React.createElement(PaperComponent, (0, _extends2.default)({
|
||||
elevation: 24,
|
||||
role: "dialog",
|
||||
"aria-describedby": ariaDescribedby,
|
||||
"aria-labelledby": ariaLabelledby
|
||||
}, PaperProps, {
|
||||
className: (0, _clsx.default)(classes.paper, classes["paperScroll".concat((0, _capitalize.default)(scroll))], classes["paperWidth".concat((0, _capitalize.default)(String(maxWidth)))], PaperProps.className, fullScreen && classes.paperFullScreen, fullWidth && classes.paperFullWidth)
|
||||
}), children))));
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? Dialog.propTypes = {
|
||||
// ----------------------------- Warning --------------------------------
|
||||
// | These PropTypes are generated from the TypeScript type definitions |
|
||||
// | To update them edit the d.ts file and run "yarn proptypes" |
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* The id(s) of the element(s) that describe the dialog.
|
||||
*/
|
||||
'aria-describedby': _propTypes.default.string,
|
||||
|
||||
/**
|
||||
* The id(s) of the element(s) that label the dialog.
|
||||
*/
|
||||
'aria-labelledby': _propTypes.default.string,
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
BackdropProps: _propTypes.default.object,
|
||||
|
||||
/**
|
||||
* Dialog children, usually the included sub-components.
|
||||
*/
|
||||
children: _propTypes.default.node,
|
||||
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
* See [CSS API](#css) below for more details.
|
||||
*/
|
||||
classes: _propTypes.default.object,
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: _propTypes.default.string,
|
||||
|
||||
/**
|
||||
* If `true`, clicking the backdrop will not fire the `onClose` callback.
|
||||
* @deprecated Use the onClose prop with the `reason` argument to filter the `backdropClick` events.
|
||||
*/
|
||||
disableBackdropClick: (0, _deprecatedPropType.default)(_propTypes.default.bool, 'Use the onClose prop with the `reason` argument to filter the `backdropClick` events.'),
|
||||
|
||||
/**
|
||||
* If `true`, hitting escape will not fire the `onClose` callback.
|
||||
*/
|
||||
disableEscapeKeyDown: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* If `true`, the dialog will be full-screen
|
||||
*/
|
||||
fullScreen: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* If `true`, the dialog stretches to `maxWidth`.
|
||||
*
|
||||
* Notice that the dialog width grow is limited by the default margin.
|
||||
*/
|
||||
fullWidth: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* Determine the max-width of the dialog.
|
||||
* The dialog width grows with the size of the screen.
|
||||
* Set to `false` to disable `maxWidth`.
|
||||
*/
|
||||
maxWidth: _propTypes.default.oneOf(['lg', 'md', 'sm', 'xl', 'xs', false]),
|
||||
|
||||
/**
|
||||
* Callback fired when the backdrop is clicked.
|
||||
* @deprecated Use the onClose prop with the `reason` argument to handle the `backdropClick` events.
|
||||
*/
|
||||
onBackdropClick: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the onClose prop with the `reason` argument to handle the `backdropClick` events.'),
|
||||
|
||||
/**
|
||||
* Callback fired when the component requests to be closed.
|
||||
*
|
||||
* @param {object} event The event source of the callback.
|
||||
* @param {string} reason Can be: `"escapeKeyDown"`, `"backdropClick"`.
|
||||
*/
|
||||
onClose: _propTypes.default.func,
|
||||
|
||||
/**
|
||||
* Callback fired before the dialog enters.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onEnter: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the `TransitionProps` prop instead.'),
|
||||
|
||||
/**
|
||||
* Callback fired when the dialog has entered.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onEntered: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the `TransitionProps` prop instead.'),
|
||||
|
||||
/**
|
||||
* Callback fired when the dialog is entering.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onEntering: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the `TransitionProps` prop instead.'),
|
||||
|
||||
/**
|
||||
* Callback fired when the escape key is pressed,
|
||||
* `disableKeyboard` is false and the modal is in focus.
|
||||
* @deprecated Use the onClose prop with the `reason` argument to handle the `escapeKeyDown` events.
|
||||
*/
|
||||
onEscapeKeyDown: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the onClose prop with the `reason` argument to handle the `escapeKeyDown` events.'),
|
||||
|
||||
/**
|
||||
* Callback fired before the dialog exits.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onExit: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the `TransitionProps` prop instead.'),
|
||||
|
||||
/**
|
||||
* Callback fired when the dialog has exited.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onExited: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the `TransitionProps` prop instead.'),
|
||||
|
||||
/**
|
||||
* Callback fired when the dialog is exiting.
|
||||
* @deprecated Use the `TransitionProps` prop instead.
|
||||
*/
|
||||
onExiting: (0, _deprecatedPropType.default)(_propTypes.default.func, 'Use the `TransitionProps` prop instead.'),
|
||||
|
||||
/**
|
||||
* If `true`, the Dialog is open.
|
||||
*/
|
||||
open: _propTypes.default.bool.isRequired,
|
||||
|
||||
/**
|
||||
* The component used to render the body of the dialog.
|
||||
*/
|
||||
PaperComponent: _propTypes.default.elementType,
|
||||
|
||||
/**
|
||||
* Props applied to the [`Paper`](/api/paper/) element.
|
||||
*/
|
||||
PaperProps: _propTypes.default.object,
|
||||
|
||||
/**
|
||||
* Determine the container for scrolling the dialog.
|
||||
*/
|
||||
scroll: _propTypes.default.oneOf(['body', 'paper']),
|
||||
|
||||
/**
|
||||
* The component used for the transition.
|
||||
* [Follow this guide](/components/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.
|
||||
*/
|
||||
TransitionComponent: _propTypes.default.elementType,
|
||||
|
||||
/**
|
||||
* The duration for the transition, in milliseconds.
|
||||
* You may specify a single timeout for all transitions, or individually with an object.
|
||||
*/
|
||||
transitionDuration: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
||||
appear: _propTypes.default.number,
|
||||
enter: _propTypes.default.number,
|
||||
exit: _propTypes.default.number
|
||||
})]),
|
||||
|
||||
/**
|
||||
* Props applied to the [`Transition`](http://reactcommunity.org/react-transition-group/transition#Transition-props) element.
|
||||
*/
|
||||
TransitionProps: _propTypes.default.object
|
||||
} : void 0;
|
||||
|
||||
var _default = (0, _withStyles.default)(styles, {
|
||||
name: 'MuiDialog'
|
||||
})(Dialog);
|
||||
|
||||
exports.default = _default;
|
2
web/node_modules/@material-ui/core/Dialog/index.d.ts
generated
vendored
Normal file
2
web/node_modules/@material-ui/core/Dialog/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
export { default } from './Dialog';
|
||||
export * from './Dialog';
|
15
web/node_modules/@material-ui/core/Dialog/index.js
generated
vendored
Normal file
15
web/node_modules/@material-ui/core/Dialog/index.js
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _Dialog.default;
|
||||
}
|
||||
});
|
||||
|
||||
var _Dialog = _interopRequireDefault(require("./Dialog"));
|
5
web/node_modules/@material-ui/core/Dialog/package.json
generated
vendored
Normal file
5
web/node_modules/@material-ui/core/Dialog/package.json
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"sideEffects": false,
|
||||
"module": "../esm/Dialog/index.js",
|
||||
"typings": "./index.d.ts"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue