@prosopo/procaptcha-react 0.2.40 → 0.2.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/dist/cjs/components/Modal.cjs +27 -3
  2. package/dist/components/Button.d.ts +10 -0
  3. package/dist/components/Button.d.ts.map +1 -0
  4. package/dist/components/Button.js +55 -65
  5. package/dist/components/Button.js.map +1 -0
  6. package/dist/components/CaptchaComponent.d.ts +14 -0
  7. package/dist/components/CaptchaComponent.d.ts.map +1 -0
  8. package/dist/components/CaptchaComponent.js +59 -156
  9. package/dist/components/CaptchaComponent.js.map +1 -0
  10. package/dist/components/CaptchaPlaceholder.d.ts +6 -0
  11. package/dist/components/CaptchaPlaceholder.d.ts.map +1 -0
  12. package/dist/components/CaptchaPlaceholder.js +42 -97
  13. package/dist/components/CaptchaPlaceholder.js.map +1 -0
  14. package/dist/components/CaptchaWidget.d.ts +9 -0
  15. package/dist/components/CaptchaWidget.d.ts.map +1 -0
  16. package/dist/components/CaptchaWidget.js +66 -144
  17. package/dist/components/CaptchaWidget.js.map +1 -0
  18. package/dist/components/Checkbox.d.ts +9 -0
  19. package/dist/components/Checkbox.d.ts.map +1 -0
  20. package/dist/components/Checkbox.js +31 -45
  21. package/dist/components/Checkbox.js.map +1 -0
  22. package/dist/components/ExtensionAccountSelect.d.ts +7 -0
  23. package/dist/components/ExtensionAccountSelect.d.ts.map +1 -0
  24. package/dist/components/ExtensionAccountSelect.js +30 -47
  25. package/dist/components/ExtensionAccountSelect.js.map +1 -0
  26. package/dist/components/LoadingSpinner.d.ts +6 -0
  27. package/dist/components/LoadingSpinner.d.ts.map +1 -0
  28. package/dist/components/LoadingSpinner.js +10 -12
  29. package/dist/components/LoadingSpinner.js.map +1 -0
  30. package/dist/components/Modal.d.ts +8 -0
  31. package/dist/components/Modal.d.ts.map +1 -0
  32. package/dist/components/Modal.js +36 -16
  33. package/dist/components/Modal.js.map +1 -0
  34. package/dist/components/Procaptcha.d.ts +6 -0
  35. package/dist/components/Procaptcha.d.ts.map +1 -0
  36. package/dist/components/Procaptcha.js +7 -8
  37. package/dist/components/Procaptcha.js.map +1 -0
  38. package/dist/components/ProcaptchaWidget.d.ts +8 -0
  39. package/dist/components/ProcaptchaWidget.d.ts.map +1 -0
  40. package/dist/components/ProcaptchaWidget.js +130 -221
  41. package/dist/components/ProcaptchaWidget.js.map +1 -0
  42. package/dist/components/collector.d.ts +8 -0
  43. package/dist/components/collector.d.ts.map +1 -0
  44. package/dist/components/collector.js +23 -24
  45. package/dist/components/collector.js.map +1 -0
  46. package/dist/components/index.d.ts +7 -0
  47. package/dist/components/index.d.ts.map +1 -0
  48. package/dist/components/index.js +7 -11
  49. package/dist/components/index.js.map +1 -0
  50. package/dist/components/theme.d.ts +51 -0
  51. package/dist/components/theme.d.ts.map +1 -0
  52. package/dist/components/theme.js +35 -38
  53. package/dist/components/theme.js.map +1 -0
  54. package/dist/index.d.ts +3 -42
  55. package/dist/index.d.ts.map +1 -0
  56. package/dist/index.js +3 -12
  57. package/dist/index.js.map +1 -0
  58. package/dist/util/index.d.ts +9 -0
  59. package/dist/util/index.d.ts.map +1 -0
  60. package/dist/util/index.js +7 -12
  61. package/dist/util/index.js.map +1 -0
  62. package/package.json +7 -7
  63. package/dist/cjs/style/Modal.css +0 -41
  64. package/dist/style/Modal.css +0 -41
  65. package/public/style/Modal.css +0 -41
  66. package/vite.config.ts +0 -22
@@ -1,17 +1,41 @@
1
1
  "use strict";
2
2
  const jsxRuntime = require("@emotion/react/jsx-runtime");
3
- require("../style/Modal.css");
4
3
  const React = require("react");
5
4
  const ModalComponent = React.memo((props, nextProps) => {
6
5
  const { show, children } = props;
7
6
  console.log("rendering modal with show: ", show);
8
7
  const display = show ? "block" : "none";
9
8
  const ModalOuterDivCss = {
9
+ position: "fixed",
10
+ zIndex: 2147483646,
11
+ inset: 0,
10
12
  display
11
13
  };
14
+ const ModalBackgroundCSS = {
15
+ position: "fixed",
16
+ display: "flex",
17
+ alignItems: "center",
18
+ justifyContent: "center",
19
+ right: 0,
20
+ bottom: 0,
21
+ top: 0,
22
+ left: 0,
23
+ backgroundColor: "rgba(0, 0, 0, 0.5)",
24
+ zIndex: -1
25
+ };
26
+ const ModalInnerDivCSS = {
27
+ position: "absolute",
28
+ top: "50%",
29
+ left: "50%",
30
+ transform: "translate(-50%, -50%)",
31
+ width: "400px",
32
+ backgroundColor: "rgb(255, 255, 255)",
33
+ border: "none",
34
+ boxShadow: "rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px,"
35
+ };
12
36
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "modalOuter", style: ModalOuterDivCss, children: [
13
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "modalBackground" }),
14
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "modalInner", children })
37
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "modalBackground", style: ModalBackgroundCSS }),
38
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "modalInner", style: ModalInnerDivCSS, children })
15
39
  ] });
16
40
  });
17
41
  module.exports = ModalComponent;
@@ -0,0 +1,10 @@
1
+ import React, { ButtonHTMLAttributes } from 'react';
2
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3
+ themeColor: 'light' | 'dark';
4
+ buttonType: 'cancel' | 'next';
5
+ onClick: () => void;
6
+ text: string;
7
+ }
8
+ declare const Button: React.FC<ButtonProps>;
9
+ export default Button;
10
+ //# sourceMappingURL=Button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../src/components/Button.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,oBAAoB,EAAoC,MAAM,OAAO,CAAA;AAGrF,UAAU,WAAY,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IACjE,UAAU,EAAE,OAAO,GAAG,MAAM,CAAA;IAC5B,UAAU,EAAE,QAAQ,GAAG,MAAM,CAAA;IAC7B,OAAO,EAAE,MAAM,IAAI,CAAA;IACnB,IAAI,EAAE,MAAM,CAAA;CACf;AAgCD,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAmCjC,CAAA;AACD,eAAe,MAAM,CAAA"}
@@ -1,69 +1,59 @@
1
- import { jsx } from "@emotion/react/jsx-runtime";
2
- import { lightTheme, darkTheme } from "./theme.js";
3
- import { useMemo, useState } from "react";
4
- import addDataAttr from "../util/index.js";
1
+ import { jsx as _jsx } from "@emotion/react/jsx-runtime";
2
+ import { darkTheme, lightTheme } from './theme.js';
3
+ import { useMemo, useState } from 'react';
4
+ import addDataAttr from '../util/index.js';
5
5
  const buttonStyleBase = {
6
- display: "inline-flex",
7
- alignItems: "center",
8
- justifyContent: "center",
9
- position: "relative",
10
- boxSizing: "border-box",
11
- outline: "0px",
12
- border: "0px",
13
- margin: "0px",
14
- cursor: "pointer",
15
- userSelect: "none",
16
- verticalAlign: "middle",
17
- appearance: void 0,
18
- textDecoration: "none",
19
- fontWeight: "500",
20
- fontSize: "0.875rem",
21
- lineHeight: "1.75",
22
- letterSpacing: "0.02857em",
23
- textTransform: "uppercase",
24
- minWidth: "64px",
25
- padding: "6px 16px",
26
- borderRadius: "4px",
27
- transition: "background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms",
28
- color: "rgb(0, 0, 0)",
29
- backgroundColor: "#ffffff",
30
- boxShadow: "rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px"
6
+ display: 'inline-flex',
7
+ alignItems: 'center',
8
+ justifyContent: 'center',
9
+ position: 'relative',
10
+ boxSizing: 'border-box',
11
+ outline: '0px',
12
+ border: '0px',
13
+ margin: '0px',
14
+ cursor: 'pointer',
15
+ userSelect: 'none',
16
+ verticalAlign: 'middle',
17
+ appearance: undefined,
18
+ textDecoration: 'none',
19
+ fontWeight: '500',
20
+ fontSize: '0.875rem',
21
+ lineHeight: '1.75',
22
+ letterSpacing: '0.02857em',
23
+ textTransform: 'uppercase',
24
+ minWidth: '64px',
25
+ padding: '6px 16px',
26
+ borderRadius: '4px',
27
+ transition: 'background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms',
28
+ color: 'rgb(0, 0, 0)',
29
+ backgroundColor: '#ffffff',
30
+ boxShadow: 'rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px',
31
31
  };
32
32
  const Button = ({ themeColor, buttonType, text, onClick }) => {
33
- const theme = useMemo(() => themeColor === "light" ? lightTheme : darkTheme, [themeColor]);
34
- const [hover, setHover] = useState(false);
35
- const buttonStyle = useMemo(() => {
36
- const baseStyle = {
37
- ...buttonStyleBase,
38
- color: hover ? theme.palette.primary.contrastText : theme.palette.background.contrastText
39
- };
40
- if (buttonType === "cancel") {
41
- return {
42
- ...baseStyle,
43
- backgroundColor: hover ? theme.palette.grey[600] : "transparent"
44
- };
45
- } else {
46
- return {
47
- ...baseStyle,
48
- backgroundColor: hover ? theme.palette.primary.main : theme.palette.background.default
49
- };
50
- }
51
- }, [buttonType, hover, theme]);
52
- return /* @__PURE__ */ jsx(
53
- "button",
54
- {
55
- ...addDataAttr({ dev: { cy: `button-${buttonType}` } }),
56
- onMouseEnter: () => setHover(true),
57
- onMouseLeave: () => setHover(false),
58
- style: buttonStyle,
59
- onClick: (e) => {
60
- e.preventDefault();
61
- onClick();
62
- },
63
- children: text
64
- }
65
- );
66
- };
67
- export {
68
- Button as default
33
+ const theme = useMemo(() => (themeColor === 'light' ? lightTheme : darkTheme), [themeColor]);
34
+ const [hover, setHover] = useState(false);
35
+ const buttonStyle = useMemo(() => {
36
+ const baseStyle = {
37
+ ...buttonStyleBase,
38
+ color: hover ? theme.palette.primary.contrastText : theme.palette.background.contrastText,
39
+ };
40
+ if (buttonType === 'cancel') {
41
+ return {
42
+ ...baseStyle,
43
+ backgroundColor: hover ? theme.palette.grey[600] : 'transparent',
44
+ };
45
+ }
46
+ else {
47
+ return {
48
+ ...baseStyle,
49
+ backgroundColor: hover ? theme.palette.primary.main : theme.palette.background.default,
50
+ };
51
+ }
52
+ }, [buttonType, hover, theme]);
53
+ return (_jsx("button", { ...addDataAttr({ dev: { cy: `button-${buttonType}` } }), onMouseEnter: () => setHover(true), onMouseLeave: () => setHover(false), style: buttonStyle, onClick: (e) => {
54
+ e.preventDefault();
55
+ onClick();
56
+ }, children: text }));
69
57
  };
58
+ export default Button;
59
+ //# sourceMappingURL=Button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Button.js","sourceRoot":"","sources":["../../src/components/Button.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAClD,OAAc,EAAuC,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AACrF,OAAO,WAAW,MAAM,kBAAkB,CAAA;AAS1C,MAAM,eAAe,GAAkB;IACnC,OAAO,EAAE,aAAa;IACtB,UAAU,EAAE,QAAQ;IACpB,cAAc,EAAE,QAAQ;IACxB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,YAAY;IACvB,OAAO,EAAE,KAAK;IACd,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,KAAK;IACb,MAAM,EAAE,SAAS;IACjB,UAAU,EAAE,MAAM;IAClB,aAAa,EAAE,QAAQ;IACvB,UAAU,EAAE,SAAS;IACrB,cAAc,EAAE,MAAM;IACtB,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,UAAU;IACpB,UAAU,EAAE,MAAM;IAClB,aAAa,EAAE,WAAW;IAC1B,aAAa,EAAE,WAAW;IAC1B,QAAQ,EAAE,MAAM;IAChB,OAAO,EAAE,UAAU;IACnB,YAAY,EAAE,KAAK;IACnB,UAAU,EACN,+MAA+M;IACnN,KAAK,EAAE,cAAc;IACrB,eAAe,EAAE,SAAS;IAC1B,SAAS,EACL,+GAA+G;CACtH,CAAA;AAED,MAAM,MAAM,GAA0B,CAAC,EAAE,UAAU,EAAE,UAAU,EAAE,IAAI,EAAE,OAAO,EAAe,EAAE,EAAE;IAC7F,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,UAAU,KAAK,OAAO,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,CAAA;IAC5F,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAA;IACzC,MAAM,WAAW,GAAG,OAAO,CAAC,GAAG,EAAE;QAC7B,MAAM,SAAS,GAAG;YACd,GAAG,eAAe;YAClB,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY;SAC5F,CAAA;QACD,IAAI,UAAU,KAAK,QAAQ,EAAE;YACzB,OAAO;gBACH,GAAG,SAAS;gBACZ,eAAe,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,aAAa;aACnE,CAAA;SACJ;aAAM;YACH,OAAO;gBACH,GAAG,SAAS;gBACZ,eAAe,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO;aACzF,CAAA;SACJ;IACL,CAAC,EAAE,CAAC,UAAU,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,CAAA;IAE9B,OAAO,CACH,oBACQ,WAAW,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,UAAU,UAAU,EAAE,EAAE,EAAE,CAAC,EACxD,YAAY,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,EAClC,YAAY,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,EACnC,KAAK,EAAE,WAAW,EAClB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE;YACX,CAAC,CAAC,cAAc,EAAE,CAAA;YAClB,OAAO,EAAE,CAAA;QACb,CAAC,YAEA,IAAI,GACA,CACZ,CAAA;AACL,CAAC,CAAA;AACD,eAAe,MAAM,CAAA"}
@@ -0,0 +1,14 @@
1
+ import { GetCaptchaResponse } from '@prosopo/api';
2
+ export interface CaptchaComponentProps {
3
+ challenge: GetCaptchaResponse;
4
+ index: number;
5
+ solutions: string[][];
6
+ onSubmit: () => void;
7
+ onCancel: () => void;
8
+ onClick: (hash: string) => void;
9
+ onNext: () => void;
10
+ themeColor: 'light' | 'dark';
11
+ }
12
+ declare const CaptchaComponent: ({ challenge, index, solutions, onSubmit, onCancel, onClick, onNext, themeColor, }: CaptchaComponentProps) => import("@emotion/react/jsx-runtime").JSX.Element;
13
+ export default CaptchaComponent;
14
+ //# sourceMappingURL=CaptchaComponent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CaptchaComponent.d.ts","sourceRoot":"","sources":["../../src/components/CaptchaComponent.tsx"],"names":[],"mappings":"AAcA,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAA;AAQjD,MAAM,WAAW,qBAAqB;IAClC,SAAS,EAAE,kBAAkB,CAAA;IAC7B,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,EAAE,MAAM,EAAE,EAAE,CAAA;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAA;IACpB,QAAQ,EAAE,MAAM,IAAI,CAAA;IACpB,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAC/B,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,UAAU,EAAE,OAAO,GAAG,MAAM,CAAA;CAC/B;AAED,QAAA,MAAM,gBAAgB,sFASnB,qBAAqB,qDA8GvB,CAAA;AAED,eAAe,gBAAgB,CAAA"}
@@ -1,157 +1,60 @@
1
- import { jsx, jsxs } from "@emotion/react/jsx-runtime";
2
- import { CaptchaWidget } from "./CaptchaWidget.js";
3
- import { useMemo, Suspense } from "react";
4
- import { at } from "@prosopo/util";
5
- import { lightTheme, darkTheme } from "./theme.js";
6
- import { useTranslation } from "@prosopo/common";
7
- import Button from "./Button.js";
8
- import addDataAttr from "../util/index.js";
9
- const CaptchaComponent = ({
10
- challenge,
11
- index,
12
- solutions,
13
- onSubmit,
14
- onCancel,
15
- onClick,
16
- onNext,
17
- themeColor
18
- }) => {
19
- const { t } = useTranslation();
20
- const captcha = challenge.captchas ? at(challenge.captchas, index) : null;
21
- const solution = solutions ? at(solutions, index) : [];
22
- const theme = useMemo(() => themeColor === "light" ? lightTheme : darkTheme, [themeColor]);
23
- return /* @__PURE__ */ jsx(Suspense, { fallback: /* @__PURE__ */ jsx("div", { children: "Loading..." }), children: /* @__PURE__ */ jsx(
24
- "div",
25
- {
26
- style: {
27
- // introduce scroll bars when screen < minWidth of children
28
- overflowX: "auto",
29
- overflowY: "auto",
30
- width: "100%",
31
- maxWidth: "500px",
32
- maxHeight: "100%",
33
- display: "flex",
34
- flexDirection: "column"
35
- },
36
- children: /* @__PURE__ */ jsxs(
37
- "div",
38
- {
39
- style: {
40
- backgroundColor: theme.palette.background.default,
41
- display: "flex",
42
- flexDirection: "column",
43
- minWidth: "300px"
44
- },
45
- children: [
46
- /* @__PURE__ */ jsxs(
47
- "div",
48
- {
49
- style: {
50
- display: "flex",
51
- alignItems: "center",
52
- width: "100%",
53
- backgroundColor: theme.palette.primary.main,
54
- padding: "24px 16px"
55
- },
56
- children: [
57
- /* @__PURE__ */ jsxs(
58
- "p",
59
- {
60
- style: {
61
- color: "#ffffff",
62
- fontWeight: 700,
63
- lineHeight: 1.5
64
- },
65
- children: [
66
- t("WIDGET.SELECT_ALL"),
67
- ": "
68
- ]
69
- }
70
- ),
71
- /* @__PURE__ */ jsx(
72
- "p",
73
- {
74
- style: {
75
- color: "#ffffff",
76
- fontWeight: 700,
77
- textTransform: "capitalize",
78
- lineHeight: 1.5
79
- },
80
- children: `${at(challenge.captchas, index).captcha.target}`
81
- }
82
- )
83
- ]
84
- }
85
- ),
86
- /* @__PURE__ */ jsx("div", { ...addDataAttr({ dev: { cy: "captcha-" + index } }), children: captcha && /* @__PURE__ */ jsx(
87
- CaptchaWidget,
88
- {
89
- challenge: captcha,
90
- solution,
91
- onClick,
92
- themeColor
93
- }
94
- ) }),
95
- /* @__PURE__ */ jsx(
96
- "div",
97
- {
98
- style: {
99
- display: "flex",
100
- alignItems: "center",
101
- justifyContent: "center",
102
- width: "100%"
103
- },
104
- ...addDataAttr({ dev: { cy: "dots-captcha" } })
105
- }
106
- ),
107
- /* @__PURE__ */ jsx(
108
- "div",
109
- {
110
- style: {
111
- padding: "8px 16px",
112
- display: "flex",
113
- width: "100%"
114
- }
115
- }
116
- ),
117
- /* @__PURE__ */ jsxs(
118
- "div",
119
- {
120
- style: {
121
- padding: "0 16px 16px",
122
- display: "flex",
123
- alignItems: "center",
124
- justifyContent: "space-between",
125
- lineHeight: 1.75
126
- },
127
- children: [
128
- /* @__PURE__ */ jsx(
129
- Button,
130
- {
131
- themeColor,
132
- buttonType: "cancel",
133
- onClick: onCancel,
134
- text: t("WIDGET.CANCEL")
135
- }
136
- ),
137
- /* @__PURE__ */ jsx(
138
- Button,
139
- {
140
- themeColor,
141
- buttonType: "next",
142
- text: index < challenge.captchas.length - 1 ? t("WIDGET.NEXT") : t("WIDGET.SUBMIT"),
143
- onClick: index < challenge.captchas.length - 1 ? onNext : onSubmit
144
- }
145
- )
146
- ]
147
- }
148
- )
149
- ]
150
- }
151
- )
152
- }
153
- ) });
154
- };
155
- export {
156
- CaptchaComponent as default
1
+ import { jsxs as _jsxs, jsx as _jsx } from "@emotion/react/jsx-runtime";
2
+ import { CaptchaWidget } from './CaptchaWidget.js';
3
+ import { Suspense, useMemo } from 'react';
4
+ import { at } from '@prosopo/util';
5
+ import { darkTheme, lightTheme } from './theme.js';
6
+ import { useTranslation } from '@prosopo/common';
7
+ import Button from './Button.js';
8
+ import addDataAttr from '../util/index.js';
9
+ const CaptchaComponent = ({ challenge, index, solutions, onSubmit, onCancel, onClick, onNext, themeColor, }) => {
10
+ const { t } = useTranslation();
11
+ const captcha = challenge.captchas ? at(challenge.captchas, index) : null;
12
+ const solution = solutions ? at(solutions, index) : [];
13
+ const theme = useMemo(() => (themeColor === 'light' ? lightTheme : darkTheme), [themeColor]);
14
+ return (_jsx(Suspense, { fallback: _jsx("div", { children: "Loading..." }), children: _jsx("div", { style: {
15
+ overflowX: 'auto',
16
+ overflowY: 'auto',
17
+ width: '100%',
18
+ maxWidth: '500px',
19
+ maxHeight: '100%',
20
+ display: 'flex',
21
+ flexDirection: 'column',
22
+ }, children: _jsxs("div", { style: {
23
+ backgroundColor: theme.palette.background.default,
24
+ display: 'flex',
25
+ flexDirection: 'column',
26
+ minWidth: '300px',
27
+ }, children: [_jsxs("div", { style: {
28
+ display: 'flex',
29
+ alignItems: 'center',
30
+ width: '100%',
31
+ backgroundColor: theme.palette.primary.main,
32
+ padding: '24px 16px',
33
+ }, children: [_jsxs("p", { style: {
34
+ color: '#ffffff',
35
+ fontWeight: 700,
36
+ lineHeight: 1.5,
37
+ }, children: [t('WIDGET.SELECT_ALL'), ': '] }), _jsx("p", { style: {
38
+ color: '#ffffff',
39
+ fontWeight: 700,
40
+ textTransform: 'capitalize',
41
+ lineHeight: 1.5,
42
+ }, children: `${at(challenge.captchas, index).captcha.target}` })] }), _jsx("div", { ...addDataAttr({ dev: { cy: 'captcha-' + index } }), children: captcha && (_jsx(CaptchaWidget, { challenge: captcha, solution: solution, onClick: onClick, themeColor: themeColor })) }), _jsx("div", { style: {
43
+ display: 'flex',
44
+ alignItems: 'center',
45
+ justifyContent: 'center',
46
+ width: '100%',
47
+ }, ...addDataAttr({ dev: { cy: 'dots-captcha' } }) }), _jsx("div", { style: {
48
+ padding: '8px 16px',
49
+ display: 'flex',
50
+ width: '100%',
51
+ } }), _jsxs("div", { style: {
52
+ padding: '0 16px 16px',
53
+ display: 'flex',
54
+ alignItems: 'center',
55
+ justifyContent: 'space-between',
56
+ lineHeight: 1.75,
57
+ }, children: [_jsx(Button, { themeColor: themeColor, buttonType: "cancel", onClick: onCancel, text: t('WIDGET.CANCEL') }), _jsx(Button, { themeColor: themeColor, buttonType: "next", text: index < challenge.captchas.length - 1 ? t('WIDGET.NEXT') : t('WIDGET.SUBMIT'), onClick: index < challenge.captchas.length - 1 ? onNext : onSubmit })] })] }) }) }));
157
58
  };
59
+ export default CaptchaComponent;
60
+ //# sourceMappingURL=CaptchaComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CaptchaComponent.js","sourceRoot":"","sources":["../../src/components/CaptchaComponent.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ type PlaceholderProps = {
2
+ darkMode: 'light' | 'dark' | undefined;
3
+ };
4
+ export declare const ProcaptchaPlaceholder: (props: PlaceholderProps) => import("@emotion/react/jsx-runtime").JSX.Element;
5
+ export {};
6
+ //# sourceMappingURL=CaptchaPlaceholder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CaptchaPlaceholder.d.ts","sourceRoot":"","sources":["../../src/components/CaptchaPlaceholder.tsx"],"names":[],"mappings":"AAmDA,KAAK,gBAAgB,GAAG;IAAE,QAAQ,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,CAAA;CAAE,CAAA;AAElE,eAAO,MAAM,qBAAqB,UAAW,gBAAgB,qDAqF5D,CAAA"}
@@ -1,9 +1,9 @@
1
- import { jsx, jsxs } from "@emotion/react/jsx-runtime";
2
- import { LoadingSpinner } from "./LoadingSpinner.js";
3
- import { css } from "@emotion/react";
4
- import { lightTheme, darkTheme } from "./theme.js";
5
- import { useMemo } from "react";
6
- const logoStyle = css`
1
+ import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
2
+ import { LoadingSpinner } from './LoadingSpinner.js';
3
+ import { css } from '@emotion/react';
4
+ import { darkTheme, lightTheme } from './theme.js';
5
+ import { useMemo } from 'react';
6
+ const logoStyle = css `
7
7
  align-items: center;
8
8
  justify-content: flex-end;
9
9
  display: flex;
@@ -34,99 +34,44 @@ const logoStyle = css`
34
34
  } /* logoWithoutText */
35
35
  }
36
36
  `;
37
- const ProcaptchaPlaceholder = (props) => {
38
- const darkMode = props.darkMode;
39
- const styleWidth = { maxWidth: "400px", minWidth: "200px", margin: "8px" };
40
- const themeColor = darkMode ? "light" : "dark";
41
- const theme = useMemo(() => darkMode === "light" ? lightTheme : darkTheme, [darkMode]);
42
- return /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("div", { style: { maxWidth: "100%", maxHeight: "100%", overflowX: "auto" }, children: /* @__PURE__ */ jsxs("div", { style: styleWidth, "data-cy": "button-human", children: [
43
- " ",
44
- /* @__PURE__ */ jsxs(
45
- "div",
46
- {
47
- style: {
48
- padding: "8px",
49
- border: "1px solid",
50
- backgroundColor: theme.palette.background.default,
51
- borderColor: theme.palette.grey[300],
52
- borderRadius: "8px",
53
- display: "flex",
54
- justifyContent: "space-between",
55
- alignItems: "center",
56
- flexWrap: "wrap"
57
- },
58
- children: [
59
- /* @__PURE__ */ jsx("div", { style: { display: "flex", flexDirection: "column" }, children: /* @__PURE__ */ jsx(
60
- "div",
61
- {
62
- style: {
63
- display: "flex",
64
- justifyContent: "flex-start",
65
- alignItems: "center",
66
- flexWrap: "wrap"
67
- },
68
- children: /* @__PURE__ */ jsx(
69
- "div",
70
- {
71
- style: {
72
- height: "50px",
73
- width: "50px",
74
- display: "flex",
75
- alignItems: "center",
76
- justifyContent: "center",
77
- flexDirection: "column",
78
- verticalAlign: "middle"
79
- },
80
- children: /* @__PURE__ */ jsx(
81
- "div",
82
- {
83
- style: {
84
- display: "flex"
85
- },
86
- children: /* @__PURE__ */ jsx("div", { style: { flex: 1 }, children: /* @__PURE__ */ jsx(LoadingSpinner, { themeColor }) })
87
- }
88
- )
89
- }
90
- )
91
- }
92
- ) }),
93
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
94
- "a",
95
- {
96
- href: "https://www.prosopo.io/#features?ref=accounts.prosopo.io&utm_campaign=widget&utm_medium=checkbox",
97
- target: "_blank",
98
- "aria-label": "Visit prosopo.io to learn more about the service and its accessibility options.",
99
- children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs("div", { children: [
100
- /* @__PURE__ */ jsx(
101
- "div",
102
- {
103
- css: logoStyle,
104
- dangerouslySetInnerHTML: {
105
- __html: darkMode === "light" ? logoWithoutTextBlack : logoWithoutTextWhite
106
- }
107
- }
108
- ),
109
- /* @__PURE__ */ jsx(
110
- "div",
111
- {
112
- css: logoStyle,
113
- dangerouslySetInnerHTML: {
114
- __html: darkMode === "light" ? logoWithTextBlack : logoWithTextWhite
115
- }
116
- }
117
- )
118
- ] }) })
119
- }
120
- ) })
121
- ]
122
- }
123
- )
124
- ] }) }) });
37
+ export const ProcaptchaPlaceholder = (props) => {
38
+ const darkMode = props.darkMode;
39
+ const styleWidth = { maxWidth: '400px', minWidth: '200px', margin: '8px' };
40
+ const themeColor = darkMode ? 'light' : 'dark';
41
+ const theme = useMemo(() => (darkMode === 'light' ? lightTheme : darkTheme), [darkMode]);
42
+ return (_jsx("div", { children: _jsx("div", { style: { maxWidth: '100%', maxHeight: '100%', overflowX: 'auto' }, children: _jsxs("div", { style: styleWidth, "data-cy": 'button-human', children: [' ', _jsxs("div", { style: {
43
+ padding: '8px',
44
+ border: '1px solid',
45
+ backgroundColor: theme.palette.background.default,
46
+ borderColor: theme.palette.grey[300],
47
+ borderRadius: '8px',
48
+ display: 'flex',
49
+ justifyContent: 'space-between',
50
+ alignItems: 'center',
51
+ flexWrap: 'wrap',
52
+ }, children: [_jsx("div", { style: { display: 'flex', flexDirection: 'column' }, children: _jsx("div", { style: {
53
+ display: 'flex',
54
+ justifyContent: 'flex-start',
55
+ alignItems: 'center',
56
+ flexWrap: 'wrap',
57
+ }, children: _jsx("div", { style: {
58
+ height: '50px',
59
+ width: '50px',
60
+ display: 'flex',
61
+ alignItems: 'center',
62
+ justifyContent: 'center',
63
+ flexDirection: 'column',
64
+ verticalAlign: 'middle',
65
+ }, children: _jsx("div", { style: {
66
+ display: 'flex',
67
+ }, children: _jsx("div", { style: { flex: 1 }, children: _jsx(LoadingSpinner, { themeColor: themeColor }) }) }) }) }) }), _jsx("div", { children: _jsx("a", { href: "https://www.prosopo.io/#features?ref=accounts.prosopo.io&utm_campaign=widget&utm_medium=checkbox", target: "_blank", "aria-label": "Visit prosopo.io to learn more about the service and its accessibility options.", children: _jsx("div", { children: _jsxs("div", { children: [_jsx("div", { css: logoStyle, dangerouslySetInnerHTML: {
68
+ __html: darkMode === 'light' ? logoWithoutTextBlack : logoWithoutTextWhite,
69
+ } }), _jsx("div", { css: logoStyle, dangerouslySetInnerHTML: {
70
+ __html: darkMode === 'light' ? logoWithTextBlack : logoWithTextWhite,
71
+ } })] }) }) }) })] })] }) }) }));
125
72
  };
126
73
  const logoWithTextBlack = '<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2062.63 468.67" height="35px" width="140px"><defs><style>.cls-1{fill:#1d1d1b;}</style></defs><title>Prosopo Logo Black</title><path class="cls-1" d="M335.55,1825.19A147.75,147.75,0,0,1,483.3,1972.94h50.5c0-109.49-88.76-198.25-198.25-198.25v50.5Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M269.36,1891.39A147.74,147.74,0,0,1,417.1,2039.13h50.5c0-109.49-88.75-198.24-198.24-198.24v50.5Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M414,2157.17a147.75,147.75,0,0,1-147.74-147.74h-50.5c0,109.49,88.75,198.24,198.24,198.24v-50.5Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M480.17,2091a147.74,147.74,0,0,1-147.74-147.75H281.92c0,109.49,88.76,198.25,198.25,198.25V2091Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M862.8,2017.5q-27.39,22.86-78.25,22.86h-65v112.19H654.82v-312h134q46.32,0,73.86,24.13t27.55,74.72Q890.2,1994.64,862.8,2017.5ZM813,1905.1q-12.37-10.36-34.7-10.38H719.59v91.87h58.75q22.32,0,34.7-11.22t12.39-35.56Q825.43,1915.48,813,1905.1Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1045.69,1916.42c.78.08,2.51.19,5.19.32v61.81c-3.81-.42-7.2-.71-10.16-.85s-5.36-.21-7.2-.21q-36.4,0-48.89,23.71-7,13.33-7,41.06v110.29H916.89V1921.82h57.58V1962q14-23.07,24.34-31.54,16.94-14.18,44-14.18C1044,1916.32,1044.92,1916.35,1045.69,1916.42Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1265.64,2124.32q-29.21,36.06-88.69,36.06t-88.69-36.06Q1059,2088.26,1059,2037.5q0-49.9,29.22-86.5t88.69-36.59q59.47,0,88.69,36.59t29.21,86.5Q1294.85,2088.26,1265.64,2124.32ZM1217.38,2091q14.17-18.81,14.18-53.48t-14.18-53.37q-14.19-18.7-40.64-18.71T1136,1984.13q-14.29,18.72-14.29,53.37T1136,2091q14.28,18.81,40.75,18.81T1217.38,2091Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1371.81,2078.88q1.92,16.1,8.29,22.87,11.28,12.06,41.7,12.06,17.85,0,28.39-5.29t10.53-15.88a17.12,17.12,0,0,0-8.48-15.45q-8.49-5.28-63.12-18.2-39.33-9.73-55.41-24.35-16.08-14.39-16.09-41.49,0-32,25.14-54.93t70.75-23q43.26,0,70.53,17.25t31.29,59.59H1455q-1.27-11.64-6.58-18.42-10-12.27-34-12.28-19.74,0-28.13,6.14t-8.38,14.4c0,6.91,3,11.93,8.92,15q8.89,4.89,63,16.73,36,8.46,54.05,25.61,17.77,17.35,17.78,43.39,0,34.3-25.56,56t-79,21.7q-54.51,0-80.49-23t-26-58.53Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1745.54,2124.32q-29.22,36.06-88.7,36.06t-88.69-36.06q-29.2-36.06-29.21-86.82,0-49.9,29.21-86.5t88.69-36.59q59.49,0,88.7,36.59t29.21,86.5Q1774.75,2088.26,1745.54,2124.32ZM1697.27,2091q14.19-18.81,14.19-53.48t-14.19-53.37q-14.18-18.7-40.64-18.71t-40.75,18.71q-14.28,18.72-14.28,53.37t14.28,53.48q14.3,18.81,40.75,18.81T1697.27,2091Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1992.75,1946.59q28.24,29.84,28.23,87.63,0,61-27.58,92.93t-71.06,32q-27.69,0-46-13.76-10-7.62-19.6-22.23v120.24H1797V1921.82h57.79v34.08q9.79-15,20.88-23.71,20.23-15.43,48.15-15.45Q1964.53,1916.74,1992.75,1946.59Zm-46.3,43.39q-12.3-20.52-39.88-20.53-33.15,0-45.54,31.11-6.43,16.51-6.42,41.92,0,40.21,21.58,56.51,12.82,9.53,30.37,9.53,25.45,0,38.83-19.48t13.36-51.86Q1958.75,2010.51,1946.45,1990Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M2249.14,2124.32q-29.2,36.06-88.69,36.06t-88.69-36.06q-29.22-36.06-29.21-86.82,0-49.9,29.21-86.5t88.69-36.59q59.49,0,88.69,36.59t29.22,86.5Q2278.36,2088.26,2249.14,2124.32ZM2200.88,2091q14.19-18.81,14.18-53.48t-14.18-53.37q-14.18-18.7-40.64-18.71t-40.75,18.71q-14.28,18.72-14.29,53.37t14.29,53.48q14.3,18.81,40.75,18.81T2200.88,2091Z" transform="translate(-215.73 -1774.69)"/></svg>';
127
74
  const logoWithTextWhite = '<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2062.63 468.67" height="35px" width="140px"><defs><style>.cls-1{fill:#fff;}</style></defs><title>Prosopo Logo Black</title><path class="cls-1" d="M335.55,1825.19A147.75,147.75,0,0,1,483.3,1972.94h50.5c0-109.49-88.76-198.25-198.25-198.25v50.5Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M269.36,1891.39A147.74,147.74,0,0,1,417.1,2039.13h50.5c0-109.49-88.75-198.24-198.24-198.24v50.5Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M414,2157.17a147.75,147.75,0,0,1-147.74-147.74h-50.5c0,109.49,88.75,198.24,198.24,198.24v-50.5Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M480.17,2091a147.74,147.74,0,0,1-147.74-147.75H281.92c0,109.49,88.76,198.25,198.25,198.25V2091Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M862.8,2017.5q-27.39,22.86-78.25,22.86h-65v112.19H654.82v-312h134q46.32,0,73.86,24.13t27.55,74.72Q890.2,1994.64,862.8,2017.5ZM813,1905.1q-12.37-10.36-34.7-10.38H719.59v91.87h58.75q22.32,0,34.7-11.22t12.39-35.56Q825.43,1915.48,813,1905.1Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1045.69,1916.42c.78.08,2.51.19,5.19.32v61.81c-3.81-.42-7.2-.71-10.16-.85s-5.36-.21-7.2-.21q-36.4,0-48.89,23.71-7,13.33-7,41.06v110.29H916.89V1921.82h57.58V1962q14-23.07,24.34-31.54,16.94-14.18,44-14.18C1044,1916.32,1044.92,1916.35,1045.69,1916.42Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1265.64,2124.32q-29.21,36.06-88.69,36.06t-88.69-36.06Q1059,2088.26,1059,2037.5q0-49.9,29.22-86.5t88.69-36.59q59.47,0,88.69,36.59t29.21,86.5Q1294.85,2088.26,1265.64,2124.32ZM1217.38,2091q14.17-18.81,14.18-53.48t-14.18-53.37q-14.19-18.7-40.64-18.71T1136,1984.13q-14.29,18.72-14.29,53.37T1136,2091q14.28,18.81,40.75,18.81T1217.38,2091Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1371.81,2078.88q1.92,16.1,8.29,22.87,11.28,12.06,41.7,12.06,17.85,0,28.39-5.29t10.53-15.88a17.12,17.12,0,0,0-8.48-15.45q-8.49-5.28-63.12-18.2-39.33-9.73-55.41-24.35-16.08-14.39-16.09-41.49,0-32,25.14-54.93t70.75-23q43.26,0,70.53,17.25t31.29,59.59H1455q-1.27-11.64-6.58-18.42-10-12.27-34-12.28-19.74,0-28.13,6.14t-8.38,14.4c0,6.91,3,11.93,8.92,15q8.89,4.89,63,16.73,36,8.46,54.05,25.61,17.77,17.35,17.78,43.39,0,34.3-25.56,56t-79,21.7q-54.51,0-80.49-23t-26-58.53Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1745.54,2124.32q-29.22,36.06-88.7,36.06t-88.69-36.06q-29.2-36.06-29.21-86.82,0-49.9,29.21-86.5t88.69-36.59q59.49,0,88.7,36.59t29.21,86.5Q1774.75,2088.26,1745.54,2124.32ZM1697.27,2091q14.19-18.81,14.19-53.48t-14.19-53.37q-14.18-18.7-40.64-18.71t-40.75,18.71q-14.28,18.72-14.28,53.37t14.28,53.48q14.3,18.81,40.75,18.81T1697.27,2091Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M1992.75,1946.59q28.24,29.84,28.23,87.63,0,61-27.58,92.93t-71.06,32q-27.69,0-46-13.76-10-7.62-19.6-22.23v120.24H1797V1921.82h57.79v34.08q9.79-15,20.88-23.71,20.23-15.43,48.15-15.45Q1964.53,1916.74,1992.75,1946.59Zm-46.3,43.39q-12.3-20.52-39.88-20.53-33.15,0-45.54,31.11-6.43,16.51-6.42,41.92,0,40.21,21.58,56.51,12.82,9.53,30.37,9.53,25.45,0,38.83-19.48t13.36-51.86Q1958.75,2010.51,1946.45,1990Z" transform="translate(-215.73 -1774.69)"/><path class="cls-1" d="M2249.14,2124.32q-29.2,36.06-88.69,36.06t-88.69-36.06q-29.22-36.06-29.21-86.82,0-49.9,29.21-86.5t88.69-36.59q59.49,0,88.69,36.59t29.22,86.5Q2278.36,2088.26,2249.14,2124.32ZM2200.88,2091q14.19-18.81,14.18-53.48t-14.18-53.37q-14.18-18.7-40.64-18.71t-40.75,18.71q-14.28,18.72-14.29,53.37t14.29,53.48q14.3,18.81,40.75,18.81T2200.88,2091Z" transform="translate(-215.73 -1774.69)"/></svg>';
