@para-ui/core 3.0.103 → 3.0.104

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.
@@ -135,8 +135,8 @@ var DragVerify = function DragVerify(props) {
135
135
  imgBg.style.display = 'inline-block';
136
136
  if (!refDom.current) return;
137
137
  var sliderImgEle = refDom.current.querySelector('.slider-img');
138
- var sliderImgEleRect = sliderImgEle === null || sliderImgEle === void 0 ? void 0 : sliderImgEle.getBoundingClientRect();
139
- var b = sliderImgEleRect.width;
138
+ //const sliderImgEleRect = sliderImgEle?.getBoundingClientRect();
139
+ var b = sliderImgEle === null || sliderImgEle === void 0 ? void 0 : sliderImgEle.clientWidth;
140
140
  constData.current.imgScale = a / b;
141
141
  sliderImgEle === null || sliderImgEle === void 0 ? void 0 : sliderImgEle.append(imgMove);
142
142
  imgMove.onload = function () {
@@ -163,50 +163,75 @@ var DragVerify = function DragVerify(props) {
163
163
  var moveDomRect = moveDom.getBoundingClientRect();
164
164
  var moveDomWidth = moveDomRect.width; // 移动箭头的框
165
165
  var moveSliderWidth = moveSliderRect.width; // 进度条的宽
166
+ // 移动
167
+ var moveFunc = function moveFunc(event, e) {
168
+ var moveW = event.pageX - e.pageX; // 鼠标移动的距离
169
+ if (moveW < 0) moveW = 0;
170
+ if (moveW + moveDomWidth > imgBg.width) moveW = imgBg.width - moveDomWidth;
171
+ moveDom.style.left = "".concat(moveW - 1, "px");
172
+ // 加一防止滑块与进度条之间有间隙
173
+ moveProgress.style.width = "".concat(moveW < 2 ? 2 : moveW, "px");
174
+ // 进度条走过的比例
175
+ var ratio = moveW / (moveSliderWidth - moveDomWidth);
176
+ var imgMoveWidth = (imgBg.width - imgMove.width) * ratio;
177
+ imgMove.style.left = "".concat(imgMoveWidth, "px");
178
+ sliderText.innerHTML = '';
179
+ };
180
+ // 抬起
181
+ var endFunc = function endFunc() {
182
+ sliderBox.classList.remove("".concat(prefixCls, "-move"));
183
+ constData.current.padding = true;
184
+ var X = parseFloat(imgMove.style.left);
185
+ var handX = X * constData.current.imgScale;
186
+ sliderPosiCheck(handX, function (result) {
187
+ if (!result) {
188
+ // 错误
189
+ sliderBox.classList.add("".concat(prefixCls, "-error"));
190
+ constData.current.timerError = setTimeout(function () {
191
+ constData.current.padding = false;
192
+ reset();
193
+ sliderText.innerHTML = intl({
194
+ id: 'tryAgain'
195
+ }); // 再试一次
196
+ getImgInfoReq();
197
+ }, 1000);
198
+ return;
199
+ }
200
+ sliderBox.classList.add("".concat(prefixCls, "-success"));
201
+ /*constData.current.timerSuccess = setTimeout(() => {
202
+ //constData.current.padding = false;
203
+ //sliderBox.classList.remove(prefixCls + '-success');
204
+ }, 1000);*/
205
+ });
206
+ };
207
+
166
208
  moveDom.onmousedown = function (e) {
167
209
  if (constData.current.padding) return;
168
- sliderBox.classList.add(prefixCls + '-move');
210
+ sliderBox.classList.add("".concat(prefixCls, "-move"));
169
211
  document.onmousemove = function (event) {
170
- var moveW = event.pageX - e.pageX; // 鼠标移动的距离
171
- if (moveW < 0) moveW = 0;
172
- if (moveW + moveDomWidth > imgBg.width) moveW = imgBg.width - moveDomWidth;
173
- moveDom.style.left = moveW - 1 + 'px';
174
- // 加一防止滑块与进度条之间有间隙
175
- moveProgress.style.width = (moveW < 2 ? 2 : moveW) + 'px';
176
- // 进度条走过的比例
177
- var ratio = moveW / (moveSliderWidth - moveDomWidth);
178
- var imgMoveWidth = (imgBg.width - imgMove.width) * ratio;
179
- imgMove.style.left = imgMoveWidth + 'px';
180
- sliderText.innerHTML = '';
212
+ moveFunc(event, e);
181
213
  };
182
214
  // 鼠标抬起
183
215
  document.onmouseup = function () {
184
216
  document.onmousemove = null;
185
217
  document.onmouseup = null;
186
- sliderBox.classList.remove(prefixCls + '-move');
187
- constData.current.padding = true;
188
- var X = parseFloat(imgMove.style.left);
189
- var handX = X * constData.current.imgScale;
190
- sliderPosiCheck(handX, function (result) {
191
- if (!result) {
192
- // 错误
193
- sliderBox.classList.add(prefixCls + '-error');
194
- constData.current.timerError = setTimeout(function () {
195
- constData.current.padding = false;
196
- reset();
197
- sliderText.innerHTML = intl({
198
- id: 'tryAgain'
199
- }); // 再试一次
200
- getImgInfoReq();
201
- }, 1000);
202
- return;
203
- }
204
- sliderBox.classList.add(prefixCls + '-success');
205
- /*constData.current.timerSuccess = setTimeout(() => {
206
- //constData.current.padding = false;
207
- //sliderBox.classList.remove(prefixCls + '-success');
208
- }, 1000);*/
209
- });
218
+ endFunc();
219
+ };
220
+ };
221
+ moveDom.ontouchstart = function (touchE) {
222
+ if (constData.current.padding) return;
223
+ var e = touchE.touches[0];
224
+ sliderBox.classList.add("".concat(prefixCls, "-move"));
225
+ // 鼠标移动
226
+ document.ontouchmove = function (touchEvent) {
227
+ var event = touchEvent.touches[0];
228
+ moveFunc(event, e);
229
+ };
230
+ // 鼠标抬起
231
+ document.ontouchend = function () {
232
+ document.ontouchmove = null;
233
+ document.ontouchend = null;
234
+ endFunc();
210
235
  };
211
236
  };
212
237
  };
package/README.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 版本: 3.0.104
2
+
3
+ para-ui/core@3.0.104 发布
4
+ 【滑块验证码-DragVerify】适配移动端
5
+
1
6
  ## 版本: 3.0.103
2
7
 
3
8
  para-ui/core@3.0.103 发布
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@para-ui/core",
3
3
  "private": false,
4
- "version": "3.0.103",
4
+ "version": "3.0.104",
5
5
  "main": "./index.js",
6
6
  "typings": "./index.d.ts",
7
7
  "description": "Powered by Para FED",
package/umd/DragVerify.js CHANGED
@@ -1,4 +1,4 @@
1
- !function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("react"),require("@para-ui/core/GlobalContext")):"function"==typeof define&&define.amd?define(["react","@para-ui/core/GlobalContext"],r):"object"==typeof exports?exports.ParaUI=r(require("react"),require("@para-ui/core/GlobalContext")):e.ParaUI=r(e.react,e["@para-ui/core/GlobalContext"])}(self,(function(e,r){return function(){var t={61217:function(e,r,t){"use strict";t.d(r,{Z:function(){return o}});var n=t(85893),i=t(97435),o=function(e){return(0,n.jsx)(i.l,Object.assign({dataName:"LoadingF",path:(0,n.jsx)(n.Fragment,{children:(0,n.jsx)("path",{d:"M512 0a512 512 0 0 1 512 512h-64A448 448 0 0 0 512 64V0z","p-id":"11109"})})},e))}},97435:function(e,r,t){"use strict";t.d(r,{l:function(){return i}});var n=t(85893);
1
+ !function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("react"),require("@para-ui/core/GlobalContext")):"function"==typeof define&&define.amd?define(["react","@para-ui/core/GlobalContext"],r):"object"==typeof exports?exports.ParaUI=r(require("react"),require("@para-ui/core/GlobalContext")):e.ParaUI=r(e.react,e["@para-ui/core/GlobalContext"])}(self,(function(e,r){return function(){var t={61217:function(e,r,t){"use strict";t.d(r,{Z:function(){return i}});var n=t(85893),o=t(97435),i=function(e){return(0,n.jsx)(o.l,Object.assign({dataName:"LoadingF",path:(0,n.jsx)(n.Fragment,{children:(0,n.jsx)("path",{d:"M512 0a512 512 0 0 1 512 512h-64A448 448 0 0 0 512 64V0z","p-id":"11109"})})},e))}},97435:function(e,r,t){"use strict";t.d(r,{l:function(){return o}});var n=t(85893);
2
2
  /*! *****************************************************************************
3
3
  Copyright (c) Microsoft Corporation.
4
4
 
@@ -12,12 +12,12 @@ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12
12
  LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
13
13
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14
14
  PERFORMANCE OF THIS SOFTWARE.
15
- ***************************************************************************** */!function(e,r){void 0===r&&(r={});var t=r.insertAt;if(e&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===t&&n.firstChild?n.insertBefore(i,n.firstChild):n.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}('@charset "UTF-8";\n/**\n* @author Hanz\n* @date 2021/8/25 下午3:16\n* @description icons scss\n*/\n.paraui-icon {\n width: 1em;\n height: 1em;\n fill: currentColor;\n display: inline-block;\n user-select: none;\n flex-shrink: 0;\n}\n.paraui-icon-primary {\n color: #3666d6;\n}\n.paraui-icon-secondary {\n color: #3666d6;\n}\n.paraui-icon-thirdary {\n color: #3666d6;\n}\n.paraui-icon-small {\n font-size: 16px;\n}\n.paraui-icon-medium {\n font-size: 18px;\n}\n.paraui-icon-large {\n font-size: 20px;\n}');var i=function(e){var r,t,i=e.path,o=e.className,a=e.color,s=void 0===a?"primary":a,l=e.size,c=void 0===l?"small":l,u=e.dataName,d=void 0===u?"":u,f=e.style,p=function(e,r){var t={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&r.indexOf(n)<0&&(t[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(n=Object.getOwnPropertySymbols(e);i<n.length;i++)r.indexOf(n[i])<0&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(t[n[i]]=e[n[i]])}return t}(e,["path","className","color","size","dataName","style"]);return(0,n.jsx)("svg",Object.assign({className:(t="paraui-icon",t+=" svg-icon",o&&(t+=" "+o),"primary"!==s&&"secondary"!==s&&"thirdary"!==s||(t+=" paraui-icon-"+s),c&&(t+=" paraui-icon-"+c),t),viewBox:"0 0 1024 1024","data-name":d,style:(r=Object.assign({},f),s&&"primary"!==s&&"secondary"!==s&&"thirdary"!==s&&(r.color=s),r)},p,{children:i}))}},38271:function(e,r,t){(r=t(23645)(!1)).push([e.id,".paraui-v3-drag-verify{width:100%;position:relative}.paraui-v3-drag-verify>svg{position:absolute;right:4px;top:4px;z-index:10;cursor:pointer;display:none}.paraui-v3-drag-verify>.slider-img{position:relative;border-radius:4px;overflow:hidden;line-height:0;min-height:60px}.paraui-v3-drag-verify>.slider-img .slider-img-bg{width:100%;height:auto;border-radius:4px}.paraui-v3-drag-verify>.slider-img .slider-img-move{position:absolute;left:0;height:auto}.paraui-v3-drag-verify>.slider-move{position:relative;text-align:center;line-height:32px;height:32px;margin-top:12px}.paraui-v3-drag-verify>.slider-move>.slider-move-bg{position:absolute;left:0;right:0;top:0;background-color:rgba(171,176,185,.12);height:32px;border-radius:4px;border:1px solid rgba(171,176,185,.2)}.paraui-v3-drag-verify>.slider-move>.slider-move-mask{position:absolute;left:0;top:0;height:32px;width:2px;border-bottom-left-radius:4px;border-top-left-radius:4px}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box{position:absolute;top:0;left:-1px;width:32px;height:32px;background:#fff;cursor:pointer;border-radius:4px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(171,176,185,.2)}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box:hover .svg-right{color:#3666d6}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box .svg-right{display:inline-block;color:rgba(46,55,67,.7)}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box .svg-close{display:none}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box .svg-check{display:none}.paraui-v3-drag-verify>.slider-move>.slider-move-text{color:rgba(46,55,67,.4);font-size:14px}.paraui-v3-drag-verify.paraui-v3-drag-verify-move>.slider-move>.slider-move-mask{border:1px solid #3666d6;border-width:1px 0 1px 1px;background-color:rgba(54,102,214,.05)}.paraui-v3-drag-verify.paraui-v3-drag-verify-move>.slider-move>.slider-move-mask>.slider-move-box{background-color:#3666d6;border-top:1px solid #3666d6;border-bottom:1px solid #3666d6;top:-1px;border-bottom-left-radius:0;border-top-left-radius:0}.paraui-v3-drag-verify.paraui-v3-drag-verify-move>.slider-move>.slider-move-mask>.slider-move-box>.svg-right{color:#fff}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask{border:1px solid #eb6054;border-width:1px 0 1px 1px;background-color:rgba(54,102,214,.05)}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box{background-color:#eb6054;border-top:1px solid #eb6054;border-bottom:1px solid #eb6054;top:-1px;border-bottom-left-radius:0;border-top-left-radius:0}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box>.svg-close{display:inline-block;color:#fff}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box>.svg-right{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box>.svg-check{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask{border:1px solid #53c31b;border-width:1px 0 1px 1px;background-color:rgba(83,195,27,.05)}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box{background-color:#53c31b;border-top:1px solid #53c31b;border-bottom:1px solid #53c31b;top:-1px;border-bottom-left-radius:0;border-top-left-radius:0}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box .svg-close{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box .svg-right{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box .svg-check{display:inline-block;color:#fff}",""]),e.exports=r},5714:function(e,r,t){(r=t(23645)(!1)).push([e.id,".paraui-v3-loading{position:absolute;left:0;top:0;width:100%;height:100%}@keyframes rotateLoading{0%{transformOrigin:50% 50%}100%{transform:rotate(360deg)}}.paraui-v3-loading .loading-mask{position:absolute;width:100%;height:100%;background-color:#fff;z-index:100}.paraui-v3-loading .loading-box{position:absolute;width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:101}.paraui-v3-loading .loading-box>svg{transition:all .3s ease-in-out;animation:rotateLoading 1s infinite linear;font-size:20px}",""]),e.exports=r},23645:function(e){"use strict";e.exports=function(e){var r=[];return r.toString=function(){return this.map((function(r){var t=function(e,r){var t=e[1]||"",n=e[3];if(!n)return t;if(r&&"function"==typeof btoa){var i=(a=n,s=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),l="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(s),"/*# ".concat(l," */")),o=n.sources.map((function(e){return"/*# sourceURL=".concat(n.sourceRoot||"").concat(e," */")}));return[t].concat(o).concat([i]).join("\n")}var a,s,l;return[t].join("\n")}(r,e);return r[2]?"@media ".concat(r[2]," {").concat(t,"}"):t})).join("")},r.i=function(e,t,n){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(n)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0)}for(var s=0;s<e.length;s++){var l=[].concat(e[s]);n&&i[l[0]]||(t&&(l[2]?l[2]="".concat(t," and ").concat(l[2]):l[2]=t),r.push(l))}},r}},27418:function(e){"use strict";
15
+ ***************************************************************************** */!function(e,r){void 0===r&&(r={});var t=r.insertAt;if(e&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css","top"===t&&n.firstChild?n.insertBefore(o,n.firstChild):n.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}('@charset "UTF-8";\n/**\n* @author Hanz\n* @date 2021/8/25 下午3:16\n* @description icons scss\n*/\n.paraui-icon {\n width: 1em;\n height: 1em;\n fill: currentColor;\n display: inline-block;\n user-select: none;\n flex-shrink: 0;\n}\n.paraui-icon-primary {\n color: #3666d6;\n}\n.paraui-icon-secondary {\n color: #3666d6;\n}\n.paraui-icon-thirdary {\n color: #3666d6;\n}\n.paraui-icon-small {\n font-size: 16px;\n}\n.paraui-icon-medium {\n font-size: 18px;\n}\n.paraui-icon-large {\n font-size: 20px;\n}');var o=function(e){var r,t,o=e.path,i=e.className,a=e.color,s=void 0===a?"primary":a,l=e.size,c=void 0===l?"small":l,u=e.dataName,d=void 0===u?"":u,f=e.style,p=function(e,r){var t={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&r.indexOf(n)<0&&(t[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)r.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(t[n[o]]=e[n[o]])}return t}(e,["path","className","color","size","dataName","style"]);return(0,n.jsx)("svg",Object.assign({className:(t="paraui-icon",t+=" svg-icon",i&&(t+=" "+i),"primary"!==s&&"secondary"!==s&&"thirdary"!==s||(t+=" paraui-icon-"+s),c&&(t+=" paraui-icon-"+c),t),viewBox:"0 0 1024 1024","data-name":d,style:(r=Object.assign({},f),s&&"primary"!==s&&"secondary"!==s&&"thirdary"!==s&&(r.color=s),r)},p,{children:o}))}},38271:function(e,r,t){(r=t(23645)(!1)).push([e.id,".paraui-v3-drag-verify{width:100%;position:relative}.paraui-v3-drag-verify>svg{position:absolute;right:4px;top:4px;z-index:10;cursor:pointer;display:none}.paraui-v3-drag-verify>.slider-img{position:relative;border-radius:4px;overflow:hidden;line-height:0;min-height:60px}.paraui-v3-drag-verify>.slider-img .slider-img-bg{width:100%;height:auto;border-radius:4px}.paraui-v3-drag-verify>.slider-img .slider-img-move{position:absolute;left:0;height:auto}.paraui-v3-drag-verify>.slider-move{position:relative;text-align:center;line-height:32px;height:32px;margin-top:12px}.paraui-v3-drag-verify>.slider-move>.slider-move-bg{position:absolute;left:0;right:0;top:0;background-color:rgba(171,176,185,.12);height:32px;border-radius:4px;border:1px solid rgba(171,176,185,.2)}.paraui-v3-drag-verify>.slider-move>.slider-move-mask{position:absolute;left:0;top:0;height:32px;width:2px;border-bottom-left-radius:4px;border-top-left-radius:4px}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box{position:absolute;top:0;left:-1px;width:32px;height:32px;background:#fff;cursor:pointer;border-radius:4px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(171,176,185,.2)}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box:hover .svg-right{color:#3666d6}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box .svg-right{display:inline-block;color:rgba(46,55,67,.7)}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box .svg-close{display:none}.paraui-v3-drag-verify>.slider-move>.slider-move-mask>.slider-move-box .svg-check{display:none}.paraui-v3-drag-verify>.slider-move>.slider-move-text{color:rgba(46,55,67,.4);font-size:14px}.paraui-v3-drag-verify.paraui-v3-drag-verify-move>.slider-move>.slider-move-mask{border:1px solid #3666d6;border-width:1px 0 1px 1px;background-color:rgba(54,102,214,.05)}.paraui-v3-drag-verify.paraui-v3-drag-verify-move>.slider-move>.slider-move-mask>.slider-move-box{background-color:#3666d6;border-top:1px solid #3666d6;border-bottom:1px solid #3666d6;top:-1px;border-bottom-left-radius:0;border-top-left-radius:0}.paraui-v3-drag-verify.paraui-v3-drag-verify-move>.slider-move>.slider-move-mask>.slider-move-box>.svg-right{color:#fff}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask{border:1px solid #eb6054;border-width:1px 0 1px 1px;background-color:rgba(54,102,214,.05)}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box{background-color:#eb6054;border-top:1px solid #eb6054;border-bottom:1px solid #eb6054;top:-1px;border-bottom-left-radius:0;border-top-left-radius:0}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box>.svg-close{display:inline-block;color:#fff}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box>.svg-right{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-error>.slider-move>.slider-move-mask>.slider-move-box>.svg-check{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask{border:1px solid #53c31b;border-width:1px 0 1px 1px;background-color:rgba(83,195,27,.05)}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box{background-color:#53c31b;border-top:1px solid #53c31b;border-bottom:1px solid #53c31b;top:-1px;border-bottom-left-radius:0;border-top-left-radius:0}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box .svg-close{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box .svg-right{display:none}.paraui-v3-drag-verify.paraui-v3-drag-verify-success>.slider-move>.slider-move-mask>.slider-move-box .svg-check{display:inline-block;color:#fff}",""]),e.exports=r},5714:function(e,r,t){(r=t(23645)(!1)).push([e.id,".paraui-v3-loading{position:absolute;left:0;top:0;width:100%;height:100%}@keyframes rotateLoading{0%{transformOrigin:50% 50%}100%{transform:rotate(360deg)}}.paraui-v3-loading .loading-mask{position:absolute;width:100%;height:100%;background-color:#fff;z-index:100}.paraui-v3-loading .loading-box{position:absolute;width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:101}.paraui-v3-loading .loading-box>svg{transition:all .3s ease-in-out;animation:rotateLoading 1s infinite linear;font-size:20px}",""]),e.exports=r},23645:function(e){"use strict";e.exports=function(e){var r=[];return r.toString=function(){return this.map((function(r){var t=function(e,r){var t=e[1]||"",n=e[3];if(!n)return t;if(r&&"function"==typeof btoa){var o=(a=n,s=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),l="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(s),"/*# ".concat(l," */")),i=n.sources.map((function(e){return"/*# sourceURL=".concat(n.sourceRoot||"").concat(e," */")}));return[t].concat(i).concat([o]).join("\n")}var a,s,l;return[t].join("\n")}(r,e);return r[2]?"@media ".concat(r[2]," {").concat(t,"}"):t})).join("")},r.i=function(e,t,n){"string"==typeof e&&(e=[[null,e,""]]);var o={};if(n)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var s=0;s<e.length;s++){var l=[].concat(e[s]);n&&o[l[0]]||(t&&(l[2]?l[2]="".concat(t," and ").concat(l[2]):l[2]=t),r.push(l))}},r}},27418:function(e){"use strict";
16
16
  /*
17
17
  object-assign
18
18
  (c) Sindre Sorhus
19
19
  @license MIT
20
- */var r=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,n=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var r={},t=0;t<10;t++)r["_"+String.fromCharCode(t)]=t;if("0123456789"!==Object.getOwnPropertyNames(r).map((function(e){return r[e]})).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach((function(e){n[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var o,a,s=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),l=1;l<arguments.length;l++){for(var c in o=Object(arguments[l]))t.call(o,c)&&(s[c]=o[c]);if(r){a=r(o);for(var u=0;u<a.length;u++)n.call(o,a[u])&&(s[a[u]]=o[a[u]])}}return s}},75251:function(e,r,t){"use strict";
20
+ */var r=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,n=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var r={},t=0;t<10;t++)r["_"+String.fromCharCode(t)]=t;if("0123456789"!==Object.getOwnPropertyNames(r).map((function(e){return r[e]})).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach((function(e){n[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var i,a,s=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),l=1;l<arguments.length;l++){for(var c in i=Object(arguments[l]))t.call(i,c)&&(s[c]=i[c]);if(r){a=r(i);for(var u=0;u<a.length;u++)n.call(i,a[u])&&(s[a[u]]=i[a[u]])}}return s}},75251:function(e,r,t){"use strict";
21
21
  /** @license React v17.0.2
22
22
  * react-jsx-runtime.production.min.js
23
23
  *
@@ -25,4 +25,4 @@ object-assign
25
25
  *
26
26
  * This source code is licensed under the MIT license found in the
27
27
  * LICENSE file in the root directory of this source tree.
28
- */t(27418);var n=t(8156),i=60103;if(r.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;i=o("react.element"),r.Fragment=o("react.fragment")}var a=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function c(e,r,t){var n,o={},c=null,u=null;for(n in void 0!==t&&(c=""+t),void 0!==r.key&&(c=""+r.key),void 0!==r.ref&&(u=r.ref),r)s.call(r,n)&&!l.hasOwnProperty(n)&&(o[n]=r[n]);if(e&&e.defaultProps)for(n in r=e.defaultProps)void 0===o[n]&&(o[n]=r[n]);return{$$typeof:i,type:e,key:c,ref:u,props:o,_owner:a.current}}r.jsx=c,r.jsxs=c},85893:function(e,r,t){"use strict";e.exports=t(75251)},75875:function(e,r,t){var n=t(93379),i=t(38271);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:"head",singleton:!1};n(i,o);e.exports=i.locals||{}},13267:function(e,r,t){var n=t(93379),i=t(5714);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:"head",singleton:!1};n(i,o);e.exports=i.locals||{}},93379:function(e,r,t){"use strict";var n,i=function(){return void 0===n&&(n=Boolean(window&&document&&document.all&&!window.atob)),n},o=function(){var e={};return function(r){if(void 0===e[r]){var t=document.querySelector(r);if(window.HTMLIFrameElement&&t instanceof window.HTMLIFrameElement)try{t=t.contentDocument.head}catch(e){t=null}e[r]=t}return e[r]}}(),a=[];function s(e){for(var r=-1,t=0;t<a.length;t++)if(a[t].identifier===e){r=t;break}return r}function l(e,r){for(var t={},n=[],i=0;i<e.length;i++){var o=e[i],l=r.base?o[0]+r.base:o[0],c=t[l]||0,u="".concat(l," ").concat(c);t[l]=c+1;var d=s(u),f={css:o[1],media:o[2],sourceMap:o[3]};-1!==d?(a[d].references++,a[d].updater(f)):a.push({identifier:u,updater:g(f,r),references:1}),n.push(u)}return n}function c(e){var r=document.createElement("style"),n=e.attributes||{};if(void 0===n.nonce){var i=t.nc;i&&(n.nonce=i)}if(Object.keys(n).forEach((function(e){r.setAttribute(e,n[e])})),"function"==typeof e.insert)e.insert(r);else{var a=o(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(r)}return r}var u,d=(u=[],function(e,r){return u[e]=r,u.filter(Boolean).join("\n")});function f(e,r,t,n){var i=t?"":n.media?"@media ".concat(n.media," {").concat(n.css,"}"):n.css;if(e.styleSheet)e.styleSheet.cssText=d(r,i);else{var o=document.createTextNode(i),a=e.childNodes;a[r]&&e.removeChild(a[r]),a.length?e.insertBefore(o,a[r]):e.appendChild(o)}}function p(e,r,t){var n=t.css,i=t.media,o=t.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}var v=null,m=0;function g(e,r){var t,n,i;if(r.singleton){var o=m++;t=v||(v=c(r)),n=f.bind(null,t,o,!1),i=f.bind(null,t,o,!0)}else t=c(r),n=p.bind(null,t,r),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)};return n(e),function(r){if(r){if(r.css===e.css&&r.media===e.media&&r.sourceMap===e.sourceMap)return;n(e=r)}else i()}}e.exports=function(e,r){(r=r||{}).singleton||"boolean"==typeof r.singleton||(r.singleton=i());var t=l(e=e||[],r);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var n=0;n<t.length;n++){var i=s(t[n]);a[i].references--}for(var o=l(e,r),c=0;c<t.length;c++){var u=s(t[c]);0===a[u].references&&(a[u].updater(),a.splice(u,1))}t=o}}}},37464:function(e,r,t){"use strict";t.d(r,{W:function(){return n}});var n="paraui-v3"},5927:function(e,r,t){"use strict";var n=t(8156),i=t.n(n),o=t(61217),a=t(37464);t(13267);r.default=function(e){var r=e.className,t=e.style,s=e.opacity,l=void 0===s?.7:s,c=(0,n.useRef)(null);(0,n.useEffect)((function(){c&&c.current&&c.current.parentNode&&(c.current.parentNode.style.position||(c.current.parentNode.style.position="relative"))}),[]);var u;return i().createElement("div",{className:(u="".concat(a.W,"-loading"),r&&(u+=" "+r),u),style:t,ref:c},i().createElement("div",{className:"loading-box"},i().createElement(o.Z,null)),i().createElement("div",{className:"loading-mask",style:{opacity:l}}))}},65395:function(e){"use strict";e.exports=r},8156:function(r){"use strict";r.exports=e}},n={};function i(e){var r=n[e];if(void 0!==r)return r.exports;var o=n[e]={id:e,exports:{}};return t[e](o,o.exports,i),o.exports}i.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(r,{a:r}),r},i.d=function(e,r){for(var t in r)i.o(r,t)&&!i.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},i.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.nc=void 0;var o={};return function(){"use strict";i.r(o),i.d(o,{DragVerify:function(){return w},default:function(){return j}});var e=i(8156),r=i.n(e);function t(e){var r,n,i="";if("string"==typeof e||"number"==typeof e)i+=e;else if("object"==typeof e)if(Array.isArray(e))for(r=0;r<e.length;r++)e[r]&&(n=t(e[r]))&&(i&&(i+=" "),i+=n);else for(r in e)e[r]&&(i&&(i+=" "),i+=r);return i}var n=i(85893),a=i(97435),s=function(e){return(0,n.jsx)(a.l,Object.assign({dataName:"DoubleRight",path:(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)("path",{d:"M476.757333 813.696a42.666667 42.666667 0 0 1 12.501334-30.165333l271.530666-271.573334-271.530666-271.488a42.666667 42.666667 0 0 1 60.330666-60.330666l301.696 301.653333a42.666667 42.666667 0 0 1 0 60.373333l-301.696 301.696a42.666667 42.666667 0 0 1-72.832-30.165333z"}),(0,n.jsx)("path",{d:"M160.256 813.696a42.666667 42.666667 0 0 1 12.501333-30.165333l271.530667-271.573334-271.530667-271.488a42.666667 42.666667 0 0 1 60.330667-60.330666l301.696 301.653333a42.666667 42.666667 0 0 1 0 60.373333l-301.696 301.696a42.666667 42.666667 0 0 1-72.832-30.165333z"})]})},e))},l=function(e){return(0,n.jsx)(a.l,Object.assign({dataName:"Close",path:(0,n.jsx)(n.Fragment,{children:(0,n.jsx)("path",{d:"M572.330667 512l183.168-183.168a42.666667 42.666667 0 0 0-60.330667-60.330667L512 451.669333 328.832 268.501333a42.666667 42.666667 0 0 0-60.330667 60.330667L451.669333 512l-183.168 183.168a42.666667 42.666667 0 1 0 60.330667 60.330667L512 572.330667l183.168 183.168a42.666667 42.666667 0 0 0 60.330667-60.330667z"})})},e))},c=function(e){return(0,n.jsx)(a.l,Object.assign({dataName:"Check",path:(0,n.jsx)(n.Fragment,{children:(0,n.jsx)("path",{d:"M854.528 283.221333a46.933333 46.933333 0 0 0-66.389333 0l-357.930667 357.973334-194.346667-194.304a46.933333 46.933333 0 0 0-66.389333 66.389333l227.541333 227.498667a46.933333 46.933333 0 0 0 66.389334 0c0.512-0.554667 0.682667-1.237333 1.194666-1.792s1.28-0.682667 1.792-1.194667l388.266667-388.266667a46.933333 46.933333 0 0 0-0.128-66.304z"})})},e))},u=i(37464),d=i(65395),f=i.n(d),p=function(e,t){var n=r().useContext(f()).intlFormat;return t.zh_CN=t.zh,t["zh-CN"]=t.zh,t.en_US=t.en,t["en-US"]=t.en,n&&n(e,t)},v={zh:{tryAgain:"再试一次",swipe:"向右滑动填充拼图"},en:{tryAgain:"Try again",swipe:"Swipe right to fill puzzle"}},m=i(5927);i(75875);function g(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=new Array(r);t<r;t++)n[t]=e[t];return n}function y(e,r,t,n,i,o,a){try{var s=e[o](a),l=s.value}catch(e){return void t(e)}s.done?r(l):Promise.resolve(l).then(n,i)}function h(e){return function(){var r=this,t=arguments;return new Promise((function(n,i){var o=e.apply(r,t);function a(e){y(o,n,i,a,s,"next",e)}function s(e){y(o,n,i,a,s,"throw",e)}a(void 0)}))}}function b(e,r){return function(e){if(Array.isArray(e))return e}(e)||function(e,r){var t=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,i,o=[],a=!0,s=!1;try{for(t=t.call(e);!(a=(n=t.next()).done)&&(o.push(n.value),!r||o.length!==r);a=!0);}catch(e){s=!0,i=e}finally{try{a||null==t.return||t.return()}finally{if(s)throw i}}return o}}(e,r)||function(e,r){if(!e)return;if("string"==typeof e)return g(e,r);var t=Object.prototype.toString.call(e).slice(8,-1);"Object"===t&&e.constructor&&(t=e.constructor.name);if("Map"===t||"Set"===t)return Array.from(t);if("Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return g(e,r)}(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var x=function(e,r){var t,n,i,o,a={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function s(o){return function(s){return function(o){if(t)throw new TypeError("Generator is already executing.");for(;a;)try{if(t=1,n&&(i=2&o[0]?n.return:o[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,o[1])).done)return i;switch(n=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,n=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(!(i=a.trys,(i=i.length>0&&i[i.length-1])||6!==o[0]&&2!==o[0])){a=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]<i[3])){a.label=o[1];break}if(6===o[0]&&a.label<i[1]){a.label=i[1],i=o;break}if(i&&a.label<i[2]){a.label=i[2],a.ops.push(o);break}i[2]&&a.ops.pop(),a.trys.pop();continue}o=r.call(e,a)}catch(e){o=[6,e],n=0}finally{t=i=0}if(5&o[0])throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}([o,s])}}},w=function(n){var i=n.className,o=n.style,a=n.refresh,d=n.getImgInfo,f=n.verify,g=n.width,y=n.height,w=p("DragVerify",v),j=b((0,e.useState)(),2),k=j[0],E=j[1],S=b((0,e.useState)(!1),2),O=S[0],N=S[1],C=(0,e.useRef)(null),M=(0,e.useRef)({getImgInfo:d,verify:f}),I=u.W+"-drag-verify";M.current.getImgInfo=d,M.current.verify=f,(0,e.useEffect)((function(){return A(),T(),function(){clearTimeout(M.current.timerError),clearTimeout(M.current.timerSuccess)}}),[a,k]);var F,T=(F=h((function(){var e;return x(this,(function(r){switch(r.label){case 0:return M.current.padding=!0,N(!0),[4,M.current.getImgInfo()];case 1:return e=r.sent(),M.current.imgInfo=e,L(),[2]}}))})),function(){return F.apply(this,arguments)}),_=function(){var e=h((function(e,r){var t;return x(this,(function(n){switch(n.label){case 0:return[4,M.current.verify(e,M.current.verify)];case 1:return t=n.sent(),r(t),[2]}}))}));return function(r,t){return e.apply(this,arguments)}}(),L=function(){var e;if(C.current){var r=document.createElement("img");r.setAttribute("src",null===(e=M.current.imgInfo)||void 0===e?void 0:e.sourceImage),r.style.display="none";var t=document.createElement("img");M.current.imgMove=t,t.className="slider-img-move",t.style.display="none";var n=C.current.querySelector(".slider-img"),i=C.current.querySelector(".refresh");n&&i&&(i.style.display="none",n.innerHTML="",n.append(r),r.onload=function(){var e;r.style.display="inline-block",t.setAttribute("src",null===(e=M.current.imgInfo)||void 0===e?void 0:e.newImage);var n=r.width;if(r.className="slider-img-bg",r.style.display="inline-block",C.current){var o=C.current.querySelector(".slider-img"),a=(null==o?void 0:o.getBoundingClientRect()).width;M.current.imgScale=n/a,null==o||o.append(t),t.onload=function(){var e;M.current.padding=!1,t.style.display="inline-block",i.style.display="inline-block",t.width=t.width/M.current.imgScale,t.style.top=(null===(e=M.current.imgInfo)||void 0===e?void 0:e.y)/M.current.imgScale+"px",N(!1)}}},z(r,t))}},z=function(e,r){var t=C.current;if(t){var n=t.querySelector(".slider-move-box"),i=t.querySelector(".slider-move-mask"),o=t.querySelector(".slider-move"),a=t.querySelector(".slider-move-text"),s=o.getBoundingClientRect(),l=n.getBoundingClientRect().width,c=s.width;n.onmousedown=function(o){M.current.padding||(t.classList.add(I+"-move"),document.onmousemove=function(t){var s=t.pageX-o.pageX;s<0&&(s=0),s+l>e.width&&(s=e.width-l),n.style.left=s-1+"px",i.style.width=(s<2?2:s)+"px";var u=s/(c-l),d=(e.width-r.width)*u;r.style.left=d+"px",a.innerHTML=""},document.onmouseup=function(){document.onmousemove=null,document.onmouseup=null,t.classList.remove(I+"-move"),M.current.padding=!0;var e=parseFloat(r.style.left)*M.current.imgScale;_(e,(function(e){if(!e)return t.classList.add(I+"-error"),void(M.current.timerError=setTimeout((function(){M.current.padding=!1,A(),a.innerHTML=w({id:"tryAgain"}),T()}),1e3));t.classList.add(I+"-success")}))})}}},A=function(){var e=C.current;if(e){e.classList.remove(I+"-success"),e.classList.remove(I+"-error");var r=e.querySelector(".slider-move-box"),t=e.querySelector(".slider-move-mask");e.querySelector(".slider-move-text").innerHTML=w({id:"swipe"}),r.style.left="-1px",t.style.width="0px",M.current.imgMove&&(M.current.imgMove.style.left="0px")}};return r().createElement("div",{className:function(){for(var e,r,n=0,i="";n<arguments.length;)(e=arguments[n++])&&(r=t(e))&&(i&&(i+=" "),i+=r);return i}(I,i),style:o,ref:C},r().createElement("svg",{onClick:function(){E(Math.random())},className:"refresh",width:"26.529",height:"26.017",viewBox:"0 0 26.529 26.017"},r().createElement("defs",null,r().createElement("filter",{id:"a",x:"0",y:"0",width:"26.529",height:"17",filterUnits:"userSpaceOnUse"},r().createElement("feOffset",{dy:"1"}),r().createElement("feGaussianBlur",{stdDeviation:"1",result:"b"}),r().createElement("feFlood",null),r().createElement("feComposite",{operator:"in",in2:"b"}),r().createElement("feComposite",{in:"SourceGraphic"})),r().createElement("filter",{id:"c",x:"0",y:"9.017",width:"26.529",height:"17",filterUnits:"userSpaceOnUse"},r().createElement("feOffset",{dy:"1"}),r().createElement("feGaussianBlur",{stdDeviation:"1",result:"d"}),r().createElement("feFlood",null),r().createElement("feComposite",{operator:"in",in2:"d"}),r().createElement("feComposite",{in:"SourceGraphic"}))),r().createElement("g",{style:{opacity:.7,isolation:"isolate"},transform:"translate(-286.735 -95.991)"},r().createElement("g",{transform:"translate(288 96)"},r().createElement("rect",{style:{fill:"none"},width:"24",height:"24"})),r().createElement("g",{transform:"translate(289.735 97.991)"},r().createElement("g",{style:{filter:"url(#a)"},transform:"matrix(1, 0, 0, 1, -3, -2)"},r().createElement("path",{style:{fill:"#FFFFFF"},d:"M577.409,536.791a1,1,0,0,0,1-1A8,8,0,0,1,592.817,531h0c.077.1.149.207.22.312l-1.911-.765a1,1,0,1,0-.743,1.856l3.7,1.483a1,1,0,0,0,1.3-.557l1.482-3.7a1,1,0,1,0-1.857-.744l-.448,1.12c-.048-.067-.093-.137-.143-.2h0a10,10,0,0,0-18.009,5.989A1,1,0,0,0,577.409,536.791Z",transform:"translate(-573.41 -523.79)"})),r().createElement("g",{style:{filter:"url(#c)"},transform:"matrix(1, 0, 0, 1, -3, -2)"},r().createElement("path",{style:{fill:"#FFFFFF"},d:"M595.938,534.808a1,1,0,0,0-1,1,8,8,0,0,1-14.409,4.79h0c-.076-.1-.148-.206-.219-.312l1.911.765a1,1,0,0,0,.743-1.857l-3.7-1.482a1,1,0,0,0-1.3.557l-1.482,3.7a1,1,0,0,0,1.856.743l.449-1.12c.047.067.093.136.142.2h0a10,10,0,0,0,18.009-5.989A1,1,0,0,0,595.938,534.808Z",transform:"translate(-573.41 -523.79)"}))))),r().createElement("div",{className:"slider-img",style:function(){var e={};if(g){var r=g;"number"==typeof g&&(r=g+"px"),e.width=r}if(y){var t=y;"number"==typeof y&&(t=y+"px"),e.height=t}return e}()}),r().createElement("div",{className:"slider-move"},r().createElement("div",{className:"slider-move-bg"}),r().createElement("div",{className:"slider-move-mask"},r().createElement("div",{className:"slider-move-box"},r().createElement(s,{className:"svg-right"}),r().createElement(l,{className:"svg-close"}),r().createElement(c,{className:"svg-check"}))),r().createElement("span",{className:"slider-move-text"},w({id:"swipe"}))),O&&r().createElement(m.default,null))},j=w}(),o}()}));
28
+ */t(27418);var n=t(8156),o=60103;if(r.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var i=Symbol.for;o=i("react.element"),r.Fragment=i("react.fragment")}var a=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function c(e,r,t){var n,i={},c=null,u=null;for(n in void 0!==t&&(c=""+t),void 0!==r.key&&(c=""+r.key),void 0!==r.ref&&(u=r.ref),r)s.call(r,n)&&!l.hasOwnProperty(n)&&(i[n]=r[n]);if(e&&e.defaultProps)for(n in r=e.defaultProps)void 0===i[n]&&(i[n]=r[n]);return{$$typeof:o,type:e,key:c,ref:u,props:i,_owner:a.current}}r.jsx=c,r.jsxs=c},85893:function(e,r,t){"use strict";e.exports=t(75251)},75875:function(e,r,t){var n=t(93379),o=t(38271);"string"==typeof(o=o.__esModule?o.default:o)&&(o=[[e.id,o,""]]);var i={insert:"head",singleton:!1};n(o,i);e.exports=o.locals||{}},13267:function(e,r,t){var n=t(93379),o=t(5714);"string"==typeof(o=o.__esModule?o.default:o)&&(o=[[e.id,o,""]]);var i={insert:"head",singleton:!1};n(o,i);e.exports=o.locals||{}},93379:function(e,r,t){"use strict";var n,o=function(){return void 0===n&&(n=Boolean(window&&document&&document.all&&!window.atob)),n},i=function(){var e={};return function(r){if(void 0===e[r]){var t=document.querySelector(r);if(window.HTMLIFrameElement&&t instanceof window.HTMLIFrameElement)try{t=t.contentDocument.head}catch(e){t=null}e[r]=t}return e[r]}}(),a=[];function s(e){for(var r=-1,t=0;t<a.length;t++)if(a[t].identifier===e){r=t;break}return r}function l(e,r){for(var t={},n=[],o=0;o<e.length;o++){var i=e[o],l=r.base?i[0]+r.base:i[0],c=t[l]||0,u="".concat(l," ").concat(c);t[l]=c+1;var d=s(u),f={css:i[1],media:i[2],sourceMap:i[3]};-1!==d?(a[d].references++,a[d].updater(f)):a.push({identifier:u,updater:g(f,r),references:1}),n.push(u)}return n}function c(e){var r=document.createElement("style"),n=e.attributes||{};if(void 0===n.nonce){var o=t.nc;o&&(n.nonce=o)}if(Object.keys(n).forEach((function(e){r.setAttribute(e,n[e])})),"function"==typeof e.insert)e.insert(r);else{var a=i(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(r)}return r}var u,d=(u=[],function(e,r){return u[e]=r,u.filter(Boolean).join("\n")});function f(e,r,t,n){var o=t?"":n.media?"@media ".concat(n.media," {").concat(n.css,"}"):n.css;if(e.styleSheet)e.styleSheet.cssText=d(r,o);else{var i=document.createTextNode(o),a=e.childNodes;a[r]&&e.removeChild(a[r]),a.length?e.insertBefore(i,a[r]):e.appendChild(i)}}function p(e,r,t){var n=t.css,o=t.media,i=t.sourceMap;if(o?e.setAttribute("media",o):e.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}var v=null,m=0;function g(e,r){var t,n,o;if(r.singleton){var i=m++;t=v||(v=c(r)),n=f.bind(null,t,i,!1),o=f.bind(null,t,i,!0)}else t=c(r),n=p.bind(null,t,r),o=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)};return n(e),function(r){if(r){if(r.css===e.css&&r.media===e.media&&r.sourceMap===e.sourceMap)return;n(e=r)}else o()}}e.exports=function(e,r){(r=r||{}).singleton||"boolean"==typeof r.singleton||(r.singleton=o());var t=l(e=e||[],r);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var n=0;n<t.length;n++){var o=s(t[n]);a[o].references--}for(var i=l(e,r),c=0;c<t.length;c++){var u=s(t[c]);0===a[u].references&&(a[u].updater(),a.splice(u,1))}t=i}}}},37464:function(e,r,t){"use strict";t.d(r,{W:function(){return n}});var n="paraui-v3"},5927:function(e,r,t){"use strict";var n=t(8156),o=t.n(n),i=t(61217),a=t(37464);t(13267);r.default=function(e){var r=e.className,t=e.style,s=e.opacity,l=void 0===s?.7:s,c=(0,n.useRef)(null);(0,n.useEffect)((function(){c&&c.current&&c.current.parentNode&&(c.current.parentNode.style.position||(c.current.parentNode.style.position="relative"))}),[]);var u;return o().createElement("div",{className:(u="".concat(a.W,"-loading"),r&&(u+=" "+r),u),style:t,ref:c},o().createElement("div",{className:"loading-box"},o().createElement(i.Z,null)),o().createElement("div",{className:"loading-mask",style:{opacity:l}}))}},65395:function(e){"use strict";e.exports=r},8156:function(r){"use strict";r.exports=e}},n={};function o(e){var r=n[e];if(void 0!==r)return r.exports;var i=n[e]={id:e,exports:{}};return t[e](i,i.exports,o),i.exports}o.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(r,{a:r}),r},o.d=function(e,r){for(var t in r)o.o(r,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},o.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nc=void 0;var i={};return function(){"use strict";o.r(i),o.d(i,{DragVerify:function(){return w},default:function(){return j}});var e=o(8156),r=o.n(e);function t(e){var r,n,o="";if("string"==typeof e||"number"==typeof e)o+=e;else if("object"==typeof e)if(Array.isArray(e))for(r=0;r<e.length;r++)e[r]&&(n=t(e[r]))&&(o&&(o+=" "),o+=n);else for(r in e)e[r]&&(o&&(o+=" "),o+=r);return o}var n=o(85893),a=o(97435),s=function(e){return(0,n.jsx)(a.l,Object.assign({dataName:"DoubleRight",path:(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)("path",{d:"M476.757333 813.696a42.666667 42.666667 0 0 1 12.501334-30.165333l271.530666-271.573334-271.530666-271.488a42.666667 42.666667 0 0 1 60.330666-60.330666l301.696 301.653333a42.666667 42.666667 0 0 1 0 60.373333l-301.696 301.696a42.666667 42.666667 0 0 1-72.832-30.165333z"}),(0,n.jsx)("path",{d:"M160.256 813.696a42.666667 42.666667 0 0 1 12.501333-30.165333l271.530667-271.573334-271.530667-271.488a42.666667 42.666667 0 0 1 60.330667-60.330666l301.696 301.653333a42.666667 42.666667 0 0 1 0 60.373333l-301.696 301.696a42.666667 42.666667 0 0 1-72.832-30.165333z"})]})},e))},l=function(e){return(0,n.jsx)(a.l,Object.assign({dataName:"Close",path:(0,n.jsx)(n.Fragment,{children:(0,n.jsx)("path",{d:"M572.330667 512l183.168-183.168a42.666667 42.666667 0 0 0-60.330667-60.330667L512 451.669333 328.832 268.501333a42.666667 42.666667 0 0 0-60.330667 60.330667L451.669333 512l-183.168 183.168a42.666667 42.666667 0 1 0 60.330667 60.330667L512 572.330667l183.168 183.168a42.666667 42.666667 0 0 0 60.330667-60.330667z"})})},e))},c=function(e){return(0,n.jsx)(a.l,Object.assign({dataName:"Check",path:(0,n.jsx)(n.Fragment,{children:(0,n.jsx)("path",{d:"M854.528 283.221333a46.933333 46.933333 0 0 0-66.389333 0l-357.930667 357.973334-194.346667-194.304a46.933333 46.933333 0 0 0-66.389333 66.389333l227.541333 227.498667a46.933333 46.933333 0 0 0 66.389334 0c0.512-0.554667 0.682667-1.237333 1.194666-1.792s1.28-0.682667 1.792-1.194667l388.266667-388.266667a46.933333 46.933333 0 0 0-0.128-66.304z"})})},e))},u=o(37464),d=o(65395),f=o.n(d),p=function(e,t){var n=r().useContext(f()).intlFormat;return t.zh_CN=t.zh,t["zh-CN"]=t.zh,t.en_US=t.en,t["en-US"]=t.en,n&&n(e,t)},v={zh:{tryAgain:"再试一次",swipe:"向右滑动填充拼图"},en:{tryAgain:"Try again",swipe:"Swipe right to fill puzzle"}},m=o(5927);o(75875);function g(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=new Array(r);t<r;t++)n[t]=e[t];return n}function y(e,r,t,n,o,i,a){try{var s=e[i](a),l=s.value}catch(e){return void t(e)}s.done?r(l):Promise.resolve(l).then(n,o)}function h(e){return function(){var r=this,t=arguments;return new Promise((function(n,o){var i=e.apply(r,t);function a(e){y(i,n,o,a,s,"next",e)}function s(e){y(i,n,o,a,s,"throw",e)}a(void 0)}))}}function b(e,r){return function(e){if(Array.isArray(e))return e}(e)||function(e,r){var t=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,o,i=[],a=!0,s=!1;try{for(t=t.call(e);!(a=(n=t.next()).done)&&(i.push(n.value),!r||i.length!==r);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==t.return||t.return()}finally{if(s)throw o}}return i}}(e,r)||function(e,r){if(!e)return;if("string"==typeof e)return g(e,r);var t=Object.prototype.toString.call(e).slice(8,-1);"Object"===t&&e.constructor&&(t=e.constructor.name);if("Map"===t||"Set"===t)return Array.from(t);if("Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return g(e,r)}(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var x=function(e,r){var t,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(t)throw new TypeError("Generator is already executing.");for(;a;)try{if(t=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!(o=a.trys,(o=o.length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=r.call(e,a)}catch(e){i=[6,e],n=0}finally{t=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}},w=function(n){var o=n.className,i=n.style,a=n.refresh,d=n.getImgInfo,f=n.verify,g=n.width,y=n.height,w=p("DragVerify",v),j=b((0,e.useState)(),2),k=j[0],E=j[1],S=b((0,e.useState)(!1),2),O=S[0],N=S[1],C=(0,e.useRef)(null),M=(0,e.useRef)({getImgInfo:d,verify:f}),I=u.W+"-drag-verify";M.current.getImgInfo=d,M.current.verify=f,(0,e.useEffect)((function(){return A(),T(),function(){clearTimeout(M.current.timerError),clearTimeout(M.current.timerSuccess)}}),[a,k]);var F,T=(F=h((function(){var e;return x(this,(function(r){switch(r.label){case 0:return M.current.padding=!0,N(!0),[4,M.current.getImgInfo()];case 1:return e=r.sent(),M.current.imgInfo=e,L(),[2]}}))})),function(){return F.apply(this,arguments)}),_=function(){var e=h((function(e,r){var t;return x(this,(function(n){switch(n.label){case 0:return[4,M.current.verify(e,M.current.verify)];case 1:return t=n.sent(),r(t),[2]}}))}));return function(r,t){return e.apply(this,arguments)}}(),L=function(){var e;if(C.current){var r=document.createElement("img");r.setAttribute("src",null===(e=M.current.imgInfo)||void 0===e?void 0:e.sourceImage),r.style.display="none";var t=document.createElement("img");M.current.imgMove=t,t.className="slider-img-move",t.style.display="none";var n=C.current.querySelector(".slider-img"),o=C.current.querySelector(".refresh");n&&o&&(o.style.display="none",n.innerHTML="",n.append(r),r.onload=function(){var e;r.style.display="inline-block",t.setAttribute("src",null===(e=M.current.imgInfo)||void 0===e?void 0:e.newImage);var n=r.width;if(r.className="slider-img-bg",r.style.display="inline-block",C.current){var i=C.current.querySelector(".slider-img"),a=null==i?void 0:i.clientWidth;M.current.imgScale=n/a,null==i||i.append(t),t.onload=function(){var e;M.current.padding=!1,t.style.display="inline-block",o.style.display="inline-block",t.width=t.width/M.current.imgScale,t.style.top=(null===(e=M.current.imgInfo)||void 0===e?void 0:e.y)/M.current.imgScale+"px",N(!1)}}},z(r,t))}},z=function(e,r){var t=C.current;if(t){var n=t.querySelector(".slider-move-box"),o=t.querySelector(".slider-move-mask"),i=t.querySelector(".slider-move"),a=t.querySelector(".slider-move-text"),s=i.getBoundingClientRect(),l=n.getBoundingClientRect().width,c=s.width,u=function(t,i){var s=t.pageX-i.pageX;s<0&&(s=0),s+l>e.width&&(s=e.width-l),n.style.left="".concat(s-1,"px"),o.style.width="".concat(s<2?2:s,"px");var u=s/(c-l),d=(e.width-r.width)*u;r.style.left="".concat(d,"px"),a.innerHTML=""},d=function(){t.classList.remove("".concat(I,"-move")),M.current.padding=!0;var e=parseFloat(r.style.left)*M.current.imgScale;_(e,(function(e){if(!e)return t.classList.add("".concat(I,"-error")),void(M.current.timerError=setTimeout((function(){M.current.padding=!1,A(),a.innerHTML=w({id:"tryAgain"}),T()}),1e3));t.classList.add("".concat(I,"-success"))}))};n.onmousedown=function(e){M.current.padding||(t.classList.add("".concat(I,"-move")),document.onmousemove=function(r){u(r,e)},document.onmouseup=function(){document.onmousemove=null,document.onmouseup=null,d()})},n.ontouchstart=function(e){if(!M.current.padding){var r=e.touches[0];t.classList.add("".concat(I,"-move")),document.ontouchmove=function(e){var t=e.touches[0];u(t,r)},document.ontouchend=function(){document.ontouchmove=null,document.ontouchend=null,d()}}}}},A=function(){var e=C.current;if(e){e.classList.remove(I+"-success"),e.classList.remove(I+"-error");var r=e.querySelector(".slider-move-box"),t=e.querySelector(".slider-move-mask");e.querySelector(".slider-move-text").innerHTML=w({id:"swipe"}),r.style.left="-1px",t.style.width="0px",M.current.imgMove&&(M.current.imgMove.style.left="0px")}};return r().createElement("div",{className:function(){for(var e,r,n=0,o="";n<arguments.length;)(e=arguments[n++])&&(r=t(e))&&(o&&(o+=" "),o+=r);return o}(I,o),style:i,ref:C},r().createElement("svg",{onClick:function(){E(Math.random())},className:"refresh",width:"26.529",height:"26.017",viewBox:"0 0 26.529 26.017"},r().createElement("defs",null,r().createElement("filter",{id:"a",x:"0",y:"0",width:"26.529",height:"17",filterUnits:"userSpaceOnUse"},r().createElement("feOffset",{dy:"1"}),r().createElement("feGaussianBlur",{stdDeviation:"1",result:"b"}),r().createElement("feFlood",null),r().createElement("feComposite",{operator:"in",in2:"b"}),r().createElement("feComposite",{in:"SourceGraphic"})),r().createElement("filter",{id:"c",x:"0",y:"9.017",width:"26.529",height:"17",filterUnits:"userSpaceOnUse"},r().createElement("feOffset",{dy:"1"}),r().createElement("feGaussianBlur",{stdDeviation:"1",result:"d"}),r().createElement("feFlood",null),r().createElement("feComposite",{operator:"in",in2:"d"}),r().createElement("feComposite",{in:"SourceGraphic"}))),r().createElement("g",{style:{opacity:.7,isolation:"isolate"},transform:"translate(-286.735 -95.991)"},r().createElement("g",{transform:"translate(288 96)"},r().createElement("rect",{style:{fill:"none"},width:"24",height:"24"})),r().createElement("g",{transform:"translate(289.735 97.991)"},r().createElement("g",{style:{filter:"url(#a)"},transform:"matrix(1, 0, 0, 1, -3, -2)"},r().createElement("path",{style:{fill:"#FFFFFF"},d:"M577.409,536.791a1,1,0,0,0,1-1A8,8,0,0,1,592.817,531h0c.077.1.149.207.22.312l-1.911-.765a1,1,0,1,0-.743,1.856l3.7,1.483a1,1,0,0,0,1.3-.557l1.482-3.7a1,1,0,1,0-1.857-.744l-.448,1.12c-.048-.067-.093-.137-.143-.2h0a10,10,0,0,0-18.009,5.989A1,1,0,0,0,577.409,536.791Z",transform:"translate(-573.41 -523.79)"})),r().createElement("g",{style:{filter:"url(#c)"},transform:"matrix(1, 0, 0, 1, -3, -2)"},r().createElement("path",{style:{fill:"#FFFFFF"},d:"M595.938,534.808a1,1,0,0,0-1,1,8,8,0,0,1-14.409,4.79h0c-.076-.1-.148-.206-.219-.312l1.911.765a1,1,0,0,0,.743-1.857l-3.7-1.482a1,1,0,0,0-1.3.557l-1.482,3.7a1,1,0,0,0,1.856.743l.449-1.12c.047.067.093.136.142.2h0a10,10,0,0,0,18.009-5.989A1,1,0,0,0,595.938,534.808Z",transform:"translate(-573.41 -523.79)"}))))),r().createElement("div",{className:"slider-img",style:function(){var e={};if(g){var r=g;"number"==typeof g&&(r=g+"px"),e.width=r}if(y){var t=y;"number"==typeof y&&(t=y+"px"),e.height=t}return e}()}),r().createElement("div",{className:"slider-move"},r().createElement("div",{className:"slider-move-bg"}),r().createElement("div",{className:"slider-move-mask"},r().createElement("div",{className:"slider-move-box"},r().createElement(s,{className:"svg-right"}),r().createElement(l,{className:"svg-close"}),r().createElement(c,{className:"svg-check"}))),r().createElement("span",{className:"slider-move-text"},w({id:"swipe"}))),O&&r().createElement(m.default,null))},j=w}(),i}()}));