Update client dependencies
This commit is contained in:
parent
6fedb23363
commit
0d9290d037
File diff suppressed because one or more lines are too long
|
@ -37,12 +37,39 @@ class Connect extends Component {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{!hexIP && <TextInput name="username" />}
|
{!hexIP && <TextInput name="username" />}
|
||||||
<TextInput name="password" type="password" />
|
<TextInput name="password" type="password" noTrim />
|
||||||
<TextInput name="realname" />
|
<TextInput name="realname" noTrim />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
transformPort = port => {
|
||||||
|
if (!port) {
|
||||||
|
return this.props.values.tls ? 6697 : 6667;
|
||||||
|
}
|
||||||
|
return port;
|
||||||
|
};
|
||||||
|
|
||||||
|
transformChannels = channels => {
|
||||||
|
const comma = channels[channels.length - 1] === ',';
|
||||||
|
|
||||||
|
channels = channels
|
||||||
|
.split(',')
|
||||||
|
.map(channel => {
|
||||||
|
channel = channel.trim();
|
||||||
|
if (channel) {
|
||||||
|
if (isValidChannel(channel, false) && channel[0] !== '#') {
|
||||||
|
channel = `#${channel}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return channel;
|
||||||
|
})
|
||||||
|
.filter(s => s)
|
||||||
|
.join(',');
|
||||||
|
|
||||||
|
return comma ? channels + ',' : channels;
|
||||||
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { defaults, values } = this.props;
|
const { defaults, values } = this.props;
|
||||||
const { readOnly, showDetails } = defaults;
|
const { readOnly, showDetails } = defaults;
|
||||||
|
@ -70,10 +97,15 @@ class Connect extends Component {
|
||||||
form = (
|
form = (
|
||||||
<Form className="connect-form">
|
<Form className="connect-form">
|
||||||
<h1>Connect</h1>
|
<h1>Connect</h1>
|
||||||
<TextInput name="name" autoCapitalize="words" />
|
<TextInput name="name" autoCapitalize="words" noTrim />
|
||||||
<div className="connect-form-address">
|
<div className="connect-form-address">
|
||||||
<TextInput name="host" noError />
|
<TextInput name="host" noError />
|
||||||
<TextInput name="port" type="number" noError />
|
<TextInput
|
||||||
|
name="port"
|
||||||
|
type="number"
|
||||||
|
blurTransform={this.transformPort}
|
||||||
|
noError
|
||||||
|
/>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
name="tls"
|
name="tls"
|
||||||
label="SSL"
|
label="SSL"
|
||||||
|
@ -84,7 +116,7 @@ class Connect extends Component {
|
||||||
<Error name="host" />
|
<Error name="host" />
|
||||||
<Error name="port" />
|
<Error name="port" />
|
||||||
<TextInput name="nick" />
|
<TextInput name="nick" />
|
||||||
<TextInput name="channels" />
|
<TextInput name="channels" transform={this.transformChannels} />
|
||||||
{this.state.showOptionals && this.renderOptionals()}
|
{this.state.showOptionals && this.renderOptionals()}
|
||||||
<i className="icon-ellipsis" onClick={this.handleShowClick} />
|
<i className="icon-ellipsis" onClick={this.handleShowClick} />
|
||||||
<Button type="submit">Connect</Button>
|
<Button type="submit">Connect</Button>
|
||||||
|
@ -120,16 +152,10 @@ export default withFormik({
|
||||||
username: '',
|
username: '',
|
||||||
password: defaults.password ? ' ' : '',
|
password: defaults.password ? ' ' : '',
|
||||||
realname: '',
|
realname: '',
|
||||||
tls: defaults.ssl
|
tls: defaults.ssl || false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
validate: values => {
|
validate: values => {
|
||||||
Object.keys(values).forEach(k => {
|
|
||||||
if (typeof values[k] === 'string') {
|
|
||||||
values[k] = values[k].trim();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const errors = {};
|
const errors = {};
|
||||||
|
|
||||||
if (!values.host) {
|
if (!values.host) {
|
||||||
|
@ -138,9 +164,7 @@ export default withFormik({
|
||||||
errors.host = 'Invalid host';
|
errors.host = 'Invalid host';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!values.port) {
|
if (!isInt(values.port, 1, 65535)) {
|
||||||
values.port = values.tls ? 6697 : 6667;
|
|
||||||
} else if (!isInt(values.port, 1, 65535)) {
|
|
||||||
errors.port = 'Invalid port';
|
errors.port = 'Invalid port';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,23 +178,18 @@ export default withFormik({
|
||||||
errors.username = 'Invalid username';
|
errors.username = 'Invalid username';
|
||||||
}
|
}
|
||||||
|
|
||||||
values.channels = values.channels
|
const channels = values.channels.split(',');
|
||||||
.split(',')
|
for (let i = channels.length - 1; i >= 0; i--) {
|
||||||
.map(channel => {
|
if (i === channels.length - 1 && channels[i] === '') {
|
||||||
channel = channel.trim();
|
/* eslint-disable-next-line no-continue */
|
||||||
if (channel) {
|
continue;
|
||||||
if (isValidChannel(channel, false)) {
|
}
|
||||||
if (channel[0] !== '#') {
|
|
||||||
channel = `#${channel}`;
|
if (!isValidChannel(channels[i])) {
|
||||||
}
|
errors.channels = 'Invalid channel(s)';
|
||||||
} else {
|
break;
|
||||||
errors.channels = 'Invalid channel(s)';
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return channel;
|
|
||||||
})
|
|
||||||
.filter(s => s)
|
|
||||||
.join(',');
|
|
||||||
|
|
||||||
return errors;
|
return errors;
|
||||||
},
|
},
|
||||||
|
|
|
@ -4,6 +4,24 @@ import classnames from 'classnames';
|
||||||
import capitalize from 'lodash/capitalize';
|
import capitalize from 'lodash/capitalize';
|
||||||
import Error from 'components/ui/formik/Error';
|
import Error from 'components/ui/formik/Error';
|
||||||
|
|
||||||
|
const getValue = (e, trim) => {
|
||||||
|
let v = e.target.value;
|
||||||
|
|
||||||
|
if (trim) {
|
||||||
|
v = v.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e.target.type === 'number') {
|
||||||
|
v = parseFloat(v);
|
||||||
|
/* eslint-disable-next-line no-self-compare */
|
||||||
|
if (v !== v) {
|
||||||
|
v = '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return v;
|
||||||
|
};
|
||||||
|
|
||||||
export default class TextInput extends PureComponent {
|
export default class TextInput extends PureComponent {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
@ -38,49 +56,83 @@ export default class TextInput extends PureComponent {
|
||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { name, label = capitalize(name), noError, ...props } = this.props;
|
const {
|
||||||
|
name,
|
||||||
|
label = capitalize(name),
|
||||||
|
noError,
|
||||||
|
noTrim,
|
||||||
|
transform,
|
||||||
|
blurTransform,
|
||||||
|
...props
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<FastField
|
<FastField
|
||||||
name={name}
|
name={name}
|
||||||
render={({ field, form }) => {
|
render={({ field, form }) => (
|
||||||
return (
|
<>
|
||||||
<>
|
<div className="textinput">
|
||||||
<div className="textinput">
|
<input
|
||||||
<input
|
className={field.value && 'value'}
|
||||||
className={field.value && 'value'}
|
type="text"
|
||||||
type="text"
|
name={name}
|
||||||
name={name}
|
autoCapitalize="off"
|
||||||
autoCapitalize="off"
|
autoCorrect="off"
|
||||||
autoCorrect="off"
|
autoComplete="off"
|
||||||
autoComplete="off"
|
spellCheck="false"
|
||||||
spellCheck="false"
|
ref={this.input}
|
||||||
ref={this.input}
|
onFocus={this.handleFocus}
|
||||||
onFocus={this.handleFocus}
|
{...field}
|
||||||
{...field}
|
{...props}
|
||||||
{...props}
|
onChange={e => {
|
||||||
/>
|
let v = getValue(e, !noTrim);
|
||||||
<span
|
if (transform) {
|
||||||
className={classnames('textinput-1', {
|
v = transform(v);
|
||||||
value: field.value,
|
}
|
||||||
error: form.touched[name] && form.errors[name]
|
|
||||||
})}
|
if (v !== field.value) {
|
||||||
>
|
form.setFieldValue(name, v);
|
||||||
{label}
|
|
||||||
</span>
|
if (props.onChange) {
|
||||||
<span
|
props.onChange(e);
|
||||||
className={classnames('textinput-2', {
|
}
|
||||||
value: field.value,
|
}
|
||||||
error: form.touched[name] && form.errors[name]
|
}}
|
||||||
})}
|
onBlur={e => {
|
||||||
>
|
if (blurTransform) {
|
||||||
{label}
|
const v = blurTransform(getValue(e));
|
||||||
</span>
|
|
||||||
</div>
|
if (v && v !== field.value) {
|
||||||
{!noError && <Error name={name} />}
|
form.setFieldValue(name, v, false);
|
||||||
</>
|
}
|
||||||
);
|
}
|
||||||
}}
|
|
||||||
|
field.onBlur(e);
|
||||||
|
if (props.onBlur) {
|
||||||
|
props.onBlur(e);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
className={classnames('textinput-1', {
|
||||||
|
value: field.value,
|
||||||
|
error: form.touched[name] && form.errors[name]
|
||||||
|
})}
|
||||||
|
>
|
||||||
|
{label}
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
className={classnames('textinput-2', {
|
||||||
|
value: field.value,
|
||||||
|
error: form.touched[name] && form.errors[name]
|
||||||
|
})}
|
||||||
|
>
|
||||||
|
{label}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{!noError && <Error name={name} />}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,22 +5,19 @@ import Checkbox from 'components/ui/Checkbox';
|
||||||
const FormikCheckbox = ({ name, onChange, ...props }) => (
|
const FormikCheckbox = ({ name, onChange, ...props }) => (
|
||||||
<FastField
|
<FastField
|
||||||
name={name}
|
name={name}
|
||||||
render={({ field, form }) => {
|
render={({ field }) => (
|
||||||
return (
|
<Checkbox
|
||||||
<Checkbox
|
name={name}
|
||||||
name={name}
|
checked={field.value}
|
||||||
checked={field.value}
|
onChange={e => {
|
||||||
onChange={e => {
|
field.onChange(e);
|
||||||
form.setFieldTouched(name, true);
|
if (onChange) {
|
||||||
field.onChange(e);
|
onChange(e);
|
||||||
if (onChange) {
|
}
|
||||||
onChange(e);
|
}}
|
||||||
}
|
{...props}
|
||||||
}}
|
/>
|
||||||
{...props}
|
)}
|
||||||
/>
|
|
||||||
);
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"iOS >= 10.3"
|
"iOS >= 10.3"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.1.5",
|
"@babel/core": "^7.2.2",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
||||||
"@babel/plugin-proposal-export-default-from": "^7.0.0",
|
"@babel/plugin-proposal-export-default-from": "^7.0.0",
|
||||||
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
|
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
|
||||||
|
@ -26,10 +26,10 @@
|
||||||
"babel-jest": "^23.6.0",
|
"babel-jest": "^23.6.0",
|
||||||
"babel-loader": "^8.0.4",
|
"babel-loader": "^8.0.4",
|
||||||
"brotli": "^1.3.1",
|
"brotli": "^1.3.1",
|
||||||
"css-loader": "^1.0.1",
|
"css-loader": "^2.0.1",
|
||||||
"cssnano": "^4.1.7",
|
"cssnano": "^4.1.7",
|
||||||
"del": "^3.0.0",
|
"del": "^3.0.0",
|
||||||
"eslint": "^5.8.0",
|
"eslint": "^5.10.0",
|
||||||
"eslint-config-airbnb": "^17.1.0",
|
"eslint-config-airbnb": "^17.1.0",
|
||||||
"eslint-config-prettier": "^3.1.0",
|
"eslint-config-prettier": "^3.1.0",
|
||||||
"eslint-import-resolver-webpack": "^0.10.1",
|
"eslint-import-resolver-webpack": "^0.10.1",
|
||||||
|
@ -42,10 +42,10 @@
|
||||||
"gulp": "4.0.0",
|
"gulp": "4.0.0",
|
||||||
"gulp-util": "^3.0.8",
|
"gulp-util": "^3.0.8",
|
||||||
"jest": "^23.6.0",
|
"jest": "^23.6.0",
|
||||||
"mini-css-extract-plugin": "^0.4.4",
|
"mini-css-extract-plugin": "^0.5.0",
|
||||||
"postcss-flexbugs-fixes": "^4.1.0",
|
"postcss-flexbugs-fixes": "^4.1.0",
|
||||||
"postcss-loader": "^3.0.0",
|
"postcss-loader": "^3.0.0",
|
||||||
"postcss-preset-env": "^6.4.0",
|
"postcss-preset-env": "^6.5.0",
|
||||||
"prettier": "1.15.3",
|
"prettier": "1.15.3",
|
||||||
"react-test-renderer": "^16.7.0-alpha.0",
|
"react-test-renderer": "^16.7.0-alpha.0",
|
||||||
"style-loader": "^0.23.1",
|
"style-loader": "^0.23.1",
|
||||||
|
@ -62,15 +62,15 @@
|
||||||
"backo": "^1.1.0",
|
"backo": "^1.1.0",
|
||||||
"classnames": "^2.2.6",
|
"classnames": "^2.2.6",
|
||||||
"fontfaceobserver": "^2.0.9",
|
"fontfaceobserver": "^2.0.9",
|
||||||
"formik": "^1.3.1",
|
"formik": "^1.4.1",
|
||||||
"history": "4.5.1",
|
"history": "4.5.1",
|
||||||
"hsluv": "^0.0.3",
|
"hsluv": "^0.0.3",
|
||||||
"immer": "^1.7.3",
|
"immer": "^1.9.2",
|
||||||
"js-cookie": "^2.1.4",
|
"js-cookie": "^2.1.4",
|
||||||
"lodash": "^4.17.11",
|
"lodash": "^4.17.11",
|
||||||
"react": "^16.7.0-alpha.0",
|
"react": "^16.7.0-alpha.0",
|
||||||
"react-dom": "^16.7.0-alpha.0",
|
"react-dom": "^16.7.0-alpha.0",
|
||||||
"react-hot-loader": "^4.4.0",
|
"react-hot-loader": "^4.6.2",
|
||||||
"react-redux": "^6.0.0-beta.2",
|
"react-redux": "^6.0.0-beta.2",
|
||||||
"react-virtualized-auto-sizer": "^1.0.2",
|
"react-virtualized-auto-sizer": "^1.0.2",
|
||||||
"react-window": "^1.2.2",
|
"react-window": "^1.2.2",
|
||||||
|
|
362
client/yarn.lock
362
client/yarn.lock
|
@ -16,18 +16,18 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/highlight" "7.0.0-beta.44"
|
"@babel/highlight" "7.0.0-beta.44"
|
||||||
|
|
||||||
"@babel/core@^7.1.5":
|
"@babel/core@^7.2.2":
|
||||||
version "7.2.0"
|
version "7.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.0.tgz#a4dd3814901998e93340f0086e9867fefa163ada"
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687"
|
||||||
integrity sha512-7pvAdC4B+iKjFFp9Ztj0QgBndJ++qaMeonT185wAqUnhipw8idm9Rv1UMyBuKtYjfl6ORNkgEgcsYLfHX/GpLw==
|
integrity sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/code-frame" "^7.0.0"
|
"@babel/code-frame" "^7.0.0"
|
||||||
"@babel/generator" "^7.2.0"
|
"@babel/generator" "^7.2.2"
|
||||||
"@babel/helpers" "^7.2.0"
|
"@babel/helpers" "^7.2.0"
|
||||||
"@babel/parser" "^7.2.0"
|
"@babel/parser" "^7.2.2"
|
||||||
"@babel/template" "^7.1.2"
|
"@babel/template" "^7.2.2"
|
||||||
"@babel/traverse" "^7.1.6"
|
"@babel/traverse" "^7.2.2"
|
||||||
"@babel/types" "^7.2.0"
|
"@babel/types" "^7.2.2"
|
||||||
convert-source-map "^1.1.0"
|
convert-source-map "^1.1.0"
|
||||||
debug "^4.1.0"
|
debug "^4.1.0"
|
||||||
json5 "^2.1.0"
|
json5 "^2.1.0"
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
source-map "^0.5.0"
|
source-map "^0.5.0"
|
||||||
trim-right "^1.0.1"
|
trim-right "^1.0.1"
|
||||||
|
|
||||||
"@babel/generator@^7.1.6", "@babel/generator@^7.2.0":
|
"@babel/generator@^7.1.6":
|
||||||
version "7.2.0"
|
version "7.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.0.tgz#eaf3821fa0301d9d4aef88e63d4bcc19b73ba16c"
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.0.tgz#eaf3821fa0301d9d4aef88e63d4bcc19b73ba16c"
|
||||||
integrity sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==
|
integrity sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==
|
||||||
|
@ -58,6 +58,17 @@
|
||||||
source-map "^0.5.0"
|
source-map "^0.5.0"
|
||||||
trim-right "^1.0.1"
|
trim-right "^1.0.1"
|
||||||
|
|
||||||
|
"@babel/generator@^7.2.2":
|
||||||
|
version "7.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.2.tgz#18c816c70962640eab42fe8cae5f3947a5c65ccc"
|
||||||
|
integrity sha512-I4o675J/iS8k+P38dvJ3IBGqObLXyQLTxtrR4u9cSUJOURvafeEWb/pFMOTwtNrmq73mJzyF6ueTbO1BtN0Zeg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/types" "^7.2.2"
|
||||||
|
jsesc "^2.5.1"
|
||||||
|
lodash "^4.17.10"
|
||||||
|
source-map "^0.5.0"
|
||||||
|
trim-right "^1.0.1"
|
||||||
|
|
||||||
"@babel/helper-annotate-as-pure@^7.0.0":
|
"@babel/helper-annotate-as-pure@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
|
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
|
||||||
|
@ -273,11 +284,16 @@
|
||||||
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.0.0.tgz#697655183394facffb063437ddf52c0277698775"
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.0.0.tgz#697655183394facffb063437ddf52c0277698775"
|
||||||
integrity sha512-RgJhNdRinpO8zibnoHbzTTexNs4c8ROkXFBanNDZTLHjwbdLk8J5cJSKulx/bycWTLYmKVNCkxRtVCoJnqPk+g==
|
integrity sha512-RgJhNdRinpO8zibnoHbzTTexNs4c8ROkXFBanNDZTLHjwbdLk8J5cJSKulx/bycWTLYmKVNCkxRtVCoJnqPk+g==
|
||||||
|
|
||||||
"@babel/parser@^7.1.2", "@babel/parser@^7.1.6", "@babel/parser@^7.2.0":
|
"@babel/parser@^7.1.2", "@babel/parser@^7.1.6":
|
||||||
version "7.2.0"
|
version "7.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.0.tgz#02d01dbc330b6cbf36b76ac93c50752c69027065"
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.0.tgz#02d01dbc330b6cbf36b76ac93c50752c69027065"
|
||||||
integrity sha512-M74+GvK4hn1eejD9lZ7967qAwvqTZayQa3g10ag4s9uewgR7TKjeaT0YMyoq+gVfKYABiWZ4MQD701/t5e1Jhg==
|
integrity sha512-M74+GvK4hn1eejD9lZ7967qAwvqTZayQa3g10ag4s9uewgR7TKjeaT0YMyoq+gVfKYABiWZ4MQD701/t5e1Jhg==
|
||||||
|
|
||||||
|
"@babel/parser@^7.2.2":
|
||||||
|
version "7.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.2.tgz#37ebdbc88a2e1ebc6c8dd3d35ea9436e3e39e477"
|
||||||
|
integrity sha512-UNTmQ5cSLDeBGBl+s7JeowkqIHgmFAGBnLDdIzFmUNSuS5JF0XBcN59jsh/vJO/YjfsBqMxhMjoFGmNExmf0FA==
|
||||||
|
|
||||||
"@babel/plugin-proposal-async-generator-functions@^7.2.0":
|
"@babel/plugin-proposal-async-generator-functions@^7.2.0":
|
||||||
version "7.2.0"
|
version "7.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
|
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
|
||||||
|
@ -746,6 +762,15 @@
|
||||||
"@babel/parser" "^7.1.2"
|
"@babel/parser" "^7.1.2"
|
||||||
"@babel/types" "^7.1.2"
|
"@babel/types" "^7.1.2"
|
||||||
|
|
||||||
|
"@babel/template@^7.2.2":
|
||||||
|
version "7.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907"
|
||||||
|
integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "^7.0.0"
|
||||||
|
"@babel/parser" "^7.2.2"
|
||||||
|
"@babel/types" "^7.2.2"
|
||||||
|
|
||||||
"@babel/traverse@^7.0.0":
|
"@babel/traverse@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0.tgz#b1fe9b6567fdf3ab542cfad6f3b31f854d799a61"
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0.tgz#b1fe9b6567fdf3ab542cfad6f3b31f854d799a61"
|
||||||
|
@ -761,7 +786,7 @@
|
||||||
globals "^11.1.0"
|
globals "^11.1.0"
|
||||||
lodash "^4.17.10"
|
lodash "^4.17.10"
|
||||||
|
|
||||||
"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.1.6":
|
"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5":
|
||||||
version "7.1.6"
|
version "7.1.6"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.6.tgz#c8db9963ab4ce5b894222435482bd8ea854b7b5c"
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.6.tgz#c8db9963ab4ce5b894222435482bd8ea854b7b5c"
|
||||||
integrity sha512-CXedit6GpISz3sC2k2FsGCUpOhUqKdyL0lqNrImQojagnUMXf8hex4AxYFRuMkNGcvJX5QAFGzB5WJQmSv8SiQ==
|
integrity sha512-CXedit6GpISz3sC2k2FsGCUpOhUqKdyL0lqNrImQojagnUMXf8hex4AxYFRuMkNGcvJX5QAFGzB5WJQmSv8SiQ==
|
||||||
|
@ -776,6 +801,21 @@
|
||||||
globals "^11.1.0"
|
globals "^11.1.0"
|
||||||
lodash "^4.17.10"
|
lodash "^4.17.10"
|
||||||
|
|
||||||
|
"@babel/traverse@^7.2.2":
|
||||||
|
version "7.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.2.tgz#961039de1f9bcb946d807efe2dba9c92e859d188"
|
||||||
|
integrity sha512-E5Bn9FSwHpSkUhthw/XEuvFZxIgrqb9M8cX8j5EUQtrUG5DQUy6bFyl7G7iQ1D1Czudor+xkmp81JbLVVM0Sjg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "^7.0.0"
|
||||||
|
"@babel/generator" "^7.2.2"
|
||||||
|
"@babel/helper-function-name" "^7.1.0"
|
||||||
|
"@babel/helper-split-export-declaration" "^7.0.0"
|
||||||
|
"@babel/parser" "^7.2.2"
|
||||||
|
"@babel/types" "^7.2.2"
|
||||||
|
debug "^4.1.0"
|
||||||
|
globals "^11.1.0"
|
||||||
|
lodash "^4.17.10"
|
||||||
|
|
||||||
"@babel/types@^7.0.0", "@babel/types@^7.1.2", "@babel/types@^7.1.6", "@babel/types@^7.2.0":
|
"@babel/types@^7.0.0", "@babel/types@^7.1.2", "@babel/types@^7.1.6", "@babel/types@^7.2.0":
|
||||||
version "7.2.0"
|
version "7.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.0.tgz#7941c5b2d8060e06f9601d6be7c223eef906d5d8"
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.0.tgz#7941c5b2d8060e06f9601d6be7c223eef906d5d8"
|
||||||
|
@ -785,6 +825,15 @@
|
||||||
lodash "^4.17.10"
|
lodash "^4.17.10"
|
||||||
to-fast-properties "^2.0.0"
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
|
"@babel/types@^7.2.2":
|
||||||
|
version "7.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.2.tgz#44e10fc24e33af524488b716cdaee5360ea8ed1e"
|
||||||
|
integrity sha512-fKCuD6UFUMkR541eDWL+2ih/xFZBXPOg/7EQFeTluMDebfqR4jrpaCjLhkWlQS4hT6nRa2PMEgXKbRB5/H2fpg==
|
||||||
|
dependencies:
|
||||||
|
esutils "^2.0.2"
|
||||||
|
lodash "^4.17.10"
|
||||||
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
"@csstools/convert-colors@^1.4.0":
|
"@csstools/convert-colors@^1.4.0":
|
||||||
version "1.4.0"
|
version "1.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
|
resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7"
|
||||||
|
@ -1403,16 +1452,16 @@ autolinker@^1.7.1:
|
||||||
resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-1.8.1.tgz#6484bdde54abc600e44896bbda0eb08f6bb3f56e"
|
resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-1.8.1.tgz#6484bdde54abc600e44896bbda0eb08f6bb3f56e"
|
||||||
integrity sha512-ZaoiP6SApAcbx+BeUSMJEvY02sl6pWKJzkmP0RvmD+b0Cp7Umev7PMgPGnDMe572/eAKbOgjAW/XsECfx7IFiQ==
|
integrity sha512-ZaoiP6SApAcbx+BeUSMJEvY02sl6pWKJzkmP0RvmD+b0Cp7Umev7PMgPGnDMe572/eAKbOgjAW/XsECfx7IFiQ==
|
||||||
|
|
||||||
autoprefixer@^9.3.1:
|
autoprefixer@^9.4.2:
|
||||||
version "9.3.1"
|
version "9.4.3"
|
||||||
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.3.1.tgz#71b622174de2b783d5fd99f9ad617b7a3c78443e"
|
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.3.tgz#c97384a8fd80477b78049163a91bbc725d9c41d9"
|
||||||
integrity sha512-DY9gOh8z3tnCbJ13JIWaeQsoYncTGdsrgCceBaQSIL4nvdrLxgbRSBPevg2XbX7u4QCSfLheSJEEIUUSlkbx6Q==
|
integrity sha512-/XSnzDepRkAU//xLcXA/lUWxpsBuw0WiriAHOqnxkuCtzLhaz+fL4it4gp20BQ8n5SyLzK/FOc7A0+u/rti2FQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist "^4.3.3"
|
browserslist "^4.3.6"
|
||||||
caniuse-lite "^1.0.30000898"
|
caniuse-lite "^1.0.30000921"
|
||||||
normalize-range "^0.1.2"
|
normalize-range "^0.1.2"
|
||||||
num2fraction "^1.2.2"
|
num2fraction "^1.2.2"
|
||||||
postcss "^7.0.5"
|
postcss "^7.0.6"
|
||||||
postcss-value-parser "^3.3.1"
|
postcss-value-parser "^3.3.1"
|
||||||
|
|
||||||
aws-sign2@~0.6.0:
|
aws-sign2@~0.6.0:
|
||||||
|
@ -1894,7 +1943,7 @@ browserslist@^4.0.0:
|
||||||
electron-to-chromium "^1.3.52"
|
electron-to-chromium "^1.3.52"
|
||||||
node-releases "^1.0.0-alpha.10"
|
node-releases "^1.0.0-alpha.10"
|
||||||
|
|
||||||
browserslist@^4.3.3, browserslist@^4.3.4:
|
browserslist@^4.3.4:
|
||||||
version "4.3.4"
|
version "4.3.4"
|
||||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.3.4.tgz#4477b737db6a1b07077275b24791e680d4300425"
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.3.4.tgz#4477b737db6a1b07077275b24791e680d4300425"
|
||||||
integrity sha512-u5iz+ijIMUlmV8blX82VGFrB9ecnUg5qEt55CMZ/YJEhha+d8qpBfOFuutJ6F/VKRXjZoD33b6uvarpPxcl3RA==
|
integrity sha512-u5iz+ijIMUlmV8blX82VGFrB9ecnUg5qEt55CMZ/YJEhha+d8qpBfOFuutJ6F/VKRXjZoD33b6uvarpPxcl3RA==
|
||||||
|
@ -1903,6 +1952,15 @@ browserslist@^4.3.3, browserslist@^4.3.4:
|
||||||
electron-to-chromium "^1.3.82"
|
electron-to-chromium "^1.3.82"
|
||||||
node-releases "^1.0.1"
|
node-releases "^1.0.1"
|
||||||
|
|
||||||
|
browserslist@^4.3.5, browserslist@^4.3.6:
|
||||||
|
version "4.3.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.3.6.tgz#0f9d9081afc66b36f477c6bdf3813f784f42396a"
|
||||||
|
integrity sha512-kMGKs4BTzRWviZ8yru18xBpx+CyHG9eqgRbj9XbE3IMgtczf4aiA0Y1YCpVdvUieKGZ03kolSPXqTcscBCb9qw==
|
||||||
|
dependencies:
|
||||||
|
caniuse-lite "^1.0.30000921"
|
||||||
|
electron-to-chromium "^1.3.92"
|
||||||
|
node-releases "^1.1.1"
|
||||||
|
|
||||||
bser@^2.0.0:
|
bser@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
|
resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719"
|
||||||
|
@ -2031,20 +2089,15 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000865:
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz#a641b1f1c420d58d9b132920ef6ba87bbdcd2223"
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000874.tgz#a641b1f1c420d58d9b132920ef6ba87bbdcd2223"
|
||||||
integrity sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w==
|
integrity sha512-29nr1EPiHwrJTAHHsEmTt2h+55L8j2GNFdAcYPlRy2NX6iFz7ZZiepVI7kP/QqlnHLq3KvfWpbmGa0d063U09w==
|
||||||
|
|
||||||
caniuse-lite@^1.0.30000898:
|
|
||||||
version "1.0.30000899"
|
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000899.tgz#6febdbbc388a7982f620ee0e3d09aab0c061389e"
|
|
||||||
integrity sha512-enC3zKfUCJxxwvUIsBkbHd54CtJw1KtIWvrK0JZxWD/fEN2knHaai45lndJ4xXAkyRAPyk60J3yagkKDWhfeMA==
|
|
||||||
|
|
||||||
caniuse-lite@^1.0.30000899:
|
caniuse-lite@^1.0.30000899:
|
||||||
version "1.0.30000916"
|
version "1.0.30000916"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000916.tgz#3428d3f529f0a7b2bfaaec65e796037bdd433aab"
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000916.tgz#3428d3f529f0a7b2bfaaec65e796037bdd433aab"
|
||||||
integrity sha512-D6J9jloPm2MPkg0PXcODLMQAJKkeixKO9xhqTUMvtd44MtTYMyyDXPQ2Lk9IgBq5FH0frwiPa/N/w8ncQf7kIQ==
|
integrity sha512-D6J9jloPm2MPkg0PXcODLMQAJKkeixKO9xhqTUMvtd44MtTYMyyDXPQ2Lk9IgBq5FH0frwiPa/N/w8ncQf7kIQ==
|
||||||
|
|
||||||
caniuse-lite@^1.0.30000905:
|
caniuse-lite@^1.0.30000918, caniuse-lite@^1.0.30000921:
|
||||||
version "1.0.30000907"
|
version "1.0.30000921"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000907.tgz#0b9899bde53fb1c30e214fb12402361e02ff5c42"
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000921.tgz#7a607c1623444b22351d834e093aedda3c42fbe8"
|
||||||
integrity sha512-No5sQ/OB2Nmka8MNOOM6nJx+Hxt6MQ6h7t7kgJFu9oTuwjykyKRSBP/+i/QAyFHxeHB+ddE0Da1CG5ihx9oehQ==
|
integrity sha512-Bu09ciy0lMWLgpYC77I0YGuI8eFRBPPzaSOYJK1jTI64txCphYCqnWbxJYjHABYVt/TYX/p3jNjLBR87u1Bfpw==
|
||||||
|
|
||||||
caseless@~0.12.0:
|
caseless@~0.12.0:
|
||||||
version "0.12.0"
|
version "0.12.0"
|
||||||
|
@ -2070,7 +2123,7 @@ chalk@^1.0.0, chalk@^1.1.3:
|
||||||
strip-ansi "^3.0.0"
|
strip-ansi "^3.0.0"
|
||||||
supports-color "^2.0.0"
|
supports-color "^2.0.0"
|
||||||
|
|
||||||
chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.2, chalk@^2.4.1:
|
chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1:
|
||||||
version "2.4.1"
|
version "2.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
|
||||||
integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==
|
integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==
|
||||||
|
@ -2580,6 +2633,13 @@ crypto-browserify@^3.11.0:
|
||||||
randombytes "^2.0.0"
|
randombytes "^2.0.0"
|
||||||
randomfill "^1.0.3"
|
randomfill "^1.0.3"
|
||||||
|
|
||||||
|
css-blank-pseudo@^0.1.4:
|
||||||
|
version "0.1.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5"
|
||||||
|
integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==
|
||||||
|
dependencies:
|
||||||
|
postcss "^7.0.5"
|
||||||
|
|
||||||
css-color-names@0.0.4, css-color-names@^0.0.4:
|
css-color-names@0.0.4, css-color-names@^0.0.4:
|
||||||
version "0.0.4"
|
version "0.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
|
resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
|
||||||
|
@ -2593,28 +2653,34 @@ css-declaration-sorter@^4.0.1:
|
||||||
postcss "^7.0.1"
|
postcss "^7.0.1"
|
||||||
timsort "^0.3.0"
|
timsort "^0.3.0"
|
||||||
|
|
||||||
css-loader@^1.0.1:
|
css-has-pseudo@^0.10.0:
|
||||||
version "1.0.1"
|
version "0.10.0"
|
||||||
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.1.tgz#6885bb5233b35ec47b006057da01cc640b6b79fe"
|
resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee"
|
||||||
integrity sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==
|
integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
babel-code-frame "^6.26.0"
|
postcss "^7.0.6"
|
||||||
css-selector-tokenizer "^0.7.0"
|
postcss-selector-parser "^5.0.0-rc.4"
|
||||||
icss-utils "^2.1.0"
|
|
||||||
|
css-loader@^2.0.1:
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.0.1.tgz#2e51a15449ab3f7195b7e1bc00a407460016a3b3"
|
||||||
|
integrity sha512-XIVwoIOzSFRVsafOKa060GJ/A70c0IP/C1oVPHEX4eHIFF39z0Jl7j8Kua1SUTiqWDupUnbY3/yQx9r7EUB35w==
|
||||||
|
dependencies:
|
||||||
|
icss-utils "^4.0.0"
|
||||||
loader-utils "^1.0.2"
|
loader-utils "^1.0.2"
|
||||||
lodash "^4.17.11"
|
lodash "^4.17.11"
|
||||||
postcss "^6.0.23"
|
postcss "^7.0.6"
|
||||||
postcss-modules-extract-imports "^1.2.0"
|
postcss-modules-extract-imports "^2.0.0"
|
||||||
postcss-modules-local-by-default "^1.2.0"
|
postcss-modules-local-by-default "^2.0.2"
|
||||||
postcss-modules-scope "^1.1.0"
|
postcss-modules-scope "^2.0.0"
|
||||||
postcss-modules-values "^1.3.0"
|
postcss-modules-values "^2.0.0"
|
||||||
postcss-value-parser "^3.3.0"
|
postcss-value-parser "^3.3.0"
|
||||||
source-list-map "^2.0.0"
|
schema-utils "^1.0.0"
|
||||||
|
|
||||||
css-prefers-color-scheme@^3.0.0:
|
css-prefers-color-scheme@^3.1.1:
|
||||||
version "3.0.0"
|
version "3.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.0.0.tgz#690f1eef52bff570791940e57d61b68ba9ed6d2a"
|
resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4"
|
||||||
integrity sha512-1+K66s3763YVIoXf7n9Qj+hZLy8+j5N3sDOW9NBkcvg++EhhfP3bSOhyFFytICaQBvPSgi6xBOXfMQJKq+a1LA==
|
integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==
|
||||||
dependencies:
|
dependencies:
|
||||||
postcss "^7.0.5"
|
postcss "^7.0.5"
|
||||||
|
|
||||||
|
@ -2673,10 +2739,10 @@ css-what@2.1:
|
||||||
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
|
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
|
||||||
integrity sha1-lGfQMsOM+u+58teVASUwYvh/ob0=
|
integrity sha1-lGfQMsOM+u+58teVASUwYvh/ob0=
|
||||||
|
|
||||||
cssdb@^4.2.0:
|
cssdb@^4.3.0:
|
||||||
version "4.2.0"
|
version "4.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.2.0.tgz#89623ec696121d0688080ccdcd4627c7e6c6ee0d"
|
resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.3.0.tgz#2e1229900616f80c66ff2d568ea2b4f92db1c78c"
|
||||||
integrity sha512-27CuM+rp1/HIH4hkiOvrRUjgv31WamWk7+XSGz7OP/uWR8EOMeXOh4Ncpa/Eq1eO/1eRhQx7HWj8KEbt4nKQBA==
|
integrity sha512-VHPES/+c9s+I0ryNj+PXvp84nz+ms843z/efpaEINwP/QfGsINL3gpLp5qjapzDNzNzbXxur8uxKxSXImrg4ag==
|
||||||
|
|
||||||
cssesc@^0.1.0:
|
cssesc@^0.1.0:
|
||||||
version "0.1.0"
|
version "0.1.0"
|
||||||
|
@ -3112,6 +3178,11 @@ electron-to-chromium@^1.3.82:
|
||||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.88.tgz#f36ab32634f49ef2b0fdc1e82e2d1cc17feb29e7"
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.88.tgz#f36ab32634f49ef2b0fdc1e82e2d1cc17feb29e7"
|
||||||
integrity sha512-UPV4NuQMKeUh1S0OWRvwg0PI8ASHN9kBC8yDTk1ROXLC85W5GnhTRu/MZu3Teqx3JjlQYuckuHYXSUSgtb3J+A==
|
integrity sha512-UPV4NuQMKeUh1S0OWRvwg0PI8ASHN9kBC8yDTk1ROXLC85W5GnhTRu/MZu3Teqx3JjlQYuckuHYXSUSgtb3J+A==
|
||||||
|
|
||||||
|
electron-to-chromium@^1.3.92:
|
||||||
|
version "1.3.94"
|
||||||
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.94.tgz#896dba14f6fefb431295b90543874925ee0cd46e"
|
||||||
|
integrity sha512-miQqXALb6eBD3OetCtg3UM5XTLMwHISux0l6mh14iiV5SE+qvftgOCXT9Vvp53fWaCLET4sfA/SmIMYHXkaNmw==
|
||||||
|
|
||||||
elliptic@^6.0.0:
|
elliptic@^6.0.0:
|
||||||
version "6.4.1"
|
version "6.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a"
|
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a"
|
||||||
|
@ -3432,10 +3503,10 @@ eslint-visitor-keys@^1.0.0:
|
||||||
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
||||||
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
|
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
|
||||||
|
|
||||||
eslint@^5.8.0:
|
eslint@^5.10.0:
|
||||||
version "5.9.0"
|
version "5.10.0"
|
||||||
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.9.0.tgz#b234b6d15ef84b5849c6de2af43195a2d59d408e"
|
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.10.0.tgz#24adcbe92bf5eb1fc2d2f2b1eebe0c5e0713903a"
|
||||||
integrity sha512-g4KWpPdqN0nth+goDNICNXGfJF7nNnepthp46CAlJoJtC5K/cLu3NgCM3AHu1CkJ5Hzt9V0Y0PBAO6Ay/gGb+w==
|
integrity sha512-HpqzC+BHULKlnPwWae9MaVZ5AXJKpkxCVXQHrFaRw3hbDj26V/9ArYM4Rr/SQ8pi6qUPLXSSXC4RBJlyq2Z2OQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/code-frame" "^7.0.0"
|
"@babel/code-frame" "^7.0.0"
|
||||||
ajv "^6.5.3"
|
ajv "^6.5.3"
|
||||||
|
@ -3446,7 +3517,7 @@ eslint@^5.8.0:
|
||||||
eslint-scope "^4.0.0"
|
eslint-scope "^4.0.0"
|
||||||
eslint-utils "^1.3.1"
|
eslint-utils "^1.3.1"
|
||||||
eslint-visitor-keys "^1.0.0"
|
eslint-visitor-keys "^1.0.0"
|
||||||
espree "^4.0.0"
|
espree "^5.0.0"
|
||||||
esquery "^1.0.1"
|
esquery "^1.0.1"
|
||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
file-entry-cache "^2.0.0"
|
file-entry-cache "^2.0.0"
|
||||||
|
@ -3456,7 +3527,6 @@ eslint@^5.8.0:
|
||||||
ignore "^4.0.6"
|
ignore "^4.0.6"
|
||||||
imurmurhash "^0.1.4"
|
imurmurhash "^0.1.4"
|
||||||
inquirer "^6.1.0"
|
inquirer "^6.1.0"
|
||||||
is-resolvable "^1.1.0"
|
|
||||||
js-yaml "^3.12.0"
|
js-yaml "^3.12.0"
|
||||||
json-stable-stringify-without-jsonify "^1.0.1"
|
json-stable-stringify-without-jsonify "^1.0.1"
|
||||||
levn "^0.3.0"
|
levn "^0.3.0"
|
||||||
|
@ -3476,10 +3546,10 @@ eslint@^5.8.0:
|
||||||
table "^5.0.2"
|
table "^5.0.2"
|
||||||
text-table "^0.2.0"
|
text-table "^0.2.0"
|
||||||
|
|
||||||
espree@^4.0.0:
|
espree@^5.0.0:
|
||||||
version "4.1.0"
|
version "5.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/espree/-/espree-4.1.0.tgz#728d5451e0fd156c04384a7ad89ed51ff54eb25f"
|
resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c"
|
||||||
integrity sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w==
|
integrity sha512-1MpUfwsdS9MMoN7ZXqAr9e9UKdVHDcvrJpyx7mm1WuQlx/ygErEQBzgi5Nh5qBHIoYweprhtMkTCb9GhcAIcsA==
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn "^6.0.2"
|
acorn "^6.0.2"
|
||||||
acorn-jsx "^5.0.0"
|
acorn-jsx "^5.0.0"
|
||||||
|
@ -3984,18 +4054,18 @@ form-data@~2.3.1:
|
||||||
combined-stream "1.0.6"
|
combined-stream "1.0.6"
|
||||||
mime-types "^2.1.12"
|
mime-types "^2.1.12"
|
||||||
|
|
||||||
formik@^1.3.1:
|
formik@^1.4.1:
|
||||||
version "1.3.2"
|
version "1.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/formik/-/formik-1.3.2.tgz#f97b9e71084db4a51f7bde798584c094b3696738"
|
resolved "https://registry.yarnpkg.com/formik/-/formik-1.4.1.tgz#6fb3d18c4fb59f70503734f40afd91dea4219f72"
|
||||||
integrity sha512-WzKX8MGfSJTBF97oDDeP2meb2/I1bi1dLdkICmUfPB2KJ9mcdBOmsOPY8cE1cfV25ML3DzLomYsUezH+yedpvQ==
|
integrity sha512-1pjcg65Pn4fuOgQv4cQOn9wDjCQ6f2J1QONDQaP4GfaiRYN/pQx2xtoyGo9ibNr/zR/cmayr1ew7EFaeAPLvsA==
|
||||||
dependencies:
|
dependencies:
|
||||||
create-react-context "^0.2.2"
|
create-react-context "^0.2.2"
|
||||||
deepmerge "^2.1.1"
|
deepmerge "^2.1.1"
|
||||||
hoist-non-react-statics "^2.5.5"
|
hoist-non-react-statics "^2.5.5"
|
||||||
lodash.clonedeep "^4.5.0"
|
lodash "^4.17.11"
|
||||||
lodash.topath "4.5.2"
|
lodash-es "^4.17.11"
|
||||||
prop-types "^15.6.1"
|
prop-types "^15.6.1"
|
||||||
react-fast-compare "^1.0.0"
|
react-fast-compare "^2.0.1"
|
||||||
tslib "^1.9.3"
|
tslib "^1.9.3"
|
||||||
warning "^3.0.0"
|
warning "^3.0.0"
|
||||||
|
|
||||||
|
@ -4679,12 +4749,12 @@ icss-replace-symbols@^1.1.0:
|
||||||
resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
|
resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
|
||||||
integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
|
integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
|
||||||
|
|
||||||
icss-utils@^2.1.0:
|
icss-utils@^4.0.0:
|
||||||
version "2.1.0"
|
version "4.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962"
|
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.0.0.tgz#d52cf4bcdcfa1c45c2dbefb4ffdf6b00ef608098"
|
||||||
integrity sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=
|
integrity sha512-bA/xGiwWM17qjllIs9X/y0EjsB7e0AV08F3OL8UPsoNkNRibIuu8f1eKTnQ8QO1DteKKTxTUAn+IEWUToIwGOA==
|
||||||
dependencies:
|
dependencies:
|
||||||
postcss "^6.0.1"
|
postcss "^7.0.5"
|
||||||
|
|
||||||
ieee754@^1.1.4:
|
ieee754@^1.1.4:
|
||||||
version "1.1.12"
|
version "1.1.12"
|
||||||
|
@ -4708,10 +4778,10 @@ ignore@^4.0.6:
|
||||||
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
||||||
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
|
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
|
||||||
|
|
||||||
immer@^1.7.3:
|
immer@^1.9.2:
|
||||||
version "1.8.0"
|
version "1.9.3"
|
||||||
resolved "https://registry.yarnpkg.com/immer/-/immer-1.8.0.tgz#afa8393996a1f3f5255019e7d10c29d42dd95225"
|
resolved "https://registry.yarnpkg.com/immer/-/immer-1.9.3.tgz#e88f8cbea730d2cde0f5e7e763000a8608bccdae"
|
||||||
integrity sha512-zOox8DNAunPeQgKwbAiwEUAHhZXtMPZo7VZ7m7h9cpQL1I35bAeaxMfwYyLEIt6RZUelFfsOBfG1GJu/iQNgxw==
|
integrity sha512-bUyz3fOHGn82V7h4oVgJGmFglZt53JWwSyVNAT4sO0d7IovHLwLuHbh14uYKY0tewFoDcEdiQW7HuL0NsRVziw==
|
||||||
|
|
||||||
import-cwd@^2.0.0:
|
import-cwd@^2.0.0:
|
||||||
version "2.1.0"
|
version "2.1.0"
|
||||||
|
@ -5104,7 +5174,7 @@ is-relative@^1.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
is-unc-path "^1.0.0"
|
is-unc-path "^1.0.0"
|
||||||
|
|
||||||
is-resolvable@^1.0.0, is-resolvable@^1.1.0:
|
is-resolvable@^1.0.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
||||||
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
|
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
|
||||||
|
@ -5930,6 +6000,11 @@ locate-path@^3.0.0:
|
||||||
p-locate "^3.0.0"
|
p-locate "^3.0.0"
|
||||||
path-exists "^3.0.0"
|
path-exists "^3.0.0"
|
||||||
|
|
||||||
|
lodash-es@^4.17.11:
|
||||||
|
version "4.17.11"
|
||||||
|
resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.11.tgz#145ab4a7ac5c5e52a3531fb4f310255a152b4be0"
|
||||||
|
integrity sha512-DHb1ub+rMjjrxqlB3H56/6MXtm1lSksDp2rA2cNWjG8mlDUYFhUj3Di2Zn5IwSU87xLv8tNIQ7sSwE/YOX/D/Q==
|
||||||
|
|
||||||
lodash._basecopy@^3.0.0:
|
lodash._basecopy@^3.0.0:
|
||||||
version "3.0.1"
|
version "3.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
|
resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
|
||||||
|
@ -5975,11 +6050,6 @@ lodash._root@^3.0.0:
|
||||||
resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692"
|
resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692"
|
||||||
integrity sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=
|
integrity sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=
|
||||||
|
|
||||||
lodash.clonedeep@^4.5.0:
|
|
||||||
version "4.5.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
|
|
||||||
integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
|
|
||||||
|
|
||||||
lodash.debounce@^4.0.8:
|
lodash.debounce@^4.0.8:
|
||||||
version "4.0.8"
|
version "4.0.8"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
||||||
|
@ -6069,11 +6139,6 @@ lodash.templatesettings@^4.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
lodash._reinterpolate "~3.0.0"
|
lodash._reinterpolate "~3.0.0"
|
||||||
|
|
||||||
lodash.topath@4.5.2:
|
|
||||||
version "4.5.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.topath/-/lodash.topath-4.5.2.tgz#3616351f3bba61994a0931989660bd03254fd009"
|
|
||||||
integrity sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=
|
|
||||||
|
|
||||||
lodash.uniq@^4.5.0:
|
lodash.uniq@^4.5.0:
|
||||||
version "4.5.0"
|
version "4.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
||||||
|
@ -6313,10 +6378,10 @@ min-document@^2.19.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
dom-walk "^0.1.0"
|
dom-walk "^0.1.0"
|
||||||
|
|
||||||
mini-css-extract-plugin@^0.4.4:
|
mini-css-extract-plugin@^0.5.0:
|
||||||
version "0.4.5"
|
version "0.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.5.tgz#c99e9e78d54f3fa775633aee5933aeaa4e80719a"
|
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.5.0.tgz#ac0059b02b9692515a637115b0cc9fed3a35c7b0"
|
||||||
integrity sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==
|
integrity sha512-IuaLjruM0vMKhUUT51fQdQzBYTX49dLj8w68ALEAe2A4iYNpIC4eMac67mt3NzycvjOlf07/kYxJDc0RTl1Wqw==
|
||||||
dependencies:
|
dependencies:
|
||||||
loader-utils "^1.1.0"
|
loader-utils "^1.1.0"
|
||||||
schema-utils "^1.0.0"
|
schema-utils "^1.0.0"
|
||||||
|
@ -6599,6 +6664,13 @@ node-releases@^1.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
semver "^5.3.0"
|
semver "^5.3.0"
|
||||||
|
|
||||||
|
node-releases@^1.1.1:
|
||||||
|
version "1.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.1.tgz#8fff8aea1cfcad1fb4205f805149054fbf73cafd"
|
||||||
|
integrity sha512-2UXrBr6gvaebo5TNF84C66qyJJ6r0kxBObgZIDX3D3/mt1ADKiHux3NJPWisq0wxvJJdkjECH+9IIKYViKj71Q==
|
||||||
|
dependencies:
|
||||||
|
semver "^5.3.0"
|
||||||
|
|
||||||
nopt@^4.0.1:
|
nopt@^4.0.1:
|
||||||
version "4.0.1"
|
version "4.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
||||||
|
@ -7499,36 +7571,37 @@ postcss-minify-selectors@^4.0.1:
|
||||||
postcss "^7.0.0"
|
postcss "^7.0.0"
|
||||||
postcss-selector-parser "^3.0.0"
|
postcss-selector-parser "^3.0.0"
|
||||||
|
|
||||||
postcss-modules-extract-imports@^1.2.0:
|
postcss-modules-extract-imports@^2.0.0:
|
||||||
version "1.2.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85"
|
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
|
||||||
integrity sha1-ZhQOzs447wa/DT41XWm/WdFB6oU=
|
integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
postcss "^6.0.1"
|
postcss "^7.0.5"
|
||||||
|
|
||||||
postcss-modules-local-by-default@^1.2.0:
|
postcss-modules-local-by-default@^2.0.2:
|
||||||
version "1.2.0"
|
version "2.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
|
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.2.tgz#edfd6a874d326b52daaa3014bfc11e9e4b0cfafc"
|
||||||
integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=
|
integrity sha512-qghHvHeydUBQ3EQic5NjYryZ5jzXzAYxHR7lZQlCNmjGpJtINRyX/ELnh/7fxBBmHNkEzNkq2l5cV6trfidYng==
|
||||||
dependencies:
|
dependencies:
|
||||||
css-selector-tokenizer "^0.7.0"
|
css-selector-tokenizer "^0.7.0"
|
||||||
postcss "^6.0.1"
|
postcss "^7.0.6"
|
||||||
|
postcss-value-parser "^3.3.1"
|
||||||
|
|
||||||
postcss-modules-scope@^1.1.0:
|
postcss-modules-scope@^2.0.0:
|
||||||
version "1.1.0"
|
version "2.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
|
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.0.1.tgz#2c0f2394cde4cd09147db054c68917e38f6d43a4"
|
||||||
integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A=
|
integrity sha512-7+6k9c3/AuZ5c596LJx9n923A/j3nF3ormewYBF1RrIQvjvjXe1xE8V8A1KFyFwXbvnshT6FBZFX0k/F1igneg==
|
||||||
dependencies:
|
dependencies:
|
||||||
css-selector-tokenizer "^0.7.0"
|
css-selector-tokenizer "^0.7.0"
|
||||||
postcss "^6.0.1"
|
postcss "^7.0.6"
|
||||||
|
|
||||||
postcss-modules-values@^1.3.0:
|
postcss-modules-values@^2.0.0:
|
||||||
version "1.3.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
|
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64"
|
||||||
integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=
|
integrity sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w==
|
||||||
dependencies:
|
dependencies:
|
||||||
icss-replace-symbols "^1.1.0"
|
icss-replace-symbols "^1.1.0"
|
||||||
postcss "^6.0.1"
|
postcss "^7.0.6"
|
||||||
|
|
||||||
postcss-nesting@^7.0.0:
|
postcss-nesting@^7.0.0:
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
|
@ -7649,17 +7722,19 @@ postcss-place@^4.0.1:
|
||||||
postcss "^7.0.2"
|
postcss "^7.0.2"
|
||||||
postcss-values-parser "^2.0.0"
|
postcss-values-parser "^2.0.0"
|
||||||
|
|
||||||
postcss-preset-env@^6.4.0:
|
postcss-preset-env@^6.5.0:
|
||||||
version "6.4.0"
|
version "6.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.4.0.tgz#f5466550b177454fc98ca5054b4478e8e5caa714"
|
resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.5.0.tgz#a14b8f6e748b2a3a4a02a56f36c390f30073b9e1"
|
||||||
integrity sha512-0jCyY/T9kWv1i2abt5DOOoh0uHJia0HUTWMV72Tw75tGx3pH628oSS8WBMCE5L1Ou3LvoAl9pe07u8g/afvc3A==
|
integrity sha512-RdsIrYJd9p9AouQoJ8dFP5ksBJEIegA4q4WzJDih8nevz3cZyIP/q1Eaw3pTVpUAu3n7Y32YmvAW3X07mSRGkw==
|
||||||
dependencies:
|
dependencies:
|
||||||
autoprefixer "^9.3.1"
|
autoprefixer "^9.4.2"
|
||||||
browserslist "^4.3.4"
|
browserslist "^4.3.5"
|
||||||
caniuse-lite "^1.0.30000905"
|
caniuse-lite "^1.0.30000918"
|
||||||
css-prefers-color-scheme "^3.0.0"
|
css-blank-pseudo "^0.1.4"
|
||||||
cssdb "^4.2.0"
|
css-has-pseudo "^0.10.0"
|
||||||
postcss "^7.0.5"
|
css-prefers-color-scheme "^3.1.1"
|
||||||
|
cssdb "^4.3.0"
|
||||||
|
postcss "^7.0.6"
|
||||||
postcss-attribute-case-insensitive "^4.0.0"
|
postcss-attribute-case-insensitive "^4.0.0"
|
||||||
postcss-color-functional-notation "^2.0.1"
|
postcss-color-functional-notation "^2.0.1"
|
||||||
postcss-color-gray "^5.0.0"
|
postcss-color-gray "^5.0.0"
|
||||||
|
@ -7806,24 +7881,6 @@ postcss@^6.0.0:
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
supports-color "^5.4.0"
|
supports-color "^5.4.0"
|
||||||
|
|
||||||
postcss@^6.0.1:
|
|
||||||
version "6.0.21"
|
|
||||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.21.tgz#8265662694eddf9e9a5960db6da33c39e4cd069d"
|
|
||||||
integrity sha512-y/bKfbQz2Nn/QBC08bwvYUxEFOVGfPIUOTsJ2CK5inzlXW9SdYR1x4pEsG9blRAF/PX+wRNdOah+gx/hv4q7dw==
|
|
||||||
dependencies:
|
|
||||||
chalk "^2.3.2"
|
|
||||||
source-map "^0.6.1"
|
|
||||||
supports-color "^5.3.0"
|
|
||||||
|
|
||||||
postcss@^6.0.23:
|
|
||||||
version "6.0.23"
|
|
||||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
|
|
||||||
integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
|
|
||||||
dependencies:
|
|
||||||
chalk "^2.4.1"
|
|
||||||
source-map "^0.6.1"
|
|
||||||
supports-color "^5.4.0"
|
|
||||||
|
|
||||||
postcss@^7.0.0:
|
postcss@^7.0.0:
|
||||||
version "7.0.2"
|
version "7.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.2.tgz#7b5a109de356804e27f95a960bef0e4d5bc9bb18"
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.2.tgz#7b5a109de356804e27f95a960bef0e4d5bc9bb18"
|
||||||
|
@ -7842,6 +7899,15 @@ postcss@^7.0.1, postcss@^7.0.2, postcss@^7.0.5:
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
supports-color "^5.5.0"
|
supports-color "^5.5.0"
|
||||||
|
|
||||||
|
postcss@^7.0.6:
|
||||||
|
version "7.0.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.7.tgz#2754d073f77acb4ef08f1235c36c5721a7201614"
|
||||||
|
integrity sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==
|
||||||
|
dependencies:
|
||||||
|
chalk "^2.4.1"
|
||||||
|
source-map "^0.6.1"
|
||||||
|
supports-color "^5.5.0"
|
||||||
|
|
||||||
prelude-ls@~1.1.2:
|
prelude-ls@~1.1.2:
|
||||||
version "1.1.2"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
||||||
|
@ -8110,15 +8176,15 @@ react-dom@^16.7.0-alpha.0:
|
||||||
prop-types "^15.6.2"
|
prop-types "^15.6.2"
|
||||||
scheduler "^0.12.0-alpha.2"
|
scheduler "^0.12.0-alpha.2"
|
||||||
|
|
||||||
react-fast-compare@^1.0.0:
|
react-fast-compare@^2.0.1:
|
||||||
version "1.0.0"
|
version "2.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-1.0.0.tgz#813a039155e49b43ceffe99528fe5e9d97a6c938"
|
resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9"
|
||||||
integrity sha512-dcQpdWr62flXQJuM8/bVEY5/10ad2SYBUafp8H4q4WHR3fTA/MMlp8mpzX12I0CCoEJc1P6QdiMg7U+7lFS6Rw==
|
integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==
|
||||||
|
|
||||||
react-hot-loader@^4.4.0:
|
react-hot-loader@^4.6.2:
|
||||||
version "4.5.1"
|
version "4.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.5.1.tgz#4a9cf136542b1db4f948ac74b31fa16a411ceebb"
|
resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.6.2.tgz#9844b76a7bf4b6fdd45dd91f7e757ddf3aad5289"
|
||||||
integrity sha512-aqw8F0ZTCakfTXTj1n3F9vXfEKWWHEpQ3Mq9YmYvrNdHvey5RfkSGv7rz4r9TXjqVLt2mpItqydJQdhboZ/acQ==
|
integrity sha512-9XxH/t9jblu4vUDgxHcMLwvm4aOhaoxazzTP9vwjTVzOgU987T4rDYA85XrlmbDan9WkD+h/iVHOK8F8UnQsDg==
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-levenshtein "^2.0.6"
|
fast-levenshtein "^2.0.6"
|
||||||
global "^4.3.0"
|
global "^4.3.0"
|
||||||
|
|
Loading…
Reference in New Issue