mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 13:42:20 +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
13458
web/node_modules/@material-ui/utils/CHANGELOG.md
generated
vendored
Normal file
13458
web/node_modules/@material-ui/utils/CHANGELOG.md
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
25
web/node_modules/@material-ui/utils/HTMLElementType.js
generated
vendored
Normal file
25
web/node_modules/@material-ui/utils/HTMLElementType.js
generated
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = HTMLElementType;
|
||||
|
||||
function HTMLElementType(props, propName, componentName, location, propFullName) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return null;
|
||||
}
|
||||
|
||||
var propValue = props[propName];
|
||||
var safePropName = propFullName || propName;
|
||||
|
||||
if (propValue == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (propValue && propValue.nodeType !== 1) {
|
||||
return new Error("Invalid ".concat(location, " `").concat(safePropName, "` supplied to `").concat(componentName, "`. ") + "Expected an HTMLElement.");
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
21
web/node_modules/@material-ui/utils/LICENSE
generated
vendored
Normal file
21
web/node_modules/@material-ui/utils/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Call-Em-All
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
1
web/node_modules/@material-ui/utils/README.md
generated
vendored
Normal file
1
web/node_modules/@material-ui/utils/README.md
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
# @material-ui/utils
|
18
web/node_modules/@material-ui/utils/chainPropTypes.js
generated
vendored
Normal file
18
web/node_modules/@material-ui/utils/chainPropTypes.js
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = chainPropTypes;
|
||||
|
||||
function chainPropTypes(propType1, propType2) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return function () {
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
return function validate() {
|
||||
return propType1.apply(void 0, arguments) || propType2.apply(void 0, arguments);
|
||||
};
|
||||
}
|
41
web/node_modules/@material-ui/utils/deepmerge.js
generated
vendored
Normal file
41
web/node_modules/@material-ui/utils/deepmerge.js
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.isPlainObject = isPlainObject;
|
||||
exports.default = deepmerge;
|
||||
|
||||
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
||||
|
||||
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
||||
|
||||
function isPlainObject(item) {
|
||||
return item && (0, _typeof2.default)(item) === 'object' && item.constructor === Object;
|
||||
}
|
||||
|
||||
function deepmerge(target, source) {
|
||||
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {
|
||||
clone: true
|
||||
};
|
||||
var output = options.clone ? (0, _extends2.default)({}, target) : target;
|
||||
|
||||
if (isPlainObject(target) && isPlainObject(source)) {
|
||||
Object.keys(source).forEach(function (key) {
|
||||
// Avoid prototype pollution
|
||||
if (key === '__proto__') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isPlainObject(source[key]) && key in target) {
|
||||
output[key] = deepmerge(target[key], source[key], options);
|
||||
} else {
|
||||
output[key] = source[key];
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
55
web/node_modules/@material-ui/utils/elementAcceptingRef.js
generated
vendored
Normal file
55
web/node_modules/@material-ui/utils/elementAcceptingRef.js
generated
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
|
||||
var _chainPropTypes = _interopRequireDefault(require("./chainPropTypes"));
|
||||
|
||||
function isClassComponent(elementType) {
|
||||
// elementType.prototype?.isReactComponent
|
||||
var _elementType$prototyp = elementType.prototype,
|
||||
prototype = _elementType$prototyp === void 0 ? {} : _elementType$prototyp;
|
||||
return Boolean(prototype.isReactComponent);
|
||||
}
|
||||
|
||||
function acceptingRef(props, propName, componentName, location, propFullName) {
|
||||
var element = props[propName];
|
||||
var safePropName = propFullName || propName;
|
||||
|
||||
if (element == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var warningHint;
|
||||
var elementType = element.type;
|
||||
/**
|
||||
* Blacklisting instead of whitelisting
|
||||
*
|
||||
* Blacklisting will miss some components, such as React.Fragment. Those will at least
|
||||
* trigger a warning in React.
|
||||
* We can't whitelist because there is no safe way to detect React.forwardRef
|
||||
* or class components. "Safe" means there's no public API.
|
||||
*
|
||||
*/
|
||||
|
||||
if (typeof elementType === 'function' && !isClassComponent(elementType)) {
|
||||
warningHint = 'Did you accidentally use a plain function component for an element instead?';
|
||||
}
|
||||
|
||||
if (warningHint !== undefined) {
|
||||
return new Error("Invalid ".concat(location, " `").concat(safePropName, "` supplied to `").concat(componentName, "`. ") + "Expected an element that can hold a ref. ".concat(warningHint, " ") + 'For more information see https://material-ui.com/r/caveat-with-refs-guide');
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
var elementAcceptingRef = (0, _chainPropTypes.default)(_propTypes.default.element, acceptingRef);
|
||||
elementAcceptingRef.isRequired = (0, _chainPropTypes.default)(_propTypes.default.element.isRequired, acceptingRef);
|
||||
var _default = elementAcceptingRef;
|
||||
exports.default = _default;
|
55
web/node_modules/@material-ui/utils/elementTypeAcceptingRef.js
generated
vendored
Normal file
55
web/node_modules/@material-ui/utils/elementTypeAcceptingRef.js
generated
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var PropTypes = _interopRequireWildcard(require("prop-types"));
|
||||
|
||||
var _chainPropTypes = _interopRequireDefault(require("./chainPropTypes"));
|
||||
|
||||
function isClassComponent(elementType) {
|
||||
// elementType.prototype?.isReactComponent
|
||||
var _elementType$prototyp = elementType.prototype,
|
||||
prototype = _elementType$prototyp === void 0 ? {} : _elementType$prototyp;
|
||||
return Boolean(prototype.isReactComponent);
|
||||
}
|
||||
|
||||
function elementTypeAcceptingRef(props, propName, componentName, location, propFullName) {
|
||||
var propValue = props[propName];
|
||||
var safePropName = propFullName || propName;
|
||||
|
||||
if (propValue == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var warningHint;
|
||||
/**
|
||||
* Blacklisting instead of whitelisting
|
||||
*
|
||||
* Blacklisting will miss some components, such as React.Fragment. Those will at least
|
||||
* trigger a warning in React.
|
||||
* We can't whitelist because there is no safe way to detect React.forwardRef
|
||||
* or class components. "Safe" means there's no public API.
|
||||
*
|
||||
*/
|
||||
|
||||
if (typeof propValue === 'function' && !isClassComponent(propValue)) {
|
||||
warningHint = 'Did you accidentally provide a plain function component instead?';
|
||||
}
|
||||
|
||||
if (warningHint !== undefined) {
|
||||
return new Error("Invalid ".concat(location, " `").concat(safePropName, "` supplied to `").concat(componentName, "`. ") + "Expected an element type that can hold a ref. ".concat(warningHint, " ") + 'For more information see https://material-ui.com/r/caveat-with-refs-guide');
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
var _default = (0, _chainPropTypes.default)(PropTypes.elementType, elementTypeAcceptingRef);
|
||||
|
||||
exports.default = _default;
|
18
web/node_modules/@material-ui/utils/es/HTMLElementType.js
generated
vendored
Normal file
18
web/node_modules/@material-ui/utils/es/HTMLElementType.js
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
export default function HTMLElementType(props, propName, componentName, location, propFullName) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return null;
|
||||
}
|
||||
|
||||
const propValue = props[propName];
|
||||
const safePropName = propFullName || propName;
|
||||
|
||||
if (propValue == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (propValue && propValue.nodeType !== 1) {
|
||||
return new Error(`Invalid ${location} \`${safePropName}\` supplied to \`${componentName}\`. ` + `Expected an HTMLElement.`);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
9
web/node_modules/@material-ui/utils/es/chainPropTypes.js
generated
vendored
Normal file
9
web/node_modules/@material-ui/utils/es/chainPropTypes.js
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
export default function chainPropTypes(propType1, propType2) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return () => null;
|
||||
}
|
||||
|
||||
return function validate(...args) {
|
||||
return propType1(...args) || propType2(...args);
|
||||
};
|
||||
}
|
26
web/node_modules/@material-ui/utils/es/deepmerge.js
generated
vendored
Normal file
26
web/node_modules/@material-ui/utils/es/deepmerge.js
generated
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
export function isPlainObject(item) {
|
||||
return item && typeof item === 'object' && item.constructor === Object;
|
||||
}
|
||||
export default function deepmerge(target, source, options = {
|
||||
clone: true
|
||||
}) {
|
||||
const output = options.clone ? _extends({}, target) : target;
|
||||
|
||||
if (isPlainObject(target) && isPlainObject(source)) {
|
||||
Object.keys(source).forEach(key => {
|
||||
// Avoid prototype pollution
|
||||
if (key === '__proto__') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isPlainObject(source[key]) && key in target) {
|
||||
output[key] = deepmerge(target[key], source[key], options);
|
||||
} else {
|
||||
output[key] = source[key];
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
45
web/node_modules/@material-ui/utils/es/elementAcceptingRef.js
generated
vendored
Normal file
45
web/node_modules/@material-ui/utils/es/elementAcceptingRef.js
generated
vendored
Normal file
|
@ -0,0 +1,45 @@
|
|||
import PropTypes from 'prop-types';
|
||||
import chainPropTypes from './chainPropTypes';
|
||||
|
||||
function isClassComponent(elementType) {
|
||||
// elementType.prototype?.isReactComponent
|
||||
const {
|
||||
prototype = {}
|
||||
} = elementType;
|
||||
return Boolean(prototype.isReactComponent);
|
||||
}
|
||||
|
||||
function acceptingRef(props, propName, componentName, location, propFullName) {
|
||||
const element = props[propName];
|
||||
const safePropName = propFullName || propName;
|
||||
|
||||
if (element == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
let warningHint;
|
||||
const elementType = element.type;
|
||||
/**
|
||||
* Blacklisting instead of whitelisting
|
||||
*
|
||||
* Blacklisting will miss some components, such as React.Fragment. Those will at least
|
||||
* trigger a warning in React.
|
||||
* We can't whitelist because there is no safe way to detect React.forwardRef
|
||||
* or class components. "Safe" means there's no public API.
|
||||
*
|
||||
*/
|
||||
|
||||
if (typeof elementType === 'function' && !isClassComponent(elementType)) {
|
||||
warningHint = 'Did you accidentally use a plain function component for an element instead?';
|
||||
}
|
||||
|
||||
if (warningHint !== undefined) {
|
||||
return new Error(`Invalid ${location} \`${safePropName}\` supplied to \`${componentName}\`. ` + `Expected an element that can hold a ref. ${warningHint} ` + 'For more information see https://material-ui.com/r/caveat-with-refs-guide');
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
const elementAcceptingRef = chainPropTypes(PropTypes.element, acceptingRef);
|
||||
elementAcceptingRef.isRequired = chainPropTypes(PropTypes.element.isRequired, acceptingRef);
|
||||
export default elementAcceptingRef;
|
42
web/node_modules/@material-ui/utils/es/elementTypeAcceptingRef.js
generated
vendored
Normal file
42
web/node_modules/@material-ui/utils/es/elementTypeAcceptingRef.js
generated
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
import * as PropTypes from 'prop-types';
|
||||
import chainPropTypes from './chainPropTypes';
|
||||
|
||||
function isClassComponent(elementType) {
|
||||
// elementType.prototype?.isReactComponent
|
||||
const {
|
||||
prototype = {}
|
||||
} = elementType;
|
||||
return Boolean(prototype.isReactComponent);
|
||||
}
|
||||
|
||||
function elementTypeAcceptingRef(props, propName, componentName, location, propFullName) {
|
||||
const propValue = props[propName];
|
||||
const safePropName = propFullName || propName;
|
||||
|
||||
if (propValue == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
let warningHint;
|
||||
/**
|
||||
* Blacklisting instead of whitelisting
|
||||
*
|
||||
* Blacklisting will miss some components, such as React.Fragment. Those will at least
|
||||
* trigger a warning in React.
|
||||
* We can't whitelist because there is no safe way to detect React.forwardRef
|
||||
* or class components. "Safe" means there's no public API.
|
||||
*
|
||||
*/
|
||||
|
||||
if (typeof propValue === 'function' && !isClassComponent(propValue)) {
|
||||
warningHint = 'Did you accidentally provide a plain function component instead?';
|
||||
}
|
||||
|
||||
if (warningHint !== undefined) {
|
||||
return new Error(`Invalid ${location} \`${safePropName}\` supplied to \`${componentName}\`. ` + `Expected an element type that can hold a ref. ${warningHint} ` + 'For more information see https://material-ui.com/r/caveat-with-refs-guide');
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
export default chainPropTypes(PropTypes.elementType, elementTypeAcceptingRef);
|
23
web/node_modules/@material-ui/utils/es/exactProp.js
generated
vendored
Normal file
23
web/node_modules/@material-ui/utils/es/exactProp.js
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
// This module is based on https://github.com/airbnb/prop-types-exact repository.
|
||||
// However, in order to reduce the number of dependencies and to remove some extra safe checks
|
||||
// the module was forked.
|
||||
// Only exported for test purposes.
|
||||
export const specialProperty = 'exact-prop: \u200b';
|
||||
export default function exactProp(propTypes) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return propTypes;
|
||||
}
|
||||
|
||||
return _extends({}, propTypes, {
|
||||
[specialProperty]: props => {
|
||||
const unsupportedProps = Object.keys(props).filter(prop => !propTypes.hasOwnProperty(prop));
|
||||
|
||||
if (unsupportedProps.length > 0) {
|
||||
return new Error(`The following props are not supported: ${unsupportedProps.map(prop => `\`${prop}\``).join(', ')}. Please remove them.`);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
});
|
||||
}
|
22
web/node_modules/@material-ui/utils/es/formatMuiErrorMessage.js
generated
vendored
Normal file
22
web/node_modules/@material-ui/utils/es/formatMuiErrorMessage.js
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* WARNING: Don't import this directly.
|
||||
* Use `MuiError` from `@material-ui/utils/macros/MuiError.macro` instead.
|
||||
* @param {number} code
|
||||
*/
|
||||
export default function formatMuiErrorMessage(code) {
|
||||
// Apply babel-plugin-transform-template-literals in loose mode
|
||||
// loose mode is safe iff we're concatenating primitives
|
||||
// see https://babeljs.io/docs/en/babel-plugin-transform-template-literals#loose
|
||||
|
||||
/* eslint-disable prefer-template */
|
||||
let url = 'https://material-ui.com/production-error/?code=' + code;
|
||||
|
||||
for (let i = 1; i < arguments.length; i += 1) {
|
||||
// rest params over-transpile for this case
|
||||
// eslint-disable-next-line prefer-rest-params
|
||||
url += '&args[]=' + encodeURIComponent(arguments[i]);
|
||||
}
|
||||
|
||||
return 'Minified Material-UI error #' + code + '; visit ' + url + ' for the full message.';
|
||||
/* eslint-enable prefer-template */
|
||||
}
|
61
web/node_modules/@material-ui/utils/es/getDisplayName.js
generated
vendored
Normal file
61
web/node_modules/@material-ui/utils/es/getDisplayName.js
generated
vendored
Normal file
|
@ -0,0 +1,61 @@
|
|||
import { ForwardRef, Memo } from 'react-is'; // Simplified polyfill for IE 11 support
|
||||
// https://github.com/JamesMGreene/Function.name/blob/58b314d4a983110c3682f1228f845d39ccca1817/Function.name.js#L3
|
||||
|
||||
const fnNameMatchRegex = /^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/;
|
||||
export function getFunctionName(fn) {
|
||||
const match = `${fn}`.match(fnNameMatchRegex);
|
||||
const name = match && match[1];
|
||||
return name || '';
|
||||
}
|
||||
/**
|
||||
* @param {function} Component
|
||||
* @param {string} fallback
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
|
||||
function getFunctionComponentName(Component, fallback = '') {
|
||||
return Component.displayName || Component.name || getFunctionName(Component) || fallback;
|
||||
}
|
||||
|
||||
function getWrappedName(outerType, innerType, wrapperName) {
|
||||
const functionName = getFunctionComponentName(innerType);
|
||||
return outerType.displayName || (functionName !== '' ? `${wrapperName}(${functionName})` : wrapperName);
|
||||
}
|
||||
/**
|
||||
* cherry-pick from
|
||||
* https://github.com/facebook/react/blob/769b1f270e1251d9dbdce0fcbd9e92e502d059b8/packages/shared/getComponentName.js
|
||||
* originally forked from recompose/getDisplayName with added IE 11 support
|
||||
*
|
||||
* @param {React.ReactType} Component
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
|
||||
|
||||
export default function getDisplayName(Component) {
|
||||
if (Component == null) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
if (typeof Component === 'string') {
|
||||
return Component;
|
||||
}
|
||||
|
||||
if (typeof Component === 'function') {
|
||||
return getFunctionComponentName(Component, 'Component');
|
||||
}
|
||||
|
||||
if (typeof Component === 'object') {
|
||||
switch (Component.$$typeof) {
|
||||
case ForwardRef:
|
||||
return getWrappedName(Component, Component.render, 'ForwardRef');
|
||||
|
||||
case Memo:
|
||||
return getWrappedName(Component, Component.type, 'memo');
|
||||
|
||||
default:
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
return undefined;
|
||||
}
|
10
web/node_modules/@material-ui/utils/es/index.js
generated
vendored
Normal file
10
web/node_modules/@material-ui/utils/es/index.js
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
export { default as chainPropTypes } from './chainPropTypes';
|
||||
export { default as deepmerge } from './deepmerge';
|
||||
export { default as elementAcceptingRef } from './elementAcceptingRef';
|
||||
export { default as elementTypeAcceptingRef } from './elementTypeAcceptingRef';
|
||||
export { default as exactProp } from './exactProp';
|
||||
export { default as formatMuiErrorMessage } from './formatMuiErrorMessage';
|
||||
export { default as getDisplayName } from './getDisplayName';
|
||||
export { default as HTMLElementType } from './HTMLElementType';
|
||||
export { default as ponyfillGlobal } from './ponyfillGlobal';
|
||||
export { default as refType } from './refType';
|
3
web/node_modules/@material-ui/utils/es/ponyfillGlobal.js
generated
vendored
Normal file
3
web/node_modules/@material-ui/utils/es/ponyfillGlobal.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* eslint-disable */
|
||||
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
||||
export default typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
|
3
web/node_modules/@material-ui/utils/es/refType.js
generated
vendored
Normal file
3
web/node_modules/@material-ui/utils/es/refType.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
import PropTypes from 'prop-types';
|
||||
const refType = PropTypes.oneOfType([PropTypes.func, PropTypes.object]);
|
||||
export default refType;
|
18
web/node_modules/@material-ui/utils/esm/HTMLElementType.js
generated
vendored
Normal file
18
web/node_modules/@material-ui/utils/esm/HTMLElementType.js
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
export default function HTMLElementType(props, propName, componentName, location, propFullName) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return null;
|
||||
}
|
||||
|
||||
var propValue = props[propName];
|
||||
var safePropName = propFullName || propName;
|
||||
|
||||
if (propValue == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (propValue && propValue.nodeType !== 1) {
|
||||
return new Error("Invalid ".concat(location, " `").concat(safePropName, "` supplied to `").concat(componentName, "`. ") + "Expected an HTMLElement.");
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
11
web/node_modules/@material-ui/utils/esm/chainPropTypes.js
generated
vendored
Normal file
11
web/node_modules/@material-ui/utils/esm/chainPropTypes.js
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
export default function chainPropTypes(propType1, propType2) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return function () {
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
return function validate() {
|
||||
return propType1.apply(void 0, arguments) || propType2.apply(void 0, arguments);
|
||||
};
|
||||
}
|
28
web/node_modules/@material-ui/utils/esm/deepmerge.js
generated
vendored
Normal file
28
web/node_modules/@material-ui/utils/esm/deepmerge.js
generated
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
import _typeof from "@babel/runtime/helpers/esm/typeof";
|
||||
export function isPlainObject(item) {
|
||||
return item && _typeof(item) === 'object' && item.constructor === Object;
|
||||
}
|
||||
export default function deepmerge(target, source) {
|
||||
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {
|
||||
clone: true
|
||||
};
|
||||
var output = options.clone ? _extends({}, target) : target;
|
||||
|
||||
if (isPlainObject(target) && isPlainObject(source)) {
|
||||
Object.keys(source).forEach(function (key) {
|
||||
// Avoid prototype pollution
|
||||
if (key === '__proto__') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isPlainObject(source[key]) && key in target) {
|
||||
output[key] = deepmerge(target[key], source[key], options);
|
||||
} else {
|
||||
output[key] = source[key];
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
44
web/node_modules/@material-ui/utils/esm/elementAcceptingRef.js
generated
vendored
Normal file
44
web/node_modules/@material-ui/utils/esm/elementAcceptingRef.js
generated
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
import PropTypes from 'prop-types';
|
||||
import chainPropTypes from './chainPropTypes';
|
||||
|
||||
function isClassComponent(elementType) {
|
||||
// elementType.prototype?.isReactComponent
|
||||
var _elementType$prototyp = elementType.prototype,
|
||||
prototype = _elementType$prototyp === void 0 ? {} : _elementType$prototyp;
|
||||
return Boolean(prototype.isReactComponent);
|
||||
}
|
||||
|
||||
function acceptingRef(props, propName, componentName, location, propFullName) {
|
||||
var element = props[propName];
|
||||
var safePropName = propFullName || propName;
|
||||
|
||||
if (element == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var warningHint;
|
||||
var elementType = element.type;
|
||||
/**
|
||||
* Blacklisting instead of whitelisting
|
||||
*
|
||||
* Blacklisting will miss some components, such as React.Fragment. Those will at least
|
||||
* trigger a warning in React.
|
||||
* We can't whitelist because there is no safe way to detect React.forwardRef
|
||||
* or class components. "Safe" means there's no public API.
|
||||
*
|
||||
*/
|
||||
|
||||
if (typeof elementType === 'function' && !isClassComponent(elementType)) {
|
||||
warningHint = 'Did you accidentally use a plain function component for an element instead?';
|
||||
}
|
||||
|
||||
if (warningHint !== undefined) {
|
||||
return new Error("Invalid ".concat(location, " `").concat(safePropName, "` supplied to `").concat(componentName, "`. ") + "Expected an element that can hold a ref. ".concat(warningHint, " ") + 'For more information see https://material-ui.com/r/caveat-with-refs-guide');
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
var elementAcceptingRef = chainPropTypes(PropTypes.element, acceptingRef);
|
||||
elementAcceptingRef.isRequired = chainPropTypes(PropTypes.element.isRequired, acceptingRef);
|
||||
export default elementAcceptingRef;
|
41
web/node_modules/@material-ui/utils/esm/elementTypeAcceptingRef.js
generated
vendored
Normal file
41
web/node_modules/@material-ui/utils/esm/elementTypeAcceptingRef.js
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
import * as PropTypes from 'prop-types';
|
||||
import chainPropTypes from './chainPropTypes';
|
||||
|
||||
function isClassComponent(elementType) {
|
||||
// elementType.prototype?.isReactComponent
|
||||
var _elementType$prototyp = elementType.prototype,
|
||||
prototype = _elementType$prototyp === void 0 ? {} : _elementType$prototyp;
|
||||
return Boolean(prototype.isReactComponent);
|
||||
}
|
||||
|
||||
function elementTypeAcceptingRef(props, propName, componentName, location, propFullName) {
|
||||
var propValue = props[propName];
|
||||
var safePropName = propFullName || propName;
|
||||
|
||||
if (propValue == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var warningHint;
|
||||
/**
|
||||
* Blacklisting instead of whitelisting
|
||||
*
|
||||
* Blacklisting will miss some components, such as React.Fragment. Those will at least
|
||||
* trigger a warning in React.
|
||||
* We can't whitelist because there is no safe way to detect React.forwardRef
|
||||
* or class components. "Safe" means there's no public API.
|
||||
*
|
||||
*/
|
||||
|
||||
if (typeof propValue === 'function' && !isClassComponent(propValue)) {
|
||||
warningHint = 'Did you accidentally provide a plain function component instead?';
|
||||
}
|
||||
|
||||
if (warningHint !== undefined) {
|
||||
return new Error("Invalid ".concat(location, " `").concat(safePropName, "` supplied to `").concat(componentName, "`. ") + "Expected an element type that can hold a ref. ".concat(warningHint, " ") + 'For more information see https://material-ui.com/r/caveat-with-refs-guide');
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
export default chainPropTypes(PropTypes.elementType, elementTypeAcceptingRef);
|
26
web/node_modules/@material-ui/utils/esm/exactProp.js
generated
vendored
Normal file
26
web/node_modules/@material-ui/utils/esm/exactProp.js
generated
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
||||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||||
// This module is based on https://github.com/airbnb/prop-types-exact repository.
|
||||
// However, in order to reduce the number of dependencies and to remove some extra safe checks
|
||||
// the module was forked.
|
||||
// Only exported for test purposes.
|
||||
export var specialProperty = "exact-prop: \u200B";
|
||||
export default function exactProp(propTypes) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return propTypes;
|
||||
}
|
||||
|
||||
return _extends({}, propTypes, _defineProperty({}, specialProperty, function (props) {
|
||||
var unsupportedProps = Object.keys(props).filter(function (prop) {
|
||||
return !propTypes.hasOwnProperty(prop);
|
||||
});
|
||||
|
||||
if (unsupportedProps.length > 0) {
|
||||
return new Error("The following props are not supported: ".concat(unsupportedProps.map(function (prop) {
|
||||
return "`".concat(prop, "`");
|
||||
}).join(', '), ". Please remove them."));
|
||||
}
|
||||
|
||||
return null;
|
||||
}));
|
||||
}
|
22
web/node_modules/@material-ui/utils/esm/formatMuiErrorMessage.js
generated
vendored
Normal file
22
web/node_modules/@material-ui/utils/esm/formatMuiErrorMessage.js
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* WARNING: Don't import this directly.
|
||||
* Use `MuiError` from `@material-ui/utils/macros/MuiError.macro` instead.
|
||||
* @param {number} code
|
||||
*/
|
||||
export default function formatMuiErrorMessage(code) {
|
||||
// Apply babel-plugin-transform-template-literals in loose mode
|
||||
// loose mode is safe iff we're concatenating primitives
|
||||
// see https://babeljs.io/docs/en/babel-plugin-transform-template-literals#loose
|
||||
|
||||
/* eslint-disable prefer-template */
|
||||
var url = 'https://material-ui.com/production-error/?code=' + code;
|
||||
|
||||
for (var i = 1; i < arguments.length; i += 1) {
|
||||
// rest params over-transpile for this case
|
||||
// eslint-disable-next-line prefer-rest-params
|
||||
url += '&args[]=' + encodeURIComponent(arguments[i]);
|
||||
}
|
||||
|
||||
return 'Minified Material-UI error #' + code + '; visit ' + url + ' for the full message.';
|
||||
/* eslint-enable prefer-template */
|
||||
}
|
63
web/node_modules/@material-ui/utils/esm/getDisplayName.js
generated
vendored
Normal file
63
web/node_modules/@material-ui/utils/esm/getDisplayName.js
generated
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
import _typeof from "@babel/runtime/helpers/esm/typeof";
|
||||
import { ForwardRef, Memo } from 'react-is'; // Simplified polyfill for IE 11 support
|
||||
// https://github.com/JamesMGreene/Function.name/blob/58b314d4a983110c3682f1228f845d39ccca1817/Function.name.js#L3
|
||||
|
||||
var fnNameMatchRegex = /^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/;
|
||||
export function getFunctionName(fn) {
|
||||
var match = "".concat(fn).match(fnNameMatchRegex);
|
||||
var name = match && match[1];
|
||||
return name || '';
|
||||
}
|
||||
/**
|
||||
* @param {function} Component
|
||||
* @param {string} fallback
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
|
||||
function getFunctionComponentName(Component) {
|
||||
var fallback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
||||
return Component.displayName || Component.name || getFunctionName(Component) || fallback;
|
||||
}
|
||||
|
||||
function getWrappedName(outerType, innerType, wrapperName) {
|
||||
var functionName = getFunctionComponentName(innerType);
|
||||
return outerType.displayName || (functionName !== '' ? "".concat(wrapperName, "(").concat(functionName, ")") : wrapperName);
|
||||
}
|
||||
/**
|
||||
* cherry-pick from
|
||||
* https://github.com/facebook/react/blob/769b1f270e1251d9dbdce0fcbd9e92e502d059b8/packages/shared/getComponentName.js
|
||||
* originally forked from recompose/getDisplayName with added IE 11 support
|
||||
*
|
||||
* @param {React.ReactType} Component
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
|
||||
|
||||
export default function getDisplayName(Component) {
|
||||
if (Component == null) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
if (typeof Component === 'string') {
|
||||
return Component;
|
||||
}
|
||||
|
||||
if (typeof Component === 'function') {
|
||||
return getFunctionComponentName(Component, 'Component');
|
||||
}
|
||||
|
||||
if (_typeof(Component) === 'object') {
|
||||
switch (Component.$$typeof) {
|
||||
case ForwardRef:
|
||||
return getWrappedName(Component, Component.render, 'ForwardRef');
|
||||
|
||||
case Memo:
|
||||
return getWrappedName(Component, Component.type, 'memo');
|
||||
|
||||
default:
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
return undefined;
|
||||
}
|
15
web/node_modules/@material-ui/utils/esm/index.js
generated
vendored
Normal file
15
web/node_modules/@material-ui/utils/esm/index.js
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
/** @license Material-UI v4.11.2
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
export { default as chainPropTypes } from './chainPropTypes';
|
||||
export { default as deepmerge } from './deepmerge';
|
||||
export { default as elementAcceptingRef } from './elementAcceptingRef';
|
||||
export { default as elementTypeAcceptingRef } from './elementTypeAcceptingRef';
|
||||
export { default as exactProp } from './exactProp';
|
||||
export { default as formatMuiErrorMessage } from './formatMuiErrorMessage';
|
||||
export { default as getDisplayName } from './getDisplayName';
|
||||
export { default as HTMLElementType } from './HTMLElementType';
|
||||
export { default as ponyfillGlobal } from './ponyfillGlobal';
|
||||
export { default as refType } from './refType';
|
3
web/node_modules/@material-ui/utils/esm/ponyfillGlobal.js
generated
vendored
Normal file
3
web/node_modules/@material-ui/utils/esm/ponyfillGlobal.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/* eslint-disable */
|
||||
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
||||
export default typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
|
3
web/node_modules/@material-ui/utils/esm/refType.js
generated
vendored
Normal file
3
web/node_modules/@material-ui/utils/esm/refType.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
import PropTypes from 'prop-types';
|
||||
var refType = PropTypes.oneOfType([PropTypes.func, PropTypes.object]);
|
||||
export default refType;
|
40
web/node_modules/@material-ui/utils/exactProp.js
generated
vendored
Normal file
40
web/node_modules/@material-ui/utils/exactProp.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = exactProp;
|
||||
exports.specialProperty = void 0;
|
||||
|
||||
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
||||
|
||||
var _extends3 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
||||
|
||||
// This module is based on https://github.com/airbnb/prop-types-exact repository.
|
||||
// However, in order to reduce the number of dependencies and to remove some extra safe checks
|
||||
// the module was forked.
|
||||
// Only exported for test purposes.
|
||||
var specialProperty = "exact-prop: \u200B";
|
||||
exports.specialProperty = specialProperty;
|
||||
|
||||
function exactProp(propTypes) {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
return propTypes;
|
||||
}
|
||||
|
||||
return (0, _extends3.default)({}, propTypes, (0, _defineProperty2.default)({}, specialProperty, function (props) {
|
||||
var unsupportedProps = Object.keys(props).filter(function (prop) {
|
||||
return !propTypes.hasOwnProperty(prop);
|
||||
});
|
||||
|
||||
if (unsupportedProps.length > 0) {
|
||||
return new Error("The following props are not supported: ".concat(unsupportedProps.map(function (prop) {
|
||||
return "`".concat(prop, "`");
|
||||
}).join(', '), ". Please remove them."));
|
||||
}
|
||||
|
||||
return null;
|
||||
}));
|
||||
}
|
29
web/node_modules/@material-ui/utils/formatMuiErrorMessage.js
generated
vendored
Normal file
29
web/node_modules/@material-ui/utils/formatMuiErrorMessage.js
generated
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = formatMuiErrorMessage;
|
||||
|
||||
/**
|
||||
* WARNING: Don't import this directly.
|
||||
* Use `MuiError` from `@material-ui/utils/macros/MuiError.macro` instead.
|
||||
* @param {number} code
|
||||
*/
|
||||
function formatMuiErrorMessage(code) {
|
||||
// Apply babel-plugin-transform-template-literals in loose mode
|
||||
// loose mode is safe iff we're concatenating primitives
|
||||
// see https://babeljs.io/docs/en/babel-plugin-transform-template-literals#loose
|
||||
|
||||
/* eslint-disable prefer-template */
|
||||
var url = 'https://material-ui.com/production-error/?code=' + code;
|
||||
|
||||
for (var i = 1; i < arguments.length; i += 1) {
|
||||
// rest params over-transpile for this case
|
||||
// eslint-disable-next-line prefer-rest-params
|
||||
url += '&args[]=' + encodeURIComponent(arguments[i]);
|
||||
}
|
||||
|
||||
return 'Minified Material-UI error #' + code + '; visit ' + url + ' for the full message.';
|
||||
/* eslint-enable prefer-template */
|
||||
}
|
77
web/node_modules/@material-ui/utils/getDisplayName.js
generated
vendored
Normal file
77
web/node_modules/@material-ui/utils/getDisplayName.js
generated
vendored
Normal file
|
@ -0,0 +1,77 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.getFunctionName = getFunctionName;
|
||||
exports.default = getDisplayName;
|
||||
|
||||
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
||||
|
||||
var _reactIs = require("react-is");
|
||||
|
||||
// Simplified polyfill for IE 11 support
|
||||
// https://github.com/JamesMGreene/Function.name/blob/58b314d4a983110c3682f1228f845d39ccca1817/Function.name.js#L3
|
||||
var fnNameMatchRegex = /^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/;
|
||||
|
||||
function getFunctionName(fn) {
|
||||
var match = "".concat(fn).match(fnNameMatchRegex);
|
||||
var name = match && match[1];
|
||||
return name || '';
|
||||
}
|
||||
/**
|
||||
* @param {function} Component
|
||||
* @param {string} fallback
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
|
||||
|
||||
function getFunctionComponentName(Component) {
|
||||
var fallback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
||||
return Component.displayName || Component.name || getFunctionName(Component) || fallback;
|
||||
}
|
||||
|
||||
function getWrappedName(outerType, innerType, wrapperName) {
|
||||
var functionName = getFunctionComponentName(innerType);
|
||||
return outerType.displayName || (functionName !== '' ? "".concat(wrapperName, "(").concat(functionName, ")") : wrapperName);
|
||||
}
|
||||
/**
|
||||
* cherry-pick from
|
||||
* https://github.com/facebook/react/blob/769b1f270e1251d9dbdce0fcbd9e92e502d059b8/packages/shared/getComponentName.js
|
||||
* originally forked from recompose/getDisplayName with added IE 11 support
|
||||
*
|
||||
* @param {React.ReactType} Component
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
|
||||
|
||||
function getDisplayName(Component) {
|
||||
if (Component == null) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
if (typeof Component === 'string') {
|
||||
return Component;
|
||||
}
|
||||
|
||||
if (typeof Component === 'function') {
|
||||
return getFunctionComponentName(Component, 'Component');
|
||||
}
|
||||
|
||||
if ((0, _typeof2.default)(Component) === 'object') {
|
||||
switch (Component.$$typeof) {
|
||||
case _reactIs.ForwardRef:
|
||||
return getWrappedName(Component, Component.render, 'ForwardRef');
|
||||
|
||||
case _reactIs.Memo:
|
||||
return getWrappedName(Component, Component.type, 'memo');
|
||||
|
||||
default:
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
return undefined;
|
||||
}
|
92
web/node_modules/@material-ui/utils/index.js
generated
vendored
Normal file
92
web/node_modules/@material-ui/utils/index.js
generated
vendored
Normal file
|
@ -0,0 +1,92 @@
|
|||
/** @license Material-UI v4.11.2
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "chainPropTypes", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _chainPropTypes.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "deepmerge", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _deepmerge.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "elementAcceptingRef", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _elementAcceptingRef.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "elementTypeAcceptingRef", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _elementTypeAcceptingRef.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "exactProp", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _exactProp.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "formatMuiErrorMessage", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _formatMuiErrorMessage.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "getDisplayName", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _getDisplayName.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "HTMLElementType", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _HTMLElementType.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "ponyfillGlobal", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _ponyfillGlobal.default;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "refType", {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _refType.default;
|
||||
}
|
||||
});
|
||||
|
||||
var _chainPropTypes = _interopRequireDefault(require("./chainPropTypes"));
|
||||
|
||||
var _deepmerge = _interopRequireDefault(require("./deepmerge"));
|
||||
|
||||
var _elementAcceptingRef = _interopRequireDefault(require("./elementAcceptingRef"));
|
||||
|
||||
var _elementTypeAcceptingRef = _interopRequireDefault(require("./elementTypeAcceptingRef"));
|
||||
|
||||
var _exactProp = _interopRequireDefault(require("./exactProp"));
|
||||
|
||||
var _formatMuiErrorMessage = _interopRequireDefault(require("./formatMuiErrorMessage"));
|
||||
|
||||
var _getDisplayName = _interopRequireDefault(require("./getDisplayName"));
|
||||
|
||||
var _HTMLElementType = _interopRequireDefault(require("./HTMLElementType"));
|
||||
|
||||
var _ponyfillGlobal = _interopRequireDefault(require("./ponyfillGlobal"));
|
||||
|
||||
var _refType = _interopRequireDefault(require("./refType"));
|
43
web/node_modules/@material-ui/utils/package.json
generated
vendored
Normal file
43
web/node_modules/@material-ui/utils/package.json
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "@material-ui/utils",
|
||||
"version": "4.11.2",
|
||||
"private": false,
|
||||
"author": "Material-UI Team",
|
||||
"description": "Material-UI Utils - Utility functions for Material-UI.",
|
||||
"main": "./index.js",
|
||||
"keywords": [
|
||||
"react",
|
||||
"react-component",
|
||||
"material design",
|
||||
"material-ui",
|
||||
"utils"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mui-org/material-ui.git",
|
||||
"directory": "packages/material-ui-utils"
|
||||
},
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/mui-org/material-ui/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mui-org/material-ui/tree/master/packages/material-ui-utils",
|
||||
"peerDependencies": {
|
||||
"react": "^16.8.0 || ^17.0.0",
|
||||
"react-dom": "^16.8.0 || ^17.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.4.4",
|
||||
"prop-types": "^15.7.2",
|
||||
"react-is": "^16.8.0 || ^17.0.0"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.0.0"
|
||||
},
|
||||
"module": "./esm/index.js",
|
||||
"typings": "./index.d.ts"
|
||||
}
|
12
web/node_modules/@material-ui/utils/ponyfillGlobal.js
generated
vendored
Normal file
12
web/node_modules/@material-ui/utils/ponyfillGlobal.js
generated
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
/* eslint-disable */
|
||||
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
||||
var _default = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
|
||||
|
||||
exports.default = _default;
|
15
web/node_modules/@material-ui/utils/refType.js
generated
vendored
Normal file
15
web/node_modules/@material-ui/utils/refType.js
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
|
||||
var refType = _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]);
|
||||
|
||||
var _default = refType;
|
||||
exports.default = _default;
|
Loading…
Add table
Add a link
Reference in a new issue