mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-02 06:02: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
43
web/node_modules/@material-ui/core/Radio/Radio.d.ts
generated
vendored
Normal file
43
web/node_modules/@material-ui/core/Radio/Radio.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { SwitchBaseProps, SwitchBaseClassKey } from '../internal/SwitchBase';
|
||||
|
||||
export interface RadioProps
|
||||
extends StandardProps<SwitchBaseProps, RadioClassKey, 'checkedIcon' | 'color' | 'icon' | 'type'> {
|
||||
/**
|
||||
* The icon to display when the component is checked.
|
||||
*/
|
||||
checkedIcon?: React.ReactNode;
|
||||
/**
|
||||
* The color of the component. It supports those theme colors that make sense for this component.
|
||||
*/
|
||||
color?: 'primary' | 'secondary' | 'default';
|
||||
/**
|
||||
* If `true`, the radio will be disabled.
|
||||
*/
|
||||
disabled?: boolean;
|
||||
/**
|
||||
* The icon to display when the component is unchecked.
|
||||
*/
|
||||
icon?: React.ReactNode;
|
||||
/**
|
||||
* The size of the radio.
|
||||
* `small` is equivalent to the dense radio styling.
|
||||
*/
|
||||
size?: 'small' | 'medium';
|
||||
}
|
||||
|
||||
export type RadioClassKey = SwitchBaseClassKey | 'colorPrimary' | 'colorSecondary';
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Radio Buttons](https://material-ui.com/components/radio-buttons/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Radio API](https://material-ui.com/api/radio/)
|
||||
* - inherits [IconButton API](https://material-ui.com/api/icon-button/)
|
||||
*/
|
||||
export default function Radio(props: RadioProps): JSX.Element;
|
229
web/node_modules/@material-ui/core/Radio/Radio.js
generated
vendored
Normal file
229
web/node_modules/@material-ui/core/Radio/Radio.js
generated
vendored
Normal file
|
@ -0,0 +1,229 @@
|
|||
"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 React = _interopRequireWildcard(require("react"));
|
||||
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
|
||||
var _clsx = _interopRequireDefault(require("clsx"));
|
||||
|
||||
var _utils = require("@material-ui/utils");
|
||||
|
||||
var _SwitchBase = _interopRequireDefault(require("../internal/SwitchBase"));
|
||||
|
||||
var _RadioButtonIcon = _interopRequireDefault(require("./RadioButtonIcon"));
|
||||
|
||||
var _colorManipulator = require("../styles/colorManipulator");
|
||||
|
||||
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
|
||||
|
||||
var _createChainedFunction = _interopRequireDefault(require("../utils/createChainedFunction"));
|
||||
|
||||
var _withStyles = _interopRequireDefault(require("../styles/withStyles"));
|
||||
|
||||
var _useRadioGroup = _interopRequireDefault(require("../RadioGroup/useRadioGroup"));
|
||||
|
||||
var styles = function styles(theme) {
|
||||
return {
|
||||
/* Styles applied to the root element. */
|
||||
root: {
|
||||
color: theme.palette.text.secondary
|
||||
},
|
||||
|
||||
/* Pseudo-class applied to the root element if `checked={true}`. */
|
||||
checked: {},
|
||||
|
||||
/* Pseudo-class applied to the root element if `disabled={true}`. */
|
||||
disabled: {},
|
||||
|
||||
/* Styles applied to the root element if `color="primary"`. */
|
||||
colorPrimary: {
|
||||
'&$checked': {
|
||||
color: theme.palette.primary.main,
|
||||
'&:hover': {
|
||||
backgroundColor: (0, _colorManipulator.alpha)(theme.palette.primary.main, theme.palette.action.hoverOpacity),
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
backgroundColor: 'transparent'
|
||||
}
|
||||
}
|
||||
},
|
||||
'&$disabled': {
|
||||
color: theme.palette.action.disabled
|
||||
}
|
||||
},
|
||||
|
||||
/* Styles applied to the root element if `color="secondary"`. */
|
||||
colorSecondary: {
|
||||
'&$checked': {
|
||||
color: theme.palette.secondary.main,
|
||||
'&:hover': {
|
||||
backgroundColor: (0, _colorManipulator.alpha)(theme.palette.secondary.main, theme.palette.action.hoverOpacity),
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
backgroundColor: 'transparent'
|
||||
}
|
||||
}
|
||||
},
|
||||
'&$disabled': {
|
||||
color: theme.palette.action.disabled
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
exports.styles = styles;
|
||||
var defaultCheckedIcon = /*#__PURE__*/React.createElement(_RadioButtonIcon.default, {
|
||||
checked: true
|
||||
});
|
||||
var defaultIcon = /*#__PURE__*/React.createElement(_RadioButtonIcon.default, null);
|
||||
var Radio = /*#__PURE__*/React.forwardRef(function Radio(props, ref) {
|
||||
var checkedProp = props.checked,
|
||||
classes = props.classes,
|
||||
_props$color = props.color,
|
||||
color = _props$color === void 0 ? 'secondary' : _props$color,
|
||||
nameProp = props.name,
|
||||
onChangeProp = props.onChange,
|
||||
_props$size = props.size,
|
||||
size = _props$size === void 0 ? 'medium' : _props$size,
|
||||
other = (0, _objectWithoutProperties2.default)(props, ["checked", "classes", "color", "name", "onChange", "size"]);
|
||||
var radioGroup = (0, _useRadioGroup.default)();
|
||||
var checked = checkedProp;
|
||||
var onChange = (0, _createChainedFunction.default)(onChangeProp, radioGroup && radioGroup.onChange);
|
||||
var name = nameProp;
|
||||
|
||||
if (radioGroup) {
|
||||
if (typeof checked === 'undefined') {
|
||||
checked = radioGroup.value === props.value;
|
||||
}
|
||||
|
||||
if (typeof name === 'undefined') {
|
||||
name = radioGroup.name;
|
||||
}
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(_SwitchBase.default, (0, _extends2.default)({
|
||||
color: color,
|
||||
type: "radio",
|
||||
icon: /*#__PURE__*/React.cloneElement(defaultIcon, {
|
||||
fontSize: size === 'small' ? 'small' : 'medium'
|
||||
}),
|
||||
checkedIcon: /*#__PURE__*/React.cloneElement(defaultCheckedIcon, {
|
||||
fontSize: size === 'small' ? 'small' : 'medium'
|
||||
}),
|
||||
classes: {
|
||||
root: (0, _clsx.default)(classes.root, classes["color".concat((0, _capitalize.default)(color))]),
|
||||
checked: classes.checked,
|
||||
disabled: classes.disabled
|
||||
},
|
||||
name: name,
|
||||
checked: checked,
|
||||
onChange: onChange,
|
||||
ref: ref
|
||||
}, other));
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? Radio.propTypes = {
|
||||
// ----------------------------- Warning --------------------------------
|
||||
// | These PropTypes are generated from the TypeScript type definitions |
|
||||
// | To update them edit the d.ts file and run "yarn proptypes" |
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* If `true`, the component is checked.
|
||||
*/
|
||||
checked: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* The icon to display when the component is checked.
|
||||
*/
|
||||
checkedIcon: _propTypes.default.node,
|
||||
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
* See [CSS API](#css) below for more details.
|
||||
*/
|
||||
classes: _propTypes.default.object,
|
||||
|
||||
/**
|
||||
* The color of the component. It supports those theme colors that make sense for this component.
|
||||
*/
|
||||
color: _propTypes.default.oneOf(['default', 'primary', 'secondary']),
|
||||
|
||||
/**
|
||||
* If `true`, the radio will be disabled.
|
||||
*/
|
||||
disabled: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* If `true`, the ripple effect will be disabled.
|
||||
*/
|
||||
disableRipple: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* The icon to display when the component is unchecked.
|
||||
*/
|
||||
icon: _propTypes.default.node,
|
||||
|
||||
/**
|
||||
* The id of the `input` element.
|
||||
*/
|
||||
id: _propTypes.default.string,
|
||||
|
||||
/**
|
||||
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#Attributes) applied to the `input` element.
|
||||
*/
|
||||
inputProps: _propTypes.default.object,
|
||||
|
||||
/**
|
||||
* Pass a ref to the `input` element.
|
||||
*/
|
||||
inputRef: _utils.refType,
|
||||
|
||||
/**
|
||||
* Name attribute of the `input` element.
|
||||
*/
|
||||
name: _propTypes.default.string,
|
||||
|
||||
/**
|
||||
* Callback fired when the state is changed.
|
||||
*
|
||||
* @param {object} event The event source of the callback.
|
||||
* You can pull out the new value by accessing `event.target.value` (string).
|
||||
* You can pull out the new checked state by accessing `event.target.checked` (boolean).
|
||||
*/
|
||||
onChange: _propTypes.default.func,
|
||||
|
||||
/**
|
||||
* If `true`, the `input` element will be required.
|
||||
*/
|
||||
required: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* The size of the radio.
|
||||
* `small` is equivalent to the dense radio styling.
|
||||
*/
|
||||
size: _propTypes.default.oneOf(['medium', 'small']),
|
||||
|
||||
/**
|
||||
* The value of the component. The DOM API casts this to a string.
|
||||
*/
|
||||
value: _propTypes.default.any
|
||||
} : void 0;
|
||||
|
||||
var _default = (0, _withStyles.default)(styles, {
|
||||
name: 'MuiRadio'
|
||||
})(Radio);
|
||||
|
||||
exports.default = _default;
|
93
web/node_modules/@material-ui/core/Radio/RadioButtonIcon.js
generated
vendored
Normal file
93
web/node_modules/@material-ui/core/Radio/RadioButtonIcon.js
generated
vendored
Normal file
|
@ -0,0 +1,93 @@
|
|||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = exports.styles = void 0;
|
||||
|
||||
var React = _interopRequireWildcard(require("react"));
|
||||
|
||||
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||||
|
||||
var _clsx = _interopRequireDefault(require("clsx"));
|
||||
|
||||
var _RadioButtonUnchecked = _interopRequireDefault(require("../internal/svg-icons/RadioButtonUnchecked"));
|
||||
|
||||
var _RadioButtonChecked = _interopRequireDefault(require("../internal/svg-icons/RadioButtonChecked"));
|
||||
|
||||
var _withStyles = _interopRequireDefault(require("../styles/withStyles"));
|
||||
|
||||
var styles = function styles(theme) {
|
||||
return {
|
||||
root: {
|
||||
position: 'relative',
|
||||
display: 'flex',
|
||||
'&$checked $layer': {
|
||||
transform: 'scale(1)',
|
||||
transition: theme.transitions.create('transform', {
|
||||
easing: theme.transitions.easing.easeOut,
|
||||
duration: theme.transitions.duration.shortest
|
||||
})
|
||||
}
|
||||
},
|
||||
layer: {
|
||||
left: 0,
|
||||
position: 'absolute',
|
||||
transform: 'scale(0)',
|
||||
transition: theme.transitions.create('transform', {
|
||||
easing: theme.transitions.easing.easeIn,
|
||||
duration: theme.transitions.duration.shortest
|
||||
})
|
||||
},
|
||||
checked: {}
|
||||
};
|
||||
};
|
||||
/**
|
||||
* @ignore - internal component.
|
||||
*/
|
||||
|
||||
|
||||
exports.styles = styles;
|
||||
|
||||
function RadioButtonIcon(props) {
|
||||
var checked = props.checked,
|
||||
classes = props.classes,
|
||||
fontSize = props.fontSize;
|
||||
return /*#__PURE__*/React.createElement("div", {
|
||||
className: (0, _clsx.default)(classes.root, checked && classes.checked)
|
||||
}, /*#__PURE__*/React.createElement(_RadioButtonUnchecked.default, {
|
||||
fontSize: fontSize
|
||||
}), /*#__PURE__*/React.createElement(_RadioButtonChecked.default, {
|
||||
fontSize: fontSize,
|
||||
className: classes.layer
|
||||
}));
|
||||
}
|
||||
|
||||
process.env.NODE_ENV !== "production" ? RadioButtonIcon.propTypes = {
|
||||
/**
|
||||
* If `true`, the component is checked.
|
||||
*/
|
||||
checked: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
* See [CSS API](#css) below for more details.
|
||||
*/
|
||||
classes: _propTypes.default.object.isRequired,
|
||||
|
||||
/**
|
||||
* The size of the radio.
|
||||
* `small` is equivalent to the dense radio styling.
|
||||
*/
|
||||
fontSize: _propTypes.default.oneOf(['small', 'medium'])
|
||||
} : void 0;
|
||||
|
||||
var _default = (0, _withStyles.default)(styles, {
|
||||
name: 'PrivateRadioButtonIcon'
|
||||
})(RadioButtonIcon);
|
||||
|
||||
exports.default = _default;
|
2
web/node_modules/@material-ui/core/Radio/index.d.ts
generated
vendored
Normal file
2
web/node_modules/@material-ui/core/Radio/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
export { default } from './Radio';
|
||||
export * from './Radio';
|
15
web/node_modules/@material-ui/core/Radio/index.js
generated
vendored
Normal file
15
web/node_modules/@material-ui/core/Radio/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 _Radio.default;
|
||||
}
|
||||
});
|
||||
|
||||
var _Radio = _interopRequireDefault(require("./Radio"));
|
5
web/node_modules/@material-ui/core/Radio/package.json
generated
vendored
Normal file
5
web/node_modules/@material-ui/core/Radio/package.json
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"sideEffects": false,
|
||||
"module": "../esm/Radio/index.js",
|
||||
"typings": "./index.d.ts"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue