Fix recaptcha handling during login & password reset flows; closes #2064
This commit is contained in:
parent
dd381f65a9
commit
b52fc0b4d9
7 changed files with 131 additions and 136 deletions
|
@ -4,7 +4,6 @@
|
||||||
"@fortawesome/fontawesome-svg-core": "1.2.19",
|
"@fortawesome/fontawesome-svg-core": "1.2.19",
|
||||||
"@fortawesome/free-solid-svg-icons": "^5.9.0",
|
"@fortawesome/free-solid-svg-icons": "^5.9.0",
|
||||||
"@fortawesome/react-fontawesome": "0.1.4",
|
"@fortawesome/react-fontawesome": "0.1.4",
|
||||||
"@types/react-google-recaptcha": "^1.1.1",
|
|
||||||
"axios": "^0.19.2",
|
"axios": "^0.19.2",
|
||||||
"ayu-ace": "^2.0.4",
|
"ayu-ace": "^2.0.4",
|
||||||
"brace": "^0.11.1",
|
"brace": "^0.11.1",
|
||||||
|
@ -23,15 +22,15 @@
|
||||||
"path": "^0.12.7",
|
"path": "^0.12.7",
|
||||||
"query-string": "^6.7.0",
|
"query-string": "^6.7.0",
|
||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
"react-ga": "^3.1.2",
|
|
||||||
"react-dom": "npm:@hot-loader/react-dom",
|
"react-dom": "npm:@hot-loader/react-dom",
|
||||||
"react-fast-compare": "^3.2.0",
|
"react-fast-compare": "^3.2.0",
|
||||||
"react-google-recaptcha": "^2.0.1",
|
"react-ga": "^3.1.2",
|
||||||
"react-hot-loader": "^4.12.21",
|
"react-hot-loader": "^4.12.21",
|
||||||
"react-i18next": "^11.2.1",
|
"react-i18next": "^11.2.1",
|
||||||
"react-redux": "^7.1.0",
|
"react-redux": "^7.1.0",
|
||||||
"react-router-dom": "^5.1.2",
|
"react-router-dom": "^5.1.2",
|
||||||
"react-transition-group": "^4.4.1",
|
"react-transition-group": "^4.4.1",
|
||||||
|
"reaptcha": "^1.7.2",
|
||||||
"sockette": "^2.0.6",
|
"sockette": "^2.0.6",
|
||||||
"styled-components": "^5.1.1",
|
"styled-components": "^5.1.1",
|
||||||
"styled-components-breakpoint": "^3.0.0-preview.20",
|
"styled-components-breakpoint": "^3.0.0-preview.20",
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import http from '@/api/http';
|
import http from '@/api/http';
|
||||||
|
|
||||||
export default (email: string): Promise<string> => {
|
export default (email: string, recaptchaData?: string): Promise<string> => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
http.post('/auth/password', { email })
|
http.post('/auth/password', { email, 'g-recaptcha-response': recaptchaData })
|
||||||
.then(response => resolve(response.data.status || ''))
|
.then(response => resolve(response.data.status || ''))
|
||||||
.catch(reject);
|
.catch(reject);
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,27 +1,40 @@
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
|
import { useRef, useState } from 'react';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import requestPasswordResetEmail from '@/api/auth/requestPasswordResetEmail';
|
import requestPasswordResetEmail from '@/api/auth/requestPasswordResetEmail';
|
||||||
import { httpErrorToHuman } from '@/api/http';
|
import { httpErrorToHuman } from '@/api/http';
|
||||||
import LoginFormContainer from '@/components/auth/LoginFormContainer';
|
import LoginFormContainer from '@/components/auth/LoginFormContainer';
|
||||||
import { Actions, useStoreActions } from 'easy-peasy';
|
import { useStoreState } from 'easy-peasy';
|
||||||
import { ApplicationStore } from '@/state';
|
|
||||||
import Field from '@/components/elements/Field';
|
import Field from '@/components/elements/Field';
|
||||||
import { Formik, FormikHelpers } from 'formik';
|
import { Formik, FormikHelpers } from 'formik';
|
||||||
import { object, string } from 'yup';
|
import { object, string } from 'yup';
|
||||||
import tw from 'twin.macro';
|
import tw from 'twin.macro';
|
||||||
import Button from '@/components/elements/Button';
|
import Button from '@/components/elements/Button';
|
||||||
|
import Reaptcha from 'reaptcha';
|
||||||
|
import useFlash from '@/plugins/useFlash';
|
||||||
|
|
||||||
interface Values {
|
interface Values {
|
||||||
email: string;
|
email: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
const { clearFlashes, addFlash } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
|
const ref = useRef<Reaptcha>(null);
|
||||||
|
const [ token, setToken ] = useState('');
|
||||||
|
|
||||||
|
const { clearFlashes, addFlash } = useFlash();
|
||||||
|
const { enabled: recaptchaEnabled, siteKey } = useStoreState(state => state.settings.data!.recaptcha);
|
||||||
|
|
||||||
const handleSubmission = ({ email }: Values, { setSubmitting, resetForm }: FormikHelpers<Values>) => {
|
const handleSubmission = ({ email }: Values, { setSubmitting, resetForm }: FormikHelpers<Values>) => {
|
||||||
setSubmitting(true);
|
|
||||||
clearFlashes();
|
clearFlashes();
|
||||||
requestPasswordResetEmail(email)
|
|
||||||
|
// If there is no token in the state yet, request the token and then abort this submit request
|
||||||
|
// since it will be re-submitted when the recaptcha data is returned by the component.
|
||||||
|
if (recaptchaEnabled && !token) {
|
||||||
|
ref.current!.execute().catch(error => console.error(error));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
requestPasswordResetEmail(email, token)
|
||||||
.then(response => {
|
.then(response => {
|
||||||
resetForm();
|
resetForm();
|
||||||
addFlash({ type: 'success', title: 'Success', message: response });
|
addFlash({ type: 'success', title: 'Success', message: response });
|
||||||
|
@ -42,7 +55,7 @@ export default () => {
|
||||||
.required('A valid email address must be provided to continue.'),
|
.required('A valid email address must be provided to continue.'),
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
{({ isSubmitting }) => (
|
{({ isSubmitting, setSubmitting, submitForm }) => (
|
||||||
<LoginFormContainer
|
<LoginFormContainer
|
||||||
title={'Request Password Reset'}
|
title={'Request Password Reset'}
|
||||||
css={tw`w-full flex`}
|
css={tw`w-full flex`}
|
||||||
|
@ -64,6 +77,21 @@ export default () => {
|
||||||
Send Email
|
Send Email
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
{recaptchaEnabled &&
|
||||||
|
<Reaptcha
|
||||||
|
ref={ref}
|
||||||
|
size={'invisible'}
|
||||||
|
sitekey={siteKey || '_invalid_key'}
|
||||||
|
onVerify={response => {
|
||||||
|
setToken(response);
|
||||||
|
submitForm();
|
||||||
|
}}
|
||||||
|
onExpire={() => {
|
||||||
|
setSubmitting(false);
|
||||||
|
setToken('');
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
}
|
||||||
<div css={tw`mt-6 text-center`}>
|
<div css={tw`mt-6 text-center`}>
|
||||||
<Link
|
<Link
|
||||||
type={'button'}
|
type={'button'}
|
||||||
|
|
|
@ -1,105 +1,39 @@
|
||||||
import React, { useRef } from 'react';
|
import React, { useRef, useState } from 'react';
|
||||||
import { Link, RouteComponentProps } from 'react-router-dom';
|
import { Link, RouteComponentProps } from 'react-router-dom';
|
||||||
import login, { LoginData } from '@/api/auth/login';
|
import login from '@/api/auth/login';
|
||||||
import LoginFormContainer from '@/components/auth/LoginFormContainer';
|
import LoginFormContainer from '@/components/auth/LoginFormContainer';
|
||||||
import { ActionCreator, Actions, useStoreActions, useStoreState } from 'easy-peasy';
|
import { useStoreState } from 'easy-peasy';
|
||||||
import { ApplicationStore } from '@/state';
|
import { Formik, FormikHelpers } from 'formik';
|
||||||
import { FormikProps, withFormik } from 'formik';
|
|
||||||
import { object, string } from 'yup';
|
import { object, string } from 'yup';
|
||||||
import Field from '@/components/elements/Field';
|
import Field from '@/components/elements/Field';
|
||||||
import { httpErrorToHuman } from '@/api/http';
|
|
||||||
import { FlashMessage } from '@/state/flashes';
|
|
||||||
import ReCAPTCHA from 'react-google-recaptcha';
|
|
||||||
import tw from 'twin.macro';
|
import tw from 'twin.macro';
|
||||||
import Button from '@/components/elements/Button';
|
import Button from '@/components/elements/Button';
|
||||||
|
import Reaptcha from 'reaptcha';
|
||||||
|
import useFlash from '@/plugins/useFlash';
|
||||||
|
|
||||||
type OwnProps = RouteComponentProps & {
|
interface Values {
|
||||||
clearFlashes: ActionCreator<void>;
|
username: string;
|
||||||
addFlash: ActionCreator<FlashMessage>;
|
password: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const LoginContainer = ({ isSubmitting, setFieldValue, values, submitForm, handleSubmit }: OwnProps & FormikProps<LoginData>) => {
|
const LoginContainer = ({ history }: RouteComponentProps) => {
|
||||||
const ref = useRef<ReCAPTCHA | null>(null);
|
const ref = useRef<Reaptcha>(null);
|
||||||
const { enabled: recaptchaEnabled, siteKey } = useStoreState<ApplicationStore, any>(state => state.settings.data!.recaptcha);
|
const [ token, setToken ] = useState('');
|
||||||
|
|
||||||
const submit = (e: React.FormEvent<HTMLFormElement>) => {
|
const { clearFlashes, clearAndAddHttpError } = useFlash();
|
||||||
e.preventDefault();
|
const { enabled: recaptchaEnabled, siteKey } = useStoreState(state => state.settings.data!.recaptcha);
|
||||||
|
|
||||||
if (ref.current && !values.recaptchaData) {
|
const onSubmit = (values: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
||||||
return ref.current.execute();
|
clearFlashes();
|
||||||
|
|
||||||
|
// If there is no token in the state yet, request the token and then abort this submit request
|
||||||
|
// since it will be re-submitted when the recaptcha data is returned by the component.
|
||||||
|
if (recaptchaEnabled && !token) {
|
||||||
|
ref.current!.execute().catch(error => console.error(error));
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
handleSubmit(e);
|
login({ ...values, recaptchaData: token })
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<React.Fragment>
|
|
||||||
{ref.current && ref.current.render()}
|
|
||||||
<LoginFormContainer title={'Login to Continue'} css={tw`w-full flex`} onSubmit={submit}>
|
|
||||||
<Field
|
|
||||||
type={'text'}
|
|
||||||
label={'Username or Email'}
|
|
||||||
id={'username'}
|
|
||||||
name={'username'}
|
|
||||||
light
|
|
||||||
/>
|
|
||||||
<div css={tw`mt-6`}>
|
|
||||||
<Field
|
|
||||||
type={'password'}
|
|
||||||
label={'Password'}
|
|
||||||
id={'password'}
|
|
||||||
name={'password'}
|
|
||||||
light
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div css={tw`mt-6`}>
|
|
||||||
<Button type={'submit'} size={'xlarge'} isLoading={isSubmitting}>
|
|
||||||
Login
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
{recaptchaEnabled &&
|
|
||||||
<ReCAPTCHA
|
|
||||||
ref={ref}
|
|
||||||
size={'invisible'}
|
|
||||||
sitekey={siteKey || '_invalid_key'}
|
|
||||||
onChange={token => {
|
|
||||||
ref.current && ref.current.reset();
|
|
||||||
setFieldValue('recaptchaData', token);
|
|
||||||
submitForm();
|
|
||||||
}}
|
|
||||||
onExpired={() => setFieldValue('recaptchaData', null)}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
<div css={tw`mt-6 text-center`}>
|
|
||||||
<Link
|
|
||||||
to={'/auth/password'}
|
|
||||||
css={tw`text-xs text-neutral-500 tracking-wide no-underline uppercase hover:text-neutral-600`}
|
|
||||||
>
|
|
||||||
Forgot password?
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
</LoginFormContainer>
|
|
||||||
</React.Fragment>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const EnhancedForm = withFormik<OwnProps, LoginData>({
|
|
||||||
displayName: 'LoginContainerForm',
|
|
||||||
|
|
||||||
mapPropsToValues: () => ({
|
|
||||||
username: '',
|
|
||||||
password: '',
|
|
||||||
recaptchaData: null,
|
|
||||||
}),
|
|
||||||
|
|
||||||
validationSchema: () => object().shape({
|
|
||||||
username: string().required('A username or email must be provided.'),
|
|
||||||
password: string().required('Please enter your account password.'),
|
|
||||||
}),
|
|
||||||
|
|
||||||
handleSubmit: (values, { props, setFieldValue, setSubmitting }) => {
|
|
||||||
props.clearFlashes();
|
|
||||||
login(values)
|
|
||||||
.then(response => {
|
.then(response => {
|
||||||
if (response.complete) {
|
if (response.complete) {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
|
@ -107,26 +41,75 @@ const EnhancedForm = withFormik<OwnProps, LoginData>({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
props.history.replace('/auth/login/checkpoint', { token: response.confirmationToken });
|
history.replace('/auth/login/checkpoint', { token: response.confirmationToken });
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
|
|
||||||
setSubmitting(false);
|
setSubmitting(false);
|
||||||
setFieldValue('recaptchaData', null);
|
clearAndAddHttpError({ error });
|
||||||
props.addFlash({ type: 'error', title: 'Error', message: httpErrorToHuman(error) });
|
|
||||||
});
|
});
|
||||||
},
|
};
|
||||||
})(LoginContainer);
|
|
||||||
|
|
||||||
export default (props: RouteComponentProps) => {
|
|
||||||
const { clearFlashes, addFlash } = useStoreActions((actions: Actions<ApplicationStore>) => actions.flashes);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<EnhancedForm
|
<Formik
|
||||||
{...props}
|
onSubmit={onSubmit}
|
||||||
addFlash={addFlash}
|
initialValues={{ username: '', password: '' }}
|
||||||
clearFlashes={clearFlashes}
|
validationSchema={object().shape({
|
||||||
/>
|
username: string().required('A username or email must be provided.'),
|
||||||
|
password: string().required('Please enter your account password.'),
|
||||||
|
})}
|
||||||
|
>
|
||||||
|
{({ isSubmitting, setSubmitting, submitForm }) => (
|
||||||
|
<LoginFormContainer title={'Login to Continue'} css={tw`w-full flex`}>
|
||||||
|
<Field
|
||||||
|
type={'text'}
|
||||||
|
label={'Username or Email'}
|
||||||
|
id={'username'}
|
||||||
|
name={'username'}
|
||||||
|
light
|
||||||
|
/>
|
||||||
|
<div css={tw`mt-6`}>
|
||||||
|
<Field
|
||||||
|
type={'password'}
|
||||||
|
label={'Password'}
|
||||||
|
id={'password'}
|
||||||
|
name={'password'}
|
||||||
|
light
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div css={tw`mt-6`}>
|
||||||
|
<Button type={'submit'} size={'xlarge'} isLoading={isSubmitting}>
|
||||||
|
Login
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
{recaptchaEnabled &&
|
||||||
|
<Reaptcha
|
||||||
|
ref={ref}
|
||||||
|
size={'invisible'}
|
||||||
|
sitekey={siteKey || '_invalid_key'}
|
||||||
|
onVerify={response => {
|
||||||
|
setToken(response);
|
||||||
|
submitForm();
|
||||||
|
}}
|
||||||
|
onExpire={() => {
|
||||||
|
setSubmitting(false);
|
||||||
|
setToken('');
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
<div css={tw`mt-6 text-center`}>
|
||||||
|
<Link
|
||||||
|
to={'/auth/password'}
|
||||||
|
css={tw`text-xs text-neutral-500 tracking-wide no-underline uppercase hover:text-neutral-600`}
|
||||||
|
>
|
||||||
|
Forgot password?
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</LoginFormContainer>
|
||||||
|
)}
|
||||||
|
</Formik>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export default LoginContainer;
|
||||||
|
|
|
@ -6,7 +6,7 @@ export interface FlashStore {
|
||||||
items: FlashMessage[];
|
items: FlashMessage[];
|
||||||
addFlash: Action<FlashStore, FlashMessage>;
|
addFlash: Action<FlashStore, FlashMessage>;
|
||||||
addError: Action<FlashStore, { message: string; key?: string }>;
|
addError: Action<FlashStore, { message: string; key?: string }>;
|
||||||
clearAndAddHttpError: Action<FlashStore, { error: any, key: string }>;
|
clearAndAddHttpError: Action<FlashStore, { error: any, key?: string }>;
|
||||||
clearFlashes: Action<FlashStore, string | void>;
|
clearFlashes: Action<FlashStore, string | void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ Route::group(['middleware' => 'guest'], function () {
|
||||||
// Password reset routes. This endpoint is hit after going through
|
// Password reset routes. This endpoint is hit after going through
|
||||||
// the forgot password routes to acquire a token (or after an account
|
// the forgot password routes to acquire a token (or after an account
|
||||||
// is created).
|
// is created).
|
||||||
Route::post('/password/reset', 'ResetPasswordController')->name('auth.reset-password')->middleware('recaptcha');
|
Route::post('/password/reset', 'ResetPasswordController')->name('auth.reset-password');
|
||||||
|
|
||||||
// Catch any other combinations of routes and pass them off to the Vuejs component.
|
// Catch any other combinations of routes and pass them off to the Vuejs component.
|
||||||
Route::fallback('LoginController@index');
|
Route::fallback('LoginController@index');
|
||||||
|
|
27
yarn.lock
27
yarn.lock
|
@ -1013,12 +1013,6 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/react" "*"
|
"@types/react" "*"
|
||||||
|
|
||||||
"@types/react-google-recaptcha@^1.1.1":
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/react-google-recaptcha/-/react-google-recaptcha-1.1.1.tgz#7dd2a4dd15d38d8059a2753cd4a7e3485c9bb3ea"
|
|
||||||
dependencies:
|
|
||||||
"@types/react" "*"
|
|
||||||
|
|
||||||
"@types/react-native@*":
|
"@types/react-native@*":
|
||||||
version "0.60.2"
|
version "0.60.2"
|
||||||
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.60.2.tgz#2dca78481a904419c2a5907288dd97d1090c6e3c"
|
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.60.2.tgz#2dca78481a904419c2a5907288dd97d1090c6e3c"
|
||||||
|
@ -5399,7 +5393,7 @@ promise-inflight@^1.0.1:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
|
resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
|
||||||
|
|
||||||
prop-types@^15.5.0, prop-types@^15.5.10, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
|
prop-types@^15.5.10, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
|
||||||
version "15.7.2"
|
version "15.7.2"
|
||||||
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
|
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
|
||||||
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
|
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
|
||||||
|
@ -5544,13 +5538,6 @@ rc@^1.1.7:
|
||||||
minimist "^1.2.0"
|
minimist "^1.2.0"
|
||||||
strip-json-comments "~2.0.1"
|
strip-json-comments "~2.0.1"
|
||||||
|
|
||||||
react-async-script@^1.1.1:
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/react-async-script/-/react-async-script-1.1.1.tgz#f481c6c5f094bf4b94a9d52da0d0dda2e1a74bdf"
|
|
||||||
dependencies:
|
|
||||||
hoist-non-react-statics "^3.3.0"
|
|
||||||
prop-types "^15.5.0"
|
|
||||||
|
|
||||||
"react-dom@npm:@hot-loader/react-dom":
|
"react-dom@npm:@hot-loader/react-dom":
|
||||||
version "16.11.0"
|
version "16.11.0"
|
||||||
resolved "https://registry.yarnpkg.com/@hot-loader/react-dom/-/react-dom-16.11.0.tgz#c0b483923b289db5431516f56ee2a69448ebf9bd"
|
resolved "https://registry.yarnpkg.com/@hot-loader/react-dom/-/react-dom-16.11.0.tgz#c0b483923b289db5431516f56ee2a69448ebf9bd"
|
||||||
|
@ -5574,13 +5561,6 @@ react-ga@^3.1.2:
|
||||||
resolved "https://registry.yarnpkg.com/react-ga/-/react-ga-3.1.2.tgz#e13f211c51a2e5c401ea69cf094b9501fe3c51ce"
|
resolved "https://registry.yarnpkg.com/react-ga/-/react-ga-3.1.2.tgz#e13f211c51a2e5c401ea69cf094b9501fe3c51ce"
|
||||||
integrity sha512-OJrMqaHEHbodm+XsnjA6ISBEHTwvpFrxco65mctzl/v3CASMSLSyUkFqz9yYrPDKGBUfNQzKCjuMJwctjlWBbw==
|
integrity sha512-OJrMqaHEHbodm+XsnjA6ISBEHTwvpFrxco65mctzl/v3CASMSLSyUkFqz9yYrPDKGBUfNQzKCjuMJwctjlWBbw==
|
||||||
|
|
||||||
react-google-recaptcha@^2.0.1:
|
|
||||||
version "2.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/react-google-recaptcha/-/react-google-recaptcha-2.0.1.tgz#3276b29659493f7ca2a5b7739f6c239293cdf1d8"
|
|
||||||
dependencies:
|
|
||||||
prop-types "^15.5.0"
|
|
||||||
react-async-script "^1.1.1"
|
|
||||||
|
|
||||||
react-hot-loader@^4.12.21:
|
react-hot-loader@^4.12.21:
|
||||||
version "4.12.21"
|
version "4.12.21"
|
||||||
resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.12.21.tgz#332e830801fb33024b5a147d6b13417f491eb975"
|
resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.12.21.tgz#332e830801fb33024b5a147d6b13417f491eb975"
|
||||||
|
@ -5719,6 +5699,11 @@ readdirp@~3.4.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
picomatch "^2.2.1"
|
picomatch "^2.2.1"
|
||||||
|
|
||||||
|
reaptcha@^1.7.2:
|
||||||
|
version "1.7.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/reaptcha/-/reaptcha-1.7.2.tgz#d829f54270c241f46501e92a5a7badeb1fcf372d"
|
||||||
|
integrity sha512-/RXiPeMd+fPUGByv+kAaQlCXCsSflZ9bKX5Fcwv9IYGS1oyT2nntL/8zn9IaiUFHL66T1jBtOABcb92g2+3w8w==
|
||||||
|
|
||||||
reduce-css-calc@^2.1.6:
|
reduce-css-calc@^2.1.6:
|
||||||
version "2.1.7"
|
version "2.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.7.tgz#1ace2e02c286d78abcd01fd92bfe8097ab0602c2"
|
resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.7.tgz#1ace2e02c286d78abcd01fd92bfe8097ab0602c2"
|
||||||
|
|
Loading…
Reference in a new issue