128
75
  const logoWithoutTextWhite = '<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 260 348" height="35px"><path id="Vector" d="M95.7053 40.2707C127.005 40.2707 157.022 52.6841 179.154 74.78C201.286 96.8759 213.719 126.844 213.719 158.093H254.056C254.056 70.7808 183.16 -4.57764e-05 95.7053 -4.57764e-05V40.2707Z" fill="#fff"/><path id="Vector_2" d="M42.8365 93.0614C58.3333 93.0614 73.6784 96.1087 87.9955 102.029C102.313 107.95 115.322 116.628 126.279 127.568C137.237 138.508 145.93 151.496 151.86 165.79C157.79 180.084 160.843 195.404 160.843 210.875H201.179C201.179 123.564 130.291 52.7906 42.8365 52.7906V93.0614Z" fill="#fff"/><path id="Vector_3" d="M158.367 305.005C127.07 305.003 97.056 292.59 74.926 270.496C52.796 248.402 40.3626 218.437 40.3604 187.191H0.0239563C0.0239563 274.503 70.9123 345.276 158.367 345.276V305.005Z" fill="#fff"/><path id="Vector_4" d="M211.219 252.239C195.722 252.239 180.376 249.191 166.059 243.27C151.741 237.349 138.732 228.67 127.774 217.729C116.816 206.788 108.123 193.799 102.194 179.505C96.2637 165.21 93.2121 149.889 93.2132 134.417H52.8687C52.8687 221.729 123.765 292.509 211.219 292.509V252.239Z" fill="#fff"/></g><defs><clipPath id="clip0_1_2"><rect width="254" height="345" fill="white"/></clipPath></defs></svg>';
129
76
  const logoWithoutTextBlack = '<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 260 348" height="35px"><path id="Vector" d="M95.7053 40.2707C127.005 40.2707 157.022 52.6841 179.154 74.78C201.286 96.8759 213.719 126.844 213.719 158.093H254.056C254.056 70.7808 183.16 -4.57764e-05 95.7053 -4.57764e-05V40.2707Z" fill="#000000"/><path id="Vector_2" d="M42.8365 93.0614C58.3333 93.0614 73.6784 96.1087 87.9955 102.029C102.313 107.95 115.322 116.628 126.279 127.568C137.237 138.508 145.93 151.496 151.86 165.79C157.79 180.084 160.843 195.404 160.843 210.875H201.179C201.179 123.564 130.291 52.7906 42.8365 52.7906V93.0614Z" fill="#000000"/><path id="Vector_3" d="M158.367 305.005C127.07 305.003 97.056 292.59 74.926 270.496C52.796 248.402 40.3626 218.437 40.3604 187.191H0.0239563C0.0239563 274.503 70.9123 345.276 158.367 345.276V305.005Z" fill="#000000"/><path id="Vector_4" d="M211.219 252.239C195.722 252.239 180.376 249.191 166.059 243.27C151.741 237.349 138.732 228.67 127.774 217.729C116.816 206.788 108.123 193.799 102.194 179.505C96.2637 165.21 93.2121 149.889 93.2132 134.417H52.8687C52.8687 221.729 123.765 292.509 211.219 292.509V252.239Z" fill="#000000"/></g><defs><clipPath id="clip0_1_2"><rect width="254" height="345" fill="white"/></clipPath></defs></svg>';
130
- export {
131
- ProcaptchaPlaceholder
132
- };
77
+ //# sourceMappingURL=CaptchaPlaceholder.js.map