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
99
web/node_modules/@material-ui/core/Checkbox/Checkbox.d.ts
generated
vendored
Normal file
99
web/node_modules/@material-ui/core/Checkbox/Checkbox.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,99 @@
|
|||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { SwitchBaseProps, SwitchBaseClassKey } from '../internal/SwitchBase';
|
||||
|
||||
export interface CheckboxProps
|
||||
extends StandardProps<
|
||||
SwitchBaseProps,
|
||||
CheckboxClassKey,
|
||||
'checkedIcon' | 'color' | 'icon' | 'type'
|
||||
> {
|
||||
/**
|
||||
* If `true`, the component is checked.
|
||||
*/
|
||||
checked?: SwitchBaseProps['checked'];
|
||||
/**
|
||||
* 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 checkbox will be disabled.
|
||||
*/
|
||||
disabled?: SwitchBaseProps['disabled'];
|
||||
/**
|
||||
* If `true`, the ripple effect will be disabled.
|
||||
*/
|
||||
disableRipple?: SwitchBaseProps['disableRipple'];
|
||||
/**
|
||||
* The icon to display when the component is unchecked.
|
||||
*/
|
||||
icon?: React.ReactNode;
|
||||
/**
|
||||
* The id of the `input` element.
|
||||
*/
|
||||
id?: SwitchBaseProps['id'];
|
||||
/**
|
||||
* If `true`, the component appears indeterminate.
|
||||
* This does not set the native input element to indeterminate due
|
||||
* to inconsistent behavior across browsers.
|
||||
* However, we set a `data-indeterminate` attribute on the input.
|
||||
*/
|
||||
indeterminate?: boolean;
|
||||
/**
|
||||
* The icon to display when the component is indeterminate.
|
||||
*/
|
||||
indeterminateIcon?: React.ReactNode;
|
||||
/**
|
||||
* [Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#Attributes) applied to the `input` element.
|
||||
*/
|
||||
inputProps?: SwitchBaseProps['inputProps'];
|
||||
/**
|
||||
* Pass a ref to the `input` element.
|
||||
*/
|
||||
inputRef?: React.Ref<HTMLInputElement>;
|
||||
/**
|
||||
* Callback fired when the state is changed.
|
||||
*
|
||||
* @param {object} event The event source of the callback.
|
||||
* You can pull out the new checked state by accessing `event.target.checked` (boolean).
|
||||
*/
|
||||
onChange?: SwitchBaseProps['onChange'];
|
||||
/**
|
||||
* If `true`, the `input` element will be required.
|
||||
*/
|
||||
required?: SwitchBaseProps['required'];
|
||||
/**
|
||||
* The size of the checkbox.
|
||||
* `small` is equivalent to the dense checkbox styling.
|
||||
*/
|
||||
size?: 'small' | 'medium';
|
||||
/**
|
||||
* The value of the component. The DOM API casts this to a string.
|
||||
* The browser uses "on" as the default value.
|
||||
*/
|
||||
value?: SwitchBaseProps['value'];
|
||||
}
|
||||
|
||||
export type CheckboxClassKey =
|
||||
| SwitchBaseClassKey
|
||||
| 'indeterminate'
|
||||
| 'colorPrimary'
|
||||
| 'colorSecondary';
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Checkboxes](https://material-ui.com/components/checkboxes/)
|
||||
* - [Transfer List](https://material-ui.com/components/transfer-list/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Checkbox API](https://material-ui.com/api/checkbox/)
|
||||
* - inherits [IconButton API](https://material-ui.com/api/icon-button/)
|
||||
*/
|
||||
export default function Checkbox(props: CheckboxProps): JSX.Element;
|
232
web/node_modules/@material-ui/core/Checkbox/Checkbox.js
generated
vendored
Normal file
232
web/node_modules/@material-ui/core/Checkbox/Checkbox.js
generated
vendored
Normal file
|
@ -0,0 +1,232 @@
|
|||
"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 _CheckBoxOutlineBlank = _interopRequireDefault(require("../internal/svg-icons/CheckBoxOutlineBlank"));
|
||||
|
||||
var _CheckBox = _interopRequireDefault(require("../internal/svg-icons/CheckBox"));
|
||||
|
||||
var _colorManipulator = require("../styles/colorManipulator");
|
||||
|
||||
var _IndeterminateCheckBox = _interopRequireDefault(require("../internal/svg-icons/IndeterminateCheckBox"));
|
||||
|
||||
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
|
||||
|
||||
var _withStyles = _interopRequireDefault(require("../styles/withStyles"));
|
||||
|
||||
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: {},
|
||||
|
||||
/* Pseudo-class applied to the root element if `indeterminate={true}`. */
|
||||
indeterminate: {},
|
||||
|
||||
/* 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(_CheckBox.default, null);
|
||||
var defaultIcon = /*#__PURE__*/React.createElement(_CheckBoxOutlineBlank.default, null);
|
||||
var defaultIndeterminateIcon = /*#__PURE__*/React.createElement(_IndeterminateCheckBox.default, null);
|
||||
var Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(props, ref) {
|
||||
var _props$checkedIcon = props.checkedIcon,
|
||||
checkedIcon = _props$checkedIcon === void 0 ? defaultCheckedIcon : _props$checkedIcon,
|
||||
classes = props.classes,
|
||||
_props$color = props.color,
|
||||
color = _props$color === void 0 ? 'secondary' : _props$color,
|
||||
_props$icon = props.icon,
|
||||
iconProp = _props$icon === void 0 ? defaultIcon : _props$icon,
|
||||
_props$indeterminate = props.indeterminate,
|
||||
indeterminate = _props$indeterminate === void 0 ? false : _props$indeterminate,
|
||||
_props$indeterminateI = props.indeterminateIcon,
|
||||
indeterminateIconProp = _props$indeterminateI === void 0 ? defaultIndeterminateIcon : _props$indeterminateI,
|
||||
inputProps = props.inputProps,
|
||||
_props$size = props.size,
|
||||
size = _props$size === void 0 ? 'medium' : _props$size,
|
||||
other = (0, _objectWithoutProperties2.default)(props, ["checkedIcon", "classes", "color", "icon", "indeterminate", "indeterminateIcon", "inputProps", "size"]);
|
||||
var icon = indeterminate ? indeterminateIconProp : iconProp;
|
||||
var indeterminateIcon = indeterminate ? indeterminateIconProp : checkedIcon;
|
||||
return /*#__PURE__*/React.createElement(_SwitchBase.default, (0, _extends2.default)({
|
||||
type: "checkbox",
|
||||
classes: {
|
||||
root: (0, _clsx.default)(classes.root, classes["color".concat((0, _capitalize.default)(color))], indeterminate && classes.indeterminate),
|
||||
checked: classes.checked,
|
||||
disabled: classes.disabled
|
||||
},
|
||||
color: color,
|
||||
inputProps: (0, _extends2.default)({
|
||||
'data-indeterminate': indeterminate
|
||||
}, inputProps),
|
||||
icon: /*#__PURE__*/React.cloneElement(icon, {
|
||||
fontSize: icon.props.fontSize === undefined && size === "small" ? size : icon.props.fontSize
|
||||
}),
|
||||
checkedIcon: /*#__PURE__*/React.cloneElement(indeterminateIcon, {
|
||||
fontSize: indeterminateIcon.props.fontSize === undefined && size === "small" ? size : indeterminateIcon.props.fontSize
|
||||
}),
|
||||
ref: ref
|
||||
}, other));
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? Checkbox.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 checkbox 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,
|
||||
|
||||
/**
|
||||
* If `true`, the component appears indeterminate.
|
||||
* This does not set the native input element to indeterminate due
|
||||
* to inconsistent behavior across browsers.
|
||||
* However, we set a `data-indeterminate` attribute on the input.
|
||||
*/
|
||||
indeterminate: _propTypes.default.bool,
|
||||
|
||||
/**
|
||||
* The icon to display when the component is indeterminate.
|
||||
*/
|
||||
indeterminateIcon: _propTypes.default.node,
|
||||
|
||||
/**
|
||||
* [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,
|
||||
|
||||
/**
|
||||
* Callback fired when the state is changed.
|
||||
*
|
||||
* @param {object} event The event source of the callback.
|
||||
* 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 checkbox.
|
||||
* `small` is equivalent to the dense checkbox styling.
|
||||
*/
|
||||
size: _propTypes.default.oneOf(['medium', 'small']),
|
||||
|
||||
/**
|
||||
* The value of the component. The DOM API casts this to a string.
|
||||
* The browser uses "on" as the default value.
|
||||
*/
|
||||
value: _propTypes.default.any
|
||||
} : void 0;
|
||||
|
||||
var _default = (0, _withStyles.default)(styles, {
|
||||
name: 'MuiCheckbox'
|
||||
})(Checkbox);
|
||||
|
||||
exports.default = _default;
|
2
web/node_modules/@material-ui/core/Checkbox/index.d.ts
generated
vendored
Normal file
2
web/node_modules/@material-ui/core/Checkbox/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
export { default } from './Checkbox';
|
||||
export * from './Checkbox';
|
15
web/node_modules/@material-ui/core/Checkbox/index.js
generated
vendored
Normal file
15
web/node_modules/@material-ui/core/Checkbox/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 _Checkbox.default;
|
||||
}
|
||||
});
|
||||
|
||||
var _Checkbox = _interopRequireDefault(require("./Checkbox"));
|
5
web/node_modules/@material-ui/core/Checkbox/package.json
generated
vendored
Normal file
5
web/node_modules/@material-ui/core/Checkbox/package.json
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"sideEffects": false,
|
||||
"module": "../esm/Checkbox/index.js",
|
||||
"typings": "./index.d.ts"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue